| 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_CODE_GENERATOR_IA32_H_ | 5 #ifndef VM_CODE_GENERATOR_IA32_H_ |
| 6 #define VM_CODE_GENERATOR_IA32_H_ | 6 #define VM_CODE_GENERATOR_IA32_H_ |
| 7 | 7 |
| 8 #ifndef VM_CODE_GENERATOR_H_ | 8 #ifndef VM_CODE_GENERATOR_H_ |
| 9 #error Do not include code_generator_ia32.h directly; use code_generator.h. | 9 #error Do not include code_generator_ia32.h directly; use code_generator.h. |
| 10 #endif | 10 #endif |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 const RuntimeEntry& entry); | 197 const RuntimeEntry& entry); |
| 198 | 198 |
| 199 void GenerateInlinedFinallyBlocks(SourceLabel* label); | 199 void GenerateInlinedFinallyBlocks(SourceLabel* label); |
| 200 | 200 |
| 201 void GenerateInlineInstanceof(intptr_t node_id, | 201 void GenerateInlineInstanceof(intptr_t node_id, |
| 202 intptr_t token_index, | 202 intptr_t token_index, |
| 203 const AbstractType& type, | 203 const AbstractType& type, |
| 204 Label* is_instance_lbl, | 204 Label* is_instance_lbl, |
| 205 Label* is_not_instance_lbl); | 205 Label* is_not_instance_lbl); |
| 206 | 206 |
| 207 void GenerateInstantiatedTypeWithArgumentsTest(intptr_t node_id, | 207 void GenerateInstantiatedTypeWithArgumentsTest(const AbstractType& dst_type, |
| 208 intptr_t token_index, | |
| 209 const AbstractType& dst_type, | |
| 210 Label* is_instance_lbl, | 208 Label* is_instance_lbl, |
| 211 Label* is_not_instance_lbl); | 209 Label* is_not_instance_lbl); |
| 212 void GenerateInstantiatedTypeNoArgumentsTest(intptr_t node_id, | 210 void GenerateInstantiatedTypeNoArgumentsTest(intptr_t node_id, |
| 213 intptr_t token_index, | 211 intptr_t token_index, |
| 214 const AbstractType& dst_type, | 212 const AbstractType& dst_type, |
| 215 Label* is_instance_lbl, | 213 Label* is_instance_lbl, |
| 216 Label* is_not_instance_lbl); | 214 Label* is_not_instance_lbl); |
| 217 void GenerateUninstantiatedTypeTest(const AbstractType& dst_type, | 215 void GenerateUninstantiatedTypeTest(const AbstractType& dst_type, |
| 218 intptr_t token_index, | 216 intptr_t token_index, |
| 219 Label* is_instance_lbl); | 217 Label* is_instance_lbl); |
| 220 void GenerateClassTestCache(intptr_t node_id, | |
| 221 intptr_t token_index, | |
| 222 const Class& type_class, | |
| 223 Label* is_instance_lbl, | |
| 224 Label* is_not_instance_lbl); | |
| 225 | 218 |
| 226 void HandleBackwardBranch(intptr_t loop_id, intptr_t token_index); | 219 void HandleBackwardBranch(intptr_t loop_id, intptr_t token_index); |
| 227 | 220 |
| 228 void ErrorMsg(intptr_t token_index, const char* format, ...); | 221 void ErrorMsg(intptr_t token_index, const char* format, ...); |
| 229 | 222 |
| 230 int generate_next_try_index() { return try_index_ += 1; } | 223 int generate_next_try_index() { return try_index_ += 1; } |
| 231 | 224 |
| 232 void MarkDeoptPoint(intptr_t node_id, intptr_t token_index); | 225 void MarkDeoptPoint(intptr_t node_id, intptr_t token_index); |
| 233 void AddCurrentDescriptor(PcDescriptors::Kind kind, | 226 void AddCurrentDescriptor(PcDescriptors::Kind kind, |
| 234 intptr_t node_id, | 227 intptr_t node_id, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 248 // The runtime context level is only incremented when a new context is | 241 // The runtime context level is only incremented when a new context is |
| 249 // allocated and chained to the list of contexts. | 242 // allocated and chained to the list of contexts. |
| 250 intptr_t context_level_; | 243 intptr_t context_level_; |
| 251 | 244 |
| 252 DISALLOW_IMPLICIT_CONSTRUCTORS(CodeGenerator); | 245 DISALLOW_IMPLICIT_CONSTRUCTORS(CodeGenerator); |
| 253 }; | 246 }; |
| 254 | 247 |
| 255 } // namespace dart | 248 } // namespace dart |
| 256 | 249 |
| 257 #endif // VM_CODE_GENERATOR_IA32_H_ | 250 #endif // VM_CODE_GENERATOR_IA32_H_ |
| OLD | NEW |