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

Unified Diff: test/mjsunit/global-undefined-strict.js

Issue 1077343002: [turbofan] Optimize loads of global constants in JSTypedLowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/global-undefined.js ('k') | test/unittests/compiler/js-typed-lowering-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/global-undefined-strict.js
diff --git a/test/mjsunit/global-undefined-strict.js b/test/mjsunit/global-undefined-strict.js
new file mode 100644
index 0000000000000000000000000000000000000000..9a0578a2fb3fe0062b531f1ef8189fa61d9b36d4
--- /dev/null
+++ b/test/mjsunit/global-undefined-strict.js
@@ -0,0 +1,163 @@
+// Copyright 2015 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Flags: --allow-natives-syntax
+"use strict";
+
+function test(expected, f) {
+ assertEquals(expected, f());
+ assertEquals(expected, f());
+ %OptimizeFunctionOnNextCall(f);
+ assertEquals(expected, f());
+ assertEquals(expected, f());
+}
+
+function testThrows(f) {
+ assertThrows(f);
+ assertThrows(f);
+ %OptimizeFunctionOnNextCall(f);
+ assertThrows(f);
+ assertThrows(f);
+}
+
+function f1() { return undefined; }
+test(void 0, f1);
+
+function f2() { return void 0; }
+test(void 0, f2);
+
+function f3() { return void 0 == void 0; }
+test(true, f3);
+
+function f4() { return void 0 == undefined; }
+test(true, f4);
+
+function f5() { return undefined == void 0; }
+test(true, f5);
+
+function f6() { return "" + undefined; }
+test("undefined", f6);
+
+function f7() { return void 0 === void 0; }
+test(true, f7);
+
+function f8() { return void 0 === undefined; }
+test(true, f8);
+
+function f9() { return undefined === void 0; }
+test(true, f9);
+
+function g1() { return this; }
+test(void 0, g1);
+
+function g2() { return void 0; }
+test(void 0, g2);
+
+function g3() { return void 0 == void 0; }
+test(true, g3);
+
+function g4() { return void 0 == this; }
+test(true, g4);
+
+function g5() { return this == void 0; }
+test(true, g5);
+
+function g6() { return "" + this; }
+test("undefined", g6);
+
+function g7() { return void 0 === void 0; }
+test(true, g7);
+
+function g8() { return void 0 === this; }
+test(true, g8);
+
+function g9() { return this === void 0; }
+test(true, g9);
+
+testThrows(function() { undefined = 111; });
+
+function h1() { return undefined; }
+test(void 0, h1);
+
+function h2() { return void 0; }
+test(void 0, h2);
+
+function h3() { return void 0 == void 0; }
+test(true, h3);
+
+function h4() { return void 0 == undefined; }
+test(true, h4);
+
+function h5() { return undefined == void 0; }
+test(true, h5);
+
+function h6() { return "" + undefined; }
+test("undefined", h6);
+
+function h7() { return void 0 === void 0; }
+test(true, h7);
+
+function h8() { return void 0 === undefined; }
+test(true, h8);
+
+function h9() { return undefined === void 0; }
+test(true, h9);
+
+// -------------
+
+function k1() { return this; }
+test(void 0, k1);
+
+function k2() { return void 0; }
+test(void 0, k2);
+
+function k3() { return this === undefined; }
+test(true, k3);
+
+function k4() { return void 0 === this; }
+test(true, k4);
+
+function k5() { return this === void 0; }
+test(true, k5);
+
+function k6() { return "" + this; }
+test("undefined", k6);
+
+function k7() { return void 0 === void 0; }
+test(true, k7);
+
+function k8() { return void 0 === this; }
+test(true, k8);
+
+function k9() { return this === void 0; }
+test(true, k9);
+
+// -------------
+
+function m1() { return this.undefined; }
+testThrows(m1);
+
+function m2() { return void 0; }
+test(void 0, m2);
+
+function m3() { return this === undefined; }
+test(true, m3);
+
+function m4() { return void 0 === this.undefined; }
+testThrows(m4);
+
+function m5() { return this.undefined == void 0; }
+testThrows(m5);
+
+function m6() { return "" + this.undefined; }
+testThrows(m6);
+
+function m7() { return void 0 === void 0; }
+test(true, m7);
+
+function m8() { return void 0 === this.undefined; }
+testThrows(m8);
+
+function m9() { return this.undefined === void 0; }
+testThrows(m9);
« no previous file with comments | « test/mjsunit/global-undefined.js ('k') | test/unittests/compiler/js-typed-lowering-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698