Home
last modified time | relevance | path

Searched refs:currentMethod (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/
Dets_method_test.cpp219 EtsMethod *currentMethod = nullptr; in TEST_F() local
223 currentMethod = klass->GetMethod((fooName + std::to_string(i)).data()); in TEST_F()
224 ASSERT(currentMethod); in TEST_F()
225 methods.push_back(currentMethod); in TEST_F()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Ddump.cpp1036 auto currentMethod = GetCurrentMethod(); in DumpSourceLine() local
1038 if (currentMethod != nullptr && pc != INVALID_PC) { in DumpSourceLine()
1039 …to line = GetBasicBlock()->GetGraph()->GetRuntime()->GetLineNumberAndSourceFile(currentMethod, pc); in DumpSourceLine()
Dinst.h1772 void SetCurrentMethod(RuntimeInterface::MethodPtr currentMethod) in SetCurrentMethod() argument
1774 currentMethod_ = currentMethod; in SetCurrentMethod()
/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_manager.cpp50 Method *currentMethod = frameHandler.GetMethod(); in GetCurrentModule() local
51 return currentMethod->GetModule(); in GetCurrentModule()
/arkcompiler/runtime_core/docs/
Druntime-compiled_code-interaction.md160 blx lr // call resolve(currentMethod, MAX_INT_INT_ID)
/arkcompiler/runtime_core/static_core/docs/
Druntime-compiled_code-interaction.md166 blx lr // call resolve(currentMethod, MAX_INT_INT_ID)
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h797 Method *currentMethod = frameHandler.GetMethod(); in RuntimeResolveClass() local
798 JSHandle<JSTaggedValue> ecmaModule(thread, currentMethod->GetModule()); in RuntimeResolveClass()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter_assembly.cpp73 …auto currentMethod = ECMAObject::Cast(frame->function.GetTaggedObject())->GetCallTarget(); …
74currentMethod->SetHotnessCounter(static_cast<int16_t>(hotnessCounter)); …