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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 void EmitTestAndCall(const ICData& ic_data, | 138 void EmitTestAndCall(const ICData& ic_data, |
139 Register class_id_reg, | 139 Register class_id_reg, |
140 intptr_t arg_count, | 140 intptr_t arg_count, |
141 const Array& arg_names, | 141 const Array& arg_names, |
142 Label* deopt, | 142 Label* deopt, |
143 Label* done, | 143 Label* done, |
144 intptr_t cid, | 144 intptr_t cid, |
145 intptr_t token_index, | 145 intptr_t token_index, |
146 intptr_t try_index); | 146 intptr_t try_index); |
147 | 147 |
| 148 void EmitDoubleCompareBranch(Condition true_condition, |
| 149 XmmRegister left, |
| 150 XmmRegister right, |
| 151 BranchInstr* branch); |
| 152 void EmitDoubleCompareBool(Condition true_condition, |
| 153 XmmRegister left, |
| 154 XmmRegister right, |
| 155 Register result); |
| 156 |
148 intptr_t StackSize() const; | 157 intptr_t StackSize() const; |
149 | 158 |
150 // Returns assembler label associated with the given block entry. | 159 // Returns assembler label associated with the given block entry. |
151 Label* GetBlockLabel(BlockEntryInstr* block_entry) const; | 160 Label* GetBlockLabel(BlockEntryInstr* block_entry) const; |
152 | 161 |
153 // Returns true if the next block after current in the current block order | 162 // Returns true if the next block after current in the current block order |
154 // is the given block. | 163 // is the given block. |
155 bool IsNextBlock(TargetEntryInstr* block_entry) const; | 164 bool IsNextBlock(TargetEntryInstr* block_entry) const; |
156 | 165 |
157 void AddExceptionHandler(intptr_t try_index, intptr_t pc_offset); | 166 void AddExceptionHandler(intptr_t try_index, intptr_t pc_offset); |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 // that should be used when deoptimizing we store it in this variable. | 307 // that should be used when deoptimizing we store it in this variable. |
299 // In future AddDeoptStub should be moved out of the instruction template. | 308 // In future AddDeoptStub should be moved out of the instruction template. |
300 Environment* pending_deoptimization_env_; | 309 Environment* pending_deoptimization_env_; |
301 | 310 |
302 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); | 311 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); |
303 }; | 312 }; |
304 | 313 |
305 } // namespace dart | 314 } // namespace dart |
306 | 315 |
307 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ | 316 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ |
OLD | NEW |