HomeSort by relevance Sort by last modified time
    Searched refs:spill_slot_count_ (Results 1 - 12 of 12) sorted by null

  /external/v8/src/compiler/
frame.h 47 // The callee-saved frame region below that starts at 4+spill_slot_count_.
115 inline int GetSpillSlotCount() const { return spill_slot_count_; }
119 DCHECK_EQ(0, spill_slot_count_);
156 spill_slot_count_ += (frame_slot_count_ - frame_slot_count_before);
162 DCHECK_EQ(0, spill_slot_count_);
164 spill_slot_count_ += static_cast<int>(slot_count);
188 int spill_slot_count_; member in class:v8::internal::compiler::Frame
frame.cc 20 spill_slot_count_(0),
  /external/v8/src/crankshaft/
lithium.cc 264 : spill_slot_count_(0),
498 spill_slot_count_ += 2;
500 spill_slot_count_++;
lithium.h 641 int spill_slot_count() const { return spill_slot_count_; }
690 int spill_slot_count_; member in class:v8::internal::LChunk
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 347 spill_slot_count_++;
348 spill_slot_count_ |= 1;
351 return spill_slot_count_++;
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.cc 337 spill_slot_count_++;
343 spill_slot_count_ |= 1;
345 return spill_slot_count_++;
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.cc 358 spill_slot_count_++;
359 spill_slot_count_ |= 1;
362 return spill_slot_count_++;
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.cc 386 if (kind == DOUBLE_REGISTERS) spill_slot_count_++;
387 return spill_slot_count_++;
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.cc 393 if (kind == DOUBLE_REGISTERS) spill_slot_count_++;
394 return spill_slot_count_++;
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.cc 393 if (kind == DOUBLE_REGISTERS) spill_slot_count_++;
394 return spill_slot_count_++;
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.cc 399 if (kind == DOUBLE_REGISTERS) spill_slot_count_++;
400 return spill_slot_count_++;
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 532 return spill_slot_count_++;
    [all...]

Completed in 391 milliseconds