Home
last modified time | relevance | path

Searched refs:CompiledCodeToInterpreterBridge (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/bridge/arch/x86/
Dcompiled_code_to_interpreter_bridge_x86.S29 .global CompiledCodeToInterpreterBridge symbol
30 .type CompiledCodeToInterpreterBridge, %function
31 CompiledCodeToInterpreterBridge: label
/arkcompiler/runtime_core/static_core/runtime/bridge/
Dbridge.cpp39 bridge = reinterpret_cast<const void *>(CompiledCodeToInterpreterBridge); in GetCompiledCodeToInterpreterBridge()
47 return reinterpret_cast<const void *>(CompiledCodeToInterpreterBridge); in GetCompiledCodeToInterpreterBridge()
Dbridge.h36 extern "C" void CompiledCodeToInterpreterBridge();
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/amd64/
Dcompiled_code_to_interpreter_bridge_amd64.S32 .global CompiledCodeToInterpreterBridge symbol
33 TYPE_FUNCTION(CompiledCodeToInterpreterBridge)
34 CompiledCodeToInterpreterBridge: label
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/arm/
Dcompiled_code_to_interpreter_bridge_arm.S30 .global CompiledCodeToInterpreterBridge symbol
31 .type CompiledCodeToInterpreterBridge, %function
32 CompiledCodeToInterpreterBridge: label
Dcompiled_code_to_interpreter_bridge_armhf.S30 .global CompiledCodeToInterpreterBridge symbol
31 .type CompiledCodeToInterpreterBridge, %function
32 CompiledCodeToInterpreterBridge: label
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/aarch64/
Dcompiled_code_to_interpreter_bridge_aarch64.S32 .global CompiledCodeToInterpreterBridge symbol
33 .type CompiledCodeToInterpreterBridge, %function
34 CompiledCodeToInterpreterBridge: label
/arkcompiler/runtime_core/docs/
Druntime-compiled_code-interaction.md80 …he `compiled_entry_point_` must point to a runtime function `CompiledCodeToInterpreterBridge` whic…
214 If the entrypoint points to `CompiledCodeToInterpreterBridge` then the callee should be executed by…
252 If a function should be executed by the interpreter it must have `CompiledCodeToInterpreterBridge` …
253 `CompiledCodeToInterpreterBridge` does the following:
256 * Fill in the interpreter frame by the arguments passed to `CompiledCodeToInterpreterBridge` in the…
262 `CompiledCodeToInterpreterBridge`'s boundary stack frame is necessary to link the compiled code's f…
/arkcompiler/runtime_core/static_core/docs/
Druntime-compiled_code-interaction.md86 …he `compiled_entry_point_` must point to a runtime function `CompiledCodeToInterpreterBridge` whic…
220 If the entrypoint points to `CompiledCodeToInterpreterBridge` then the callee should be executed by…
258 If a function should be executed by the interpreter it must have `CompiledCodeToInterpreterBridge` …
259 `CompiledCodeToInterpreterBridge` does the following:
262 * Fill in the interpreter frame by the arguments passed to `CompiledCodeToInterpreterBridge` in the…
268 `CompiledCodeToInterpreterBridge`'s boundary stack frame is necessary to link the compiled code's f…
/arkcompiler/runtime_core/static_core/runtime/entrypoints/
Dentrypoints.cpp1209 …rn static_cast<int>(entrypoint != reinterpret_cast<const void *>(CompiledCodeToInterpreterBridge)); in IsCompiled()