src/share/vm/runtime/sharedRuntime.cpp

Print this page
rev 6670 : 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
Reviewed-by: lfoltan, coleenp, dholmes

*** 23,32 **** --- 23,33 ---- */ #include "precompiled.hpp" #include "classfile/systemDictionary.hpp" #include "classfile/vmSymbols.hpp" + #include "code/codeCache.hpp" #include "code/compiledIC.hpp" #include "code/scopeDesc.hpp" #include "code/vtableStubs.hpp" #include "compiler/abstractCompiler.hpp" #include "compiler/compileBroker.hpp"
*** 57,86 **** #include "utilities/dtrace.hpp" #include "utilities/events.hpp" #include "utilities/hashtable.inline.hpp" #include "utilities/macros.hpp" #include "utilities/xmlstream.hpp" - #ifdef TARGET_ARCH_x86 - # include "nativeInst_x86.hpp" - # include "vmreg_x86.inline.hpp" - #endif - #ifdef TARGET_ARCH_sparc - # include "nativeInst_sparc.hpp" - # include "vmreg_sparc.inline.hpp" - #endif - #ifdef TARGET_ARCH_zero - # include "nativeInst_zero.hpp" - # include "vmreg_zero.inline.hpp" - #endif - #ifdef TARGET_ARCH_arm - # include "nativeInst_arm.hpp" - # include "vmreg_arm.inline.hpp" - #endif - #ifdef TARGET_ARCH_ppc - # include "nativeInst_ppc.hpp" - # include "vmreg_ppc.inline.hpp" - #endif #ifdef COMPILER1 #include "c1/c1_Runtime1.hpp" #endif PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC --- 58,67 ----