< prev index next >

src/hotspot/cpu/ppc/globals_ppc.hpp

Print this page

 53 
 54 define_pd_global(intx, StackYellowPages,      DEFAULT_STACK_YELLOW_PAGES);
 55 define_pd_global(intx, StackRedPages,         DEFAULT_STACK_RED_PAGES);
 56 define_pd_global(intx, StackShadowPages,      DEFAULT_STACK_SHADOW_PAGES);
 57 define_pd_global(intx, StackReservedPages,    DEFAULT_STACK_RESERVED_PAGES);
 58 
 59 define_pd_global(bool,  VMContinuations, true);
 60 
 61 // Use large code-entry alignment.
 62 define_pd_global(uintx, CodeCacheSegmentSize,  128);
 63 define_pd_global(intx,  CodeEntryAlignment,    128);
 64 define_pd_global(intx,  OptoLoopAlignment,     16);
 65 define_pd_global(intx,  InlineSmallCode,       1500);
 66 
 67 // Flags for template interpreter.
 68 define_pd_global(bool, RewriteBytecodes,      true);
 69 define_pd_global(bool, RewriteFrequentPairs,  true);
 70 
 71 define_pd_global(bool, PreserveFramePointer,  false);
 72 



 73 define_pd_global(uintx, TypeProfileLevel, 111);
 74 
 75 define_pd_global(bool, CompactStrings, true);
 76 
 77 // 2x unrolled loop is shorter with more than 9 HeapWords.
 78 define_pd_global(intx, InitArrayShortSize, 9*BytesPerLong);
 79 
 80 // Platform dependent flag handling: flags only defined on this platform.
 81 #define ARCH_FLAGS(develop,                                                 \
 82                    product,                                                 \
 83                    notproduct,                                              \
 84                    range,                                                   \
 85                    constraint)                                              \
 86                                                                             \
 87   product(uintx, PowerArchitecturePPC64, 0, DIAGNOSTIC,                     \
 88           "Specify the PowerPC family version in use. If not provided, "    \
 89           "HotSpot will determine it automatically. Host family version "   \
 90           "is the maximum value allowed (instructions are not emulated).")  \
 91                                                                             \
 92   /* Reoptimize code-sequences of calls at runtime, e.g. replace an */      \

 53 
 54 define_pd_global(intx, StackYellowPages,      DEFAULT_STACK_YELLOW_PAGES);
 55 define_pd_global(intx, StackRedPages,         DEFAULT_STACK_RED_PAGES);
 56 define_pd_global(intx, StackShadowPages,      DEFAULT_STACK_SHADOW_PAGES);
 57 define_pd_global(intx, StackReservedPages,    DEFAULT_STACK_RESERVED_PAGES);
 58 
 59 define_pd_global(bool,  VMContinuations, true);
 60 
 61 // Use large code-entry alignment.
 62 define_pd_global(uintx, CodeCacheSegmentSize,  128);
 63 define_pd_global(intx,  CodeEntryAlignment,    128);
 64 define_pd_global(intx,  OptoLoopAlignment,     16);
 65 define_pd_global(intx,  InlineSmallCode,       1500);
 66 
 67 // Flags for template interpreter.
 68 define_pd_global(bool, RewriteBytecodes,      true);
 69 define_pd_global(bool, RewriteFrequentPairs,  true);
 70 
 71 define_pd_global(bool, PreserveFramePointer,  false);
 72 
 73 define_pd_global(bool, InlineTypePassFieldsAsArgs, false);
 74 define_pd_global(bool, InlineTypeReturnedAsFields, false);
 75 
 76 define_pd_global(uintx, TypeProfileLevel, 111);
 77 
 78 define_pd_global(bool, CompactStrings, true);
 79 
 80 // 2x unrolled loop is shorter with more than 9 HeapWords.
 81 define_pd_global(intx, InitArrayShortSize, 9*BytesPerLong);
 82 
 83 // Platform dependent flag handling: flags only defined on this platform.
 84 #define ARCH_FLAGS(develop,                                                 \
 85                    product,                                                 \
 86                    notproduct,                                              \
 87                    range,                                                   \
 88                    constraint)                                              \
 89                                                                             \
 90   product(uintx, PowerArchitecturePPC64, 0, DIAGNOSTIC,                     \
 91           "Specify the PowerPC family version in use. If not provided, "    \
 92           "HotSpot will determine it automatically. Host family version "   \
 93           "is the maximum value allowed (instructions are not emulated).")  \
 94                                                                             \
 95   /* Reoptimize code-sequences of calls at runtime, e.g. replace an */      \
< prev index next >