Home
last modified time | relevance | path

Searched refs:entrypoint (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/panda/
Dpanda.cpp99 … 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/
Dintrinsics_gen.h.erb22 % 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/
Dintrinsics_codegen.inl.erb21 auto entrypoint = inst->GetIntrinsicId();
23 switch (entrypoint) {
/arkcompiler/ets_runtime/ecmascript/compiler/
Daot_compiler.cpp99 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/
Daot.md25 - `.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
Druntime-compiled_code-interaction.md25 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/
Dplt.md40 ; 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 `…