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

Side by Side Diff: src/codegen.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/assembler.cc ('k') | src/ia32/codegen-ia32.h » ('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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 F(IsConstructCall, 0, 1) \ 107 F(IsConstructCall, 0, 1) \
108 F(ArgumentsLength, 0, 1) \ 108 F(ArgumentsLength, 0, 1) \
109 F(Arguments, 1, 1) \ 109 F(Arguments, 1, 1) \
110 F(ClassOf, 1, 1) \ 110 F(ClassOf, 1, 1) \
111 F(ValueOf, 1, 1) \ 111 F(ValueOf, 1, 1) \
112 F(SetValueOf, 2, 1) \ 112 F(SetValueOf, 2, 1) \
113 F(FastCharCodeAt, 2, 1) \ 113 F(FastCharCodeAt, 2, 1) \
114 F(CharFromCode, 1, 1) \ 114 F(CharFromCode, 1, 1) \
115 F(ObjectEquals, 2, 1) \ 115 F(ObjectEquals, 2, 1) \
116 F(Log, 3, 1) \ 116 F(Log, 3, 1) \
117 F(RandomPositiveSmi, 0, 1) \ 117 F(RandomHeapNumber, 0, 1) \
118 F(IsObject, 1, 1) \ 118 F(IsObject, 1, 1) \
119 F(IsFunction, 1, 1) \ 119 F(IsFunction, 1, 1) \
120 F(IsUndetectableObject, 1, 1) \ 120 F(IsUndetectableObject, 1, 1) \
121 F(StringAdd, 2, 1) \ 121 F(StringAdd, 2, 1) \
122 F(SubString, 3, 1) \ 122 F(SubString, 3, 1) \
123 F(StringCompare, 2, 1) \ 123 F(StringCompare, 2, 1) \
124 F(RegExpExec, 4, 1) \ 124 F(RegExpExec, 4, 1) \
125 F(NumberToString, 1, 1) \ 125 F(NumberToString, 1, 1) \
126 F(MathPow, 2, 1) \ 126 F(MathPow, 2, 1) \
127 F(MathSin, 1, 1) \ 127 F(MathSin, 1, 1) \
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 private: 599 private:
600 Major MajorKey() { return ToBoolean; } 600 Major MajorKey() { return ToBoolean; }
601 int MinorKey() { return 0; } 601 int MinorKey() { return 0; }
602 }; 602 };
603 603
604 604
605 } // namespace internal 605 } // namespace internal
606 } // namespace v8 606 } // namespace v8
607 607
608 #endif // V8_CODEGEN_H_ 608 #endif // V8_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/ia32/codegen-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698