Home
last modified time | relevance | path

Searched refs:SetCompiledEntryPoint (Results 1 – 19 of 19) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/tests/
Di2c_bridge_test.cpp146 callee.SetCompiledEntryPoint(reinterpret_cast<const void *>(VoidNoArg)); in TEST_F()
175 callee.SetCompiledEntryPoint(reinterpret_cast<const void *>(InstanceVoidNoArg)); in TEST_F()
212 callee.SetCompiledEntryPoint(reinterpret_cast<const void *>(ByteNoArg)); in TEST_F()
247 callee.SetCompiledEntryPoint(reinterpret_cast<const void *>(SignedByteNoArg)); in TEST_F()
282 callee.SetCompiledEntryPoint(reinterpret_cast<const void *>(BoolNoArg)); in TEST_F()
310 callee.SetCompiledEntryPoint(reinterpret_cast<const void *>(ShortNoArg)); in TEST_F()
338 callee.SetCompiledEntryPoint(reinterpret_cast<const void *>(SignedShortNoArg)); in TEST_F()
366 callee.SetCompiledEntryPoint(reinterpret_cast<const void *>(IntNoArg)); in TEST_F()
394 callee.SetCompiledEntryPoint(reinterpret_cast<const void *>(LongNoArg)); in TEST_F()
422 callee.SetCompiledEntryPoint(reinterpret_cast<const void *>(DoubleNoArg)); in TEST_F()
[all …]
Dinterpreter_test_switch.cpp136 fMethod->SetCompiledEntryPoint(reinterpret_cast<const void *>(EntryPoint)); in TEST_F()
Dmethod_test.cpp181 gMethod->SetCompiledEntryPoint(reinterpret_cast<const void *>(EntryPoint)); in TEST_F()
203 fMethod->SetCompiledEntryPoint(reinterpret_cast<const void *>(EntryPoint)); in TEST_F()
544 f4Method->SetCompiledEntryPoint(reinterpret_cast<const void *>(StackTraceEntryPoint)); in TEST_F()
Dc2i_bridge_test.cpp112 cmpDyn->SetCompiledEntryPoint(reinterpret_cast<const void *>(CmpDynImpl)); in SetUpHelperFunctions()
116 ldundefined->SetCompiledEntryPoint(reinterpret_cast<const void *>(LdUndefinedImpl)); in SetUpHelperFunctions()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/js_proxy/
Djs_proxy.cpp63 newMethod->SetCompiledEntryPoint(reinterpret_cast<void *>(JSProxyCallBridge)); in Create()
/arkcompiler/runtime_core/static_core/runtime/templates/
Dintrinsics_gen.h.erb120 …method->SetCompiledEntryPoint(reinterpret_cast<const void *>(<%= intrinsic.impl.rpartition("::").l…
122 …method->SetCompiledEntryPoint(reinterpret_cast<const void *>(<%= intrinsic.impl.rpartition("::").l…
/arkcompiler/runtime_core/static_core/compiler/tests/
Dpanda_runner.h109 method->SetCompiledEntryPoint(reinterpret_cast<void *>(StackWalkerHookBridge)); in Run()
/arkcompiler/runtime_core/compiler/tests/
Dpanda_runner.h100 method->SetCompiledEntryPoint(reinterpret_cast<void *>(Hook)); in Run()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_vm_api.cpp162 method->SetCompiledEntryPoint(impl); in BindNative()
/arkcompiler/runtime_core/static_core/disassembler/templates/
Dintrinsics_gen.h.erb75 method->SetCompiledEntryPoint(reinterpret_cast<const void *>(<%= entrypoint %>));
/arkcompiler/runtime_core/disassembler/templates/
Dintrinsics_gen.h.erb75 method->SetCompiledEntryPoint(reinterpret_cast<const void *>(<%= entrypoint %>));
/arkcompiler/runtime_core/static_core/runtime/
Dclass_linker.cpp373 method->SetCompiledEntryPoint(ext->GetNativeEntryPointFor(method)); in LoadMethod()
380 method->SetCompiledEntryPoint(GetCompiledCodeToInterpreterBridge(method)); in LoadMethod()
392 method->SetCompiledEntryPoint(entry); in MaybeLinkMethodToAotCode()
445 method->SetCompiledEntryPoint(GetAbstractMethodStub()); in LoadMethods()
455 methods[idx].SetCompiledEntryPoint(GetAbstractMethodStub()); in LoadMethods()
458 methods[idx].SetCompiledEntryPoint(GetDefaultConflictMethodStub()); in LoadMethods()
Dcompiler.h195 void SetCompiledEntryPoint(MethodPtr method, void *ep) override in SetCompiledEntryPoint() function
197 MethodCast(method)->SetCompiledEntryPoint(ep); in SetCompiledEntryPoint()
/arkcompiler/runtime_core/static_core/runtime/include/
Dmethod.h373 void SetCompiledEntryPoint(const void *entryPoint) in SetCompiledEntryPoint() function
383 SetCompiledEntryPoint(GetCompiledCodeToInterpreterBridge(this)); in SetInterpreterEntryPoint()
/arkcompiler/runtime_core/static_core/runtime/tests/interpreter/
Dtest_runtime_interface.h220 method->SetCompiledEntryPoint(entryPoint_); in JITCompileMethod()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/
Dts2ets_tstype.cpp159 method.SetCompiledEntryPoint(ep); in BindMethods()
Djs_value_call.cpp682 method.SetCompiledEntryPoint(methodEp); in InitJSCallSignatures()
/arkcompiler/runtime_core/static_core/compiler/
Dcompile_method.cpp225 runtime->SetCompiledEntryPoint(method, entryPoint); in CheckCompilation()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Druntime_interface.h271 …virtual void SetCompiledEntryPoint([[maybe_unused]] MethodPtr method, [[maybe_unused]] void *entry… in SetCompiledEntryPoint() function