Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(566)

Side by Side Diff: runtime/vm/intermediate_language_test.cc

Issue 10826230: Added def-use chain to the intermediate language. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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->def_use_chain() == NULL);
24 EXPECT(def2->def_use_chain() == NULL);
25 UseVal* use1 = new UseVal(def1);
26 EXPECT(def1->def_use_chain() == use1);
27 EXPECT(def1->def_use_chain()->next_use() == NULL);
28 UseVal* use2 = new UseVal(def1);
29 EXPECT(def1->def_use_chain()->next_use()->next_use() == NULL);
30 UseVal* use3 = new UseVal(def1);
31 EXPECT(def1->def_use_chain()->next_use()->next_use()->next_use() == NULL);
32 use1->RemoveFromDefUseChain();
33 EXPECT(def1->def_use_chain()->next_use()->next_use() == NULL);
34 use3->set_definition(def2);
35 EXPECT(def1->def_use_chain() == use2);
36 EXPECT(def1->def_use_chain()->next_use() == NULL);
37 EXPECT(def2->def_use_chain() == use3);
38 EXPECT(def2->def_use_chain()->next_use() == NULL);
39 BindInstr* bind = new BindInstr(BindInstr::kUsed, use2);
40 bind->RemoveFromDefUseChain();
41 EXPECT(def1->def_use_chain() == NULL);
42 }
43
20 } // namespace dart 44 } // namespace dart
OLDNEW
« runtime/vm/intermediate_language.h ('K') | « runtime/vm/intermediate_language.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698