nashorn/test/script/basic/optimistic_arithmetic_check_type.js
author hannesw
Fri, 03 Feb 2017 13:28:00 +0100
changeset 43555 1bb10bccf057
parent 25828 077046a5d726
permissions -rw-r--r--
8173888: Test for JDK-8169481 causes stack overflows in parser tests Reviewed-by: jlaskey, sundar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     1
/*
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
     4
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     7
 * published by the Free Software Foundation.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
     8
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    13
 * accompanied this code).
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
    14
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
    18
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    21
 * questions.
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    22
 */
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    23
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    24
/**
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    25
 * @test
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
    26
 * @bug 8036987, 8037572
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
    27
 * @summary Implement tests that checks static types in the compiled code
25828
077046a5d726 8044786: Some tests fail with non-optimistic compilation
attila
parents: 24778
diff changeset
    28
 * @option --optimistic-types=true
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    29
 * @run
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    30
 */
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    31
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    32
var inspect = Java.type("jdk.nashorn.test.tools.StaticTypeInspector").inspect
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    33
var a = 3, b, c;
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    34
var x = { a: 2, b:1, c: 7, d: -1}
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    35
var y = { a: Number.MAX_VALUE, b: Number.POSITIVE_INFINITY, c: "Hello", d: undefined}
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    36
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    37
// Testing arithmetic operators
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    38
//-- Local variable
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    39
print(inspect(x.a*x.b, "local int multiplication by local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    40
print(inspect(x.a/x.b, "local int division by local int without remainder"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    41
print(inspect(x.c/x.a, "local int division by local int with remainder"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    42
print(inspect(x.c%x.a, "local int modulo by local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    43
print(inspect(x.a+x.b, "local int addition local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    44
print(inspect(x.a-x.b, "local int substraction local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    45
print(inspect(y.a*y.a, "max value multiplication by max value"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    46
print(inspect(y.b*y.b, "infinity multiplication by infinity"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    47
print(inspect(x.d/y.b, "-1 division by infinity"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    48
print(inspect(y.b/x.e, "infinity division by zero"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    49
print(inspect(y.b/y.c, "infinity division by String"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    50
print(inspect(y.d/y.d, "local undefined division by local undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    51
print(inspect(y.d*y.d, "local undefined multiplication by local undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    52
print(inspect(y.d+x.a, "local undefined addition local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    53
print(inspect(y.d--, "local undefined decrement postfix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    54
print(inspect(--y.d, "local undefined decrement prefix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    55
print(inspect(x.a++, "local int increment postfix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    56
print(inspect(++x.a, "local int increment prefix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    57
print(inspect(x.a--, "local int decrement postfix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    58
print(inspect(--x.a, "local int decrement prefix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    59
print(inspect(+x.a, "local int unary plus"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    60
print(inspect(-x.a, "local int unary minus"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    61
//-- Global variable
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    62
print(inspect(b*c, "undefined multiplication by undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    63
print(inspect(b/c, "undefined division by undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    64
print(inspect(a+a, "global int addition global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    65
print(inspect(a-a, "global int substraction global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    66
print(inspect(a*a, "global int multiplication by global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    67
print(inspect(a++, "global int increment postfix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    68
print(inspect(++a, "global int increment prefix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    69
print(inspect(a--, "global int decrement postfix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    70
print(inspect(--a, "global int decrement prefix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    71
print(inspect(+a, "global int unary plus"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    72
print(inspect(-a, "global int unary minus"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    73
print(inspect(b--, "global undefined decrement postfix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    74
print(inspect(--b, "global undefined decrement prefix"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    75
print(inspect(x, "object"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    76
print(inspect(x/x, "object division by object"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    77
print(inspect(x/y, "object division by object"))