Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: runtime/vm/code_generator_ia32.h

Issue 10209002: Progress toward inlined type checks for classes with type arguments: factor out code, optimize typ… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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(const AbstractType& dst_type, 207 void GenerateInstantiatedTypeWithArgumentsTest(intptr_t node_id,
208 intptr_t token_index,
209 const AbstractType& dst_type,
208 Label* is_instance_lbl, 210 Label* is_instance_lbl,
209 Label* is_not_instance_lbl); 211 Label* is_not_instance_lbl);
210 void GenerateInstantiatedTypeNoArgumentsTest(intptr_t node_id, 212 void GenerateInstantiatedTypeNoArgumentsTest(intptr_t node_id,
211 intptr_t token_index, 213 intptr_t token_index,
212 const AbstractType& dst_type, 214 const AbstractType& dst_type,
213 Label* is_instance_lbl, 215 Label* is_instance_lbl,
214 Label* is_not_instance_lbl); 216 Label* is_not_instance_lbl);
215 void GenerateUninstantiatedTypeTest(const AbstractType& dst_type, 217 void GenerateUninstantiatedTypeTest(const AbstractType& dst_type,
216 intptr_t token_index, 218 intptr_t token_index,
217 Label* is_instance_lbl); 219 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);
218 225
219 void HandleBackwardBranch(intptr_t loop_id, intptr_t token_index); 226 void HandleBackwardBranch(intptr_t loop_id, intptr_t token_index);
220 227
221 void ErrorMsg(intptr_t token_index, const char* format, ...); 228 void ErrorMsg(intptr_t token_index, const char* format, ...);
222 229
223 int generate_next_try_index() { return try_index_ += 1; } 230 int generate_next_try_index() { return try_index_ += 1; }
224 231
225 void MarkDeoptPoint(intptr_t node_id, intptr_t token_index); 232 void MarkDeoptPoint(intptr_t node_id, intptr_t token_index);
226 void AddCurrentDescriptor(PcDescriptors::Kind kind, 233 void AddCurrentDescriptor(PcDescriptors::Kind kind,
227 intptr_t node_id, 234 intptr_t node_id,
(...skipping 13 matching lines...) Expand all
241 // The runtime context level is only incremented when a new context is 248 // The runtime context level is only incremented when a new context is
242 // allocated and chained to the list of contexts. 249 // allocated and chained to the list of contexts.
243 intptr_t context_level_; 250 intptr_t context_level_;
244 251
245 DISALLOW_IMPLICIT_CONSTRUCTORS(CodeGenerator); 252 DISALLOW_IMPLICIT_CONSTRUCTORS(CodeGenerator);
246 }; 253 };
247 254
248 } // namespace dart 255 } // namespace dart
249 256
250 #endif // VM_CODE_GENERATOR_IA32_H_ 257 #endif // VM_CODE_GENERATOR_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698