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

Side by Side Diff: src/math.js

Issue 1148007: Merge bleeding_edge from version 2.1.3 up to revision 4205... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/partial_snapshots/
Patch Set: Created 10 years, 9 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
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 27 matching lines...) Expand all
38 function MathConstructor() {} 38 function MathConstructor() {}
39 %FunctionSetInstanceClassName(MathConstructor, 'Math'); 39 %FunctionSetInstanceClassName(MathConstructor, 'Math');
40 const $Math = new MathConstructor(); 40 const $Math = new MathConstructor();
41 $Math.__proto__ = global.Object.prototype; 41 $Math.__proto__ = global.Object.prototype;
42 %SetProperty(global, "Math", $Math, DONT_ENUM); 42 %SetProperty(global, "Math", $Math, DONT_ENUM);
43 43
44 // ECMA 262 - 15.8.2.1 44 // ECMA 262 - 15.8.2.1
45 function MathAbs(x) { 45 function MathAbs(x) {
46 if (%_IsSmi(x)) return x >= 0 ? x : -x; 46 if (%_IsSmi(x)) return x >= 0 ? x : -x;
47 if (!IS_NUMBER(x)) x = ToNumber(x); 47 if (!IS_NUMBER(x)) x = ToNumber(x);
48 return %Math_abs(x); 48 if (x === 0) return 0; // To handle -0.
49 return x > 0 ? x : -x;
49 } 50 }
50 51
51 // ECMA 262 - 15.8.2.2 52 // ECMA 262 - 15.8.2.2
52 function MathAcos(x) { 53 function MathAcos(x) {
53 if (!IS_NUMBER(x)) x = ToNumber(x); 54 if (!IS_NUMBER(x)) x = ToNumber(x);
54 return %Math_acos(x); 55 return %Math_acos(x);
55 } 56 }
56 57
57 // ECMA 262 - 15.8.2.3 58 // ECMA 262 - 15.8.2.3
58 function MathAsin(x) { 59 function MathAsin(x) {
(...skipping 18 matching lines...) Expand all
77 78
78 // ECMA 262 - 15.8.2.6 79 // ECMA 262 - 15.8.2.6
79 function MathCeil(x) { 80 function MathCeil(x) {
80 if (!IS_NUMBER(x)) x = ToNumber(x); 81 if (!IS_NUMBER(x)) x = ToNumber(x);
81 return %Math_ceil(x); 82 return %Math_ceil(x);
82 } 83 }
83 84
84 // ECMA 262 - 15.8.2.7 85 // ECMA 262 - 15.8.2.7
85 function MathCos(x) { 86 function MathCos(x) {
86 if (!IS_NUMBER(x)) x = ToNumber(x); 87 if (!IS_NUMBER(x)) x = ToNumber(x);
87 return %_Math_cos(x); 88 return %_MathCos(x);
88 } 89 }
89 90
90 // ECMA 262 - 15.8.2.8 91 // ECMA 262 - 15.8.2.8
91 function MathExp(x) { 92 function MathExp(x) {
92 if (!IS_NUMBER(x)) x = ToNumber(x); 93 if (!IS_NUMBER(x)) x = ToNumber(x);
93 return %Math_exp(x); 94 return %Math_exp(x);
94 } 95 }
95 96
96 // ECMA 262 - 15.8.2.9 97 // ECMA 262 - 15.8.2.9
97 function MathFloor(x) { 98 function MathFloor(x) {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 // Smi or a heap number. 153 // Smi or a heap number.
153 if (n < r || (r === 0 && n === 0 && !%_IsSmi(n) && 1 / n < 0)) r = n; 154 if (n < r || (r === 0 && n === 0 && !%_IsSmi(n) && 1 / n < 0)) r = n;
154 } 155 }
155 return r; 156 return r;
156 } 157 }
157 158
158 // ECMA 262 - 15.8.2.13 159 // ECMA 262 - 15.8.2.13
159 function MathPow(x, y) { 160 function MathPow(x, y) {
160 if (!IS_NUMBER(x)) x = ToNumber(x); 161 if (!IS_NUMBER(x)) x = ToNumber(x);
161 if (!IS_NUMBER(y)) y = ToNumber(y); 162 if (!IS_NUMBER(y)) y = ToNumber(y);
162 return %_Math_pow(x, y); 163 return %_MathPow(x, y);
163 } 164 }
164 165
165 // ECMA 262 - 15.8.2.14 166 // ECMA 262 - 15.8.2.14
166 function MathRandom() { 167 function MathRandom() {
167 return %_RandomPositiveSmi() / 0x40000000; 168 return %_RandomPositiveSmi() / 0x40000000;
168 } 169 }
169 170
170 // ECMA 262 - 15.8.2.15 171 // ECMA 262 - 15.8.2.15
171 function MathRound(x) { 172 function MathRound(x) {
172 if (!IS_NUMBER(x)) x = ToNumber(x); 173 if (!IS_NUMBER(x)) x = ToNumber(x);
173 return %Math_round(x); 174 return %RoundNumber(x);
174 } 175 }
175 176
176 // ECMA 262 - 15.8.2.16 177 // ECMA 262 - 15.8.2.16
177 function MathSin(x) { 178 function MathSin(x) {
178 if (!IS_NUMBER(x)) x = ToNumber(x); 179 if (!IS_NUMBER(x)) x = ToNumber(x);
179 return %_Math_sin(x); 180 return %_MathSin(x);
180 } 181 }
181 182
182 // ECMA 262 - 15.8.2.17 183 // ECMA 262 - 15.8.2.17
183 function MathSqrt(x) { 184 function MathSqrt(x) {
184 if (!IS_NUMBER(x)) x = ToNumber(x); 185 if (!IS_NUMBER(x)) x = ToNumber(x);
185 return %_Math_sqrt(x); 186 return %_MathSqrt(x);
186 } 187 }
187 188
188 // ECMA 262 - 15.8.2.18 189 // ECMA 262 - 15.8.2.18
189 function MathTan(x) { 190 function MathTan(x) {
190 if (!IS_NUMBER(x)) x = ToNumber(x); 191 if (!IS_NUMBER(x)) x = ToNumber(x);
191 return %Math_tan(x); 192 return %Math_tan(x);
192 } 193 }
193 194
194 195
195 // ------------------------------------------------------------------- 196 // -------------------------------------------------------------------
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 "tan", MathTan, 255 "tan", MathTan,
255 "atan2", MathAtan2, 256 "atan2", MathAtan2,
256 "pow", MathPow, 257 "pow", MathPow,
257 "max", MathMax, 258 "max", MathMax,
258 "min", MathMin 259 "min", MathMin
259 )); 260 ));
260 }; 261 };
261 262
262 263
263 SetupMath(); 264 SetupMath();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698