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

Unified Diff: test/mjsunit/strong/implicit-conversions-inlining.js

Issue 1123043002: [strong] Fix inlining issue (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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/strong/implicit-conversions.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/strong/implicit-conversions-inlining.js
diff --git a/test/mjsunit/strong/implicit-conversions-inlining.js b/test/mjsunit/strong/implicit-conversions-inlining.js
new file mode 100644
index 0000000000000000000000000000000000000000..f1cb9cd36d50a4d9a612e8d4df72735437062ea3
--- /dev/null
+++ b/test/mjsunit/strong/implicit-conversions-inlining.js
@@ -0,0 +1,235 @@
+// 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: --strong-mode --allow-natives-syntax
+
+"use strict";
+
+function inline_add_strong(x, y) {
+ "use strong";
+ return x + y;
+}
+
+function inline_add_strong_outer(x, y) {
+ return inline_add_strong(x, y);
+}
+
+function inline_sub_strong(x, y) {
+ "use strong";
+ return x - y;
+}
+
+function inline_sub_strong_outer(x, y) {
+ return inline_sub_strong(x, y);
+}
+
+function inline_mul_strong(x, y) {
+ "use strong";
+ return x * y;
+}
+
+function inline_mul_strong_outer(x, y) {
+ return inline_mul_strong(x, y);
+}
+
+function inline_div_strong(x, y) {
+ "use strong";
+ return x / y;
+}
+
+function inline_div_strong_outer(x, y) {
+ return inline_div_strong(x, y);
+}
+
+function inline_mod_strong(x, y) {
+ "use strong";
+ return x % y;
+}
+
+function inline_mod_strong_outer(x, y) {
+ return inline_mod_strong(x, y);
+}
+
+function inline_or_strong(x, y) {
+ "use strong";
+ return x | y;
+}
+
+function inline_or_strong_outer(x, y) {
+ return inline_or_strong(x, y);
+}
+
+function inline_and_strong(x, y) {
+ "use strong";
+ return x & y;
+}
+
+function inline_and_strong_outer(x, y) {
+ return inline_and_strong(x, y);
+}
+
+function inline_xor_strong(x, y) {
+ "use strong";
+ return x ^ y;
+}
+
+function inline_xor_strong_outer(x, y) {
+ return inline_xor_strong(x, y);
+}
+
+function inline_shl_strong(x, y) {
+ "use strong";
+ return x << y;
+}
+
+function inline_shl_strong_outer(x, y) {
+ return inline_shl_strong(x, y);
+}
+
+function inline_shr_strong(x, y) {
+ "use strong";
+ return x >> y;
+}
+
+function inline_shr_strong_outer(x, y) {
+ return inline_shr_strong(x, y);
+}
+
+function inline_sar_strong(x, y) {
+ "use strong";
+ return x >>> y;
+}
+
+function inline_sar_strong_outer(x, y) {
+ return inline_sar_strong(x, y);
+}
+
+function inline_add(x, y) {
+ return x + y;
+}
+
+function inline_add_outer_strong(x, y) {
+ "use strong";
+ return inline_add(x, y);
+}
+
+function inline_sub(x, y) {
+ return x - y;
+}
+
+function inline_sub_outer_strong(x, y) {
+ "use strong";
+ return inline_sub(x, y);
+}
+
+function inline_mul(x, y) {
+ return x * y;
+}
+
+function inline_mul_outer_strong(x, y) {
+ "use strong";
+ return inline_mul(x, y);
+}
+
+function inline_div(x, y) {
+ return x / y;
+}
+
+function inline_div_outer_strong(x, y) {
+ "use strong";
+ return inline_div(x, y);
+}
+
+function inline_mod(x, y) {
+ return x % y;
+}
+
+function inline_mod_outer_strong(x, y) {
+ "use strong";
+ return inline_mod(x, y);
+}
+
+function inline_or(x, y) {
+ return x | y;
+}
+
+function inline_or_outer_strong(x, y) {
+ "use strong";
+ return inline_or(x, y);
+}
+
+function inline_and(x, y) {
+ return x & y;
+}
+
+function inline_and_outer_strong(x, y) {
+ "use strong";
+ return inline_and(x, y);
+}
+
+function inline_xor(x, y) {
+ return x ^ y;
+}
+
+function inline_xor_outer_strong(x, y) {
+ "use strong";
+ return inline_xor(x, y);
+}
+
+function inline_shl(x, y) {
+ return x << y;
+}
+
+function inline_shl_outer_strong(x, y) {
+ "use strong";
+ return inline_shl(x, y);
+}
+
+function inline_shr(x, y) {
+ return x >> y;
+}
+
+function inline_shr_outer_strong(x, y) {
+ "use strong";
+ return inline_shr(x, y);
+}
+
+function inline_sar(x, y) {
+ return x >>> y;
+}
+
+function inline_sar_outer_strong(x, y) {
+ "use strong";
+ return inline_sar(x, y);
+}
+
+let strong_inner_funcs = [inline_add_strong_outer, inline_sub_strong_outer,
+ inline_mul_strong_outer, inline_div_strong_outer,
+ inline_mod_strong_outer, inline_or_strong_outer,
+ inline_and_strong_outer, inline_xor_strong_outer,
+ inline_shl_strong_outer, inline_shr_strong_outer];
+
+let strong_outer_funcs = [inline_add_outer_strong, inline_sub_outer_strong,
+ inline_mul_outer_strong, inline_div_outer_strong,
+ inline_mod_outer_strong, inline_or_outer_strong,
+ inline_and_outer_strong, inline_xor_outer_strong,
+ inline_shl_outer_strong, inline_shr_outer_strong];
+
+for (let strong_inner_func of strong_inner_funcs) {
+ assertThrows(function(){strong_inner_func(1, {})}, TypeError);
+ for (var i = 0; i < 100; i++) {
+ strong_inner_func(1, 2);
+ }
+ %OptimizeFunctionOnNextCall(strong_inner_func);
+ assertThrows(function(){strong_inner_func(1, {})}, TypeError);
+}
+
+for (let strong_outer_func of strong_outer_funcs) {
+ assertDoesNotThrow(function(){strong_outer_func(1, {})});
+ for (var i = 0; i < 100; i++) {
+ strong_outer_func(1, 2);
+ }
+ %OptimizeFunctionOnNextCall(strong_outer_func);
+ assertDoesNotThrow(function(){strong_outer_func(1, {})});
+}
« no previous file with comments | « test/mjsunit/strong/implicit-conversions.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698