Home
last modified time | relevance | path

Searched refs:DefineMethod (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h153 static JSTaggedValue DefineMethod(JSThread *thread, Method *method, JSTaggedValue homeObject);
Dslow_runtime_stub.cpp1016 JSTaggedValue SlowRuntimeStub::DefineMethod(JSThread *thread, Method *method, JSTaggedValue homeObj… in DefineMethod() function in panda::ecmascript::SlowRuntimeStub
1018 INTERPRETER_TRACE(thread, DefineMethod); in DefineMethod()
Dinterpreter-inl.h4858 auto res = SlowRuntimeStub::DefineMethod(thread, method, homeObject); in RunInternal()
4885 auto res = SlowRuntimeStub::DefineMethod(thread, method, homeObject); in RunInternal()
Dinterpreter_assembly.cpp6486 auto res = SlowRuntimeStub::DefineMethod(thread, method, homeObject); in HandleDefinemethodImm16Id16Imm8()
6601 auto res = SlowRuntimeStub::DefineMethod(thread, method, homeObject); in HandleDefinemethodImm8Id16Imm8()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h259 V(DefineMethod) \
Druntime_stubs.cpp1688 DEF_RUNTIME_STUBS(DefineMethod) in DEF_RUNTIME_STUBS() argument
1690 RUNTIME_STUBS_HEADER(DefineMethod); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h197 V(DefineMethod) \
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub.cpp4153 result = CallRuntime(glue, RTSTUB_ID(DefineMethod), { *result, acc }); in DECLARE_ASM_HANDLER()
4178 result = CallRuntime(glue, RTSTUB_ID(DefineMethod), { *result, acc }); in DECLARE_ASM_HANDLER()
Dslowpath_lowering.cpp2739 GateRef result = LowerCallRuntime(gate, RTSTUB_ID(DefineMethod), {method, homeObject}, true); in LowerDefineMethod()