182 define_pd_global(intx, OnStackReplacePercentage, 0);
183 define_pd_global(bool, ResizeTLAB, false);
184 define_pd_global(intx, FreqInlineSize, 0);
185 define_pd_global(intx, NewSizeThreadIncrease, 4*K);
186 define_pd_global(intx, InlineClassNatives, true);
187 define_pd_global(intx, InlineUnsafeOps, true);
188 define_pd_global(intx, InitialCodeCacheSize, 160*K);
189 define_pd_global(intx, ReservedCodeCacheSize, 32*M);
190 define_pd_global(intx, CodeCacheExpansionSize, 32*K);
191 define_pd_global(intx, CodeCacheMinBlockLength, 1);
192 define_pd_global(intx, CodeCacheMinimumUseSpace, 200*K);
193 define_pd_global(uintx,MetaspaceSize, ScaleForWordSize(4*M));
194 define_pd_global(bool, NeverActAsServerClassMachine, true);
195 define_pd_global(uint64_t,MaxRAM, 1ULL*G);
196 #define CI_COMPILER_COUNT 0
197 #else
198
199 #ifdef COMPILER2
200 #define CI_COMPILER_COUNT 2
201 #else
202 #define CI_COMPILER_COUNT 1
203 #endif // COMPILER2
204
205 #endif // no compilers
206
207 // string type aliases used only in this file
208 typedef const char* ccstr;
209 typedef const char* ccstrlist; // represents string arguments which accumulate
210
211 struct Flag {
212 enum Flags {
213 // value origin
214 DEFAULT = 0,
215 COMMAND_LINE = 1,
216 ENVIRON_VAR = 2,
217 CONFIG_FILE = 3,
218 MANAGEMENT = 4,
219 ERGONOMIC = 5,
220 ATTACH_ON_DEMAND = 6,
221 INTERNAL = 7,
222
|
182 define_pd_global(intx, OnStackReplacePercentage, 0);
183 define_pd_global(bool, ResizeTLAB, false);
184 define_pd_global(intx, FreqInlineSize, 0);
185 define_pd_global(intx, NewSizeThreadIncrease, 4*K);
186 define_pd_global(intx, InlineClassNatives, true);
187 define_pd_global(intx, InlineUnsafeOps, true);
188 define_pd_global(intx, InitialCodeCacheSize, 160*K);
189 define_pd_global(intx, ReservedCodeCacheSize, 32*M);
190 define_pd_global(intx, CodeCacheExpansionSize, 32*K);
191 define_pd_global(intx, CodeCacheMinBlockLength, 1);
192 define_pd_global(intx, CodeCacheMinimumUseSpace, 200*K);
193 define_pd_global(uintx,MetaspaceSize, ScaleForWordSize(4*M));
194 define_pd_global(bool, NeverActAsServerClassMachine, true);
195 define_pd_global(uint64_t,MaxRAM, 1ULL*G);
196 #define CI_COMPILER_COUNT 0
197 #else
198
199 #ifdef COMPILER2
200 #define CI_COMPILER_COUNT 2
201 #else
202
203 // For shark/zero CI_COMPILER_COUNT may have
204 // been defined above
205 #ifndef CI_COMPILER_COUNT
206 #define CI_COMPILER_COUNT 1
207 #endif
208
209 #endif // COMPILER2
210
211 #endif // no compilers
212
213 // string type aliases used only in this file
214 typedef const char* ccstr;
215 typedef const char* ccstrlist; // represents string arguments which accumulate
216
217 struct Flag {
218 enum Flags {
219 // value origin
220 DEFAULT = 0,
221 COMMAND_LINE = 1,
222 ENVIRON_VAR = 2,
223 CONFIG_FILE = 3,
224 MANAGEMENT = 4,
225 ERGONOMIC = 5,
226 ATTACH_ON_DEMAND = 6,
227 INTERNAL = 7,
228
|