| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 intptr_t checked_argument_count, | 109 intptr_t checked_argument_count, |
| 110 LocationSummary* locs); | 110 LocationSummary* locs); |
| 111 | 111 |
| 112 void GenerateStaticCall(intptr_t deopt_id, | 112 void GenerateStaticCall(intptr_t deopt_id, |
| 113 intptr_t token_pos, | 113 intptr_t token_pos, |
| 114 const Function& function, | 114 const Function& function, |
| 115 intptr_t argument_count, | 115 intptr_t argument_count, |
| 116 const Array& argument_names, | 116 const Array& argument_names, |
| 117 LocationSummary* locs); | 117 LocationSummary* locs); |
| 118 | 118 |
| 119 void GenerateInlinedMathSqrt(Label* done); | |
| 120 | |
| 121 void GenerateNumberTypeCheck(Register kClassIdReg, | 119 void GenerateNumberTypeCheck(Register kClassIdReg, |
| 122 const AbstractType& type, | 120 const AbstractType& type, |
| 123 Label* is_instance_lbl, | 121 Label* is_instance_lbl, |
| 124 Label* is_not_instance_lbl); | 122 Label* is_not_instance_lbl); |
| 125 void GenerateStringTypeCheck(Register kClassIdReg, | 123 void GenerateStringTypeCheck(Register kClassIdReg, |
| 126 Label* is_instance_lbl, | 124 Label* is_instance_lbl, |
| 127 Label* is_not_instance_lbl); | 125 Label* is_not_instance_lbl); |
| 128 void GenerateListTypeCheck(Register kClassIdReg, | 126 void GenerateListTypeCheck(Register kClassIdReg, |
| 129 Label* is_instance_lbl); | 127 Label* is_instance_lbl); |
| 130 | 128 |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 // that should be used when deoptimizing we store it in this variable. | 319 // that should be used when deoptimizing we store it in this variable. |
| 322 // In future AddDeoptStub should be moved out of the instruction template. | 320 // In future AddDeoptStub should be moved out of the instruction template. |
| 323 Environment* pending_deoptimization_env_; | 321 Environment* pending_deoptimization_env_; |
| 324 | 322 |
| 325 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); | 323 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); |
| 326 }; | 324 }; |
| 327 | 325 |
| 328 } // namespace dart | 326 } // namespace dart |
| 329 | 327 |
| 330 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ | 328 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ |
| OLD | NEW |