Index: test/cctest/compiler/test-instruction.cc |
diff --git a/test/cctest/compiler/test-instruction.cc b/test/cctest/compiler/test-instruction.cc |
index 294812fdfb7161fb8498b5349766ae63e0e6d74a..f1c9bcdb4afed0b3942e9a05b531e6f6c9fd2f14 100644 |
--- a/test/cctest/compiler/test-instruction.cc |
+++ b/test/cctest/compiler/test-instruction.cc |
@@ -214,14 +214,10 @@ TEST(InstructionIsGapAt) { |
R.code->AddInstruction(g); |
R.code->EndBlock(b0->GetRpoNumber()); |
- CHECK_EQ(true, R.code->InstructionAt(0)->IsBlockStart()); |
- |
- CHECK_EQ(true, R.code->IsGapAt(0)); // Label |
- CHECK_EQ(true, R.code->IsGapAt(1)); // Gap |
- CHECK_EQ(false, R.code->IsGapAt(2)); // i0 |
- CHECK_EQ(true, R.code->IsGapAt(3)); // Gap |
- CHECK_EQ(true, R.code->IsGapAt(4)); // Gap |
- CHECK_EQ(false, R.code->IsGapAt(5)); // g |
+ CHECK(R.code->instructions().size() == 4); |
+ for (size_t i = 0; i < R.code->instructions().size(); ++i) { |
+ CHECK_EQ(i % 2 == 0, R.code->instructions()[i]->IsGapMoves()); |
+ } |
} |
@@ -248,23 +244,10 @@ TEST(InstructionIsGapAt2) { |
R.code->AddInstruction(g1); |
R.code->EndBlock(b1->GetRpoNumber()); |
- CHECK_EQ(true, R.code->InstructionAt(0)->IsBlockStart()); |
- |
- CHECK_EQ(true, R.code->IsGapAt(0)); // Label |
- CHECK_EQ(true, R.code->IsGapAt(1)); // Gap |
- CHECK_EQ(false, R.code->IsGapAt(2)); // i0 |
- CHECK_EQ(true, R.code->IsGapAt(3)); // Gap |
- CHECK_EQ(true, R.code->IsGapAt(4)); // Gap |
- CHECK_EQ(false, R.code->IsGapAt(5)); // g |
- |
- CHECK_EQ(true, R.code->InstructionAt(6)->IsBlockStart()); |
- |
- CHECK_EQ(true, R.code->IsGapAt(6)); // Label |
- CHECK_EQ(true, R.code->IsGapAt(7)); // Gap |
- CHECK_EQ(false, R.code->IsGapAt(8)); // i1 |
- CHECK_EQ(true, R.code->IsGapAt(9)); // Gap |
- CHECK_EQ(true, R.code->IsGapAt(10)); // Gap |
- CHECK_EQ(false, R.code->IsGapAt(11)); // g1 |
+ CHECK(R.code->instructions().size() == 8); |
+ for (size_t i = 0; i < R.code->instructions().size(); ++i) { |
+ CHECK_EQ(i % 2 == 0, R.code->instructions()[i]->IsGapMoves()); |
+ } |
} |
@@ -282,16 +265,12 @@ TEST(InstructionAddGapMove) { |
R.code->AddInstruction(g); |
R.code->EndBlock(b0->GetRpoNumber()); |
- CHECK_EQ(true, R.code->InstructionAt(0)->IsBlockStart()); |
- |
- CHECK_EQ(true, R.code->IsGapAt(0)); // Label |
- CHECK_EQ(true, R.code->IsGapAt(1)); // Gap |
- CHECK_EQ(false, R.code->IsGapAt(2)); // i0 |
- CHECK_EQ(true, R.code->IsGapAt(3)); // Gap |
- CHECK_EQ(true, R.code->IsGapAt(4)); // Gap |
- CHECK_EQ(false, R.code->IsGapAt(5)); // g |
+ CHECK(R.code->instructions().size() == 4); |
+ for (size_t i = 0; i < R.code->instructions().size(); ++i) { |
+ CHECK_EQ(i % 2 == 0, R.code->instructions()[i]->IsGapMoves()); |
+ } |
- int indexes[] = {0, 1, 3, 4, -1}; |
+ int indexes[] = {0, 2, -1}; |
for (int i = 0; indexes[i] >= 0; i++) { |
int index = indexes[i]; |