annotate src/share/vm/runtime/prefetch.inline.hpp @ 20479:07e01043ade7

8035328: closed/compiler/6595044/Main.java failed with timeout Summary: Patch call sites of non-entrant methods to avoid re-resolving if method is still executed. Reviewed-by: kvn
author thartmann
date Tue, 24 Jun 2014 08:12:30 +0200
parents c49dcaf78a65
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20198
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
1 /*
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
4 *
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
7 * published by the Free Software Foundation.
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
8 *
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
13 * accompanied this code).
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
14 *
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
18 *
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
21 * questions.
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
22 *
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
23 */
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
24
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
25 #ifndef SHARE_VM_RUNTIME_PREFETCH_INLINE_HPP
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
26 #define SHARE_VM_RUNTIME_PREFETCH_INLINE_HPP
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
27
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
28 #include "runtime/prefetch.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
29
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
30 // Linux
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
31 #ifdef TARGET_OS_ARCH_linux_x86
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
32 # include "prefetch_linux_x86.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
33 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
34 #ifdef TARGET_OS_ARCH_linux_sparc
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
35 # include "prefetch_linux_sparc.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
36 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
37 #ifdef TARGET_OS_ARCH_linux_zero
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
38 # include "prefetch_linux_zero.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
39 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
40 #ifdef TARGET_OS_ARCH_linux_arm
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
41 # include "prefetch_linux_arm.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
42 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
43 #ifdef TARGET_OS_ARCH_linux_ppc
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
44 # include "prefetch_linux_ppc.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
45 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
46
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
47 // Solaris
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
48 #ifdef TARGET_OS_ARCH_solaris_x86
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
49 # include "prefetch_solaris_x86.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
50 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
51 #ifdef TARGET_OS_ARCH_solaris_sparc
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
52 # include "prefetch_solaris_sparc.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
53 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
54
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
55 // Windows
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
56 #ifdef TARGET_OS_ARCH_windows_x86
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
57 # include "prefetch_windows_x86.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
58 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
59
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
60 // AIX
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
61 #ifdef TARGET_OS_ARCH_aix_ppc
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
62 # include "prefetch_aix_ppc.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
63 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
64
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
65 // BSD
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
66 #ifdef TARGET_OS_ARCH_bsd_x86
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
67 # include "prefetch_bsd_x86.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
68 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
69 #ifdef TARGET_OS_ARCH_bsd_zero
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
70 # include "prefetch_bsd_zero.inline.hpp"
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
71 #endif
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
72
c49dcaf78a65 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
73 #endif // SHARE_VM_RUNTIME_PREFETCH_INLINE_HPP