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

Side by Side Diff: runtime/vm/intrinsifier_arm.cc

Issue 11267043: Small IL cleanup. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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/intrinsifier.h ('k') | runtime/vm/intrinsifier_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 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
7 7
8 #include "vm/intrinsifier.h" 8 #include "vm/intrinsifier.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 bool Intrinsifier::Double_equal(Assembler* assembler) { 228 bool Intrinsifier::Double_equal(Assembler* assembler) {
229 return false; 229 return false;
230 } 230 }
231 231
232 232
233 bool Intrinsifier::Double_lessEqualThan(Assembler* assembler) { 233 bool Intrinsifier::Double_lessEqualThan(Assembler* assembler) {
234 return false; 234 return false;
235 } 235 }
236 236
237 237
238 bool Intrinsifier::Double_toDouble(Assembler* assembler) {
239 return false;
240 }
241
242 bool Intrinsifier::Double_add(Assembler* assembler) { 238 bool Intrinsifier::Double_add(Assembler* assembler) {
243 return false; 239 return false;
244 } 240 }
245 241
246 242
247 bool Intrinsifier::Double_mul(Assembler* assembler) { 243 bool Intrinsifier::Double_mul(Assembler* assembler) {
248 return false; 244 return false;
249 } 245 }
250 246
251 247
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 } 320 }
325 321
326 322
327 bool Intrinsifier::String_getIsEmpty(Assembler* assembler) { 323 bool Intrinsifier::String_getIsEmpty(Assembler* assembler) {
328 return false; 324 return false;
329 } 325 }
330 326
331 } // namespace dart 327 } // namespace dart
332 328
333 #endif // defined TARGET_ARCH_ARM 329 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/intrinsifier.h ('k') | runtime/vm/intrinsifier_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698