Home
last modified time | relevance | path

Searched refs:spill_slot_count_ (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/compiler/
Dframe.h115 inline int GetSpillSlotCount() const { return spill_slot_count_; } in GetSpillSlotCount()
119 DCHECK_EQ(0, spill_slot_count_); in SetElidedFrameSizeInSlots()
156 spill_slot_count_ += (frame_slot_count_ - frame_slot_count_before); in AllocateSpillSlot()
162 DCHECK_EQ(0, spill_slot_count_); in ReserveSpillSlots()
164 spill_slot_count_ += static_cast<int>(slot_count); in ReserveSpillSlots()
188 int spill_slot_count_; variable
Dframe.cc20 spill_slot_count_(0), in Frame()
/external/v8/src/crankshaft/
Dlithium.cc264 : spill_slot_count_(0), in LChunk()
498 spill_slot_count_ += 2; in set_allocated_double_registers()
500 spill_slot_count_++; in set_allocated_double_registers()
Dlithium.h641 int spill_slot_count() const { return spill_slot_count_; } in spill_slot_count()
690 int spill_slot_count_; variable
/external/v8/src/crankshaft/x64/
Dlithium-x64.cc337 spill_slot_count_++; in GetNextSpillIndex()
343 spill_slot_count_ |= 1; in GetNextSpillIndex()
345 return spill_slot_count_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/x87/
Dlithium-x87.cc358 spill_slot_count_++; in GetNextSpillIndex()
359 spill_slot_count_ |= 1; in GetNextSpillIndex()
362 return spill_slot_count_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/ia32/
Dlithium-ia32.cc347 spill_slot_count_++; in GetNextSpillIndex()
348 spill_slot_count_ |= 1; in GetNextSpillIndex()
351 return spill_slot_count_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/mips64/
Dlithium-mips64.cc393 if (kind == DOUBLE_REGISTERS) spill_slot_count_++; in GetNextSpillIndex()
394 return spill_slot_count_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/mips/
Dlithium-mips.cc393 if (kind == DOUBLE_REGISTERS) spill_slot_count_++; in GetNextSpillIndex()
394 return spill_slot_count_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/ppc/
Dlithium-ppc.cc399 if (kind == DOUBLE_REGISTERS) spill_slot_count_++; in GetNextSpillIndex()
400 return spill_slot_count_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/arm/
Dlithium-arm.cc386 if (kind == DOUBLE_REGISTERS) spill_slot_count_++; in GetNextSpillIndex()
387 return spill_slot_count_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/arm64/
Dlithium-arm64.cc532 return spill_slot_count_++; in GetNextSpillIndex()