| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 intptr_t deopt_id, | 146 intptr_t deopt_id, |
| 147 intptr_t token_pos, | 147 intptr_t token_pos, |
| 148 intptr_t try_index, | 148 intptr_t try_index, |
| 149 LocationSummary* locs); | 149 LocationSummary* locs); |
| 150 | 150 |
| 151 void EmitTestAndCall(const ICData& ic_data, | 151 void EmitTestAndCall(const ICData& ic_data, |
| 152 Register class_id_reg, | 152 Register class_id_reg, |
| 153 intptr_t arg_count, | 153 intptr_t arg_count, |
| 154 const Array& arg_names, | 154 const Array& arg_names, |
| 155 Label* deopt, | 155 Label* deopt, |
| 156 Label* done, // Can be NULL, which means fallthrough. | |
| 157 intptr_t deopt_id, | 156 intptr_t deopt_id, |
| 158 intptr_t token_index, | 157 intptr_t token_index, |
| 159 intptr_t try_index, | 158 intptr_t try_index, |
| 160 LocationSummary* locs); | 159 LocationSummary* locs); |
| 161 | 160 |
| 162 void EmitDoubleCompareBranch(Condition true_condition, | 161 void EmitDoubleCompareBranch(Condition true_condition, |
| 163 XmmRegister left, | 162 XmmRegister left, |
| 164 XmmRegister right, | 163 XmmRegister right, |
| 165 BranchInstr* branch); | 164 BranchInstr* branch); |
| 166 void EmitDoubleCompareBool(Condition true_condition, | 165 void EmitDoubleCompareBool(Condition true_condition, |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 // that should be used when deoptimizing we store it in this variable. | 324 // that should be used when deoptimizing we store it in this variable. |
| 326 // In future AddDeoptStub should be moved out of the instruction template. | 325 // In future AddDeoptStub should be moved out of the instruction template. |
| 327 Environment* pending_deoptimization_env_; | 326 Environment* pending_deoptimization_env_; |
| 328 | 327 |
| 329 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); | 328 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); |
| 330 }; | 329 }; |
| 331 | 330 |
| 332 } // namespace dart | 331 } // namespace dart |
| 333 | 332 |
| 334 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ | 333 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ |
| OLD | NEW |