Home
last modified time | relevance | path

Searched defs:method (Results 176 - 200 of 365) sorted by relevance

12345678910>>...15

/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
H A Dcompiler_intrinsics.cpp46 Field *TryGetField(ark::Method *method, Field *rawField, uint32_t pc, ark::Class *klass) in TryGetField() argument
67 ark::Method *TryGetCallee(ark::Method *method, Field *rawField, uint32_t pc, ark::Class *klass) in TryGetCallee() argument
147 T CompilerEtsLdObjByName(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj) in CompilerEtsLdObjByName() argument
243 CompilerEtsStObjByName(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj, T storeValue) CompilerEtsStObjByName() argument
277 CompilerEtsStObjByNameRef(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj, ark::ObjectHeader *storeValue) CompilerEtsStObjByNameRef() argument
308 CompilerEtsLdObjByNameI32(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj) CompilerEtsLdObjByNameI32() argument
313 CompilerEtsLdObjByNameI64(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj) CompilerEtsLdObjByNameI64() argument
318 CompilerEtsLdObjByNameF32(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj) CompilerEtsLdObjByNameF32() argument
323 CompilerEtsLdObjByNameF64(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj) CompilerEtsLdObjByNameF64() argument
328 CompilerEtsLdObjByNameObj(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj) CompilerEtsLdObjByNameObj() argument
334 CompilerEtsStObjByNameI8(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj, int8_t storeValue) CompilerEtsStObjByNameI8() argument
341 CompilerEtsStObjByNameI16(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj, int16_t storeValue) CompilerEtsStObjByNameI16() argument
348 CompilerEtsStObjByNameI32(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj, int32_t storeValue) CompilerEtsStObjByNameI32() argument
354 CompilerEtsStObjByNameI64(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj, int64_t storeValue) CompilerEtsStObjByNameI64() argument
360 CompilerEtsStObjByNameF32(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj, float storeValue) CompilerEtsStObjByNameF32() argument
366 CompilerEtsStObjByNameF64(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj, double storeValue) CompilerEtsStObjByNameF64() argument
372 CompilerEtsStObjByNameObj(ark::Method *method, int32_t id, uint32_t pc, ark::ObjectHeader *obj, ark::ObjectHeader *storeValue) CompilerEtsStObjByNameObj() argument
[all...]
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
H A Dets_napi_helpers.cpp88 extern "C" uint32_t EtsNapiCalcStackArgsSpaceSize(Method *method, bool isCritical) in EtsNapiCalcStackArgsSpaceSize() argument
165 extern "C" void EtsNapiBeginCritical(Method *method, uint8_t *inRegsArgs, uint8_t *inStackArgs, uint8_t *outArgs, in EtsNapiBeginCritical() argument
241 EtsNapiBegin(Method *method, uint8_t *inRegsArgs, uint8_t *inStackArgs, uint8_t *outStackArgs, ManagedThread *thread) EtsNapiBegin() argument
300 coroutine->GetPandaVM()->ResolveNativeMethod(method); EtsNapiBegin() variable
324 EtsNapiEnd(Method *method, ManagedThread *thread, bool isFastNative) EtsNapiEnd() argument
341 EtsNapiObjEnd(Method *method, EtsReference *etsRef, ManagedThread *thread, bool isFastNative) EtsNapiObjEnd() argument
367 IsEtsMethodFastNative(Method *method) IsEtsMethodFastNative() argument
381 EtsAsyncCall(Method *method, EtsCoroutine *currentCoro, uint8_t *regArgs, uint8_t *stackArgs) EtsAsyncCall() argument
[all...]
H A Dets_scoped_objects_fix.h319 auto method = EtsMethod::FromRuntimeMethod(stack.GetMethod()); in IsAccessFromManagedAllowed() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
H A Dets_method.h273 static EtsMethod *FromRuntimeMethod(Method *method) in FromRuntimeMethod() argument
/arkcompiler/runtime_core/static_core/runtime/
H A Dexceptions.cpp143 void ThrowAbstractMethodError(const Method *method) in ThrowAbstractMethodError() argument
154 void ThrowIncompatibleClassChangeErrorForMethodConflict(const Method *method) in ThrowIncompatibleClassChangeErrorForMethodConflict() argument
203 DropCFrameIfNecessary(ManagedThread *thread, StackWalker *stack, Frame *origFrame, FrameAccessor nextFrame, Method *method) DropCFrameIfNecessary() argument
249 auto *method = stack->GetMethod(); FindCatchBlockInCFrames() local
[all...]
H A Dcompiler.h46 inline ark::Method *MethodCast(RuntimeInterface::MethodPtr method) in MethodCast() argument
[all...]
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dcframe.h153 void SetMethod(Method *method) in SetMethod() argument
H A Dvtable_builder_base.h50 explicit MethodInfo(Method *method, size_t index = 0, bool isBase = false) in MethodInfo() argument
H A Dclass-inl.h283 auto *method = BinSearch<KeyComp>(methods, key, preds...); in FindDirectMethod() local
292 auto *method = BinSearch<KeyComp>(methods, key, preds...); in FindDirectMethod() local
318 auto *method = cls->FindDirectMethod<FILTER, KeyComp>(key, preds...); FindClassMethod() local
338 auto *method = FindDirectMethod<FILTER, KeyComp>(key, preds...); FindInterfaceMethod() local
350 auto *method = iface->FindDirectMethod<FindFilter::INSTANCE, KeyComp>(key, preds...); FindInterfaceMethod() local
[all...]
H A Dpanda_vm.h184 virtual void CleanUpTask([[maybe_unused]] Method *method) {}; in CleanUpTask() argument
/arkcompiler/runtime_core/static_core/runtime/interpreter/
H A Dinstruction_handler_base.h297 ALWAYS_INLINE void UpdateHotness(Method *method) in UpdateHotness() argument
335 ALWAYS_INLINE bool UpdateHotnessOSR(Method *method, int offset) in UpdateHotnessOSR() argument
/arkcompiler/runtime_core/static_core/runtime/methodtrace/
H A Dtrace.cpp174 void Trace::WriteInfoToBuf(const ManagedThread *thread, Method *method, EventFlag event, uint32_t threadTime, in WriteInfoToBuf() argument
220 uint32_t Trace::EncodeMethodAndEventToId(Method *method, EventFla argument
227 EncodeMethodToId(Method *method) EncodeMethodToId() argument
256 Method *method = DecodeIdToMethod(decodedData); GetUniqueMethods() local
299 MethodEntry(ManagedThread *thread, Method *method) MethodEntry() argument
314 MethodExit(ManagedThread *thread, Method *method) MethodExit() argument
[all...]
/arkcompiler/runtime_core/static_core/runtime/tests/
H A Dc2i_bridge_test.cpp47 coretypes::TaggedValue LdUndefinedImpl(Method *method) in LdUndefinedImpl() argument
295 auto method = MakeNoArgsMethod(TypeId::VOID, 0); in TEST_F() local
301 auto method = MakeNoArgsMethod(TypeId::I32, 5L); in TEST_F() local
308 auto method = MakeNoArgsMethod(TypeId::I64, 7L); in TEST_F() local
317 auto method in TEST_F() local
325 auto method = MakeNoArgsMethod(TypeId::REFERENCE, 0); TEST_F() local
334 auto method = MakeCheckArgsMethod({TypeId::I32, TypeId::I32}, {5L}); TEST_F() local
342 auto method = MakeCheckArgsMethod({TypeId::I32}, {0, 5L}, true); TEST_F() local
350 auto method = MakeCheckArgsMethod({TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32}, {3L, 2L, 1L}); TEST_F() local
358 auto method = MakeCheckArgsMethod({TypeId::I32, TypeId::I64}, {7L}); TEST_F() local
367 auto method = MakeCheckArgsMethod({TypeId::I32, TypeId::F64}, {bit_cast<int64_t>(2.0_D)}); TEST_F() local
376 auto method = TEST_F() local
385 auto method = MakeCheckArgsMethod({TypeId::I32, TypeId::I64, TypeId::I64}, {7L, 8L}); TEST_F() local
395 auto method = MakeCheckArgsMethod({TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::F64}, TEST_F() local
404 auto method = MakeCheckArgsMethod( TEST_F() local
414 auto method = MakeCheckArgsMethod( TEST_F() local
428 auto method = MakeCheckArgsMethod({TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TEST_F() local
438 auto method = MakeCheckArgsMethod({TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TEST_F() local
[all...]
H A Dexception_test.cpp163 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); in TEST_F() local
248 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); in TEST_F() local
336 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); in TEST_F() local
425 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
515 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
605 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
691 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
777 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
865 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
953 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1039 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1125 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1214 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1303 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1393 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1483 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1569 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1655 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1743 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1831 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1912 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
1993 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
2078 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
2163 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
2249 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
2335 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); TEST_F() local
[all...]
H A Dmethod_test.cpp103 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("foo")); in VerifyLineNumber() local
116 static Frame *CreateFrame(size_t nregs, Method *method, Frame *prev) in CreateFrame() argument
239 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("foo")); TEST_F() local
276 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("foo")); TEST_F() local
377 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("foo")); TEST_F() local
421 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("foo")); TEST_F() local
432 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("foo")); TEST_F() local
[all...]
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
H A Ddebug_info_cache.cpp39 auto method = frame.GetMethod(); in GetSourceLocation() local
61 auto method = frame.GetMethod(); in GetCurrentLineLocations() local
297 auto method in GetLocals() local
[all...]
H A Ddebuggable_thread.cpp167 std::pair<Value, ObjectHeader *> DebuggableThread::InvokeEvaluationMethod(Method *method) in InvokeEvaluationMethod() argument
/arkcompiler/runtime_core/static_core/runtime/profilesaver/
H A Dprofile_saver.cpp198 Method &method = tmpMethods[i]; in CallBackTranverseResolvedClassAndMethods() local
/arkcompiler/runtime_core/static_core/runtime/tooling/
H A Ddebugger.h45 Breakpoint(Method *method, uint32_t bcOffset) : method_(method), bcOffset_(bcOffset) {} in Breakpoint() argument
[all...]
/arkcompiler/runtime_core/static_core/verification/jobs/
H A Djob.h35 Job(Service *service, Method const *method, const MethodOptions &options) in Job() argument
165 void AddMethod(uint32_t offset, Method const *method) in AddMethod() argument
/arkcompiler/runtime_core/static_core/verification/type/
H A Dtype_system.cpp119 MethodSignature const *TypeSystem::GetMethodSignature(Method const *method) in GetMethodSignature() argument
190 auto const *method = methodOfId_.at(id); DisplayMethods() local
[all...]
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
H A DdefaultParameterLowering.cpp67 ir::TSTypeParameterDeclaration *DefaultParameterLowering::CreateParameterDeclaraion(ir::MethodDefinition *method, in CreateParameterDeclaraion() argument
92 ir::FunctionSignature DefaultParameterLowering::CreateFunctionSignature(ir::MethodDefinition *method, in CreateFunctionSignature() argument
107 CreateTypeParameterInstantiation( ir::MethodDefinition *method, public_lib::Context *ctx) CreateTypeParameterInstantiation() argument
134 CreateFunctionBody(ir::MethodDefinition *method, public_lib::Context *ctx, ArenaVector<ir::Expression *> funcCallArgs) CreateFunctionBody() argument
190 CreateFunctionExpression( ir::MethodDefinition *method, public_lib::Context *ctx, ArenaVector<ir::Expression *> funcDefinitionArgs, ArenaVector<ir::Expression *> funcCallArgs) CreateFunctionExpression() argument
217 CreateOverloadFunction(ir::MethodDefinition *method, ArenaVector<ir::Expression *> funcCallArgs, ArenaVector<ir::Expression *> funcDefinitionArgs, public_lib::Context *ctx) CreateOverloadFunction() argument
251 ProcessGlobalFunctionDefinition(ir::MethodDefinition *method, public_lib::Context *ctx) ProcessGlobalFunctionDefinition() argument
[all...]
H A DgenericBridgesLowering.cpp212 auto *const method = item->AsMethodDefinition(); in CreateGenericBridges() local
[all...]
/arkcompiler/ets_frontend/ets2panda/evaluate/debugInfoDeserialization/
H A DmethodBuilder.cpp188 auto *method = checker_->AllocNode<ir::MethodDefinition>(ir::MethodDefinitionKind::METHOD, in CreateIrMethod() local
/arkcompiler/ets_runtime/ecmascript/base/
H A Derror_helper.cpp219 Method *method = ECMAObject::Cast(function.GetTaggedObject())->GetCallTarget(); in GetErrorJSFunction() local

Completed in 17 milliseconds

12345678910>>...15