goetz@6912: /* goetz@6912: * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. goetz@6912: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. goetz@6912: * goetz@6912: * This code is free software; you can redistribute it and/or modify it goetz@6912: * under the terms of the GNU General Public License version 2 only, as goetz@6912: * published by the Free Software Foundation. goetz@6912: * goetz@6912: * This code is distributed in the hope that it will be useful, but WITHOUT goetz@6912: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or goetz@6912: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License goetz@6912: * version 2 for more details (a copy is included in the LICENSE file that goetz@6912: * accompanied this code). goetz@6912: * goetz@6912: * You should have received a copy of the GNU General Public License version goetz@6912: * 2 along with this work; if not, write to the Free Software Foundation, goetz@6912: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. goetz@6912: * goetz@6912: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA goetz@6912: * or visit www.oracle.com if you need additional information or have any goetz@6912: * questions. goetz@6912: * goetz@6912: */ goetz@6912: goetz@6912: #ifndef SHARE_VM_RUNTIME_PREFETCH_INLINE_HPP goetz@6912: #define SHARE_VM_RUNTIME_PREFETCH_INLINE_HPP goetz@6912: goetz@6912: #include "runtime/prefetch.hpp" goetz@6912: goetz@6912: // Linux goetz@6912: #ifdef TARGET_OS_ARCH_linux_x86 goetz@6912: # include "prefetch_linux_x86.inline.hpp" goetz@6912: #endif goetz@6912: #ifdef TARGET_OS_ARCH_linux_sparc goetz@6912: # include "prefetch_linux_sparc.inline.hpp" goetz@6912: #endif goetz@6912: #ifdef TARGET_OS_ARCH_linux_zero goetz@6912: # include "prefetch_linux_zero.inline.hpp" goetz@6912: #endif goetz@6912: #ifdef TARGET_OS_ARCH_linux_arm goetz@6912: # include "prefetch_linux_arm.inline.hpp" goetz@6912: #endif goetz@6912: #ifdef TARGET_OS_ARCH_linux_ppc goetz@6912: # include "prefetch_linux_ppc.inline.hpp" goetz@6912: #endif goetz@6912: goetz@6912: // Solaris goetz@6912: #ifdef TARGET_OS_ARCH_solaris_x86 goetz@6912: # include "prefetch_solaris_x86.inline.hpp" goetz@6912: #endif goetz@6912: #ifdef TARGET_OS_ARCH_solaris_sparc goetz@6912: # include "prefetch_solaris_sparc.inline.hpp" goetz@6912: #endif goetz@6912: goetz@6912: // Windows goetz@6912: #ifdef TARGET_OS_ARCH_windows_x86 goetz@6912: # include "prefetch_windows_x86.inline.hpp" goetz@6912: #endif goetz@6912: goetz@6912: // AIX goetz@6912: #ifdef TARGET_OS_ARCH_aix_ppc goetz@6912: # include "prefetch_aix_ppc.inline.hpp" goetz@6912: #endif goetz@6912: goetz@6912: // BSD goetz@6912: #ifdef TARGET_OS_ARCH_bsd_x86 goetz@6912: # include "prefetch_bsd_x86.inline.hpp" goetz@6912: #endif goetz@6912: #ifdef TARGET_OS_ARCH_bsd_zero goetz@6912: # include "prefetch_bsd_zero.inline.hpp" goetz@6912: #endif goetz@6912: goetz@6912: #endif // SHARE_VM_RUNTIME_PREFETCH_INLINE_HPP