Lines Matching full:frame
101 Address c_entry_fp_; // the frame pointer of the top c entry frame
104 Address js_entry_sp_; // the stack pointer of the bottom js entry frame
338 // is, the global context of the top-most JavaScript frame.
403 // If there is no JS frame under the current C frame, use the value 0.
405 js_sp_ = it.done() ? 0 : it.frame()->sp();
416 // Returns true if this save context is below a given JavaScript frame.
417 bool below(JavaScriptFrame* frame) {
418 return (js_sp_ == 0) || (frame->sp() < js_sp_);
427 Address js_sp_; // The top JS frame's sp when saving context.