Skip to content

Commit 584db98

Browse files
committedJan 8, 2020
8236625: Remove writeable macro from JVM flags declaration
Reviewed-by: coleenp, hseigel, gziemski
1 parent 7d8519f commit 584db98

35 files changed

+122
-549
lines changed
 

‎src/hotspot/cpu/aarch64/globals_aarch64.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2015, 2019, Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -81,8 +81,7 @@ define_pd_global(intx, InlineSmallCode, 1000);
8181
experimental, \
8282
notproduct, \
8383
range, \
84-
constraint, \
85-
writeable) \
84+
constraint) \
8685
\
8786
product(bool, NearCpool, true, \
8887
"constant pool is close to instructions") \

‎src/hotspot/cpu/arm/globals_arm.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -76,6 +76,5 @@ define_pd_global(intx, InitArrayShortSize, 8*BytesPerLong);
7676
experimental, \
7777
notproduct, \
7878
range, \
79-
constraint, \
80-
writeable)
79+
constraint)
8180
#endif // CPU_ARM_GLOBALS_ARM_HPP

‎src/hotspot/cpu/ppc/globals_ppc.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2012, 2018 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -81,8 +81,7 @@ define_pd_global(intx, InitArrayShortSize, 9*BytesPerLong);
8181
experimental, \
8282
notproduct, \
8383
range, \
84-
constraint, \
85-
writeable) \
84+
constraint) \
8685
\
8786
product(uintx, PowerArchitecturePPC64, 0, \
8887
"CPU Version: x for PowerX. Currently recognizes Power5 to " \

‎src/hotspot/cpu/s390/globals_s390.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2016, 2018 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -82,8 +82,7 @@ define_pd_global(intx, InitArrayShortSize, 1*BytesPerLong);
8282
experimental, \
8383
notproduct, \
8484
range, \
85-
constraint, \
86-
writeable) \
85+
constraint) \
8786
\
8887
/* Reoptimize code-sequences of calls at runtime, e.g. replace an */ \
8988
/* indirect call by a direct call. */ \

‎src/hotspot/cpu/sparc/globals_sparc.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -86,8 +86,7 @@ define_pd_global(intx, InitArrayShortSize, 8*BytesPerLong);
8686
experimental, \
8787
notproduct, \
8888
range, \
89-
constraint, \
90-
writeable) \
89+
constraint) \
9190
\
9291
product(intx, UseVIS, 99, \
9392
"Highest supported VIS instructions set on SPARC") \

‎src/hotspot/cpu/x86/globals_x86.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -95,8 +95,7 @@ define_pd_global(intx, InitArrayShortSize, 8*BytesPerLong);
9595
experimental, \
9696
notproduct, \
9797
range, \
98-
constraint, \
99-
writeable) \
98+
constraint) \
10099
\
101100
develop(bool, IEEEPrecision, true, \
102101
"Enables IEEE precision (for INTEL only)") \

‎src/hotspot/cpu/zero/globals_zero.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
33
* Copyright 2007, 2008, 2009, 2010, 2011 Red Hat, Inc.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -79,8 +79,7 @@ define_pd_global(bool, CompactStrings, false);
7979
experimental, \
8080
notproduct, \
8181
range, \
82-
constraint, \
83-
writeable) \
82+
constraint) \
8483
\
8584
product(bool, UseFastEmptyMethods, true, \
8685
"Use fast method entry code for empty methods") \

‎src/hotspot/os/aix/globals_aix.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2012, 2018 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -38,8 +38,7 @@
3838
diagnostic_pd, \
3939
notproduct, \
4040
range, \
41-
constraint, \
42-
writeable) \
41+
constraint) \
4342
\
4443
/* Whether to allow the VM to run if EXTSHM=ON. EXTSHM is an environment */ \
4544
/* variable used on AIX to activate certain hacks which allow more shm segments */\

‎src/hotspot/os/bsd/globals_bsd.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -36,8 +36,7 @@
3636
diagnostic_pd, \
3737
notproduct, \
3838
range, \
39-
constraint, \
40-
writeable) \
39+
constraint) \
4140
\
4241
product(bool, UseOprofile, false, \
4342
"enable support for Oprofile profiler") \

‎src/hotspot/os/linux/globals_linux.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -36,8 +36,7 @@
3636
diagnostic_pd, \
3737
notproduct, \
3838
range, \
39-
constraint, \
40-
writeable) \
39+
constraint) \
4140
\
4241
product(bool, UseOprofile, false, \
4342
"enable support for Oprofile profiler") \

‎src/hotspot/os/solaris/globals_solaris.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -36,8 +36,7 @@
3636
diagnostic_pd, \
3737
notproduct, \
3838
range, \
39-
constraint, \
40-
writeable) \
39+
constraint) \
4140
\
4241
product(bool, UseExtendedFileIO, true, \
4342
"Enable workaround for limitations of stdio FILE structure")

‎src/hotspot/os/windows/globals_windows.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -36,8 +36,7 @@
3636
diagnostic_pd, \
3737
notproduct, \
3838
range, \
39-
constraint, \
40-
writeable)
39+
constraint)
4140

4241

4342
//

‎src/hotspot/share/c1/c1_globals.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -42,8 +42,7 @@
4242
diagnostic_pd, \
4343
notproduct, \
4444
range, \
45-
constraint, \
46-
writeable) \
45+
constraint) \
4746
\
4847
/* Printing */ \
4948
notproduct(bool, PrintC1Statistics, false, \

‎src/hotspot/share/gc/epsilon/epsilon_globals.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/*
2+
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
23
* Copyright (c) 2017, 2018, Red Hat, Inc. All rights reserved.
34
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
45
*
@@ -43,8 +44,7 @@
4344
product_rw, \
4445
lp64_product, \
4546
range, \
46-
constraint, \
47-
writeable) \
47+
constraint) \
4848
\
4949
experimental(size_t, EpsilonPrintHeapSteps, 20, \
5050
"Print heap occupancy stats with this number of steps. " \

‎src/hotspot/share/gc/g1/g1_globals.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -43,8 +43,7 @@
4343
product_rw, \
4444
lp64_product, \
4545
range, \
46-
constraint, \
47-
writeable) \
46+
constraint) \
4847
\
4948
product(bool, G1UseAdaptiveIHOP, true, \
5049
"Adaptively adjust the initiating heap occupancy from the " \

‎src/hotspot/share/gc/parallel/parallel_globals.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -37,8 +37,7 @@
3737
product_rw, \
3838
lp64_product, \
3939
range, \
40-
constraint, \
41-
writeable) \
40+
constraint) \
4241
product(uintx, HeapMaximumCompactionInterval, 20, \
4342
"How often should we maximally compact the heap (not allowing " \
4443
"any dead space)") \

‎src/hotspot/share/gc/serial/serial_globals.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -37,7 +37,6 @@
3737
product_rw, \
3838
lp64_product, \
3939
range, \
40-
constraint, \
41-
writeable)
40+
constraint)
4241

4342
#endif // SHARE_GC_SERIAL_SERIAL_GLOBALS_HPP

‎src/hotspot/share/gc/shared/gc_globals.hpp

+8-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -58,8 +58,7 @@
5858
product_rw, \
5959
lp64_product, \
6060
range, \
61-
constraint, \
62-
writeable) \
61+
constraint) \
6362
\
6463
EPSILONGC_ONLY(GC_EPSILON_FLAGS( \
6564
develop, \
@@ -74,8 +73,7 @@
7473
product_rw, \
7574
lp64_product, \
7675
range, \
77-
constraint, \
78-
writeable)) \
76+
constraint)) \
7977
\
8078
G1GC_ONLY(GC_G1_FLAGS( \
8179
develop, \
@@ -90,8 +88,7 @@
9088
product_rw, \
9189
lp64_product, \
9290
range, \
93-
constraint, \
94-
writeable)) \
91+
constraint)) \
9592
\
9693
PARALLELGC_ONLY(GC_PARALLEL_FLAGS( \
9794
develop, \
@@ -106,8 +103,7 @@
106103
product_rw, \
107104
lp64_product, \
108105
range, \
109-
constraint, \
110-
writeable)) \
106+
constraint)) \
111107
\
112108
SERIALGC_ONLY(GC_SERIAL_FLAGS( \
113109
develop, \
@@ -122,8 +118,7 @@
122118
product_rw, \
123119
lp64_product, \
124120
range, \
125-
constraint, \
126-
writeable)) \
121+
constraint)) \
127122
\
128123
SHENANDOAHGC_ONLY(GC_SHENANDOAH_FLAGS( \
129124
develop, \
@@ -138,8 +133,7 @@
138133
product_rw, \
139134
lp64_product, \
140135
range, \
141-
constraint, \
142-
writeable)) \
136+
constraint)) \
143137
\
144138
ZGC_ONLY(GC_Z_FLAGS( \
145139
develop, \
@@ -154,8 +148,7 @@
154148
product_rw, \
155149
lp64_product, \
156150
range, \
157-
constraint, \
158-
writeable)) \
151+
constraint)) \
159152
\
160153
/* gc */ \
161154
\

0 commit comments

Comments
 (0)
Please sign in to comment.