| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "vm/intermediate_language.h" | 5 #include "vm/intermediate_language.h" |
| 6 #include "vm/unit_test.h" | 6 #include "vm/unit_test.h" |
| 7 | 7 |
| 8 namespace dart { | 8 namespace dart { |
| 9 | 9 |
| 10 TEST_CASE(InstructionTests) { | 10 TEST_CASE(InstructionTests) { |
| 11 TargetEntryInstr* target_instr = new TargetEntryInstr(); | 11 TargetEntryInstr* target_instr = new TargetEntryInstr(); |
| 12 EXPECT(target_instr->IsBlockEntry()); | 12 EXPECT(target_instr->IsBlockEntry()); |
| 13 EXPECT(!target_instr->IsBind()); | 13 EXPECT(!target_instr->IsBind()); |
| 14 BindInstr* bind_instr = | 14 BindInstr* bind_instr = |
| 15 new BindInstr(BindInstr::kUnused, new CurrentContextComp()); | 15 new BindInstr(BindInstr::kUnused, new CurrentContextComp()); |
| 16 EXPECT(bind_instr->IsBind()); | 16 EXPECT(bind_instr->IsBind()); |
| 17 EXPECT(!bind_instr->IsBlockEntry()); | 17 EXPECT(!bind_instr->IsBlockEntry()); |
| 18 } | 18 } |
| 19 | 19 |
| 20 | 20 |
| 21 TEST_CASE(OptimizationTests) { | 21 TEST_CASE(OptimizationTests) { |
| 22 Definition* def1 = new PhiInstr(0); | 22 Definition* def1 = new PhiInstr(0); |
| 23 Definition* def2 = new PhiInstr(0); | 23 Definition* def2 = new PhiInstr(0); |
| 24 UseVal* use1a = new UseVal(def1); | 24 UseVal* use1a = new UseVal(def1); |
| 25 UseVal* use1b = new UseVal(def1); | 25 UseVal* use1b = new UseVal(def1); |
| 26 EXPECT(use1a->Equals(use1b)); | 26 EXPECT(use1a->Equals(use1b)); |
| 27 UseVal* use2 = new UseVal(def2); | 27 UseVal* use2 = new UseVal(def2); |
| 28 EXPECT(!use2->Equals(use1a)); | 28 EXPECT(!use2->Equals(use1a)); |
| 29 | 29 |
| 30 ConstantVal* c1 = new ConstantVal(Bool::ZoneHandle(Bool::True())); | 30 ConstantComp* c1 = new ConstantComp(Bool::ZoneHandle(Bool::True())); |
| 31 ConstantVal* c2 = new ConstantVal(Bool::ZoneHandle(Bool::True())); | 31 ConstantComp* c2 = new ConstantComp(Bool::ZoneHandle(Bool::True())); |
| 32 EXPECT(c1->Equals(c2)); | 32 EXPECT(c1->Equals(c2)); |
| 33 ConstantVal* c3 = new ConstantVal(Object::ZoneHandle()); | 33 ConstantComp* c3 = new ConstantComp(Object::ZoneHandle()); |
| 34 ConstantVal* c4 = new ConstantVal(Object::ZoneHandle()); | 34 ConstantComp* c4 = new ConstantComp(Object::ZoneHandle()); |
| 35 EXPECT(c3->Equals(c4)); | 35 EXPECT(c3->Equals(c4)); |
| 36 EXPECT(!c3->Equals(c1)); | 36 EXPECT(!c3->Equals(c1)); |
| 37 } | 37 } |
| 38 | 38 |
| 39 } // namespace dart | 39 } // namespace dart |
| OLD | NEW |