| 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 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 = new BindInstr(BindInstr::kUsed, use2); |
| 40 bind->RemoveInputUses(); |
| 41 EXPECT(def1->use_list() == NULL); |
| 42 } |
| 43 |
| 20 } // namespace dart | 44 } // namespace dart |
| OLD | NEW |