Lines Matching full:entrypoint
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. |
75 ### Entrypoint subsection
76 Entrypoint is a pointer to native code which can execute the function. This code must conform to th…
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.
252 …uld be executed by the interpreter it must have `CompiledCodeToInterpreterBridge` as an entrypoint.
386 For such cases compiled code must call `void Deoptimize()` runtime entrypoint to continue execution…
392 Throwing an exeption from compiled code is performed by calling a runtime entrypoint `void ThrowExc…