Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/runtime/tests/
Di2c_bridge_test.cpp160 InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
196 InvokeCompiledCodeWithArgArray(args, frame, &callee, thread_); in TEST_F()
230 uint64_t res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
265 uint64_t res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
293 uint64_t res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
321 uint64_t res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
349 uint64_t res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
377 uint64_t res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
405 uint64_t res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
433 uint64_t res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
[all …]
/arkcompiler/runtime_core/static_core/runtime/bridge/
Dbridge.h30 extern "C" uint64_t InvokeCompiledCodeWithArgArray(const int64_t *, const Frame *, const Method *, …
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/x86/
Dinterpreter_to_compiled_code_bridge_x86.S295 .global InvokeCompiledCodeWithArgArray symbol
296 .type InvokeCompiledCodeWithArgArray, %function
297 InvokeCompiledCodeWithArgArray: label
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/arm/
Dinterpreter_to_compiled_code_bridge_arm.S279 .global InvokeCompiledCodeWithArgArray symbol
280 .type InvokeCompiledCodeWithArgArray, %function
281 InvokeCompiledCodeWithArgArray: label
Dinterpreter_to_compiled_code_bridge_armhf.S450 .global InvokeCompiledCodeWithArgArray symbol
451 .type InvokeCompiledCodeWithArgArray, %function
452 InvokeCompiledCodeWithArgArray: label
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/aarch64/
Dinterpreter_to_compiled_code_bridge_aarch64.S340 .global InvokeCompiledCodeWithArgArray symbol
341 .type InvokeCompiledCodeWithArgArray, %function
342 InvokeCompiledCodeWithArgArray: label
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/amd64/
Dinterpreter_to_compiled_code_bridge_amd64.S406 .global InvokeCompiledCodeWithArgArray symbol
407 TYPE_FUNCTION(InvokeCompiledCodeWithArgArray)
408 InvokeCompiledCodeWithArgArray: label
/arkcompiler/runtime_core/static_core/runtime/include/
Dmethod-inl.h200 uint64_t retValue = InvokeCompiledCodeWithArgArray(values.get(), currentFrame, this, thread); in InvokeCompiledCode()