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

Side by Side Diff: test/mjsunit/regress/regress-4121.js

Issue 2654733004: [tests] Make assertOptimized()/assertUnoptimized() great again. (Closed)
Patch Set: Created 3 years, 11 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 // Flags: --allow-natives-syntax 5 // Flags: --allow-natives-syntax
6 6
7 function literals_sharing_test(warmup, optimize) { 7 function literals_sharing_test(warmup, optimize) {
8 function closure() { 8 function closure() {
9 // Ensure small array literals start in specific element kind mode. 9 // Ensure small array literals start in specific element kind mode.
10 assertTrue(%HasFastSmiElements([])); 10 assertTrue(%HasFastSmiElements([]));
(...skipping 24 matching lines...) Expand all
35 literals_sharing_test(warmup, false); 35 literals_sharing_test(warmup, false);
36 warmup = false; 36 warmup = false;
37 } 37 }
38 print("iter: " + i + ", opt: true"); 38 print("iter: " + i + ", opt: true");
39 literals_sharing_test(warmup, true); 39 literals_sharing_test(warmup, true);
40 } 40 }
41 41
42 42
43 function stress_opt_test() {} 43 function stress_opt_test() {}
44 stress_opt_test(); 44 stress_opt_test();
45 if (%GetOptimizationStatus(stress_opt_test) == 2) { 45 var opt_status = %GetOptimizationStatus(stress_opt_test);
46 if ((opt_status & V8OptimizationStatus.kAlwaysOptimize) === 0) {
46 // This test is not suitable for --always-opt mode. 47 // This test is not suitable for --always-opt mode.
47 test(); 48 test();
48 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698