Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/runtime/tests/
Di2c_bridge_test.cpp146 InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
182 InvokeCompiledCodeWithArgArray(args, frame, &callee, thread_); in TEST_F()
216 DecodedTaggedValue res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
252 DecodedTaggedValue res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
281 DecodedTaggedValue res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
310 DecodedTaggedValue res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
339 DecodedTaggedValue res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
368 DecodedTaggedValue res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
397 DecodedTaggedValue res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
426 DecodedTaggedValue res = InvokeCompiledCodeWithArgArray(nullptr, frame, &callee, thread_); in TEST_F()
[all …]
/arkcompiler/runtime_core/runtime/bridge/
Dbridge.h46 extern "C" DecodedTaggedValue InvokeCompiledCodeWithArgArray(const int64_t *, const Frame *, const …
/arkcompiler/runtime_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/runtime/bridge/arch/arm/
Dinterpreter_to_compiled_code_bridge_arm.S277 .global InvokeCompiledCodeWithArgArray symbol
278 .type InvokeCompiledCodeWithArgArray, %function
279 InvokeCompiledCodeWithArgArray: label
Dinterpreter_to_compiled_code_bridge_armhf.S448 .global InvokeCompiledCodeWithArgArray symbol
449 .type InvokeCompiledCodeWithArgArray, %function
450 InvokeCompiledCodeWithArgArray: label
/arkcompiler/runtime_core/runtime/bridge/arch/aarch64/
Dinterpreter_to_compiled_code_bridge_aarch64.S330 .global InvokeCompiledCodeWithArgArray symbol
331 .type InvokeCompiledCodeWithArgArray, %function
332 InvokeCompiledCodeWithArgArray: label
/arkcompiler/runtime_core/runtime/bridge/arch/amd64/
Dinterpreter_to_compiled_code_bridge_amd64.S452 .global InvokeCompiledCodeWithArgArray symbol
453 TYPE_FUNCTION(InvokeCompiledCodeWithArgArray)
454 InvokeCompiledCodeWithArgArray: label
/arkcompiler/runtime_core/runtime/include/
Dmethod-inl.h207 ret_value = InvokeCompiledCodeWithArgArray(values.get(), current_frame, this, thread); in InvokeCompiledCode()