Home
last modified time | relevance | path

Searched defs:entrypoint (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/coroutines/
Dcoroutine.h67 Method *entrypoint; member
92 NativeEntrypointFunc entrypoint; member
270 Method *entrypoint = nullptr; member
286 NativeEntrypointInfo::NativeEntrypointFunc entrypoint; member
Dstackful_coroutine_manager.cpp241 Coroutine *StackfulCoroutineManager::Launch(CompletionEvent *completionEvent, Method *entrypoint, in Launch()
334Method *entrypoint, PandaVector<Value> &&arguments, in ReuseCoroutineInstance()
372 …routine *StackfulCoroutineManager::LaunchImpl(CompletionEvent *completionEvent, Method *entrypoint, in LaunchImpl()
Dthreaded_coroutine_manager.cpp146 Coroutine *ThreadedCoroutineManager::Launch(CompletionEvent *completionEvent, Method *entrypoint, in Launch()
323 …routine *ThreadedCoroutineManager::LaunchImpl(CompletionEvent *completionEvent, Method *entrypoint, in LaunchImpl()
Dcoroutine_manager.cpp85 …ne *CoroutineManager::CreateCoroutineInstance(CompletionEvent *completionEvent, Method *entrypoint, in CreateCoroutineInstance()
/arkcompiler/runtime_core/static_core/panda/
Dpanda.cpp70 … const panda::PandArg<std::string> &file, const panda::PandArg<std::string> &entrypoint, in PrepareArguments()
123 …panda::PandArg<std::string> entrypoint("entrypoint", "", "full name of entrypoint function or meth… in Main() local
/arkcompiler/runtime_core/panda/
Dpanda.cpp99 … const panda::PandArg<std::string> &file, const panda::PandArg<std::string> &entrypoint, in PrepareArguments()
153 …panda::PandArg<std::string> entrypoint("entrypoint", "", "full name of entrypoint function or meth… in Main() local
/arkcompiler/ets_runtime/ecmascript/base/
Dbuiltins_base.h71 static constexpr BuiltinFunctionEntry Create(std::string_view name, EcmaEntrypoint entrypoint, in Create()
119 …constexpr BuiltinFunctionEntry(std::string_view name, EcmaEntrypoint entrypoint, uint64_t bitfield) in BuiltinFunctionEntry()
/arkcompiler/runtime_core/static_core/tests/panda/run/panda-options/
Dpanda_options.cpp69 std::string entrypoint = std::string(main_class) + "::" + std::string(main_function); in TEST_F() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_coroutine.cpp114 Method *entrypoint = GetManagedEntrypoint(); in GetReturnType() local
Dets_vm.cpp356 bool PandaEtsVM::CheckEntrypointSignature(Method *entrypoint) in CheckEntrypointSignature()
431 Expected<int, Runtime::Error> PandaEtsVM::InvokeEntrypointImpl(Method *entrypoint, const std::vecto… in InvokeEntrypointImpl()
615 Method *entrypoint = coroutine->GetManagedEntrypoint(); in VisitVmRoots() local
674 Method *entrypoint = coroutine->GetManagedEntrypoint(); in UpdateVmRefs() local
/arkcompiler/runtime_core/static_core/runtime/
Dsignal_handler.cpp251 …auto entrypoint = reinterpret_cast<uintptr_t>((reinterpret_cast<Method *>(pmethod))->GetCompiledEn… in FindCompilerEntrypoint() local
313 uintptr_t entrypoint = FindCompilerEntrypoint(signalContext.GetFP()); in DetectSEGVFromCode() local
344 uintptr_t entrypoint = FindCompilerEntrypoint(signalContext.GetFP()); in DetectSEGVFromNullCheck() local
Dpanda_vm.cpp56 Expected<int, Runtime::Error> PandaVM::InvokeEntrypoint(Method *entrypoint, const std::vector<std::… in InvokeEntrypoint()
/arkcompiler/runtime_core/static_core/runtime/core/
Dcore_vm.cpp210 bool PandaCoreVM::CheckEntrypointSignature(Method *entrypoint) in CheckEntrypointSignature()
258 Expected<int, Runtime::Error> PandaCoreVM::InvokeEntrypointImpl(Method *entrypoint, in InvokeEntrypointImpl()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
Dgc_barriers.cpp53 auto entrypoint = in EmitPreWRB() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dcodegen.h419 …ier(RegMask liveRegs, VRegMask liveVregs, std::variant<EntrypointId, Reg> entrypoint, Args &&...pa… in CallBarrier()
Dcodegen.cpp1026 bool Codegen::EmitCallRuntimeCode(Inst *inst, std::variant<EntrypointId, Reg> entrypoint) in EmitCallRuntimeCode()
1490 auto entrypoint = EntrypointId::RESOLVE_UNKNOWN_VIRTUAL_CALL; in EmitResolveUnknownVirtual() local
3198 …EntrypointId entrypoint = inst->CastToBoundsCheck()->IsArray() ? EntrypointId::ARRAY_INDEX_OUT_OF_… in VisitBoundsCheck() local
3894 EntrypointId entrypoint = EntrypointId::GET_UNKNOWN_STATIC_FIELD_MEMORY_ADDRESS; // REFERENCE in VisitResolveObjectFieldStatic() local
3980 auto entrypoint = RuntimeInterface::EntrypointId::UNRESOLVED_STORE_STATIC_BARRIERED; in VisitUnresolvedStoreStatic() local
4713 …auto entrypoint = GetRuntime()->IsCompressedStringsEnabled() ? EntrypointId::STRING_HASH_CODE_COMP… in CreateStringHashCode() local
4776 EntrypointId entrypoint = inst->CastToBoundsCheckI()->IsArray() in VisitBoundsCheckI() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/
Djs_value_call.cpp375 auto entrypoint = packageName + std::string("ETSGLOBAL::") + methodName; in CallEtsFunctionImpl() local
/arkcompiler/runtime_core/static_core/runtime/entrypoints/
Dentrypoints.cpp1141 extern "C" int IsCompiled(const void *entrypoint) in IsCompiled()