• Home
  • Raw
  • Download

Lines Matching full:boundary

174 The Bridge Function sets up the Boundary Frame and performs the call to the actual runtime function.
219 * Build a boundary stack frame.
227 * Drop the boundary stack frame.
229 `InterpreterToCompiledCodeBridge`'s boundary stack frame is necessary to link the interpreter's fra…
247 The structure of boundary frame is the same as a stack frame of compiled code.
255 * Creates a boundary stack frame which contains room for interpreter frame.
259 * Drop the boundary stack frame.
262 `CompiledCodeToInterpreterBridge`'s boundary stack frame is necessary to link the compiled code's f…
281 The structure of boundary frame is the same as a stack frame of compiled code.
284 The field `panda::Frame::prev_` must point to the boundary frame pointer.
298 …prev_` field | Interpreter stack frame or COMPILED_CODE_TO_INTERPRETER boundary frame |
299 | INTERPRETER_TO_COMPILED_CODE_BRIDGE boundary stack frame | Read `pointer to the interpreter frame…
300 | COMPILED_CODE_TO_INTERPRETER_BRIDGE boundary stack frame | Read `frame pointer` from the stack | …
301 … `frame pointer` | Compiled code stack frame or INTERPRETER_TO_COMPILED_CODE_BRIDGE boundary frame|
304 crossing the boundary frames.
379 …nda::Frame::prev_` which must point to `COMPILED_CODE_TO_INTERPRETER_BRIDGE` boundary stack frame.
382 `INTERPRETER_TO_COMPILED_CODE_BRIDGE` boundary stack frame. To reach `foo`'s interpreter stack fram…
400 If a INTERPRETER_TO_COMPILED_CODE_BRIDGE boundary stack frame is reached the runtime returns to the…
402 1. Determine the return address to the boundary frame. The return address is stored in the followin…
403 2. Set the pointer to the boundary frame into stack pointer, assign the return address determined a…