< prev index next >

src/share/vm/runtime/thread.hpp

Print this page
rev 11647 : 8161258: Simplify including platform files.
Summary: Include patform files with macros cpu_header() etc. Do various cleanups of macro usages. Remove _64/_32 from adlc generated files and platform .hpp files. Merge stubRoutines_x86*.hpp. Remove empty mutex_<os>* files.
Reviewed-by: dholmes, coleenp, kbarrett

*** 48,58 **** #include "utilities/macros.hpp" #if INCLUDE_ALL_GCS #include "gc/g1/dirtyCardQueue.hpp" #include "gc/g1/satbMarkQueue.hpp" #endif // INCLUDE_ALL_GCS ! #ifdef TARGET_ARCH_zero # include "stack_zero.hpp" #endif class ThreadSafepointState; class ThreadProfiler; --- 48,58 ---- #include "utilities/macros.hpp" #if INCLUDE_ALL_GCS #include "gc/g1/dirtyCardQueue.hpp" #include "gc/g1/satbMarkQueue.hpp" #endif // INCLUDE_ALL_GCS ! #ifdef ZERO # include "stack_zero.hpp" #endif class ThreadSafepointState; class ThreadProfiler;
*** 1903,1949 **** #else // INCLUDE_ALL_GCS void initialize_queues() { } #endif // INCLUDE_ALL_GCS // Machine dependent stuff ! #ifdef TARGET_OS_ARCH_linux_x86 ! # include "thread_linux_x86.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_linux_sparc ! # include "thread_linux_sparc.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_linux_zero ! # include "thread_linux_zero.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_solaris_x86 ! # include "thread_solaris_x86.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_solaris_sparc ! # include "thread_solaris_sparc.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_windows_x86 ! # include "thread_windows_x86.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_linux_arm ! # include "thread_linux_arm.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_linux_ppc ! # include "thread_linux_ppc.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_linux_aarch64 ! # include "thread_linux_aarch64.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_aix_ppc ! # include "thread_aix_ppc.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_bsd_x86 ! # include "thread_bsd_x86.hpp" ! #endif ! #ifdef TARGET_OS_ARCH_bsd_zero ! # include "thread_bsd_zero.hpp" ! #endif ! public: void set_blocked_on_compilation(bool value) { _blocked_on_compilation = value; } --- 1903,1913 ---- #else // INCLUDE_ALL_GCS void initialize_queues() { } #endif // INCLUDE_ALL_GCS // Machine dependent stuff ! #include OS_CPU_HEADER(thread) public: void set_blocked_on_compilation(bool value) { _blocked_on_compilation = value; }
< prev index next >