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()
698 int current_frame_slots_; variable
Dlithium.cc258 current_frame_slots_(base_frame_slots_), in LChunk()
490 current_frame_slots_ += 2; in set_allocated_double_registers()
492 current_frame_slots_++; in set_allocated_double_registers()
/external/v8/src/crankshaft/ia32/
Dlithium-ia32.cc326 current_frame_slots_++; in GetNextSpillIndex()
327 current_frame_slots_ |= 1; in GetNextSpillIndex()
330 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/x64/
Dlithium-x64.cc316 current_frame_slots_++; in GetNextSpillIndex()
322 current_frame_slots_ |= 1; in GetNextSpillIndex()
324 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/x87/
Dlithium-x87.cc337 current_frame_slots_++; in GetNextSpillIndex()
338 current_frame_slots_ |= 1; in GetNextSpillIndex()
341 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/arm/
Dlithium-arm.cc365 if (kind == DOUBLE_REGISTERS) current_frame_slots_++; in GetNextSpillIndex()
366 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/ppc/
Dlithium-ppc.cc378 if (kind == DOUBLE_REGISTERS) current_frame_slots_++; in GetNextSpillIndex()
379 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/s390/
Dlithium-s390.cc343 if (kind == DOUBLE_REGISTERS) current_frame_slots_++; in GetNextSpillIndex()
344 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/mips64/
Dlithium-mips64.cc372 if (kind == DOUBLE_REGISTERS) current_frame_slots_++; in GetNextSpillIndex()
373 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/mips/
Dlithium-mips.cc372 if (kind == DOUBLE_REGISTERS) current_frame_slots_++; in GetNextSpillIndex()
373 return current_frame_slots_++; in GetNextSpillIndex()
/external/v8/src/crankshaft/arm64/
Dlithium-arm64.cc509 int LPlatformChunk::GetNextSpillIndex() { return current_frame_slots_++; } in GetNextSpillIndex()