Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/runtime/atomic.inline.hpp
32285 views
/*1* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_RUNTIME_ATOMIC_INLINE_HPP25#define SHARE_VM_RUNTIME_ATOMIC_INLINE_HPP2627#include "runtime/atomic.hpp"2829// Linux30#ifdef TARGET_OS_ARCH_linux_x8631# include "atomic_linux_x86.inline.hpp"32#endif33#ifdef TARGET_OS_ARCH_linux_sparc34# include "atomic_linux_sparc.inline.hpp"35#endif36#ifdef TARGET_OS_ARCH_linux_zero37# include "atomic_linux_zero.inline.hpp"38#endif39#ifdef TARGET_OS_ARCH_linux_arm40# include "atomic_linux_arm.inline.hpp"41#endif42#ifdef TARGET_OS_ARCH_linux_ppc43# include "atomic_linux_ppc.inline.hpp"44#endif45#ifdef TARGET_OS_ARCH_linux_aarch3246# include "atomic_linux_aarch32.inline.hpp"47#endif48#ifdef TARGET_OS_ARCH_linux_aarch6449# include "atomic_linux_aarch64.inline.hpp"50#endif5152// Solaris53#ifdef TARGET_OS_ARCH_solaris_x8654# include "atomic_solaris_x86.inline.hpp"55#endif56#ifdef TARGET_OS_ARCH_solaris_sparc57# include "atomic_solaris_sparc.inline.hpp"58#endif5960// Windows61#ifdef TARGET_OS_ARCH_windows_x8662# include "atomic_windows_x86.inline.hpp"63#endif6465// AIX66#ifdef TARGET_OS_ARCH_aix_ppc67# include "atomic_aix_ppc.inline.hpp"68#endif6970// BSD71#ifdef TARGET_OS_ARCH_bsd_aarch6472# include "atomic_bsd_aarch64.inline.hpp"73#endif74#ifdef TARGET_OS_ARCH_bsd_x8675# include "atomic_bsd_x86.inline.hpp"76#endif77#ifdef TARGET_OS_ARCH_bsd_zero78# include "atomic_bsd_zero.inline.hpp"79#endif8081#endif // SHARE_VM_RUNTIME_ATOMIC_INLINE_HPP828384