/arkcompiler/ets_frontend/es2panda/ir/expressions/ |
H A D | callExpression.cpp | 200 pg->CallSpread(this, callee, thisReg, argsObj); in Compile()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stub_list.h | 389 V(CallSpread) \
|
H A D | runtime_stubs.cpp | 2552 DEF_RUNTIME_STUBS(CallSpread) in DEF_RUNTIME_STUBS() 2554 RUNTIME_STUBS_HEADER(CallSpread); in DEF_RUNTIME_STUBS()
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
H A D | pandagen.h | 138 void CallSpread(const ir::AstNode *node, VReg func, VReg thisReg, VReg args);
|
H A D | pandagen.cpp | 1184 void PandaGen::CallSpread(const ir::AstNode *node, VReg func, VReg thisReg, VReg args) in CallSpread() function in ark::es2panda::compiler::PandaGen
|
H A D | JSCompiler.cpp | 632 pg->CallSpread(expr, callee, thisReg, argsObj); in Compile()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | slow_runtime_stub.h | 29 static JSTaggedValue CallSpread(JSThread *thread, JSTaggedValue func, JSTaggedValue obj, JSTaggedValue array);
|
H A D | slow_runtime_stub.cpp | 22 JSTaggedValue SlowRuntimeStub::CallSpread(JSThread *thread, JSTaggedValue func, JSTaggedValue obj, in CallSpread() function in panda::ecmascript::SlowRuntimeStub 25 INTERPRETER_TRACE(thread, CallSpread); in CallSpread()
|
H A D | interpreter-inl.cpp | 1502 JSTaggedValue res = SlowRuntimeStub::CallSpread(thread, func, obj, array); in RunInternal() 1519 JSTaggedValue res = SlowRuntimeStub::CallSpread(thread, func, obj, array); in RunInternal()
|
H A D | interpreter_assembly.cpp | 4603 JSTaggedValue res = SlowRuntimeStub::CallSpread(thread, func, obj, array); 6911 JSTaggedValue res = SlowRuntimeStub::CallSpread(thread, func, obj, array);
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
H A D | pandagen.h | 350 void CallSpread(const ir::AstNode *node, VReg func, VReg thisReg, VReg args);
|
H A D | pandagen.cpp | 1424 void PandaGen::CallSpread(const ir::AstNode *node, VReg func, VReg thisReg, VReg args) in CallSpread() function in panda::es2panda::compiler::PandaGen
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 96 V(CallSpread) \
|
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/ |
H A D | baseline_stubs.cpp | 1737 GateRef res = CallRuntime(glue, RTSTUB_ID(CallSpread), { acc, obj, array }); in GenerateCircuit() 4654 GateRef res = CallRuntime(glue, RTSTUB_ID(CallSpread), { func, obj, array }); in GenerateCircuit()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | interpreter_stub.cpp | 4964 GateRef res = CallRuntime(glue, RTSTUB_ID(CallSpread), { func, obj, array });
in DECLARE_ASM_HANDLER() 4973 GateRef res = CallRuntime(glue, RTSTUB_ID(CallSpread), { func, obj, array });
in DECLARE_ASM_HANDLER()
|
H A D | slowpath_lowering.cpp | 1087 const int id = RTSTUB_ID(CallSpread); in LowerCallSpread()
|