< prev index next >

src/hotspot/share/runtime/globals_shared.hpp

Print this page

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -75,12 +75,10 @@
 // Only materialize src code for range checking when required, ignore otherwise
 #define IGNORE_RANGE(a, b)
 // Only materialize src code for contraint checking when required, ignore otherwise
 #define IGNORE_CONSTRAINT(func,type)
 
-#define IGNORE_WRITEABLE(type)
-
 #define VM_FLAGS(             \
     develop,                  \
     develop_pd,               \
     product,                  \
     product_pd,               \

@@ -90,12 +88,11 @@
     notproduct,               \
     manageable,               \
     product_rw,               \
     lp64_product,             \
     range,                    \
-    constraint,               \
-    writeable)                \
+    constraint)               \
                               \
   RUNTIME_FLAGS(              \
     develop,                  \
     develop_pd,               \
     product,                  \

@@ -106,12 +103,11 @@
     notproduct,               \
     manageable,               \
     product_rw,               \
     lp64_product,             \
     range,                    \
-    constraint,               \
-    writeable)                \
+    constraint)               \
                               \
   GC_FLAGS(                   \
     develop,                  \
     develop_pd,               \
     product,                  \

@@ -122,12 +118,11 @@
     notproduct,               \
     manageable,               \
     product_rw,               \
     lp64_product,             \
     range,                    \
-    constraint,               \
-    writeable)                \
+    constraint)               \
 
 
 #define ALL_FLAGS(            \
     develop,                  \
     develop_pd,               \

@@ -139,12 +134,11 @@
     notproduct,               \
     manageable,               \
     product_rw,               \
     lp64_product,             \
     range,                    \
-    constraint,               \
-    writeable)                \
+    constraint)               \
                               \
   VM_FLAGS(                   \
     develop,                  \
     develop_pd,               \
     product,                  \

@@ -155,24 +149,22 @@
     notproduct,               \
     manageable,               \
     product_rw,               \
     lp64_product,             \
     range,                    \
-    constraint,               \
-    writeable)                \
+    constraint)               \
                               \
   RUNTIME_OS_FLAGS(           \
     develop,                  \
     develop_pd,               \
     product,                  \
     product_pd,               \
     diagnostic,               \
     diagnostic_pd,            \
     notproduct,               \
     range,                    \
-    constraint,               \
-    writeable)                \
+    constraint)               \
                               \
   JVMCI_ONLY(JVMCI_FLAGS(     \
     develop,                  \
     develop_pd,               \
     product,                  \

@@ -180,24 +172,22 @@
     diagnostic,               \
     diagnostic_pd,            \
     experimental,             \
     notproduct,               \
     range,                    \
-    constraint,               \
-    writeable))               \
+    constraint))              \
                               \
   COMPILER1_PRESENT(C1_FLAGS( \
     develop,                  \
     develop_pd,               \
     product,                  \
     product_pd,               \
     diagnostic,               \
     diagnostic_pd,            \
     notproduct,               \
     range,                    \
-    constraint,               \
-    writeable))               \
+    constraint))              \
                               \
   COMPILER2_PRESENT(C2_FLAGS( \
     develop,                  \
     develop_pd,               \
     product,                  \

@@ -205,19 +195,17 @@
     diagnostic,               \
     diagnostic_pd,            \
     experimental,             \
     notproduct,               \
     range,                    \
-    constraint,               \
-    writeable))               \
+    constraint))              \
                               \
   ARCH_FLAGS(                 \
     develop,                  \
     product,                  \
     diagnostic,               \
     experimental,             \
     notproduct,               \
     range,                    \
-    constraint,               \
-    writeable)
+    constraint)
 
 #endif // SHARE_RUNTIME_GLOBALS_SHARED_HPP
< prev index next >