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

Side by Side Diff: src/math.js

Issue 165449: Avoid map transitions and multiple backing arrays for builtin prototypes... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 4 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/heap.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 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 if (!IS_NUMBER(x)) x = ToNumber(x); 177 if (!IS_NUMBER(x)) x = ToNumber(x);
178 return %Math_tan(x); 178 return %Math_tan(x);
179 } 179 }
180 180
181 181
182 // ------------------------------------------------------------------- 182 // -------------------------------------------------------------------
183 183
184 function SetupMath() { 184 function SetupMath() {
185 // Setup math constants. 185 // Setup math constants.
186 // ECMA-262, section 15.8.1.1. 186 // ECMA-262, section 15.8.1.1.
187 %OptimizeObjectForAddingMultipleProperties($Math, 26);
187 %SetProperty($Math, 188 %SetProperty($Math,
188 "E", 189 "E",
189 2.7182818284590452354, 190 2.7182818284590452354,
190 DONT_ENUM | DONT_DELETE | READ_ONLY); 191 DONT_ENUM | DONT_DELETE | READ_ONLY);
191 // ECMA-262, section 15.8.1.2. 192 // ECMA-262, section 15.8.1.2.
192 %SetProperty($Math, 193 %SetProperty($Math,
193 "LN10", 194 "LN10",
194 2.302585092994046, 195 2.302585092994046,
195 DONT_ENUM | DONT_DELETE | READ_ONLY); 196 DONT_ENUM | DONT_DELETE | READ_ONLY);
196 // ECMA-262, section 15.8.1.3. 197 // ECMA-262, section 15.8.1.3.
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 "tan", MathTan, 240 "tan", MathTan,
240 "atan2", MathAtan2, 241 "atan2", MathAtan2,
241 "pow", MathPow, 242 "pow", MathPow,
242 "max", MathMax, 243 "max", MathMax,
243 "min", MathMin 244 "min", MathMin
244 )); 245 ));
245 }; 246 };
246 247
247 248
248 SetupMath(); 249 SetupMath();
OLDNEW
« no previous file with comments | « src/heap.cc ('k') | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698