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

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

Issue 10594002: More ICData cleanups: try to use ICData instead of converting it to another intermediate representa… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/flow_graph_compiler_ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_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
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
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_
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/flow_graph_compiler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698