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

Side by Side Diff: test/mjsunit/compiler/uint8-clamped-array.js

Issue 2653753007: [tests] Cleanup tests that use assertOptimized()/assertUnoptimized(). (Closed)
Patch Set: Addressing comments Created 3 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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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 // Flags: --allow-natives-syntax 5 // Flags: --allow-natives-syntax --crankshaft
6 6
7 (function() { 7 (function() {
8 function foo(a, v) { 8 function foo(a, v) {
9 a[0] = v & 0xff; 9 a[0] = v & 0xff;
10 } 10 }
11 11
12 var a = new Uint8ClampedArray(4); 12 var a = new Uint8ClampedArray(4);
13 foo(a, 1); 13 foo(a, 1);
14 foo(a, 2); 14 foo(a, 2);
15 %OptimizeFunctionOnNextCall(foo); 15 %OptimizeFunctionOnNextCall(foo);
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 foo(a, -Infinity); 64 foo(a, -Infinity);
65 assertOptimized(foo); 65 assertOptimized(foo);
66 assertEquals(0, a[0]); 66 assertEquals(0, a[0]);
67 foo(a, 0.5); 67 foo(a, 0.5);
68 assertOptimized(foo); 68 assertOptimized(foo);
69 assertEquals(0, a[0]); 69 assertEquals(0, a[0]);
70 foo(a, 1.5); 70 foo(a, 1.5);
71 assertOptimized(foo); 71 assertOptimized(foo);
72 assertEquals(2, a[0]); 72 assertEquals(2, a[0]);
73 })(); 73 })();
OLDNEW
« no previous file with comments | « test/mjsunit/compiler/regress-strict-equals-mixed-feedback.js ('k') | test/mjsunit/concurrent-initial-prototype-change.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698