Home | History | Annotate | Download | only in compiler

Lines Matching refs:frame_slot_count_

93   inline int GetTotalFrameSlotCount() const { return frame_slot_count_; }
114 int delta = alignment_slots - (frame_slot_count_ & (alignment_slots - 1));
116 frame_slot_count_ += delta;
122 frame_slot_count_ += count;
126 DCHECK_EQ(frame_slot_count_,
128 int frame_slot_count_before = frame_slot_count_;
135 spill_slot_count_ += frame_slot_count_ - frame_slot_count_before;
136 return frame_slot_count_ - return_slot_count_ - 1;
142 frame_slot_count_ += count;
152 frame_slot_count_ += static_cast<int>(slot_count);
153 return frame_slot_count_ - 1;
163 frame_slot_count_ =
164 RoundUp(frame_slot_count_ + new_frame_slots, align_to / kPointerSize);
165 DCHECK_LT(0, frame_slot_count_);
170 int frame_slot_count_;