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

Side by Side Diff: src/objects.h

Issue 80513004: Revert 17963, 17962 and 17955: Random number generator in JS changes (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove Yang's changes, too 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
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | src/runtime.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 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 6489 matching lines...) Expand 10 before | Expand all | Expand 10 after
6500 V(Math, log, MathLog) \ 6500 V(Math, log, MathLog) \
6501 V(Math, sin, MathSin) \ 6501 V(Math, sin, MathSin) \
6502 V(Math, cos, MathCos) \ 6502 V(Math, cos, MathCos) \
6503 V(Math, tan, MathTan) \ 6503 V(Math, tan, MathTan) \
6504 V(Math, asin, MathASin) \ 6504 V(Math, asin, MathASin) \
6505 V(Math, acos, MathACos) \ 6505 V(Math, acos, MathACos) \
6506 V(Math, atan, MathATan) \ 6506 V(Math, atan, MathATan) \
6507 V(Math, exp, MathExp) \ 6507 V(Math, exp, MathExp) \
6508 V(Math, sqrt, MathSqrt) \ 6508 V(Math, sqrt, MathSqrt) \
6509 V(Math, pow, MathPow) \ 6509 V(Math, pow, MathPow) \
6510 V(Math, random, MathRandom) \
6510 V(Math, max, MathMax) \ 6511 V(Math, max, MathMax) \
6511 V(Math, min, MathMin) \ 6512 V(Math, min, MathMin) \
6512 V(Math, imul, MathImul) 6513 V(Math, imul, MathImul)
6513 6514
6514 enum BuiltinFunctionId { 6515 enum BuiltinFunctionId {
6515 kArrayCode, 6516 kArrayCode,
6516 #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \ 6517 #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \
6517 k##name, 6518 k##name,
6518 FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID) 6519 FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID)
6519 #undef DECLARE_FUNCTION_ID 6520 #undef DECLARE_FUNCTION_ID
(...skipping 4046 matching lines...) Expand 10 before | Expand all | Expand 10 after
10566 } else { 10567 } else {
10567 value &= ~(1 << bit_position); 10568 value &= ~(1 << bit_position);
10568 } 10569 }
10569 return value; 10570 return value;
10570 } 10571 }
10571 }; 10572 };
10572 10573
10573 } } // namespace v8::internal 10574 } } // namespace v8::internal
10574 10575
10575 #endif // V8_OBJECTS_H_ 10576 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698