Home
last modified time | relevance | path

Searched defs:Leaq (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Doptimized_call.cpp71 __ Leaq(Operand(rsp, 2 * FRAME_SLOT_SIZE), rbp); in JSFunctionEntry() local
145 __ Leaq(Operand(rsp, 2 * FRAME_SLOT_SIZE), rbp); in OptimizedCallOptimized() local
186 __ Leaq(Operand(r14, Scale::Times8, 0), codeAddrReg); in OptimizedCallOptimized() local
251 __ Leaq(Operand(rbp, 2 * FRAME_SLOT_SIZE), rdi); // 16: skip argc & env in CallBuiltinTrampoline() local
335 __ Leaq(Operand(rsp, FRAME_SLOT_SIZE), rbp); in JSProxyCallInternalWithArgV() local
414 __ Leaq(Operand(rsp, FRAME_SLOT_SIZE), rbp); in JSProxyCallInternalWithArgV() local
479 __ Leaq(Operand(r10, Scale::Times8, 0), rcx); // 8: offset in JSProxyCallInternalWithArgV() local
619 __ Leaq(Operand(rsp, FRAME_SLOT_SIZE), rbp); in GenJSCall() local
697 __ Leaq(Operand(rsp, FRAME_SLOT_SIZE), rbp); in GenJSCall() local
887 __ Leaq(Operand(rsp, FRAME_SLOT_SIZE), rbp); in ThrowNonCallableInternal() local
[all …]
Dcommon_call.cpp50 __ Leaq(Operand(rsp, 24), rbp); // 24: skip pc, prevSp and frame type in PushAsmInterpBridgeFrame() local
Dasm_interpreter_call.cpp166 __ Leaq(Operand(argvRegister, NUM_MANDATORY_JSFUNC_ARGS * JSTaggedValue::TaggedTypeSize()), in AsmInterpEntryDispatch() local
247 __ Leaq(Operand(rsp, 3 * FRAME_SLOT_SIZE), rbp); // 24: skip frame type, prevSp and pc in PushAsmInterpEntryFrame() local
795 __ Leaq(Operand(rsp, numArgs, Times8, 5 * FRAME_SLOT_SIZE), rbp); in CallNativeWithArgv() local
823 …__ Leaq(Operand(rsp, 5 * FRAME_SLOT_SIZE), rbp); // 40: skip frame type, numArgs, func, newTarget… in CallNativeWithArgv() local
911 __ Leaq(Operand(rbp, 2 * FRAME_SLOT_SIZE), rdi); // 16: skip argc & thread in PushCallArgsAndDispatchNative() local
924 __ Leaq(Operand(rsp, FRAME_SLOT_SIZE), rbp); // 8: skip frame type in PushBuiltinFrame() local
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/tests/
Dassembler_x64_test.cpp408 __ Leaq(Operand(r14, Scale::Times8, 0), rcx); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/x64/
Dassembler_x64.cpp987 void AssemblerX64::Leaq(const Operand &src, Register dst) in Leaq() function in panda::ecmascript::x64::AssemblerX64