hotspot/test/compiler/6968348/Test6968348.java
author chegar
Mon, 26 Sep 2011 11:48:37 -0700
changeset 10693 6e9ebed2e783
parent 6753 74ad1f54eab7
permissions -rw-r--r--
7084030: DatagramSocket.getLocalAddress inconsistent on XP/2003 when IPv6 enabled and socket is connected Summary: Use family of connected IP address to retrieve desired local address of the datagram socket Reviewed-by: chegar Contributed-by: kurchi.subhra.hazra@oracle.com
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
/*
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
     2
 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
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
/**
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    26
 * @test
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    27
 * @bug 6968348
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    28
 * @summary Byteswapped memory access can point to wrong location after JIT
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    29
 *
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    30
 * @run main Test6968348
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
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    33
import sun.misc.Unsafe;
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    34
import java.lang.reflect.*;
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    35
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    36
public class Test6968348 {
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    37
    static Unsafe unsafe;
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    38
    static final long[] buffer = new long[4096];
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    39
    static int array_long_base_offset;
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    40
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    41
    public static void main(String[] args) throws Exception {
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    42
        Class c = Test6968348.class.getClassLoader().loadClass("sun.misc.Unsafe");
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    43
        Field f = c.getDeclaredField("theUnsafe");
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    44
        f.setAccessible(true);
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    45
        unsafe = (Unsafe)f.get(c);
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    46
        array_long_base_offset = unsafe.arrayBaseOffset(long[].class);
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    47
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    48
        for (int n = 0; n < 100000; n++) {
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    49
            test();
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
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    53
    public static void test() {
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    54
        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
    55
            unsafe.putLong(buffer, i, Long.reverseBytes(i));
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
    }
74ad1f54eab7 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
    58
}