hotspot/test/compiler/intrinsics/mathexact/MulExactIRepeatTest.java
author chegar
Sat, 09 Apr 2016 23:03:39 +0100
changeset 36851 03e2f4d0a421
parent 30604 b8d532cb6420
child 40059 c2304140ed64
permissions -rw-r--r--
8153737: Unsupported Module Reviewed-by: alanb, mchung, psandoz
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21105
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
     1
/*
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 27453
diff changeset
     2
 * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
21105
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
     4
 *
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
     7
 * published by the Free Software Foundation.
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
     8
 *
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    13
 * accompanied this code).
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    14
 *
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    18
 *
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    21
 * questions.
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    22
 */
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    23
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    24
/*
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    25
 * @test
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    26
 * @bug 8026844
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    27
 * @summary Test repeating multiplyExact
27453
9aeb9b97bef6 8044186: Introduce a reproducible random generator
iignatyev
parents: 22911
diff changeset
    28
 * @library /testlibrary
36851
03e2f4d0a421 8153737: Unsupported Module
chegar
parents: 30604
diff changeset
    29
 * @modules java.base/jdk.internal.misc
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 27453
diff changeset
    30
 *          java.management
21105
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    31
 * @compile MulExactIRepeatTest.java Verify.java
22911
ff49c48c887d 8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents: 21920
diff changeset
    32
 * @run main MulExactIRepeatTest
21105
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    33
 *
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    34
 */
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    35
30604
b8d532cb6420 8067013: Rename the com.oracle.java.testlibary package
ykantser
parents: 29678
diff changeset
    36
import jdk.test.lib.Utils;
27453
9aeb9b97bef6 8044186: Introduce a reproducible random generator
iignatyev
parents: 22911
diff changeset
    37
import java.util.Random;
9aeb9b97bef6 8044186: Introduce a reproducible random generator
iignatyev
parents: 22911
diff changeset
    38
21105
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    39
public class MulExactIRepeatTest {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    40
    public static void main(String[] args) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    41
        runTest(new Verify.MulExactI());
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    42
    }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    43
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    44
    public static int nonExact(int x, int y, Verify.BinaryMethod method) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    45
        int result = method.unchecked(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    46
        result += method.unchecked(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    47
        result += method.unchecked(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    48
        result += method.unchecked(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    49
        return result;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    50
    }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    51
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    52
    public static void runTest(Verify.BinaryMethod method) {
27453
9aeb9b97bef6 8044186: Introduce a reproducible random generator
iignatyev
parents: 22911
diff changeset
    53
        Random rnd = Utils.getRandomInstance();
21105
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    54
        for (int i = 0; i < 50000; ++i) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    55
            int x = Integer.MAX_VALUE - 10;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    56
            int y = Integer.MAX_VALUE - 10 + rnd.nextInt(5);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    57
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    58
            int c = rnd.nextInt() / 10;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    59
            int d = rnd.nextInt(9);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    60
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    61
            int a = catchingExact(x, y, method);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    62
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    63
            if (a != 36) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    64
                throw new RuntimeException("a != 36 : " + a);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    65
            }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    66
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    67
            int b = nonExact(c, d, method);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    68
            int n = exact(c, d, method);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    69
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    70
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    71
            if (n != b) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    72
                throw new RuntimeException("n != b : " + n + " != " + b);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    73
            }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    74
        }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    75
    }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    76
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    77
    public static int exact(int x, int y, Verify.BinaryMethod method) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    78
        int result = 0;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    79
        result += method.checkMethod(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    80
        result += method.checkMethod(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    81
        result += method.checkMethod(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    82
        result += method.checkMethod(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    83
        return result;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    84
    }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    85
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    86
    public static int catchingExact(int x, int y, Verify.BinaryMethod method) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    87
        int result = 0;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    88
        try {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    89
            result += 5;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    90
            result = method.checkMethod(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    91
        } catch (ArithmeticException e) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    92
            result += 1;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    93
        }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    94
        try {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    95
            result += 6;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    96
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    97
            result += method.checkMethod(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    98
        } catch (ArithmeticException e) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
    99
            result += 2;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   100
        }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   101
        try {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   102
            result += 7;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   103
            result += method.checkMethod(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   104
        } catch (ArithmeticException e) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   105
            result += 3;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   106
        }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   107
        try {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   108
            result += 8;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   109
            result += method.checkMethod(x, y);
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   110
        } catch (ArithmeticException e) {
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   111
            result += 4;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   112
        }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   113
        return result;
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   114
    }
47618ee96ed5 8026844: Various Math functions needs intrinsification
rbackman
parents:
diff changeset
   115
}