node/deps/v8/test/mjsunit/strong/implicit-conversions-inlining.js
Ben Noordhuis 70d1f32f56 deps: update v8 to 4.4.63.9
Upgrade the bundled V8 and update code in src/ and lib/ to the new API.

Notable backwards incompatible changes are the removal of the smalloc
module and dropped support for CESU-8 decoding.  CESU-8 support can be
brought back if necessary by doing UTF-8 decoding ourselves.

This commit includes https://codereview.chromium.org/1192973004 to fix
a build error on python 2.6 systems.  The original commit log follows:

    Use optparse in js2c.py for python compatibility

    Without this change, V8 won't build on RHEL/CentOS 6 because the
    distro python is too old to know about the argparse module.

PR-URL: https://github.com/nodejs/io.js/pull/2022
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2015-08-04 11:56:14 -07:00

235 lines
4.6 KiB
JavaScript

// 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, {})});
}