Searched refs:IsGapAt (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/v8/src/
H A Dlithium-allocator-inl.h31 bool LAllocator::IsGapAt(int index) { return chunk_->IsGapAt(index); } function in class:v8::internal::LAllocator
H A Dlithium.cc385 bool LChunk::IsGapAt(int index) const { function in class:v8::internal::LChunk
391 while (!IsGapAt(index)) index--;
H A Dlithium-allocator.h507 inline bool IsGapAt(int index);
H A Dlithium-allocator.cc757 if (IsGapAt(i)) {
893 if (IsGapAt(index)) {
930 DCHECK(!IsGapAt(index));
1179 if (IsGapAt(index)) {
1532 if (IsGapAt(next_pos.InstructionIndex())) {
H A Dlithium.h637 bool IsGapAt(int index) const;
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-instruction.cc204 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(
[all...]
/external/chromium_org/v8/src/compiler/
H A Dregister-allocator.cc738 if (code()->IsGapAt(i)) {
749 if (!code()->IsGapAt(end)) {
780 DCHECK(code()->IsGapAt(gap_index));
1199 if (code()->IsGapAt(index)) {
1571 if (code()->IsGapAt(next_pos.InstructionIndex())) {
H A Dinstruction.h856 bool IsGapAt(int index) const { return InstructionAt(index)->IsGapMoves(); } function in class:v8::internal::compiler::FINAL

Completed in 154 milliseconds