Searched refs:bridge (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/bridge/ |
H A D | bridge.cpp | 16 #include "runtime/bridge/bridge.h" 31 const void *bridge = nullptr; in GetCompiledCodeToInterpreterBridge() local 34 bridge = reinterpret_cast<const void *>(CompiledCodeToInterpreterBridgeDyn); in GetCompiledCodeToInterpreterBridge() 37 bridge = reinterpret_cast<const void *>(CompiledCodeToInterpreterBridgeDyn); in GetCompiledCodeToInterpreterBridge() 39 bridge = reinterpret_cast<const void *>(CompiledCodeToInterpreterBridge); in GetCompiledCodeToInterpreterBridge() 42 return bridge; in GetCompiledCodeToInterpreterBridge()
|
/arkcompiler/runtime_core/static_core/runtime/entrypoints/ |
H A D | entrypoints.rb | 24 abort "ERROR: 'bridge' field must be specified for #{self.entrypoint}" unless dscr['bridge'] # !self.respond_to? 'bridge' 37 return !self.bridge.nil? && self.bridge != 'none'
|
/arkcompiler/runtime_core/static_core/libllvmbackend/templates/ |
H A D | entrypoints.rb | 95 def bridge method in Entrypoint 96 @dscr['bridge'].upcase
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | method-inl.h | 27 #include "runtime/bridge/bridge.h" 238 // Create C2I bridge frame in case of previous frame is a native frame or other compiler frame. in InvokeEntry() 239 // But create only if the previous frame is not a C2I bridge already. in InvokeEntry() 241 C2IBridge bridge; in InvokeEntry() local 243 bridge = {0, reinterpret_cast<uintptr_t>(currentFrame), COMPILED_CODE_TO_INTERPRETER, in InvokeEntry() 246 frame->SetPrevFrame(reinterpret_cast<Frame *>(&bridge.v[1])); in InvokeEntry() 251 // 1. If caller is native method, then C2I bridge, created above, is not complete. It can be fixed by in InvokeEntry()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | slowpath_lowering.cpp | 1877 Label bridge(&builder_); in LowerFastSuperCall() 1878 BRANCH_CIR(builder_.Int64Equal(expectedNum, actualArgc), ¬Bridge, &bridge); in LowerFastSuperCall() 1883 builder_.Bind(&bridge); in LowerFastSuperCall() 1893 Label bridge(&builder_); in LowerFastSuperCall() 1895 BRANCH_CIR(builder_.Int64Equal(expectedNum, actualArgc), ¬Bridge, &bridge); in LowerFastSuperCall() 1899 builder_.Bind(&bridge); in LowerFastSuperCall()
|
Completed in 10 milliseconds