Lines Matching refs:frame_slot_count_
106 inline int GetTotalFrameSlotCount() const { return frame_slot_count_; } in GetTotalFrameSlotCount()
120 frame_slot_count_ = slots; in SetElidedFrameSizeInSlots()
140 int delta = frame_slot_count_ & 1; in AlignSavedCalleeRegisterSlots()
141 frame_slot_count_ += delta; in AlignSavedCalleeRegisterSlots()
147 frame_slot_count_ += count; in AllocateSavedCalleeRegisterSlots()
154 int frame_slot_count_before = frame_slot_count_; in AllocateSpillSlot()
156 spill_slot_count_ += (frame_slot_count_ - frame_slot_count_before); in AllocateSpillSlot()
165 frame_slot_count_ += static_cast<int>(slot_count); in ReserveSpillSlots()
166 return frame_slot_count_ - 1; in ReserveSpillSlots()
178 frame_slot_count_++; in AllocateAlignedFrameSlot()
179 frame_slot_count_ |= 1; in AllocateAlignedFrameSlot()
181 return frame_slot_count_++; in AllocateAlignedFrameSlot()
186 int frame_slot_count_; variable