hotspot/src/share/vm/runtime/prefetch.inline.hpp
author mockner
Wed, 23 Dec 2015 15:05:38 -0500
changeset 35219 b9ef87beb87c
parent 29180 50369728b00e
child 40010 e32d5e545789
permissions -rw-r--r--
8144874: Reimplement TraceClassResolution with Unified Logging. Summary: TraceClassResolution reimplemented with classresolve tag. Reviewed-by: coleenp, dholmes, iklam, rprotacio
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24487
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
     1
/*
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
     4
 *
71ff0bd674eb 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
71ff0bd674eb 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
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
     7
 * published by the Free Software Foundation.
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
     8
 *
71ff0bd674eb 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
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
71ff0bd674eb 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
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    13
 * accompanied this code).
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    14
 *
71ff0bd674eb 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
71ff0bd674eb 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,
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    18
 *
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
71ff0bd674eb 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
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    21
 * questions.
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    22
 *
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    23
 */
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    24
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_PREFETCH_INLINE_HPP
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    26
#define SHARE_VM_RUNTIME_PREFETCH_INLINE_HPP
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    27
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    28
#include "runtime/prefetch.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    29
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    30
// Linux
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    31
#ifdef TARGET_OS_ARCH_linux_x86
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    32
# include "prefetch_linux_x86.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    33
#endif
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    34
#ifdef TARGET_OS_ARCH_linux_sparc
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    35
# include "prefetch_linux_sparc.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    36
#endif
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    37
#ifdef TARGET_OS_ARCH_linux_zero
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    38
# include "prefetch_linux_zero.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    39
#endif
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    40
#ifdef TARGET_OS_ARCH_linux_arm
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    41
# include "prefetch_linux_arm.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    42
#endif
29180
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 24487
diff changeset
    43
#ifdef TARGET_OS_ARCH_linux_aarch64
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 24487
diff changeset
    44
# include "prefetch_linux_aarch64.inline.hpp"
50369728b00e 8064611: AARCH64: Changes to HotSpot shared code
aph
parents: 24487
diff changeset
    45
#endif
24487
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    46
#ifdef TARGET_OS_ARCH_linux_ppc
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    47
# include "prefetch_linux_ppc.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    48
#endif
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    49
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    50
// Solaris
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    51
#ifdef TARGET_OS_ARCH_solaris_x86
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    52
# include "prefetch_solaris_x86.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    53
#endif
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    54
#ifdef TARGET_OS_ARCH_solaris_sparc
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    55
# include "prefetch_solaris_sparc.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    56
#endif
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    57
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    58
// Windows
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    59
#ifdef TARGET_OS_ARCH_windows_x86
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    60
# include "prefetch_windows_x86.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    61
#endif
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    62
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    63
// AIX
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    64
#ifdef TARGET_OS_ARCH_aix_ppc
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    65
# include "prefetch_aix_ppc.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    66
#endif
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    67
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    68
// BSD
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    69
#ifdef TARGET_OS_ARCH_bsd_x86
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    70
# include "prefetch_bsd_x86.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    71
#endif
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    72
#ifdef TARGET_OS_ARCH_bsd_zero
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    73
# include "prefetch_bsd_zero.inline.hpp"
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    74
#endif
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    75
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents:
diff changeset
    76
#endif // SHARE_VM_RUNTIME_PREFETCH_INLINE_HPP