Home
last modified time | relevance | path

Searched refs:frame_slot_count_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Dframe.h106 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()
[all …]
Dframe.cc18 frame_slot_count_(fixed_frame_size_in_slots), in Frame()