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

Side by Side Diff: src/x64/codegen-x64.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 | « src/v8.cc ('k') | src/x64/codegen-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 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 void GenerateCharFromCode(ZoneList<Expression*>* args); 561 void GenerateCharFromCode(ZoneList<Expression*>* args);
562 562
563 // Fast support for object equality testing. 563 // Fast support for object equality testing.
564 void GenerateObjectEquals(ZoneList<Expression*>* args); 564 void GenerateObjectEquals(ZoneList<Expression*>* args);
565 565
566 void GenerateLog(ZoneList<Expression*>* args); 566 void GenerateLog(ZoneList<Expression*>* args);
567 567
568 void GenerateGetFramePointer(ZoneList<Expression*>* args); 568 void GenerateGetFramePointer(ZoneList<Expression*>* args);
569 569
570 // Fast support for Math.random(). 570 // Fast support for Math.random().
571 void GenerateRandomPositiveSmi(ZoneList<Expression*>* args); 571 void GenerateRandomHeapNumber(ZoneList<Expression*>* args);
572 572
573 // Fast support for StringAdd. 573 // Fast support for StringAdd.
574 void GenerateStringAdd(ZoneList<Expression*>* args); 574 void GenerateStringAdd(ZoneList<Expression*>* args);
575 575
576 // Fast support for SubString. 576 // Fast support for SubString.
577 void GenerateSubString(ZoneList<Expression*>* args); 577 void GenerateSubString(ZoneList<Expression*>* args);
578 578
579 // Fast support for StringCompare. 579 // Fast support for StringCompare.
580 void GenerateStringCompare(ZoneList<Expression*>* args); 580 void GenerateStringCompare(ZoneList<Expression*>* args);
581 581
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 void Print() { 940 void Print() {
941 PrintF("NumberToStringStub\n"); 941 PrintF("NumberToStringStub\n");
942 } 942 }
943 #endif 943 #endif
944 }; 944 };
945 945
946 946
947 } } // namespace v8::internal 947 } } // namespace v8::internal
948 948
949 #endif // V8_X64_CODEGEN_X64_H_ 949 #endif // V8_X64_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/v8.cc ('k') | src/x64/codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698