Lines Matching full:callee
102 Compiled code stack frames of caller and callee must be continuous in the stack i.e. the callee's s…
109 | Callee parameters |
117 A | Callee saved fp regs |
119 | Callee saved regs |
147 To call a managed function compiled code must resolve it (i.e. retreive a pointer to callee's `pand…
148 prepare arguments in the registers and the stack (if necessary) and jump to callee's entrypoint.
177 * putting callee saved (if need) and param holding (if any) register values to the stack
178 * (callee saved regisers goes to Bridge Function stack frame, caller saved registers goes to the cu…
201 | Callee saved regs |
205 | Callee saved fp regs |
212 When the interpreter handles a call instruction first it should resolve the callee method.
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…
215 …er calls the function `InterpreterToCompiledCodeBridge` passing to it the resolved callee function,
224 * Jump to the callee's entrypoint.
309 * Compiled code may save any callee-saved registers on the stack. Before moving to the next stack f…
310 To do that the runtime uses information about callee-saved registers stored on the stack. This info…
394 * Saves all the callee-saved registers to the stack
405 If there is no catch handler in the current frame then the runtime restores values of callee-saved …