@@ -443,7 +443,7 @@ const int ObjectAlignmentInBytes = 8;
443443 product(bool , LogEvents, true , DIAGNOSTIC, \
444444 " Enable the various ring buffer event logs" ) \
445445 \
446- product(uintx , LogEventsBufferEntries, 20 , DIAGNOSTIC, \
446+ product(int , LogEventsBufferEntries, 20 , DIAGNOSTIC, \
447447 " Number of ring buffer event logs" ) \
448448 range(1 , NOT_LP64(1 *K) LP64_ONLY(1 *M)) \
449449 \
@@ -1101,7 +1101,7 @@ const int ObjectAlignmentInBytes = 8;
11011101 notproduct(bool , CollectIndexSetStatistics, false , \
11021102 " Collect information about IndexSets" ) \
11031103 \
1104- develop(intx , FastAllocateSizeLimit, 128 *K, \
1104+ develop(int , FastAllocateSizeLimit, 128 *K, \
11051105 /* Note: This value is zero mod 1<<13 for a cheap sparc set. */ \
11061106 " Inline allocations larger than this in doublewords must go slow" )\
11071107 \
@@ -1234,28 +1234,28 @@ const int ObjectAlignmentInBytes = 8;
12341234 " When using recompilation, never interpret methods " \
12351235 " containing loops" ) \
12361236 \
1237- product(intx , AllocatePrefetchStyle, 1 , \
1237+ product(int , AllocatePrefetchStyle, 1 , \
12381238 " 0 = no prefetch, " \
12391239 " 1 = generate prefetch instructions for each allocation, " \
12401240 " 2 = use TLAB watermark to gate allocation prefetch, " \
12411241 " 3 = generate one prefetch instruction per cache line" ) \
12421242 range(0 , 3 ) \
12431243 \
1244- product(intx , AllocatePrefetchDistance, -1 , \
1244+ product(int , AllocatePrefetchDistance, -1 , \
12451245 " Distance to prefetch ahead of allocation pointer. " \
12461246 " -1: use system-specific value (automatically determined" ) \
12471247 range(-1 , 512 ) \
12481248 \
1249- product(intx , AllocatePrefetchLines, 3 , \
1249+ product(int , AllocatePrefetchLines, 3 , \
12501250 " Number of lines to prefetch ahead of array allocation pointer" ) \
12511251 range(1 , 64 ) \
12521252 \
1253- product(intx , AllocateInstancePrefetchLines, 1 , \
1253+ product(int , AllocateInstancePrefetchLines, 1 , \
12541254 " Number of lines to prefetch ahead of instance allocation " \
12551255 " pointer" ) \
12561256 range(1 , 64 ) \
12571257 \
1258- product(intx , AllocatePrefetchStepSize, 16 , \
1258+ product(int , AllocatePrefetchStepSize, 16 , \
12591259 " Step size in bytes of sequential prefetch instructions" ) \
12601260 range(1 , 512 ) \
12611261 constraint(AllocatePrefetchStepSizeConstraintFunc,AfterMemoryInit)\
@@ -1308,7 +1308,7 @@ const int ObjectAlignmentInBytes = 8;
13081308 develop(intx, MallocCatchPtr, -1 , \
13091309 " Hit breakpoint when mallocing/freeing this pointer" ) \
13101310 \
1311- develop(intx , StackPrintLimit, 100 , \
1311+ develop(int , StackPrintLimit, 100 , \
13121312 " number of stack frames to print in VM-level stack dump" ) \
13131313 \
13141314 product(int , ErrorLogPrintCodeLimit, 3 , DIAGNOSTIC, \
@@ -1742,7 +1742,7 @@ const int ObjectAlignmentInBytes = 8;
17421742 " The string %p in the file name (if present) " \
17431743 " will be replaced by pid" ) \
17441744 \
1745- product(intx , PerfDataSamplingInterval, 50 , \
1745+ product(int , PerfDataSamplingInterval, 50 , \
17461746 " Data sampling interval (in milliseconds)" ) \
17471747 range(PeriodicTask::min_interval, max_jint) \
17481748 constraint(PerfDataSamplingIntervalFunc, AfterErgo) \
0 commit comments