| 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 // pc-descriptor information. | 132 // pc-descriptor information. |
| 133 intptr_t EmitInstanceCall(ExternalLabel* target_label, | 133 intptr_t EmitInstanceCall(ExternalLabel* target_label, |
| 134 const ICData& ic_data, | 134 const ICData& ic_data, |
| 135 const Array& arguments_descriptor, | 135 const Array& arguments_descriptor, |
| 136 intptr_t argument_count); | 136 intptr_t argument_count); |
| 137 | 137 |
| 138 void EmitLoadIndexedGeneric(LoadIndexedComp* comp); | 138 void EmitLoadIndexedGeneric(LoadIndexedComp* comp); |
| 139 | 139 |
| 140 void EmitComment(Instruction* instr); | 140 void EmitComment(Instruction* instr); |
| 141 | 141 |
| 142 void EmitClassChecksNoSmi(const ZoneGrowableArray<intptr_t>& class_ids, | 142 void EmitClassChecksNoSmi(const ICData& ic_data, |
| 143 Register instance_reg, | 143 Register instance_reg, |
| 144 Register temp_reg, | 144 Register temp_reg, |
| 145 Label* deopt); | 145 Label* deopt); |
| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 GrowableArray<Register> registers_; | 306 GrowableArray<Register> registers_; |
| 307 Label entry_label_; | 307 Label entry_label_; |
| 308 | 308 |
| 309 DISALLOW_COPY_AND_ASSIGN(DeoptimizationStub); | 309 DISALLOW_COPY_AND_ASSIGN(DeoptimizationStub); |
| 310 }; | 310 }; |
| 311 | 311 |
| 312 | 312 |
| 313 } // namespace dart | 313 } // namespace dart |
| 314 | 314 |
| 315 #endif // VM_FLOW_GRAPH_COMPILER_IA32_H_ | 315 #endif // VM_FLOW_GRAPH_COMPILER_IA32_H_ |
| OLD | NEW |