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

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

Issue 10938011: Delete code for the now unused IL instruction NumberNegate. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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_compiler_ia32.cc ('k') | runtime/vm/flow_graph_compiler_x64.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_X64_H_ 5 #ifndef VM_FLOW_GRAPH_COMPILER_X64_H_
6 #define VM_FLOW_GRAPH_COMPILER_X64_H_ 6 #define VM_FLOW_GRAPH_COMPILER_X64_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_x64.h. 9 #error Include flow_graph_compiler.h instead of flow_graph_compiler_x64.h.
10 #endif 10 #endif
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 intptr_t checked_argument_count, 109 intptr_t checked_argument_count,
110 LocationSummary* locs); 110 LocationSummary* locs);
111 111
112 void GenerateStaticCall(intptr_t deopt_id, 112 void GenerateStaticCall(intptr_t deopt_id,
113 intptr_t token_pos, 113 intptr_t token_pos,
114 const Function& function, 114 const Function& function,
115 intptr_t argument_count, 115 intptr_t argument_count,
116 const Array& argument_names, 116 const Array& argument_names,
117 LocationSummary* locs); 117 LocationSummary* locs);
118 118
119 void GenerateInlinedMathSqrt(Label* done);
120
121 void GenerateNumberTypeCheck(Register kClassIdReg, 119 void GenerateNumberTypeCheck(Register kClassIdReg,
122 const AbstractType& type, 120 const AbstractType& type,
123 Label* is_instance_lbl, 121 Label* is_instance_lbl,
124 Label* is_not_instance_lbl); 122 Label* is_not_instance_lbl);
125 void GenerateStringTypeCheck(Register kClassIdReg, 123 void GenerateStringTypeCheck(Register kClassIdReg,
126 Label* is_instance_lbl, 124 Label* is_instance_lbl,
127 Label* is_not_instance_lbl); 125 Label* is_not_instance_lbl);
128 void GenerateListTypeCheck(Register kClassIdReg, 126 void GenerateListTypeCheck(Register kClassIdReg,
129 Label* is_instance_lbl); 127 Label* is_instance_lbl);
130 128
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 // that should be used when deoptimizing we store it in this variable. 319 // that should be used when deoptimizing we store it in this variable.
322 // In future AddDeoptStub should be moved out of the instruction template. 320 // In future AddDeoptStub should be moved out of the instruction template.
323 Environment* pending_deoptimization_env_; 321 Environment* pending_deoptimization_env_;
324 322
325 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler); 323 DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler);
326 }; 324 };
327 325
328 } // namespace dart 326 } // namespace dart
329 327
330 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_ 328 #endif // VM_FLOW_GRAPH_COMPILER_X64_H_
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | runtime/vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698