Home
last modified time | relevance | path

Searched refs:current_frame_slots_ (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/crankshaft/
Dlithium.h643 return current_frame_slots_ != base_frame_slots_; in HasAllocatedStackSlots()
646 return current_frame_slots_ - base_frame_slots_; in GetSpillSlotCount()
648 int GetTotalFrameSlotCount() const { return current_frame_slots_; } in GetTotalFrameSlotCount()
690 int current_frame_slots_; variable
Dlithium.cc259 current_frame_slots_(base_frame_slots_), in LChunk()
485 current_frame_slots_ += 2; in set_allocated_double_registers()
487 current_frame_slots_++; in set_allocated_double_registers()
/external/v8/src/crankshaft/ia32/
Dlithium-ia32.cc318 current_frame_slots_++; in GetNextSpillIndex()
319 current_frame_slots_ |= 1; in GetNextSpillIndex()
322 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/x87/
Dlithium-x87.cc329 current_frame_slots_++; in GetNextSpillIndex()
330 current_frame_slots_ |= 1; in GetNextSpillIndex()
333 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/x64/
Dlithium-x64.cc309 current_frame_slots_++; in GetNextSpillIndex()
315 current_frame_slots_ |= 1; in GetNextSpillIndex()
317 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/s390/
Dlithium-s390.cc321 if (kind == DOUBLE_REGISTERS) current_frame_slots_++; in GetNextSpillIndex()
322 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/mips64/
Dlithium-mips64.cc346 if (kind == DOUBLE_REGISTERS) current_frame_slots_++; in GetNextSpillIndex()
347 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/ppc/
Dlithium-ppc.cc352 if (kind == DOUBLE_REGISTERS) current_frame_slots_++; in GetNextSpillIndex()
353 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/arm/
Dlithium-arm.cc339 if (kind == DOUBLE_REGISTERS) current_frame_slots_++; in GetNextSpillIndex()
340 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/mips/
Dlithium-mips.cc346 if (kind == DOUBLE_REGISTERS) current_frame_slots_++; in GetNextSpillIndex()
347 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/arm64/
Dlithium-arm64.cc483 int LPlatformChunk::GetNextSpillIndex() { return current_frame_slots_++; } in GetNextSpillIndex()