Lines Matching refs:frame_slot_count_
93 inline int GetTotalFrameSlotCount() const { return frame_slot_count_; } in GetTotalFrameSlotCount()
114 int delta = alignment_slots - (frame_slot_count_ & (alignment_slots - 1));
116 frame_slot_count_ += delta;
122 frame_slot_count_ += count; in AllocateSavedCalleeRegisterSlots()
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; in EnsureReturnSlots()
152 frame_slot_count_ += static_cast<int>(slot_count); in ReserveSpillSlots()
153 return frame_slot_count_ - 1; in ReserveSpillSlots()
163 frame_slot_count_ = in AllocateAlignedFrameSlots()
164 RoundUp(frame_slot_count_ + new_frame_slots, align_to / kPointerSize); in AllocateAlignedFrameSlots()
165 DCHECK_LT(0, frame_slot_count_); in AllocateAlignedFrameSlots()
170 int frame_slot_count_; variable