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

Side by Side Diff: src/arm/codegen-arm.h

Issue 1599019: Change Math.random() to return 32 bits of random goodness, instead of 30 rand... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 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
« no previous file with comments | « no previous file | src/arm/codegen-arm.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 380
381 // Fast support for string.charAt(n) and string[n]. 381 // Fast support for string.charAt(n) and string[n].
382 void GenerateCharFromCode(ZoneList<Expression*>* args); 382 void GenerateCharFromCode(ZoneList<Expression*>* args);
383 383
384 // Fast support for object equality testing. 384 // Fast support for object equality testing.
385 void GenerateObjectEquals(ZoneList<Expression*>* args); 385 void GenerateObjectEquals(ZoneList<Expression*>* args);
386 386
387 void GenerateLog(ZoneList<Expression*>* args); 387 void GenerateLog(ZoneList<Expression*>* args);
388 388
389 // Fast support for Math.random(). 389 // Fast support for Math.random().
390 void GenerateRandomPositiveSmi(ZoneList<Expression*>* args); 390 void GenerateRandomHeapNumber(ZoneList<Expression*>* args);
391 391
392 // Fast support for StringAdd. 392 // Fast support for StringAdd.
393 void GenerateStringAdd(ZoneList<Expression*>* args); 393 void GenerateStringAdd(ZoneList<Expression*>* args);
394 394
395 // Fast support for SubString. 395 // Fast support for SubString.
396 void GenerateSubString(ZoneList<Expression*>* args); 396 void GenerateSubString(ZoneList<Expression*>* args);
397 397
398 // Fast support for StringCompare. 398 // Fast support for StringCompare.
399 void GenerateStringCompare(ZoneList<Expression*>* args); 399 void GenerateStringCompare(ZoneList<Expression*>* args);
400 400
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 void Print() { 732 void Print() {
733 PrintF("NumberToStringStub\n"); 733 PrintF("NumberToStringStub\n");
734 } 734 }
735 #endif 735 #endif
736 }; 736 };
737 737
738 738
739 } } // namespace v8::internal 739 } } // namespace v8::internal
740 740
741 #endif // V8_ARM_CODEGEN_ARM_H_ 741 #endif // V8_ARM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698