Lines Matching full:previous
87 …class. The class has fields to store virtual registers and a pointer to the previous stack frame.
88 … linked list. The field `panda::Frame::prev_` contains a pointer to the previous interpreter (or c…
136 - frame pointer - pointer to the previous frame. The value of `frame pointer` register at the momen…
249 Frame pointer points to the previous interpreter frame.
283 Frame pointer points to the previous frame in compiled code stack frame.
296 …ent stack frame | How to get a pointer to the next stack frame | Kind of the previous stack frame |
303 Thus the runtime can traverse all the managed stack frames moving from one frame to the previous fr…
379 To go to the previous frame the runtime reads the field `panda::Frame::prev_` which must point to `…
396 …he corresponding exception handler by going from one stack frame to the previous and making checks…
403 …y frame into stack pointer, assign the return address determined at the previous step to program c…
405 …e then the runtime restores values of callee-saved registers and moves to the previous stack frame.