< prev index next >

src/share/vm/jvmci/jvmciCodeInstaller.cpp

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

*** 20,61 **** * or visit www.oracle.com if you need additional information or have any * questions. */ #include "precompiled.hpp" #include "code/compiledIC.hpp" #include "compiler/compileBroker.hpp" #include "compiler/disassembler.hpp" - #include "oops/oop.inline.hpp" - #include "oops/objArrayOop.inline.hpp" - #include "runtime/javaCalls.hpp" #include "jvmci/jvmciEnv.hpp" #include "jvmci/jvmciCompiler.hpp" #include "jvmci/jvmciCodeInstaller.hpp" #include "jvmci/jvmciJavaClasses.hpp" #include "jvmci/jvmciCompilerToVM.hpp" #include "jvmci/jvmciRuntime.hpp" ! #include "asm/register.hpp" ! #include "classfile/vmSymbols.hpp" ! #include "code/vmreg.hpp" ! ! #ifdef TARGET_ARCH_x86 ! # include "vmreg_x86.inline.hpp" ! #endif ! #ifdef TARGET_ARCH_sparc ! # include "vmreg_sparc.inline.hpp" ! #endif ! #ifdef TARGET_ARCH_zero ! # include "vmreg_zero.inline.hpp" ! #endif ! #ifdef TARGET_ARCH_arm ! # include "vmreg_arm.inline.hpp" ! #endif ! #ifdef TARGET_ARCH_ppc ! # include "vmreg_ppc.inline.hpp" ! #endif ! // frequently used constants // Allocate them with new so they are never destroyed (otherwise, a // forced exit could destroy these objects while they are still in // use). --- 20,44 ---- * or visit www.oracle.com if you need additional information or have any * questions. */ #include "precompiled.hpp" + #include "asm/register.hpp" + #include "classfile/vmSymbols.hpp" #include "code/compiledIC.hpp" + #include "code/vmreg.inline.hpp" #include "compiler/compileBroker.hpp" #include "compiler/disassembler.hpp" #include "jvmci/jvmciEnv.hpp" #include "jvmci/jvmciCompiler.hpp" #include "jvmci/jvmciCodeInstaller.hpp" #include "jvmci/jvmciJavaClasses.hpp" #include "jvmci/jvmciCompilerToVM.hpp" #include "jvmci/jvmciRuntime.hpp" ! #include "oops/oop.inline.hpp" ! #include "oops/objArrayOop.inline.hpp" ! #include "runtime/javaCalls.hpp" // frequently used constants // Allocate them with new so they are never destroyed (otherwise, a // forced exit could destroy these objects while they are still in // use).
< prev index next >