test/hotspot/jtreg/compiler/c2/Test6910484.java
author iignatyev
Mon, 18 Feb 2019 09:31:07 -0800
changeset 53791 bec6c8739833
parent 47216 71c04702a3d5
permissions -rw-r--r--
8219157: vm/mlvm/mixed/stress/java/findDeadlock should be problem-listed only on mac Reviewed-by: thartmann
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4583
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
     1
/*
35594
cc13089c6327 8147937: Adapt SAP copyrights to new company name.
goetz
parents: 27699
diff changeset
     2
 * Copyright (c) 2009 SAP SE. All rights reserved.
4583
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
     4
 *
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
     7
 * published by the Free Software Foundation.
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
     8
 *
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    13
 * accompanied this code).
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    14
 *
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4583
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4583
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4583
diff changeset
    21
 * questions.
4583
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    22
 */
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    23
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    24
/**
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    25
 * @test
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    26
 * @bug 6910484
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    27
 * @summary incorrect integer optimization (loosing and op-r in a given example)
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    28
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 35594
diff changeset
    29
 * @run main/othervm -Xbatch compiler.c2.Test6910484
4583
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    30
 */
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    31
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 35594
diff changeset
    32
package compiler.c2;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 35594
diff changeset
    33
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 35594
diff changeset
    34
public class Test6910484 {
4583
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    35
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    36
    public static void main(String[] args) {
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    37
        long iteration = 0;
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    38
        for(int i = 0; i <11000; i++) {
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    39
            iteration++;
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    40
            int result = test(255);
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    41
            if (result != 112) {
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    42
                System.out.println("expected 112, but got " + result + " after iteration " + iteration);
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    43
                System.exit(97);
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    44
            }
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    45
        }
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    46
    }
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    47
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    48
    private static int test(int x) {
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    49
        return (x & -32) / 2;
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    50
    }
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    51
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    52
}