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

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

Issue 15502004: Intrinsify random nextState, improve perfromance significantly. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 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/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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 #include "vm/object.h" 9 #include "vm/object.h"
10 10
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 bool Intrinsifier::Math_sin(Assembler* assembler) { 304 bool Intrinsifier::Math_sin(Assembler* assembler) {
305 return false; 305 return false;
306 } 306 }
307 307
308 308
309 bool Intrinsifier::Math_cos(Assembler* assembler) { 309 bool Intrinsifier::Math_cos(Assembler* assembler) {
310 return false; 310 return false;
311 } 311 }
312 312
313 313
314 bool Intrinsifier::Random_nextState(Assembler* assembler) {
315 return false;
316 }
317
318
314 bool Intrinsifier::Object_equal(Assembler* assembler) { 319 bool Intrinsifier::Object_equal(Assembler* assembler) {
315 return false; 320 return false;
316 } 321 }
317 322
318 323
319 bool Intrinsifier::String_getHashCode(Assembler* assembler) { 324 bool Intrinsifier::String_getHashCode(Assembler* assembler) {
320 return false; 325 return false;
321 } 326 }
322 327
323 328
(...skipping 27 matching lines...) Expand all
351 } 356 }
352 357
353 358
354 bool Intrinsifier::OneByteString_allocate(Assembler* assembler) { 359 bool Intrinsifier::OneByteString_allocate(Assembler* assembler) {
355 return false; 360 return false;
356 } 361 }
357 362
358 } // namespace dart 363 } // namespace dart
359 364
360 #endif // defined TARGET_ARCH_ARM 365 #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