Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dframe.h93 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()
[all …]
Dframe.cc17 frame_slot_count_(fixed_frame_size_in_slots), in Frame()
30 frame_slot_count_ += return_delta; in AlignFrame()
32 int delta = alignment_slots - (frame_slot_count_ & (alignment_slots - 1)); in AlignFrame()
34 frame_slot_count_ += delta; in AlignFrame()