hotspot/test/compiler/loopopts/superword/ProdRed_Float.java
author stsmirno
Mon, 17 Oct 2016 18:54:12 -0400
changeset 41705 332239c052cc
parent 40059 c2304140ed64
permissions -rw-r--r--
8165687: Fix license and copyright headers in jd9 under hotspot/test Summary: Legal notices and Oracle copyrights were updated (white and blank space, commas) in tests files for uniformity to meet Oracle requirements. Reviewed-by: dholmes, iris Contributed-by: Stanislav Smirnov <stanislav.smirnov@oracle.com>, Vassili Igouchkine <vassili.igouchkine@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
 * @test
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    26
 * @bug 8074981
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    27
 * @summary Add C2 x86 Superword support for scalar product reduction optimizations : float test
36057
867e857daf84 8149123: [TESTBUG] compiler/loopopts/superword/SumRed* tests running on non-x86 platforms
thartmann
parents: 30211
diff changeset
    28
 * @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
    29
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    30
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    31
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    32
 *      -XX:+SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    33
 *      -XX:LoopMaxUnroll=2
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    34
 *      compiler.loopopts.superword.ProdRed_Float
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    35
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    36
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    37
 *      -XX:-SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    38
 *      -XX:LoopMaxUnroll=2
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    39
 *      compiler.loopopts.superword.ProdRed_Float
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    40
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    41
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    42
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    43
 *      -XX:+SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    44
 *      -XX:LoopMaxUnroll=4
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    45
 *      compiler.loopopts.superword.ProdRed_Float
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    46
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    47
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    48
 *      -XX:-SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    49
 *      -XX:LoopMaxUnroll=4
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    50
 *      compiler.loopopts.superword.ProdRed_Float
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    51
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    52
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    53
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    54
 *      -XX:+SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    55
 *      -XX:LoopMaxUnroll=8
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    56
 *      compiler.loopopts.superword.ProdRed_Float
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    57
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    58
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    59
 *      -XX:-SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    60
 *      -XX:LoopMaxUnroll=8
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    61
 *      compiler.loopopts.superword.ProdRed_Float
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    62
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    63
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    64
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    65
 *      -XX:+SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    66
 *      -XX:LoopMaxUnroll=16
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    67
 *      compiler.loopopts.superword.ProdRed_Float
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    68
 * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:LoopUnrollLimit=250
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    69
 *      -XX:CompileThresholdScaling=0.1
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    70
 *      -XX:-SuperWordReductions
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    71
 *      -XX:LoopMaxUnroll=16
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    72
 *      compiler.loopopts.superword.ProdRed_Float
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    73
 */
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    74
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    75
package compiler.loopopts.superword;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    76
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    77
public class ProdRed_Float {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    78
    public static void main(String[] args) throws Exception {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    79
        float[] a = new float[256 * 1024];
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    80
        float[] b = new float[256 * 1024];
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    81
        prodReductionInit(a, b);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    82
        float valid = 2000;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    83
        float total = 0;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    84
        for (int j = 0; j < 2000; j++) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    85
            total = j + 1;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    86
            total = prodReductionImplement(a, b, total);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    87
        }
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    88
        if (total == valid) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    89
            System.out.println("Success");
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    90
        } else {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    91
            System.out.println("Invalid sum of elements variable in total: " + total);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    92
            System.out.println("Expected value = " + valid);
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    93
            throw new Exception("Failed");
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    94
        }
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    95
    }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
    96
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    97
    public static void prodReductionInit(float[] a, float[] b) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    98
        for (int i = 0; i < a.length; i++) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
    99
            a[i] = i + 2;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   100
            b[i] = i + 1;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   101
        }
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
   102
    }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
   103
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   104
    public static float prodReductionImplement(float[] a, float[] b, float total) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   105
        for (int i = 0; i < a.length; i++) {
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   106
            total *= a[i] - b[i];
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   107
        }
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 36057
diff changeset
   108
        return total;
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
   109
    }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
   110
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents:
diff changeset
   111
}