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

Side by Side Diff: src/objects.h

Issue 68723002: Implement Math.random() purely in JavaScript. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 6452 matching lines...) Expand 10 before | Expand all | Expand 10 after
6463 V(Math, log, MathLog) \ 6463 V(Math, log, MathLog) \
6464 V(Math, sin, MathSin) \ 6464 V(Math, sin, MathSin) \
6465 V(Math, cos, MathCos) \ 6465 V(Math, cos, MathCos) \
6466 V(Math, tan, MathTan) \ 6466 V(Math, tan, MathTan) \
6467 V(Math, asin, MathASin) \ 6467 V(Math, asin, MathASin) \
6468 V(Math, acos, MathACos) \ 6468 V(Math, acos, MathACos) \
6469 V(Math, atan, MathATan) \ 6469 V(Math, atan, MathATan) \
6470 V(Math, exp, MathExp) \ 6470 V(Math, exp, MathExp) \
6471 V(Math, sqrt, MathSqrt) \ 6471 V(Math, sqrt, MathSqrt) \
6472 V(Math, pow, MathPow) \ 6472 V(Math, pow, MathPow) \
6473 V(Math, random, MathRandom) \
6474 V(Math, max, MathMax) \ 6473 V(Math, max, MathMax) \
6475 V(Math, min, MathMin) \ 6474 V(Math, min, MathMin) \
6476 V(Math, imul, MathImul) 6475 V(Math, imul, MathImul)
6477 6476
6478 enum BuiltinFunctionId { 6477 enum BuiltinFunctionId {
6479 kArrayCode, 6478 kArrayCode,
6480 #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \ 6479 #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \
6481 k##name, 6480 k##name,
6482 FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID) 6481 FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID)
6483 #undef DECLARE_FUNCTION_ID 6482 #undef DECLARE_FUNCTION_ID
(...skipping 3993 matching lines...) Expand 10 before | Expand all | Expand 10 after
10477 } else { 10476 } else {
10478 value &= ~(1 << bit_position); 10477 value &= ~(1 << bit_position);
10479 } 10478 }
10480 return value; 10479 return value;
10481 } 10480 }
10482 }; 10481 };
10483 10482
10484 } } // namespace v8::internal 10483 } } // namespace v8::internal
10485 10484
10486 #endif // V8_OBJECTS_H_ 10485 #endif // V8_OBJECTS_H_
OLDNEW
« src/math.js ('K') | « src/mips/lithium-mips.cc ('k') | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698