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

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

Issue 1695743003: [builtins] Support SameValue and SameValueZero via runtime functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address bug in SameValue and SameValueZero for SIMD types. 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
« no previous file with comments | « src/js/array.js ('k') | src/js/runtime.js » ('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 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 "MapIterator", 180 "MapIterator",
181 "MapIteratorNext", 181 "MapIteratorNext",
182 "MaxSimple", 182 "MaxSimple",
183 "MinSimple", 183 "MinSimple",
184 "ObjectDefineProperty", 184 "ObjectDefineProperty",
185 "ObserveArrayMethods", 185 "ObserveArrayMethods",
186 "ObserveObjectMethods", 186 "ObserveObjectMethods",
187 "PromiseChain", 187 "PromiseChain",
188 "PromiseDeferred", 188 "PromiseDeferred",
189 "PromiseResolved", 189 "PromiseResolved",
190 "SameValueZero",
191 "SetIterator", 190 "SetIterator",
192 "SetIteratorNext", 191 "SetIteratorNext",
193 "SetValues", 192 "SetValues",
194 "SymbolToString", 193 "SymbolToString",
195 "ToPositiveInteger", 194 "ToPositiveInteger",
196 // From runtime: 195 // From runtime:
197 "is_concat_spreadable_symbol", 196 "is_concat_spreadable_symbol",
198 "iterator_symbol", 197 "iterator_symbol",
199 "promise_status_symbol", 198 "promise_status_symbol",
200 "promise_value_symbol", 199 "promise_value_symbol",
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 330
332 extrasUtils.uncurryThis = function uncurryThis(func) { 331 extrasUtils.uncurryThis = function uncurryThis(func) {
333 return function(thisArg) { 332 return function(thisArg) {
334 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); 333 return %Apply(func, thisArg, arguments, 1, arguments.length - 1);
335 }; 334 };
336 }; 335 };
337 336
338 %ToFastProperties(extrasUtils); 337 %ToFastProperties(extrasUtils);
339 338
340 }) 339 })
OLDNEW
« no previous file with comments | « src/js/array.js ('k') | src/js/runtime.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698