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