| 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_IA32_H_ | 5 #ifndef VM_FLOW_GRAPH_COMPILER_IA32_H_ |
| 6 #define VM_FLOW_GRAPH_COMPILER_IA32_H_ | 6 #define VM_FLOW_GRAPH_COMPILER_IA32_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_ia32.h. | 9 #error Include flow_graph_compiler.h instead of flow_graph_compiler_ia32.h. |
| 10 #endif | 10 #endif |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 const ICData& ic_data, | 132 const ICData& ic_data, |
| 133 const Array& arguments_descriptor, | 133 const Array& arguments_descriptor, |
| 134 intptr_t argument_count); | 134 intptr_t argument_count); |
| 135 | 135 |
| 136 void EmitLoadIndexedGeneric(LoadIndexedComp* comp); | 136 void EmitLoadIndexedGeneric(LoadIndexedComp* comp); |
| 137 void EmitTestAndCall(const ICData& ic_data, | 137 void EmitTestAndCall(const ICData& ic_data, |
| 138 Register class_id_reg, | 138 Register class_id_reg, |
| 139 intptr_t arg_count, | 139 intptr_t arg_count, |
| 140 const Array& arg_names, | 140 const Array& arg_names, |
| 141 Label* deopt, | 141 Label* deopt, |
| 142 Label* done, | 142 Label* done, // Can be NULL, which means fallthrough. |
| 143 intptr_t cid, | 143 intptr_t cid, |
| 144 intptr_t token_index, | 144 intptr_t token_index, |
| 145 intptr_t try_index); | 145 intptr_t try_index); |
| 146 | 146 |
| 147 intptr_t StackSize() const; | 147 intptr_t StackSize() const; |
| 148 | 148 |
| 149 // Returns assembler label associated with the given block entry. | 149 // Returns assembler label associated with the given block entry. |
| 150 Label* GetBlockLabel(BlockEntryInstr* block_entry) const; | 150 Label* GetBlockLabel(BlockEntryInstr* block_entry) const; |
| 151 | 151 |
| 152 // Returns true if the next block after current in the current block order | 152 // Returns true if the next block after current in the current block order |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 const DeoptReasonId reason_; | 320 const DeoptReasonId reason_; |
| 321 GrowableArray<Register> registers_; | 321 GrowableArray<Register> registers_; |
| 322 Label entry_label_; | 322 Label entry_label_; |
| 323 | 323 |
| 324 DISALLOW_COPY_AND_ASSIGN(DeoptimizationStub); | 324 DISALLOW_COPY_AND_ASSIGN(DeoptimizationStub); |
| 325 }; | 325 }; |
| 326 | 326 |
| 327 } // namespace dart | 327 } // namespace dart |
| 328 | 328 |
| 329 #endif // VM_FLOW_GRAPH_COMPILER_IA32_H_ | 329 #endif // VM_FLOW_GRAPH_COMPILER_IA32_H_ |
| OLD | NEW |