< prev index next >

src/share/vm/asm/codeBuffer.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

*** 26,35 **** --- 26,36 ---- #define SHARE_VM_ASM_CODEBUFFER_HPP #include "code/oopRecorder.hpp" #include "code/relocInfo.hpp" #include "utilities/debug.hpp" + #include "utilities/macros.hpp" class CodeStrings; class PhaseCFG; class Compile; class BufferBlob;
*** 631,658 **** void print(); #endif // The following header contains architecture-specific implementations ! #ifdef TARGET_ARCH_x86 ! # include "codeBuffer_x86.hpp" ! #endif ! #ifdef TARGET_ARCH_sparc ! # include "codeBuffer_sparc.hpp" ! #endif ! #ifdef TARGET_ARCH_zero ! # include "codeBuffer_zero.hpp" ! #endif ! #ifdef TARGET_ARCH_arm ! # include "codeBuffer_arm.hpp" ! #endif ! #ifdef TARGET_ARCH_ppc ! # include "codeBuffer_ppc.hpp" ! #endif ! #ifdef TARGET_ARCH_aarch64 ! # include "codeBuffer_aarch64.hpp" ! #endif }; inline void CodeSection::freeze() { --- 632,642 ---- void print(); #endif // The following header contains architecture-specific implementations ! #include CPU_HEADER(codeBuffer) }; inline void CodeSection::freeze() {
< prev index next >