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

Unified Diff: test/mjsunit/compiler/escape-analysis-1.js

Issue 1457683003: [turbofan] Initial support for escape analysis. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/flag-definitions.h ('k') | test/mjsunit/compiler/escape-analysis-2.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/escape-analysis-1.js
diff --git a/test/mjsunit/regress/regress-3029.js b/test/mjsunit/compiler/escape-analysis-1.js
similarity index 85%
copy from test/mjsunit/regress/regress-3029.js
copy to test/mjsunit/compiler/escape-analysis-1.js
index ae412dff2ba98b52468cd2fa02d7bfc0653cffb9..b8c66448dca61d1be0fefb6491d49b75a46a76b7 100644
--- a/test/mjsunit/regress/regress-3029.js
+++ b/test/mjsunit/compiler/escape-analysis-1.js
@@ -1,4 +1,4 @@
-// Copyright 2013 the V8 project authors. All rights reserved.
+// Copyright 2015 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
@@ -25,21 +25,19 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-// Flags: --allow-natives-syntax
-
-function c(x) {
- undefined.boom();
-}
+// Flags: --allow-natives-syntax --turbo-escape
+//
-function f() {
- return new c();
+function f(a) {
+ "use strict";
+ return arguments.length;
}
function g() {
- f();
+ return f(1,2,3);
}
-assertThrows("g()", TypeError);
-assertThrows("g()", TypeError);
+assertEquals(3, g());
+assertEquals(3, g());
%OptimizeFunctionOnNextCall(g);
-assertThrows("g()", TypeError);
+assertEquals(3, g());
« no previous file with comments | « src/flag-definitions.h ('k') | test/mjsunit/compiler/escape-analysis-2.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698