comparison src/share/vm/runtime/java.cpp @ 22298:c28cb37b2e1d

Rename JVMCI to INCLUDE_JVMCI.
author twisti
date Wed, 22 Jul 2015 08:56:03 -0700
parents be896a1983c0
children 4a532b03e2cd
comparison
equal deleted inserted replaced
22297:571202729bbf 22298:c28cb37b2e1d
28 #include "classfile/systemDictionary.hpp" 28 #include "classfile/systemDictionary.hpp"
29 #include "code/codeCache.hpp" 29 #include "code/codeCache.hpp"
30 #include "compiler/compileBroker.hpp" 30 #include "compiler/compileBroker.hpp"
31 #include "compiler/compilerOracle.hpp" 31 #include "compiler/compilerOracle.hpp"
32 #include "interpreter/bytecodeHistogram.hpp" 32 #include "interpreter/bytecodeHistogram.hpp"
33 #ifdef JVMCI 33 #if INCLUDE_JVMCI
34 #include "jvmci/jvmciCompiler.hpp" 34 #include "jvmci/jvmciCompiler.hpp"
35 #include "jvmci/jvmciRuntime.hpp" 35 #include "jvmci/jvmciRuntime.hpp"
36 #endif 36 #endif
37 #include "memory/genCollectedHeap.hpp" 37 #include "memory/genCollectedHeap.hpp"
38 #include "memory/oopFactory.hpp" 38 #include "memory/oopFactory.hpp"
488 case BEFORE_EXIT_DONE: 488 case BEFORE_EXIT_DONE:
489 return; 489 return;
490 } 490 }
491 } 491 }
492 492
493 #ifdef JVMCI 493 #if INCLUDE_JVMCI
494 JVMCIRuntime::shutdown(); 494 JVMCIRuntime::shutdown();
495 #endif 495 #endif
496 496
497 // The only difference between this and Win32's _onexit procs is that 497 // The only difference between this and Win32's _onexit procs is that
498 // this version is invoked before any threads get killed. 498 // this version is invoked before any threads get killed.