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