annotate test/compiler/6968348/Test6968348.java @ 3095:d3d00c1ea071

IdealGraphVisualizer: Enhance text view so it can display arbitrary properties from the active graph's group. For diff graphs, it shows the textual difference between the property strings using the NetBeans Diff module.
author Peter Hofer <peter.hofer@jku.at>
date Wed, 29 Jun 2011 17:33:35 +0200
parents 52e82a6bedaf
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1827
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
1 /*
52e82a6bedaf 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.
52e82a6bedaf 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.
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
4 *
52e82a6bedaf 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
52e82a6bedaf 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
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
7 * published by the Free Software Foundation.
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
8 *
52e82a6bedaf 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
52e82a6bedaf 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
52e82a6bedaf 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
52e82a6bedaf 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
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
13 * accompanied this code).
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
14 *
52e82a6bedaf 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
52e82a6bedaf 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,
52e82a6bedaf 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.
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
18 *
52e82a6bedaf 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
52e82a6bedaf 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
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
21 * questions.
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
22 *
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
23 */
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
24
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
25 /**
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
26 * @test
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
27 * @bug 6968348
52e82a6bedaf 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
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
29 *
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
30 * @run main Test6968348
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
31 */
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
32
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
33 import sun.misc.Unsafe;
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
34 import java.lang.reflect.*;
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
35
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
36 public class Test6968348 {
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
37 static Unsafe unsafe;
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
38 static final long[] buffer = new long[4096];
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
39 static int array_long_base_offset;
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
40
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
41 public static void main(String[] args) throws Exception {
52e82a6bedaf 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");
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
43 Field f = c.getDeclaredField("theUnsafe");
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
44 f.setAccessible(true);
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
45 unsafe = (Unsafe)f.get(c);
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
46 array_long_base_offset = unsafe.arrayBaseOffset(long[].class);
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
47
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
48 for (int n = 0; n < 100000; n++) {
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
49 test();
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
50 }
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
51 }
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
52
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
53 public static void test() {
52e82a6bedaf 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) {
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
55 unsafe.putLong(buffer, i, Long.reverseBytes(i));
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
56 }
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
57 }
52e82a6bedaf 6968348: Byteswapped memory access can point to wrong location after JIT
never
parents:
diff changeset
58 }