| 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 #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(); | 23 void BuildGraph(bool for_optimized); |
| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 // Output parameters. | 285 // Output parameters. |
| 286 TargetEntryInstr** true_successor_address_; | 286 TargetEntryInstr** true_successor_address_; |
| 287 TargetEntryInstr** false_successor_address_; | 287 TargetEntryInstr** false_successor_address_; |
| 288 | 288 |
| 289 intptr_t condition_token_index_; | 289 intptr_t condition_token_index_; |
| 290 }; | 290 }; |
| 291 | 291 |
| 292 } // namespace dart | 292 } // namespace dart |
| 293 | 293 |
| 294 #endif // VM_FLOW_GRAPH_BUILDER_H_ | 294 #endif // VM_FLOW_GRAPH_BUILDER_H_ |
| OLD | NEW |