@@ -129,7 +129,7 @@ const size_t minimumSymbolTableSize = 1024;
129
129
" Use 32-bit class pointers in 64-bit VM. " \
130
130
" lp64_product means flag is always constant in 32 bit VM" ) \
131
131
\
132
- product(intx , ObjectAlignmentInBytes, 8 , \
132
+ product(int , ObjectAlignmentInBytes, 8 , \
133
133
" Default object alignment in bytes, 8 is minimum" ) \
134
134
range(8 , 256 ) \
135
135
constraint(ObjectAlignmentInBytesConstraintFunc, AtParse)
@@ -146,7 +146,7 @@ const size_t minimumSymbolTableSize = 1024;
146
146
constraint)
147
147
const bool UseCompressedOops = false ;
148
148
const bool UseCompressedClassPointers = false ;
149
- const intx ObjectAlignmentInBytes = 8 ;
149
+ const int ObjectAlignmentInBytes = 8 ;
150
150
151
151
#endif // _LP64
152
152
@@ -474,13 +474,13 @@ const intx ObjectAlignmentInBytes = 8;
474
474
product(bool , ExecutingUnitTests, false , \
475
475
" Whether the JVM is running unit tests or not" ) \
476
476
\
477
- develop(uintx , ErrorHandlerTest, 0 , \
477
+ develop(uint , ErrorHandlerTest, 0 , \
478
478
" If > 0, provokes an error after VM initialization; the value " \
479
479
" determines which error to provoke. See controlled_crash() " \
480
480
" in vmError.cpp." ) \
481
481
range(0 , 17 ) \
482
482
\
483
- develop(uintx , TestCrashInErrorHandler, 0 , \
483
+ develop(uint , TestCrashInErrorHandler, 0 , \
484
484
" If > 0, provokes an error inside VM error handler (a secondary " \
485
485
" crash). see controlled_crash() in vmError.cpp" ) \
486
486
range(0 , 17 ) \
@@ -796,7 +796,7 @@ const intx ObjectAlignmentInBytes = 8;
796
796
product(bool , RestrictContended, true , \
797
797
" Restrict @Contended to trusted classes" ) \
798
798
\
799
- product(intx , DiagnoseSyncOnValueBasedClasses, 0 , DIAGNOSTIC, \
799
+ product(int , DiagnoseSyncOnValueBasedClasses, 0 , DIAGNOSTIC, \
800
800
" Detect and take action upon identifying synchronization on " \
801
801
" value based classes. Modes: " \
802
802
" 0: off; " \
@@ -1609,7 +1609,7 @@ const intx ObjectAlignmentInBytes = 8;
1609
1609
/* Priorities */ \
1610
1610
product_pd(bool , UseThreadPriorities, " Use native thread priorities" ) \
1611
1611
\
1612
- product(intx , ThreadPriorityPolicy, 0 , \
1612
+ product(int , ThreadPriorityPolicy, 0 , \
1613
1613
" 0 : Normal. " \
1614
1614
" VM chooses priorities that are appropriate for normal " \
1615
1615
" applications. " \
@@ -1634,53 +1634,53 @@ const intx ObjectAlignmentInBytes = 8;
1634
1634
product(bool , ThreadPriorityVerbose, false , \
1635
1635
" Print priority changes" ) \
1636
1636
\
1637
- product(intx , CompilerThreadPriority, -1 , \
1637
+ product(int , CompilerThreadPriority, -1 , \
1638
1638
" The native priority at which compiler threads should run " \
1639
1639
" (-1 means no change)" ) \
1640
1640
range(min_jint, max_jint) \
1641
1641
\
1642
- product(intx , VMThreadPriority, -1 , \
1642
+ product(int , VMThreadPriority, -1 , \
1643
1643
" The native priority at which the VM thread should run " \
1644
1644
" (-1 means no change)" ) \
1645
1645
range(-1 , 127 ) \
1646
1646
\
1647
- product(intx , JavaPriority1_To_OSPriority, -1 , \
1647
+ product(int , JavaPriority1_To_OSPriority, -1 , \
1648
1648
" Map Java priorities to OS priorities" ) \
1649
1649
range(-1 , 127 ) \
1650
1650
\
1651
- product(intx , JavaPriority2_To_OSPriority, -1 , \
1651
+ product(int , JavaPriority2_To_OSPriority, -1 , \
1652
1652
" Map Java priorities to OS priorities" ) \
1653
1653
range(-1 , 127 ) \
1654
1654
\
1655
- product(intx , JavaPriority3_To_OSPriority, -1 , \
1655
+ product(int , JavaPriority3_To_OSPriority, -1 , \
1656
1656
" Map Java priorities to OS priorities" ) \
1657
1657
range(-1 , 127 ) \
1658
1658
\
1659
- product(intx , JavaPriority4_To_OSPriority, -1 , \
1659
+ product(int , JavaPriority4_To_OSPriority, -1 , \
1660
1660
" Map Java priorities to OS priorities" ) \
1661
1661
range(-1 , 127 ) \
1662
1662
\
1663
- product(intx , JavaPriority5_To_OSPriority, -1 , \
1663
+ product(int , JavaPriority5_To_OSPriority, -1 , \
1664
1664
" Map Java priorities to OS priorities" ) \
1665
1665
range(-1 , 127 ) \
1666
1666
\
1667
- product(intx , JavaPriority6_To_OSPriority, -1 , \
1667
+ product(int , JavaPriority6_To_OSPriority, -1 , \
1668
1668
" Map Java priorities to OS priorities" ) \
1669
1669
range(-1 , 127 ) \
1670
1670
\
1671
- product(intx , JavaPriority7_To_OSPriority, -1 , \
1671
+ product(int , JavaPriority7_To_OSPriority, -1 , \
1672
1672
" Map Java priorities to OS priorities" ) \
1673
1673
range(-1 , 127 ) \
1674
1674
\
1675
- product(intx , JavaPriority8_To_OSPriority, -1 , \
1675
+ product(int , JavaPriority8_To_OSPriority, -1 , \
1676
1676
" Map Java priorities to OS priorities" ) \
1677
1677
range(-1 , 127 ) \
1678
1678
\
1679
- product(intx , JavaPriority9_To_OSPriority, -1 , \
1679
+ product(int , JavaPriority9_To_OSPriority, -1 , \
1680
1680
" Map Java priorities to OS priorities" ) \
1681
1681
range(-1 , 127 ) \
1682
1682
\
1683
- product(intx , JavaPriority10_To_OSPriority,-1 , \
1683
+ product(int , JavaPriority10_To_OSPriority,-1 , \
1684
1684
" Map Java priorities to OS priorities" ) \
1685
1685
range(-1 , 127 ) \
1686
1686
\
@@ -1760,12 +1760,12 @@ const intx ObjectAlignmentInBytes = 8;
1760
1760
product(bool , PerfDisableSharedMem, false , \
1761
1761
" Store performance data in standard memory" ) \
1762
1762
\
1763
- product(intx , PerfDataMemorySize, 32 *K, \
1763
+ product(int , PerfDataMemorySize, 32 *K, \
1764
1764
" Size of performance data memory region. Will be rounded " \
1765
1765
" up to a multiple of the native os page size." ) \
1766
1766
range(128 , 32 *64 *K) \
1767
1767
\
1768
- product(intx , PerfMaxStringConstLength, 1024 , \
1768
+ product(int , PerfMaxStringConstLength, 1024 , \
1769
1769
" Maximum PerfStringConstant string length before truncation" ) \
1770
1770
range(32 , 32 *K) \
1771
1771
\
@@ -1775,7 +1775,7 @@ const intx ObjectAlignmentInBytes = 8;
1775
1775
product(bool , PerfBypassFileSystemCheck, false , \
1776
1776
" Bypass Win32 file system criteria checks (Windows Only)" ) \
1777
1777
\
1778
- product(intx , UnguardOnExecutionViolation, 0 , \
1778
+ product(int , UnguardOnExecutionViolation, 0 , \
1779
1779
" Unguard page and retry on no-execute fault (Win32 only) " \
1780
1780
" 0=off, 1=conservative, 2=aggressive" ) \
1781
1781
range(0 , 2 ) \
@@ -1823,7 +1823,7 @@ const intx ObjectAlignmentInBytes = 8;
1823
1823
product(ccstr, SharedArchiveConfigFile, NULL , \
1824
1824
" Data to add to the CDS archive file" ) \
1825
1825
\
1826
- product(uintx , SharedSymbolTableBucketSize, 4 , \
1826
+ product(uint , SharedSymbolTableBucketSize, 4 , \
1827
1827
" Average number of symbols per bucket in shared table" ) \
1828
1828
range(2 , 246 ) \
1829
1829
\
@@ -1949,7 +1949,7 @@ const intx ObjectAlignmentInBytes = 8;
1949
1949
product(ccstr, ExtraSharedClassListFile, NULL , \
1950
1950
" Extra classlist for building the CDS archive file" ) \
1951
1951
\
1952
- product(intx , ArchiveRelocationMode, 0 , DIAGNOSTIC, \
1952
+ product(int , ArchiveRelocationMode, 0 , DIAGNOSTIC, \
1953
1953
" (0) first map at preferred address, and if " \
1954
1954
" unsuccessful, map at alternative address (default); " \
1955
1955
" (1) always map at alternative address; " \
0 commit comments