< prev index next >

src/hotspot/share/runtime/globals.hpp

Print this page
rev 47445 : 8171853: Remove Shark compiler

*** 61,77 **** #endif #ifdef COMPILER2 #include CPU_HEADER(c2_globals) #include OS_HEADER(c2_globals) #endif - #ifdef SHARK - #ifdef ZERO - # include "shark_globals_zero.hpp" - #endif - #endif ! #if !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK) && !INCLUDE_JVMCI define_pd_global(bool, BackgroundCompilation, false); define_pd_global(bool, UseTLAB, false); define_pd_global(bool, CICompileOSR, false); define_pd_global(bool, UseTypeProfile, false); define_pd_global(bool, UseOnStackReplacement, false); --- 61,72 ---- #endif #ifdef COMPILER2 #include CPU_HEADER(c2_globals) #include OS_HEADER(c2_globals) #endif ! #if !defined(COMPILER1) && !defined(COMPILER2) && !INCLUDE_JVMCI define_pd_global(bool, BackgroundCompilation, false); define_pd_global(bool, UseTLAB, false); define_pd_global(bool, CICompileOSR, false); define_pd_global(bool, UseTypeProfile, false); define_pd_global(bool, UseOnStackReplacement, false);
*** 145,161 **** KIND_PLATFORM_DEPENDENT = 1 << 10, KIND_READ_WRITE = 1 << 11, KIND_C1 = 1 << 12, KIND_C2 = 1 << 13, KIND_ARCH = 1 << 14, ! KIND_SHARK = 1 << 15, ! KIND_LP64_PRODUCT = 1 << 16, ! KIND_COMMERCIAL = 1 << 17, ! KIND_JVMCI = 1 << 18, // set this bit if the flag was set on the command line ! ORIG_COMMAND_LINE = 1 << 19, KIND_MASK = ~(VALUE_ORIGIN_MASK | ORIG_COMMAND_LINE) }; enum Error { --- 140,155 ---- KIND_PLATFORM_DEPENDENT = 1 << 10, KIND_READ_WRITE = 1 << 11, KIND_C1 = 1 << 12, KIND_C2 = 1 << 13, KIND_ARCH = 1 << 14, ! KIND_LP64_PRODUCT = 1 << 15, ! KIND_COMMERCIAL = 1 << 16, ! KIND_JVMCI = 1 << 17, // set this bit if the flag was set on the command line ! ORIG_COMMAND_LINE = 1 << 18, KIND_MASK = ~(VALUE_ORIGIN_MASK | ORIG_COMMAND_LINE) }; enum Error {
< prev index next >