< prev index next >

src/share/vm/utilities/copy.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

*** 24,33 **** --- 24,34 ---- #ifndef SHARE_VM_UTILITIES_COPY_HPP #define SHARE_VM_UTILITIES_COPY_HPP #include "runtime/stubRoutines.hpp" + #include "utilities/macros.hpp" // Assembly code for platforms that need it. extern "C" { void _Copy_conjoint_words(HeapWord* from, HeapWord* to, size_t count); void _Copy_disjoint_words(HeapWord* from, HeapWord* to, size_t count);
*** 330,356 **** } #endif } // Platform dependent implementations of the above methods. ! #ifdef TARGET_ARCH_x86 ! # include "copy_x86.hpp" ! #endif ! #ifdef TARGET_ARCH_sparc ! # include "copy_sparc.hpp" ! #endif ! #ifdef TARGET_ARCH_zero ! # include "copy_zero.hpp" ! #endif ! #ifdef TARGET_ARCH_arm ! # include "copy_arm.hpp" ! #endif ! #ifdef TARGET_ARCH_ppc ! # include "copy_ppc.hpp" ! #endif ! #ifdef TARGET_ARCH_aarch64 ! # include "copy_aarch64.hpp" ! #endif }; #endif // SHARE_VM_UTILITIES_COPY_HPP --- 331,340 ---- } #endif } // Platform dependent implementations of the above methods. ! #include CPU_HEADER(copy) }; #endif // SHARE_VM_UTILITIES_COPY_HPP
< prev index next >