1
1
/*
2
- * Copyright (c) 2000, 2024 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2000, 2025 , Oracle and/or its affiliates. All rights reserved.
3
3
* Copyright (c) 2014, Red Hat Inc. All rights reserved.
4
4
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5
5
*
@@ -51,8 +51,8 @@ define_pd_global(intx, NewSizeThreadIncrease, ScaleForWordSize(4*K));
51
51
define_pd_global (intx, LoopUnrollLimit, 60 );
52
52
define_pd_global (intx, LoopPercentProfileLimit, 10 );
53
53
// InitialCodeCacheSize derived from specjbb2000 run.
54
- define_pd_global (intx , InitialCodeCacheSize, 2496 *K); // Integral multiple of CodeCacheExpansionSize
55
- define_pd_global (intx , CodeCacheExpansionSize, 64 *K);
54
+ define_pd_global (size_t , InitialCodeCacheSize, 2496 *K); // Integral multiple of CodeCacheExpansionSize
55
+ define_pd_global (size_t , CodeCacheExpansionSize, 64 *K);
56
56
57
57
// Ergonomics related flags
58
58
define_pd_global (uint64_t ,MaxRAM, 128ULL *G);
@@ -69,12 +69,12 @@ define_pd_global(bool, SuperWordLoopUnrollAnalysis, true);
69
69
define_pd_global (uint, SuperWordStoreToLoadForwardingFailureDetection, 8 );
70
70
define_pd_global (bool , IdealizeClearArrayNode, true );
71
71
72
- define_pd_global (intx , ReservedCodeCacheSize, 48 *M);
73
- define_pd_global (intx , NonProfiledCodeHeapSize, 21 *M);
74
- define_pd_global (intx , ProfiledCodeHeapSize, 22 *M);
75
- define_pd_global (intx , NonNMethodCodeHeapSize, 5 *M );
76
- define_pd_global (uintx , CodeCacheMinBlockLength, 6 );
77
- define_pd_global (uintx , CodeCacheMinimumUseSpace, 400 *K);
72
+ define_pd_global (size_t , ReservedCodeCacheSize, 48 *M);
73
+ define_pd_global (size_t , NonProfiledCodeHeapSize, 21 *M);
74
+ define_pd_global (size_t , ProfiledCodeHeapSize, 22 *M);
75
+ define_pd_global (size_t , NonNMethodCodeHeapSize, 5 *M );
76
+ define_pd_global (size_t , CodeCacheMinBlockLength, 6 );
77
+ define_pd_global (size_t , CodeCacheMinimumUseSpace, 400 *K);
78
78
79
79
// Ergonomics related flags
80
80
define_pd_global (bool , NeverActAsServerClassMachine, false );
0 commit comments