| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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_RANGE_ANALYSIS_H_ | 5 #ifndef RUNTIME_VM_FLOW_GRAPH_RANGE_ANALYSIS_H_ |
| 6 #define VM_FLOW_GRAPH_RANGE_ANALYSIS_H_ | 6 #define RUNTIME_VM_FLOW_GRAPH_RANGE_ANALYSIS_H_ |
| 7 | 7 |
| 8 #include "vm/flow_graph.h" | 8 #include "vm/flow_graph.h" |
| 9 #include "vm/intermediate_language.h" | 9 #include "vm/intermediate_language.h" |
| 10 | 10 |
| 11 namespace dart { | 11 namespace dart { |
| 12 | 12 |
| 13 class RangeBoundary : public ValueObject { | 13 class RangeBoundary : public ValueObject { |
| 14 public: | 14 public: |
| 15 enum Kind { | 15 enum Kind { |
| 16 kUnknown, | 16 kUnknown, |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 GrowableArray<Definition*> potential_uint32_defs_; | 656 GrowableArray<Definition*> potential_uint32_defs_; |
| 657 BitVector* selected_uint32_defs_; | 657 BitVector* selected_uint32_defs_; |
| 658 | 658 |
| 659 FlowGraph* flow_graph_; | 659 FlowGraph* flow_graph_; |
| 660 Zone* zone_; | 660 Zone* zone_; |
| 661 }; | 661 }; |
| 662 | 662 |
| 663 | 663 |
| 664 } // namespace dart | 664 } // namespace dart |
| 665 | 665 |
| 666 #endif // VM_FLOW_GRAPH_RANGE_ANALYSIS_H_ | 666 #endif // RUNTIME_VM_FLOW_GRAPH_RANGE_ANALYSIS_H_ |
| OLD | NEW |