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