hotspot/test/compiler/loopopts/superword/SumRed_Int.java
author tpivovarova
Tue, 12 Jul 2016 18:24:48 +0300
changeset 40059 c2304140ed64
parent 36057 867e857daf84
child 41705 332239c052cc
permissions -rw-r--r--
8132919: Put compiler tests in packages Reviewed-by: vlivanov, dpochepk Contributed-by: igor.ignatyev@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
     1
/*
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
     2
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
     4
 *
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
     7
 * published by the Free Software Foundation.
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
     8
 *
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    13
 * accompanied this code).
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    14
 *
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    18
 *
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    21
 * questions.
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    22
 *
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    23
 */
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    24
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    25
/**
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    26
 * @test
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    27
 * @bug 8074981
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    28
 * @summary Add C2 x86 Superword support for scalar sum reduction optimizations : int test
36057
867e857daf84 8149123: [TESTBUG] compiler/loopopts/superword/SumRed* tests running on non-x86 platforms
thartmann
parents: 30211
diff changeset
    29
 * @requires os.arch=="x86" | os.arch=="i386" | os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    30
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    31
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    32
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    33
 *      -XX:+SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    34
 *      -XX:LoopMaxUnroll=2
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    35
 *      compiler.loopopts.superword.SumRed_Int
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    36
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    37
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    38
 *      -XX:-SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    39
 *      -XX:LoopMaxUnroll=2
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    40
 *      compiler.loopopts.superword.SumRed_Int
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    41
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    42
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    43
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    44
 *      -XX:+SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    45
 *      -XX:LoopMaxUnroll=4
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    46
 *      compiler.loopopts.superword.SumRed_Int
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    47
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    48
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    49
 *      -XX:-SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    50
 *      -XX:LoopMaxUnroll=4
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    51
 *      compiler.loopopts.superword.SumRed_Int
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    52
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    53
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    54
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    55
 *      -XX:+SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    56
 *      -XX:LoopMaxUnroll=8
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    57
 *      compiler.loopopts.superword.SumRed_Int
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    58
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    59
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    60
 *      -XX:-SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    61
 *      -XX:LoopMaxUnroll=8
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    62
 *      compiler.loopopts.superword.SumRed_Int
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    63
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    64
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    65
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    66
 *      -XX:+SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    67
 *      -XX:LoopMaxUnroll=16
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    68
 *      compiler.loopopts.superword.SumRed_Int
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    69
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    70
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    71
 *      -XX:-SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    72
 *      -XX:LoopMaxUnroll=16
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    73
 *      compiler.loopopts.superword.SumRed_Int
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    74
 */
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    75
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    76
package compiler.loopopts.superword;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    77
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    78
public class SumRed_Int {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    79
    public static void main(String[] args) throws Exception {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    80
        int[] a = new int[256 * 1024];
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    81
        int[] b = new int[256 * 1024];
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    82
        int[] c = new int[256 * 1024];
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    83
        int[] d = new int[256 * 1024];
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    84
        sumReductionInit(a, b, c);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    85
        int total = 0;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    86
        int valid = 262144000;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    87
        for (int j = 0; j < 2000; j++) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    88
            total = sumReductionImplement(a, b, c, d, total);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    89
        }
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    90
        if (total == valid) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    91
            System.out.println("Success");
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    92
        } else {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    93
            System.out.println("Invalid sum of elements variable in total: " + total);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    94
            System.out.println("Expected value = " + valid);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    95
            throw new Exception("Failed");
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    96
        }
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    97
    }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    98
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    99
    public static void sumReductionInit(
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   100
            int[] a,
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   101
            int[] b,
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   102
            int[] c) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   103
        for (int j = 0; j < 1; j++) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   104
            for (int i = 0; i < a.length; i++) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   105
                a[i] = i * 1 + j;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   106
                b[i] = i * 1 - j;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   107
                c[i] = i + j;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   108
            }
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   109
        }
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
   110
    }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
   111
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   112
    public static int sumReductionImplement(
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   113
            int[] a,
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   114
            int[] b,
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   115
            int[] c,
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   116
            int[] d,
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   117
            int total) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   118
        for (int i = 0; i < a.length; i++) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   119
            d[i] = (a[i] * b[i]) + (a[i] * c[i]) + (b[i] * c[i]);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   120
            total += d[i];
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   121
        }
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   122
        return total;
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
   123
    }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
   124
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
   125
}