Searched refs:entrypoint (Results 1 – 7 of 7) sorted by relevance
/arkcompiler/runtime_core/panda/ |
D | panda.cpp | 99 … const panda::PandArg<std::string> &file, const panda::PandArg<std::string> &entrypoint, in PrepareArguments() argument 116 if (file.GetValue().empty() || entrypoint.GetValue().empty() || help.GetValue()) { in PrepareArguments() 153 …panda::PandArg<std::string> entrypoint("entrypoint", "", "full name of entrypoint function or meth… in Main() local 162 pa_parser.PushBackTail(&entrypoint); in Main() 166 if (!panda::PrepareArguments(&pa_parser, runtime_options, file, entrypoint, help, argc, argv)) { in Main() 212 std::string entry = entrypoint.GetValue(); in Main()
|
/arkcompiler/runtime_core/disassembler/templates/ |
D | intrinsics_gen.h.erb | 22 % entrypoint = intrinsic.name + "EntryPoint" 24 <%= intrinsic.impl_signature.ret %> <%= entrypoint %>(<%= params.join(", ") %>) { // NOLINT 74 % entrypoint = intrinsic.name + "EntryPoint" 75 method->SetCompiledEntryPoint(reinterpret_cast<const void *>(<%= entrypoint %>));
|
/arkcompiler/runtime_core/compiler/optimizer/templates/intrinsics/ |
D | intrinsics_codegen.inl.erb | 21 auto entrypoint = inst->GetIntrinsicId(); 23 switch (entrypoint) {
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | aot_compiler.cpp | 99 std::string entrypoint = "init::func_main_0"; in Main() local 183 entrypoint = runtimeOptions.GetEntryPoint(); in Main() 185 …PassManager passManager(vm, entrypoint, triple, optLevel, relocMode, &log, &logList, maxAotMethodS… in Main()
|
/arkcompiler/runtime_core/docs/ |
D | aot.md | 25 - `.aot_got` - Contains table of the runtime's entrypoint handlers. Must be placed right before `.t… 63 ; start of entrypoint table 75 Knowing offset to the `.aot_got` table, codegen calculates offset to the corresponding entrypoint a… 81 ; start of entrypoint table 93 84: ldr x30, [x30] ; Load address of the entrypoint handler
|
D | runtime-compiled_code-interaction.md | 25 changes its entrypoint to newly generated code. Next time when the function gets called native code… 57 Runtime serves compiled code via runtime entrypoints. A runtime entrypoint is a function which conf… 67 | compiled_entry_point_ | Function entrypoint. | 148 prepare arguments in the registers and the stack (if necessary) and jump to callee's entrypoint. 149 Resolving of a function could be done by calling the corresponding runtime entrypoint. 162 // 2nd step: prepare arguments and entrypoint to call `int max(int, int)` 172 The Compiler have an entrypoints table. Each entrypoint contains a link to the Bridge Function. 213 Depending on the callee's entrypoint there may be different cases. 214 If the entrypoint points to `CompiledCodeToInterpreterBridge` then the callee should be executed by… 224 * Jump to the callee's entrypoint. [all …]
|
/arkcompiler/runtime_core/compiler/docs/ |
D | plt.md | 40 ; start of entrypoint table | 77 ; start of entrypoint table | 109 takes caller `Method pointer` from previous frame and calls `GetCalleeMethod` entrypoint. 129 ; start of entrypoint table | 155 takes caller `Method pointer` from previous frame and calls `InitializeClassById` entrypoint. 157 …r `Class` state is `Initialized`, as returning from `InitializeClassById` entrypoint in some corner 161 Another entrypoint is called here - `ResolveClass`. Gathered `Class pointer` value is stored into `…
|