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

  /external/v8/src/
lithium-allocator-inl.h 31 bool LAllocator::IsGapAt(int index) { return chunk_->IsGapAt(index); }
lithium.cc 385 bool LChunk::IsGapAt(int index) const {
391 while (!IsGapAt(index)) index--;
lithium-allocator.h 507 inline bool IsGapAt(int index);
lithium-allocator.cc 757 if (IsGapAt(i)) {
893 if (IsGapAt(index)) {
930 DCHECK(!IsGapAt(index));
    [all...]
lithium.h 637 bool IsGapAt(int index) const;
  /external/v8/test/cctest/compiler/
test-instruction.cc 204 CHECK_EQ(true, R.code->IsGapAt(0)); // Label
205 CHECK_EQ(true, R.code->IsGapAt(1)); // Gap
206 CHECK_EQ(false, R.code->IsGapAt(2)); // i0
207 CHECK_EQ(true, R.code->IsGapAt(3)); // Gap
208 CHECK_EQ(true, R.code->IsGapAt(4)); // Gap
209 CHECK_EQ(false, R.code->IsGapAt(5)); // g
238 CHECK_EQ(true, R.code->IsGapAt(0)); // Label
239 CHECK_EQ(true, R.code->IsGapAt(1)); // Gap
240 CHECK_EQ(false, R.code->IsGapAt(2)); // i0
241 CHECK_EQ(true, R.code->IsGapAt(3)); // Ga
    [all...]
  /external/v8/src/compiler/
register-allocator.cc 738 if (code()->IsGapAt(i)) {
749 if (!code()->IsGapAt(end)) {
780 DCHECK(code()->IsGapAt(gap_index));
    [all...]
instruction.h 856 bool IsGapAt(int index) const { return InstructionAt(index)->IsGapMoves(); }

Completed in 90 milliseconds