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

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

Issue 10665038: Remove old code generator. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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 | « runtime/vm/dart_entry.cc ('k') | runtime/vm/flow_graph_builder.cc » ('j') | no next file with comments »
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_BUILDER_H_ 5 #ifndef VM_FLOW_GRAPH_BUILDER_H_
6 #define VM_FLOW_GRAPH_BUILDER_H_ 6 #define VM_FLOW_GRAPH_BUILDER_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/ast.h" 9 #include "vm/ast.h"
10 #include "vm/growable_array.h" 10 #include "vm/growable_array.h"
11 #include "vm/intermediate_language.h" 11 #include "vm/intermediate_language.h"
12 12
13 namespace dart { 13 namespace dart {
14 14
15 class Instruction; 15 class Instruction;
16 class ParsedFunction; 16 class ParsedFunction;
17 17
18 // Build a flow graph from a parsed function's AST. 18 // Build a flow graph from a parsed function's AST.
19 class FlowGraphBuilder: public ValueObject { 19 class FlowGraphBuilder: public ValueObject {
20 public: 20 public:
21 explicit FlowGraphBuilder(const ParsedFunction& parsed_function); 21 explicit FlowGraphBuilder(const ParsedFunction& parsed_function);
22 22
23 void BuildGraph(bool for_optimized); 23 void BuildGraph(bool for_optimized, bool use_ssa);
24 24
25 const ParsedFunction& parsed_function() const { return parsed_function_; } 25 const ParsedFunction& parsed_function() const { return parsed_function_; }
26 26
27 const GrowableArray<BlockEntryInstr*>& postorder_block_entries() const { 27 const GrowableArray<BlockEntryInstr*>& postorder_block_entries() const {
28 return postorder_block_entries_; 28 return postorder_block_entries_;
29 } 29 }
30 30
31 void Bailout(const char* reason); 31 void Bailout(const char* reason);
32 32
33 void set_context_level(intptr_t value) { context_level_ = value; } 33 void set_context_level(intptr_t value) { context_level_ = value; }
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 // Output parameters. 327 // Output parameters.
328 TargetEntryInstr** true_successor_address_; 328 TargetEntryInstr** true_successor_address_;
329 TargetEntryInstr** false_successor_address_; 329 TargetEntryInstr** false_successor_address_;
330 330
331 intptr_t condition_token_pos_; 331 intptr_t condition_token_pos_;
332 }; 332 };
333 333
334 } // namespace dart 334 } // namespace dart
335 335
336 #endif // VM_FLOW_GRAPH_BUILDER_H_ 336 #endif // VM_FLOW_GRAPH_BUILDER_H_
OLDNEW
« no previous file with comments | « runtime/vm/dart_entry.cc ('k') | runtime/vm/flow_graph_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698