src/share/vm/opto/runtime.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/icBuffer.hpp" #include "code/nmethod.hpp" #include "code/pcDesc.hpp" #include "code/scopeDesc.hpp"
*** 43,52 **** --- 44,54 ---- #include "memory/barrierSet.hpp" #include "memory/gcLocker.inline.hpp" #include "memory/oopFactory.hpp" #include "oops/objArrayKlass.hpp" #include "oops/oop.inline.hpp" + #include "opto/ad.hpp" #include "opto/addnode.hpp" #include "opto/callnode.hpp" #include "opto/cfgnode.hpp" #include "opto/graphKit.hpp" #include "opto/machnode.hpp"
*** 66,96 **** #include "runtime/vframe.hpp" #include "runtime/vframeArray.hpp" #include "runtime/vframe_hp.hpp" #include "utilities/copy.hpp" #include "utilities/preserveException.hpp" - #ifdef TARGET_ARCH_MODEL_x86_32 - # include "adfiles/ad_x86_32.hpp" - #endif - #ifdef TARGET_ARCH_MODEL_x86_64 - # include "adfiles/ad_x86_64.hpp" - #endif - #ifdef TARGET_ARCH_MODEL_sparc - # include "adfiles/ad_sparc.hpp" - #endif - #ifdef TARGET_ARCH_MODEL_zero - # include "adfiles/ad_zero.hpp" - #endif - #ifdef TARGET_ARCH_MODEL_arm - # include "adfiles/ad_arm.hpp" - #endif - #ifdef TARGET_ARCH_MODEL_ppc_32 - # include "adfiles/ad_ppc_32.hpp" - #endif - #ifdef TARGET_ARCH_MODEL_ppc_64 - # include "adfiles/ad_ppc_64.hpp" - #endif // For debugging purposes: // To force FullGCALot inside a runtime function, add the following two lines // --- 68,77 ----