| 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/flow_graph.h" |
| 5 #include "vm/intermediate_language.h" | 6 #include "vm/intermediate_language.h" |
| 6 #include "vm/unit_test.h" | 7 #include "vm/unit_test.h" |
| 7 | 8 |
| 8 namespace dart { | 9 namespace dart { |
| 9 | 10 |
| 10 TEST_CASE(InstructionTests) { | 11 TEST_CASE(InstructionTests) { |
| 11 TargetEntryInstr* target_instr = new TargetEntryInstr(); | 12 TargetEntryInstr* target_instr = new TargetEntryInstr(); |
| 12 EXPECT(target_instr->IsBlockEntry()); | 13 EXPECT(target_instr->IsBlockEntry()); |
| 13 EXPECT(!target_instr->IsBind()); | 14 EXPECT(!target_instr->IsBind()); |
| 14 BindInstr* bind_instr = | 15 BindInstr* bind_instr = |
| 15 new BindInstr(BindInstr::kUnused, new CurrentContextComp()); | 16 new BindInstr(BindInstr::kUnused, new CurrentContextComp()); |
| 16 EXPECT(bind_instr->IsBind()); | 17 EXPECT(bind_instr->IsBind()); |
| 17 EXPECT(!bind_instr->IsBlockEntry()); | 18 EXPECT(!bind_instr->IsBlockEntry()); |
| 18 } | 19 } |
| 19 | 20 |
| 20 TEST_CASE(DefUseTests) { | |
| 21 Definition* def1 = new PhiInstr(0); | |
| 22 Definition* def2 = new PhiInstr(0); | |
| 23 EXPECT(def1->use_list() == NULL); | |
| 24 EXPECT(def2->use_list() == NULL); | |
| 25 UseVal* use1 = new UseVal(def1); | |
| 26 EXPECT(def1->use_list() == use1); | |
| 27 EXPECT(def1->use_list()->next_use() == NULL); | |
| 28 UseVal* use2 = new UseVal(def1); | |
| 29 EXPECT(def1->use_list()->next_use()->next_use() == NULL); | |
| 30 UseVal* use3 = new UseVal(def1); | |
| 31 EXPECT(def1->use_list()->next_use()->next_use()->next_use() == NULL); | |
| 32 use1->RemoveFromUseList(); | |
| 33 EXPECT(def1->use_list()->next_use()->next_use() == NULL); | |
| 34 use3->SetDefinition(def2); | |
| 35 EXPECT(def1->use_list() == use2); | |
| 36 EXPECT(def1->use_list()->next_use() == NULL); | |
| 37 EXPECT(def2->use_list() == use3); | |
| 38 EXPECT(def2->use_list()->next_use() == NULL); | |
| 39 BindInstr* bind = | |
| 40 new BindInstr(BindInstr::kUsed, new BooleanNegateComp(use2)); | |
| 41 bind->RemoveInputUses(); | |
| 42 EXPECT(def1->use_list() == NULL); | |
| 43 // Test replacing with a definition without uses. | |
| 44 UseVal* use4 = new UseVal(def2); | |
| 45 def2->ReplaceUsesWith(def1); | |
| 46 EXPECT(def1->use_list() == use4); | |
| 47 EXPECT(def2->use_list() == NULL); | |
| 48 EXPECT(use4->definition() == def1); | |
| 49 } | |
| 50 | 21 |
| 51 TEST_CASE(OptimizationTests) { | 22 TEST_CASE(OptimizationTests) { |
| 52 Definition* def1 = new PhiInstr(0); | 23 Definition* def1 = new PhiInstr(0); |
| 53 Definition* def2 = new PhiInstr(0); | 24 Definition* def2 = new PhiInstr(0); |
| 54 UseVal* use1a = new UseVal(def1); | 25 UseVal* use1a = new UseVal(def1); |
| 55 UseVal* use1b = new UseVal(def1); | 26 UseVal* use1b = new UseVal(def1); |
| 56 EXPECT(use1a->Equals(use1b)); | 27 EXPECT(use1a->Equals(use1b)); |
| 57 UseVal* use2 = new UseVal(def2); | 28 UseVal* use2 = new UseVal(def2); |
| 58 EXPECT(!use2->Equals(use1a)); | 29 EXPECT(!use2->Equals(use1a)); |
| 59 | 30 |
| 60 ConstantVal* c1 = new ConstantVal(Bool::ZoneHandle(Bool::True())); | 31 ConstantVal* c1 = new ConstantVal(Bool::ZoneHandle(Bool::True())); |
| 61 ConstantVal* c2 = new ConstantVal(Bool::ZoneHandle(Bool::True())); | 32 ConstantVal* c2 = new ConstantVal(Bool::ZoneHandle(Bool::True())); |
| 62 EXPECT(c1->Equals(c2)); | 33 EXPECT(c1->Equals(c2)); |
| 63 ConstantVal* c3 = new ConstantVal(Object::ZoneHandle()); | 34 ConstantVal* c3 = new ConstantVal(Object::ZoneHandle()); |
| 64 ConstantVal* c4 = new ConstantVal(Object::ZoneHandle()); | 35 ConstantVal* c4 = new ConstantVal(Object::ZoneHandle()); |
| 65 EXPECT(c3->Equals(c4)); | 36 EXPECT(c3->Equals(c4)); |
| 66 EXPECT(!c3->Equals(c1)); | 37 EXPECT(!c3->Equals(c1)); |
| 67 } | 38 } |
| 68 | 39 |
| 69 } // namespace dart | 40 } // namespace dart |
| OLD | NEW |