Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/compiler/
Dframe.h24 spill_slot_count_(0), in Frame()
29 inline int GetSpillSlotCount() { return spill_slot_count_; } in GetSpillSlotCount()
58 spill_slot_count_++; in AllocateSpillSlot()
59 spill_slot_count_ |= 1; in AllocateSpillSlot()
63 return spill_slot_count_++; in AllocateSpillSlot()
68 int spill_slot_count_; variable
/external/chromium_org/v8/src/
Dlithium.cc268 : spill_slot_count_(0), in LChunk()
504 spill_slot_count_ += 2; in set_allocated_double_registers()
506 spill_slot_count_++; in set_allocated_double_registers()
Dlithium.h630 int spill_slot_count() const { return spill_slot_count_; } in spill_slot_count()
679 int spill_slot_count_; variable
/external/chromium_org/v8/src/x87/
Dlithium-x87.cc358 spill_slot_count_++; in GetNextSpillIndex()
359 spill_slot_count_ |= 1; in GetNextSpillIndex()
362 return spill_slot_count_++; in GetNextSpillIndex()
/external/chromium_org/v8/src/x64/
Dlithium-x64.cc335 spill_slot_count_++; in GetNextSpillIndex()
341 spill_slot_count_ |= 1; in GetNextSpillIndex()
343 return spill_slot_count_++; in GetNextSpillIndex()
/external/chromium_org/v8/src/ia32/
Dlithium-ia32.cc347 spill_slot_count_++; in GetNextSpillIndex()
348 spill_slot_count_ |= 1; in GetNextSpillIndex()
351 return spill_slot_count_++; in GetNextSpillIndex()
/external/chromium_org/v8/src/mips/
Dlithium-mips.cc391 if (kind == DOUBLE_REGISTERS) spill_slot_count_++; in GetNextSpillIndex()
392 return spill_slot_count_++; in GetNextSpillIndex()
/external/chromium_org/v8/src/mips64/
Dlithium-mips64.cc391 if (kind == DOUBLE_REGISTERS) spill_slot_count_++; in GetNextSpillIndex()
392 return spill_slot_count_++; in GetNextSpillIndex()
/external/chromium_org/v8/src/arm/
Dlithium-arm.cc384 if (kind == DOUBLE_REGISTERS) spill_slot_count_++; in GetNextSpillIndex()
385 return spill_slot_count_++; in GetNextSpillIndex()
/external/chromium_org/v8/src/arm64/
Dlithium-arm64.cc531 return spill_slot_count_++; in GetNextSpillIndex()