hotspot/test/compiler/6910484/Test.java
author trims
Thu, 27 May 2010 19:08:38 -0700
changeset 5547 f4b087cbb361
parent 4583 b36d52bd2d19
permissions -rw-r--r--
6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
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
/*
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
     2
 * Copyright 2009 SAP.  All Rights Reserved.
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
 *
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    29
 * @run main/othervm -Xbatch Test
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
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    32
public class Test {
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    33
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    34
    public static void main(String[] args) {
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    35
        long iteration = 0;
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    36
        for(int i = 0; i <11000; i++) {
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    37
            iteration++;
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    38
            int result = test(255);
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    39
            if (result != 112) {
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    40
                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
    41
                System.exit(97);
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    42
            }
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    43
        }
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
    private static int test(int x) {
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    47
        return (x & -32) / 2;
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    48
    }
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    49
b36d52bd2d19 6910484: incorrect integer optimization (loosing and op-r in a given example)
kvn
parents:
diff changeset
    50
}