Home | History | Annotate | Download | only in crankshaft

Lines Matching refs:outer

532   HEnvironment(HEnvironment* outer,
540 return outer()->frame_type() == ARGUMENTS_ADAPTOR ? outer() : this;
553 HEnvironment* outer() const { return outer_; }
636 // environment is the outer environment but the top expression stack
644 HEnvironment* outer = outer_;
645 while (outer->frame_type() != JS_FUNCTION &&
646 outer->frame_type() != TAIL_CALLER_FUNCTION) {
647 outer = outer->outer_;
649 if (drop_extra) outer->Drop(1);
650 if (outer->frame_type() == TAIL_CALLER_FUNCTION) {
651 outer->ClearTailCallerMark();
653 return outer;
697 HEnvironment(HEnvironment* outer,
705 HEnvironment* CreateStubEnvironment(HEnvironment* outer,
899 FunctionState* outer() { return outer_; }