Home
last modified time | relevance | path

Searched refs:InvokeCompiledCodeWithArgArrayDyn (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/runtime_core/runtime/bridge/arch/arm/
Dinterpreter_to_compiled_code_bridge_dyn_arm.S100 .global InvokeCompiledCodeWithArgArrayDyn symbol
101 .type InvokeCompiledCodeWithArgArrayDyn, %function
102 InvokeCompiledCodeWithArgArrayDyn: label
/arkcompiler/runtime_core/runtime/bridge/arch/amd64/
Dinterpreter_to_compiled_code_bridge_dyn_amd64.S133 .global InvokeCompiledCodeWithArgArrayDyn symbol
134 TYPE_FUNCTION(InvokeCompiledCodeWithArgArrayDyn)
135 InvokeCompiledCodeWithArgArrayDyn: label
/arkcompiler/runtime_core/runtime/bridge/arch/aarch64/
Dinterpreter_to_compiled_code_bridge_dyn_aarch64.S108 .global InvokeCompiledCodeWithArgArrayDyn symbol
109 .type InvokeCompiledCodeWithArgArrayDyn, %function
110 InvokeCompiledCodeWithArgArrayDyn: label
/arkcompiler/runtime_core/runtime/bridge/
Dbridge.h48 extern "C" uint64_t InvokeCompiledCodeWithArgArrayDyn(const uint64_t *, uint32_t, const Frame *, co…
/arkcompiler/runtime_core/runtime/tests/
Di2c_bridge_test.cpp1203 uint64_t res = InvokeCompiledCodeWithArgArrayDyn(nullptr, 0, frame, &callee, thread_); in TEST_F()
1243 uint64_t res = InvokeCompiledCodeWithArgArrayDyn(args, 1, frame, &callee, thread_); in TEST_F()
1285 uint64_t res = InvokeCompiledCodeWithArgArrayDyn(args, 1, frame, &callee, thread_); in TEST_F()
1327 uint64_t res = InvokeCompiledCodeWithArgArrayDyn(args, 2, frame, &callee, thread_); in TEST_F()
1373 uint64_t res = InvokeCompiledCodeWithArgArrayDyn(args, 2, frame, &callee, thread_); in TEST_F()
1420 uint64_t res = InvokeCompiledCodeWithArgArrayDyn(args, 3, frame, &callee, thread_); in TEST_F()
1470 uint64_t res = InvokeCompiledCodeWithArgArrayDyn(args, 3, frame, &callee, thread_); in TEST_F()
1519 uint64_t res = InvokeCompiledCodeWithArgArrayDyn(args, 4, frame, &callee, thread_); in TEST_F()
1572 uint64_t res = InvokeCompiledCodeWithArgArrayDyn(args, 4, frame, &callee, thread_); in TEST_F()
1617 uint64_t res = InvokeCompiledCodeWithArgArrayDyn(args, 5, frame, &callee, thread_); in TEST_F()
/arkcompiler/runtime_core/runtime/include/
Dmethod-inl.h125 …uint64_t ret = InvokeCompiledCodeWithArgArrayDyn(reinterpret_cast<uint64_t *>(args), num_args, cur… in CompiledCodeExecute()