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

Side by Side Diff: src/js/prologue.js

Issue 1641083003: [builtins] Make Math.max and Math.min fast by default. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: SKIP unrelated ignition failures. Created 4 years, 10 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 (function(global, utils, extrasUtils) { 5 (function(global, utils, extrasUtils) {
6 6
7 "use strict"; 7 "use strict";
8 8
9 %CheckIsBootstrapping(); 9 %CheckIsBootstrapping();
10 10
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 "ArrayToString", 172 "ArrayToString",
173 "ErrorToString", 173 "ErrorToString",
174 "GetIterator", 174 "GetIterator",
175 "GetMethod", 175 "GetMethod",
176 "IsNaN", 176 "IsNaN",
177 "MakeError", 177 "MakeError",
178 "MakeTypeError", 178 "MakeTypeError",
179 "MapEntries", 179 "MapEntries",
180 "MapIterator", 180 "MapIterator",
181 "MapIteratorNext", 181 "MapIteratorNext",
182 "MathMax",
183 "MathMin",
184 "MaxSimple", 182 "MaxSimple",
185 "MinSimple", 183 "MinSimple",
186 "ObjectDefineProperty", 184 "ObjectDefineProperty",
187 "ObserveArrayMethods", 185 "ObserveArrayMethods",
188 "ObserveObjectMethods", 186 "ObserveObjectMethods",
189 "PromiseChain", 187 "PromiseChain",
190 "PromiseDeferred", 188 "PromiseDeferred",
191 "PromiseResolved", 189 "PromiseResolved",
192 "SameValueZero", 190 "SameValueZero",
193 "SetIterator", 191 "SetIterator",
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 331
334 extrasUtils.uncurryThis = function uncurryThis(func) { 332 extrasUtils.uncurryThis = function uncurryThis(func) {
335 return function(thisArg) { 333 return function(thisArg) {
336 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); 334 return %Apply(func, thisArg, arguments, 1, arguments.length - 1);
337 }; 335 };
338 }; 336 };
339 337
340 %ToFastProperties(extrasUtils); 338 %ToFastProperties(extrasUtils);
341 339
342 }) 340 })
OLDNEW
« src/arm64/builtins-arm64.cc ('K') | « src/js/math.js ('k') | src/js/string.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698