| 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_COMPILER_X64_H_ | 5 #ifndef VM_FLOW_GRAPH_COMPILER_X64_H_ |
| 6 #define VM_FLOW_GRAPH_COMPILER_X64_H_ | 6 #define VM_FLOW_GRAPH_COMPILER_X64_H_ |
| 7 | 7 |
| 8 #ifndef VM_FLOW_GRAPH_COMPILER_H_ | 8 #ifndef VM_FLOW_GRAPH_COMPILER_H_ |
| 9 #error Include flow_graph_compiler.h instead of flow_graph_compiler_x64.h. | 9 #error Include flow_graph_compiler.h instead of flow_graph_compiler_x64.h. |
| 10 #endif | 10 #endif |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 | 194 |
| 195 Assembler* assembler_; | 195 Assembler* assembler_; |
| 196 const ParsedFunction& parsed_function_; | 196 const ParsedFunction& parsed_function_; |
| 197 | 197 |
| 198 // Compiler specific per-block state. Indexed by postorder block number | 198 // Compiler specific per-block state. Indexed by postorder block number |
| 199 // for convenience. This is not the block's index in the block order, | 199 // for convenience. This is not the block's index in the block order, |
| 200 // which is reverse postorder. | 200 // which is reverse postorder. |
| 201 GrowableArray<BlockInfo*> block_info_; | 201 GrowableArray<BlockInfo*> block_info_; |
| 202 BlockEntryInstr* current_block_; | 202 BlockEntryInstr* current_block_; |
| 203 DescriptorList* pc_descriptors_list_; | 203 DescriptorList* pc_descriptors_list_; |
| 204 StackmapBuilder* stackmap_builder_; |
| 204 ExceptionHandlerList* exception_handlers_list_; | 205 ExceptionHandlerList* exception_handlers_list_; |
| 205 GrowableArray<DeoptimizationStub*> deopt_stubs_; | 206 GrowableArray<DeoptimizationStub*> deopt_stubs_; |
| 206 const bool is_optimizing_; | 207 const bool is_optimizing_; |
| 207 | 208 |
| 208 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); | 209 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); |
| 209 }; | 210 }; |
| 210 | 211 |
| 211 } // namespace dart | 212 } // namespace dart |
| 212 | 213 |
| 213 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ | 214 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ |
| OLD | NEW |