test/hotspot/jtreg/compiler/c2/Test6968348.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:
6753
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
     1
/*
41092
c388d897472d 8165889: Remove jdk.test.lib.unsafe.UnsafeHelper
gtriantafill
parents: 40059
diff changeset
     2
 * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
6753
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
     4
 *
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
     7
 * published by the Free Software Foundation.
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
     8
 *
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    13
 * accompanied this code).
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    14
 *
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    18
 *
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    21
 * questions.
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    22
 */
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    23
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    24
/**
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    25
 * @test
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    26
 * @bug 6968348
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    27
 * @summary Byteswapped memory access can point to wrong location after JIT
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38152
diff changeset
    28
 * @modules java.base/jdk.internal.misc
6753
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    29
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38152
diff changeset
    30
 * @run main compiler.c2.Test6968348
6753
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    31
 */
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    32
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38152
diff changeset
    33
package compiler.c2;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38152
diff changeset
    34
38152
80e5da81fb2c 8154258: [TESTBUG] Various serviceability tests fail compilation
dsamersoff
parents: 36851
diff changeset
    35
import jdk.internal.misc.Unsafe;
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38152
diff changeset
    36
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 38152
diff changeset
    37
import java.lang.reflect.Field;
6753
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    38
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    39
public class Test6968348 {
41092
c388d897472d 8165889: Remove jdk.test.lib.unsafe.UnsafeHelper
gtriantafill
parents: 40059
diff changeset
    40
    static Unsafe unsafe = Unsafe.getUnsafe();
6753
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    41
    static final long[] buffer = new long[4096];
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    42
    static int array_long_base_offset;
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    43
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    44
    public static void main(String[] args) throws Exception {
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    45
        array_long_base_offset = unsafe.arrayBaseOffset(long[].class);
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    46
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    47
        for (int n = 0; n < 100000; n++) {
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    48
            test();
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    49
        }
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    50
    }
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    51
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    52
    public static void test() {
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    53
        for (long i = array_long_base_offset; i < 4096; i += 8) {
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    54
            unsafe.putLong(buffer, i, Long.reverseBytes(i));
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    55
        }
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    56
    }
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    57
}