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

Side by Side Diff: runtime/vm/flow_graph_optimizer.h

Issue 10830339: Propagate class ids using existing type propagation framework. (Closed) Base URL: http://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
« no previous file with comments | « no previous file | runtime/vm/flow_graph_optimizer.cc » ('j') | runtime/vm/flow_graph_optimizer.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef VM_FLOW_GRAPH_OPTIMIZER_H_ 5 #ifndef VM_FLOW_GRAPH_OPTIMIZER_H_
6 #define VM_FLOW_GRAPH_OPTIMIZER_H_ 6 #define VM_FLOW_GRAPH_OPTIMIZER_H_
7 7
8 #include "vm/intermediate_language.h" 8 #include "vm/intermediate_language.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 virtual void VisitAssertAssignable(AssertAssignableComp* comp, 88 virtual void VisitAssertAssignable(AssertAssignableComp* comp,
89 BindInstr* instr); 89 BindInstr* instr);
90 virtual void VisitAssertBoolean(AssertBooleanComp* comp, 90 virtual void VisitAssertBoolean(AssertBooleanComp* comp,
91 BindInstr* instr); 91 BindInstr* instr);
92 92
93 virtual void VisitGraphEntry(GraphEntryInstr* graph_entry); 93 virtual void VisitGraphEntry(GraphEntryInstr* graph_entry);
94 virtual void VisitJoinEntry(JoinEntryInstr* join_entry); 94 virtual void VisitJoinEntry(JoinEntryInstr* join_entry);
95 virtual void VisitBind(BindInstr* bind); 95 virtual void VisitBind(BindInstr* bind);
96 virtual void VisitPhi(PhiInstr* phi); 96 virtual void VisitPhi(PhiInstr* phi);
97 virtual void VisitParameter(ParameterInstr* param); 97 virtual void VisitParameter(ParameterInstr* param);
98 virtual void VisitPushArgument(PushArgumentInstr* bind);
98 99
99 private: 100 private:
100 const ParsedFunction& parsed_function_; 101 const ParsedFunction& parsed_function_;
101 bool still_changing_; 102 bool still_changing_;
102 DISALLOW_COPY_AND_ASSIGN(FlowGraphTypePropagator); 103 DISALLOW_COPY_AND_ASSIGN(FlowGraphTypePropagator);
103 }; 104 };
104 105
105 } // namespace dart 106 } // namespace dart
106 107
107 #endif // VM_FLOW_GRAPH_OPTIMIZER_H_ 108 #endif // VM_FLOW_GRAPH_OPTIMIZER_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/flow_graph_optimizer.cc » ('j') | runtime/vm/flow_graph_optimizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698