src/hotspot/share/runtime/globals.cpp
author shade
Thu, 30 Nov 2017 17:13:33 +0100
branchepsilon-gc-branch
changeset 55934 912c55e702d6
parent 55767 8e22715afabc
parent 47765 b7c7428eaab9
child 56276 ee5e58456be5
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46434
55cc8fa66865 8067728: Flag::unlock_diagnostic() should be called Flag::clear_diagnostic()
rprotacio
parents: 46416
diff changeset
     2
 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4579
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4579
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4579
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    25
#include "precompiled.hpp"
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47687
diff changeset
    26
#include "jvm.h"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    27
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    28
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    29
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    30
#include "runtime/globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    31
#include "runtime/globals_extension.hpp"
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    32
#include "runtime/commandLineFlagConstraintList.hpp"
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
    33
#include "runtime/commandLineFlagWriteableList.hpp"
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    34
#include "runtime/commandLineFlagRangeList.hpp"
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 27417
diff changeset
    35
#include "runtime/os.hpp"
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    36
#include "runtime/sharedRuntime.hpp"
27684
e0391b2bf625 8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents: 27417
diff changeset
    37
#include "trace/tracing.hpp"
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
    38
#include "utilities/defaultStream.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27883
diff changeset
    39
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    40
#include "utilities/ostream.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
    41
#if INCLUDE_ALL_GCS
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27883
diff changeset
    42
#include "gc/g1/g1_globals.hpp"
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
    43
#include "gc/epsilon/epsilon_globals.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
    44
#endif // INCLUDE_ALL_GCS
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    45
#ifdef COMPILER1
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    46
#include "c1/c1_globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    47
#endif
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
    48
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
    49
#include "jvmci/jvmci_globals.hpp"
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
    50
#endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    51
#ifdef COMPILER2
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    52
#include "opto/c2_globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    53
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    55
RUNTIME_FLAGS(MATERIALIZE_DEVELOPER_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    56
              MATERIALIZE_PD_DEVELOPER_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    57
              MATERIALIZE_PRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    58
              MATERIALIZE_PD_PRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    59
              MATERIALIZE_DIAGNOSTIC_FLAG, \
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
    60
              MATERIALIZE_PD_DIAGNOSTIC_FLAG, \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    61
              MATERIALIZE_EXPERIMENTAL_FLAG, \
11167
3931428f62ae 7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents: 11166
diff changeset
    62
              MATERIALIZE_NOTPRODUCT_FLAG, \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    63
              MATERIALIZE_MANAGEABLE_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    64
              MATERIALIZE_PRODUCT_RW_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    65
              MATERIALIZE_LP64_PRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    66
              IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
    67
              IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
    68
              IGNORE_WRITEABLE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    70
RUNTIME_OS_FLAGS(MATERIALIZE_DEVELOPER_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    71
                 MATERIALIZE_PD_DEVELOPER_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    72
                 MATERIALIZE_PRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    73
                 MATERIALIZE_PD_PRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    74
                 MATERIALIZE_DIAGNOSTIC_FLAG, \
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
    75
                 MATERIALIZE_PD_DIAGNOSTIC_FLAG, \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    76
                 MATERIALIZE_NOTPRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    77
                 IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
    78
                 IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
    79
                 IGNORE_WRITEABLE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    81
ARCH_FLAGS(MATERIALIZE_DEVELOPER_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    82
           MATERIALIZE_PRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    83
           MATERIALIZE_DIAGNOSTIC_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    84
           MATERIALIZE_EXPERIMENTAL_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    85
           MATERIALIZE_NOTPRODUCT_FLAG, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
    86
           IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
    87
           IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
    88
           IGNORE_WRITEABLE)
13521
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
    89
11183
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    90
MATERIALIZE_FLAGS_EXT
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    91
37208
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
    92
#define DEFAULT_RANGE_STR_CHUNK_SIZE 64
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
    93
static char* create_range_str(const char *fmt, ...) {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
    94
  static size_t string_length = DEFAULT_RANGE_STR_CHUNK_SIZE;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
    95
  static char* range_string = NEW_C_HEAP_ARRAY(char, string_length, mtLogging);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
    96
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
    97
  int size_needed = 0;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
    98
  do {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
    99
    va_list args;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   100
    va_start(args, fmt);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   101
    size_needed = jio_vsnprintf(range_string, string_length, fmt, args);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   102
    va_end(args);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   103
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   104
    if (size_needed < 0) {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   105
      string_length += DEFAULT_RANGE_STR_CHUNK_SIZE;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   106
      range_string = REALLOC_C_HEAP_ARRAY(char, range_string, string_length, mtLogging);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   107
      guarantee(range_string != NULL, "create_range_str string should not be NULL");
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   108
    }
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   109
  } while (size_needed < 0);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   110
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   111
  return range_string;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   112
}
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   113
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   114
const char* Flag::get_int_default_range_str() {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   115
  return create_range_str("[ " INT32_FORMAT_W(-25) " ... " INT32_FORMAT_W(25) " ]", INT_MIN, INT_MAX);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   116
}
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   117
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   118
const char* Flag::get_uint_default_range_str() {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   119
  return create_range_str("[ " UINT32_FORMAT_W(-25) " ... " UINT32_FORMAT_W(25) " ]", 0, UINT_MAX);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   120
}
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   121
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   122
const char* Flag::get_intx_default_range_str() {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   123
  return create_range_str("[ " INTX_FORMAT_W(-25) " ... " INTX_FORMAT_W(25) " ]", min_intx, max_intx);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   124
}
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   125
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   126
const char* Flag::get_uintx_default_range_str() {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   127
  return create_range_str("[ " UINTX_FORMAT_W(-25) " ... " UINTX_FORMAT_W(25) " ]", 0, max_uintx);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   128
}
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   129
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   130
const char* Flag::get_uint64_t_default_range_str() {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   131
  return create_range_str("[ " UINT64_FORMAT_W(-25) " ... " UINT64_FORMAT_W(25) " ]", 0, uint64_t(max_juint));
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   132
}
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   133
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   134
const char* Flag::get_size_t_default_range_str() {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   135
  return create_range_str("[ " SIZE_FORMAT_W(-25) " ... " SIZE_FORMAT_W(25) " ]", 0, SIZE_MAX);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   136
}
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   137
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   138
const char* Flag::get_double_default_range_str() {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   139
  return create_range_str("[ %-25.3f ... %25.3f ]", DBL_MIN, DBL_MAX);
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   140
}
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   141
22518
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   142
static bool is_product_build() {
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   143
#ifdef PRODUCT
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   144
  return true;
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   145
#else
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   146
  return false;
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   147
#endif
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   148
}
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   149
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   150
Flag::Error Flag::check_writable(bool changed) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   151
  if (is_constant_in_binary()) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32374
diff changeset
   152
    fatal("flag is constant: %s", _name);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   153
  }
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   154
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   155
  Flag::Error error = Flag::SUCCESS;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   156
  if (changed) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   157
    CommandLineFlagWriteable* writeable = CommandLineFlagWriteableList::find(_name);
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   158
    if (writeable) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   159
      if (writeable->is_writeable() == false) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   160
        switch (writeable->type())
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   161
        {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   162
          case CommandLineFlagWriteable::Once:
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   163
            error = Flag::SET_ONLY_ONCE;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   164
            jio_fprintf(defaultStream::error_stream(), "Error: %s may not be set more than once\n", _name);
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   165
            break;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   166
          case CommandLineFlagWriteable::CommandLineOnly:
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   167
            error = Flag::COMMAND_LINE_ONLY;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   168
            jio_fprintf(defaultStream::error_stream(), "Error: %s may be modified only from commad line\n", _name);
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   169
            break;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   170
          default:
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   171
            ShouldNotReachHere();
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   172
            break;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   173
        }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   174
      }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   175
      writeable->mark_once();
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   176
    }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   177
  }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   178
  return error;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   179
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   180
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   181
bool Flag::is_bool() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   182
  return strcmp(_type, "bool") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   183
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   184
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   185
bool Flag::get_bool() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   186
  return *((bool*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   187
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   188
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   189
Flag::Error Flag::set_bool(bool value) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   190
  Flag::Error error = check_writable(value!=get_bool());
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   191
  if (error == Flag::SUCCESS) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   192
    *((bool*) _addr) = value;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   193
  }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   194
  return error;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   195
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   196
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   197
bool Flag::is_int() const {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   198
  return strcmp(_type, "int")  == 0;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   199
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   200
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   201
int Flag::get_int() const {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   202
  return *((int*) _addr);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   203
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   204
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   205
Flag::Error Flag::set_int(int value) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   206
  Flag::Error error = check_writable(value!=get_int());
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   207
  if (error == Flag::SUCCESS) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   208
    *((int*) _addr) = value;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   209
  }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   210
  return error;
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   211
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   212
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   213
bool Flag::is_uint() const {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   214
  return strcmp(_type, "uint")  == 0;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   215
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   216
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   217
uint Flag::get_uint() const {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   218
  return *((uint*) _addr);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   219
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   220
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   221
Flag::Error Flag::set_uint(uint value) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   222
  Flag::Error error = check_writable(value!=get_uint());
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   223
  if (error == Flag::SUCCESS) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   224
    *((uint*) _addr) = value;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   225
  }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   226
  return error;
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   227
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   228
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   229
bool Flag::is_intx() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   230
  return strcmp(_type, "intx")  == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   231
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   232
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   233
intx Flag::get_intx() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   234
  return *((intx*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   235
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   236
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   237
Flag::Error Flag::set_intx(intx value) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   238
  Flag::Error error = check_writable(value!=get_intx());
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   239
  if (error == Flag::SUCCESS) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   240
    *((intx*) _addr) = value;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   241
  }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   242
  return error;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   243
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   244
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   245
bool Flag::is_uintx() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   246
  return strcmp(_type, "uintx") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   247
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   248
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   249
uintx Flag::get_uintx() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   250
  return *((uintx*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   251
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   252
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   253
Flag::Error Flag::set_uintx(uintx value) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   254
  Flag::Error error = check_writable(value!=get_uintx());
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   255
  if (error == Flag::SUCCESS) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   256
    *((uintx*) _addr) = value;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   257
  }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   258
  return error;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   259
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   260
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   261
bool Flag::is_uint64_t() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   262
  return strcmp(_type, "uint64_t") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   263
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   264
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   265
uint64_t Flag::get_uint64_t() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   266
  return *((uint64_t*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   267
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   268
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   269
Flag::Error Flag::set_uint64_t(uint64_t value) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   270
  Flag::Error error = check_writable(value!=get_uint64_t());
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   271
  if (error == Flag::SUCCESS) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   272
    *((uint64_t*) _addr) = value;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   273
  }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   274
  return error;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   275
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   276
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   277
bool Flag::is_size_t() const {
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   278
  return strcmp(_type, "size_t") == 0;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   279
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   280
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   281
size_t Flag::get_size_t() const {
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   282
  return *((size_t*) _addr);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   283
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   284
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   285
Flag::Error Flag::set_size_t(size_t value) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   286
  Flag::Error error = check_writable(value!=get_size_t());
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   287
  if (error == Flag::SUCCESS) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   288
    *((size_t*) _addr) = value;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   289
  }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   290
  return error;
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   291
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   292
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   293
bool Flag::is_double() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   294
  return strcmp(_type, "double") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   295
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   296
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   297
double Flag::get_double() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   298
  return *((double*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   299
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   300
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   301
Flag::Error Flag::set_double(double value) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   302
  Flag::Error error = check_writable(value!=get_double());
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   303
  if (error == Flag::SUCCESS) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   304
    *((double*) _addr) = value;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   305
  }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   306
  return error;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   307
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   308
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   309
bool Flag::is_ccstr() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   310
  return strcmp(_type, "ccstr") == 0 || strcmp(_type, "ccstrlist") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   311
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   312
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   313
bool Flag::ccstr_accumulates() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   314
  return strcmp(_type, "ccstrlist") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   315
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   316
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   317
ccstr Flag::get_ccstr() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   318
  return *((ccstr*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   319
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   320
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   321
Flag::Error Flag::set_ccstr(ccstr value) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   322
  Flag::Error error = check_writable(value!=get_ccstr());
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   323
  if (error == Flag::SUCCESS) {
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   324
    *((ccstr*) _addr) = value;
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   325
  }
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   326
  return error;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   327
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   328
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   329
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   330
Flag::Flags Flag::get_origin() {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   331
  return Flags(_flags & VALUE_ORIGIN_MASK);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   332
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   333
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   334
void Flag::set_origin(Flags origin) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   335
  assert((origin & VALUE_ORIGIN_MASK) == origin, "sanity");
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   336
  Flags new_origin = Flags((origin == COMMAND_LINE) ? Flags(origin | ORIG_COMMAND_LINE) : origin);
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   337
  _flags = Flags((_flags & ~VALUE_ORIGIN_MASK) | new_origin);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   338
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   339
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   340
bool Flag::is_default() {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   341
  return (get_origin() == DEFAULT);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   342
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   343
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   344
bool Flag::is_ergonomic() {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   345
  return (get_origin() == ERGONOMIC);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   346
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   347
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   348
bool Flag::is_command_line() {
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   349
  return (_flags & ORIG_COMMAND_LINE) != 0;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   350
}
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   351
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   352
void Flag::set_command_line() {
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   353
  _flags = Flags(_flags | ORIG_COMMAND_LINE);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   354
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   355
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   356
bool Flag::is_product() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   357
  return (_flags & KIND_PRODUCT) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   358
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   359
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   360
bool Flag::is_manageable() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   361
  return (_flags & KIND_MANAGEABLE) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   362
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   363
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   364
bool Flag::is_diagnostic() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   365
  return (_flags & KIND_DIAGNOSTIC) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   366
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   367
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   368
bool Flag::is_experimental() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   369
  return (_flags & KIND_EXPERIMENTAL) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   370
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   371
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   372
bool Flag::is_notproduct() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   373
  return (_flags & KIND_NOT_PRODUCT) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   374
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   375
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   376
bool Flag::is_develop() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   377
  return (_flags & KIND_DEVELOP) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   378
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   379
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   380
bool Flag::is_read_write() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   381
  return (_flags & KIND_READ_WRITE) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   382
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   383
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   384
bool Flag::is_commercial() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   385
  return (_flags & KIND_COMMERCIAL) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   386
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   387
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   388
/**
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   389
 * Returns if this flag is a constant in the binary.  Right now this is
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   390
 * true for notproduct and develop flags in product builds.
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   391
 */
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   392
bool Flag::is_constant_in_binary() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   393
#ifdef PRODUCT
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   394
    return is_notproduct() || is_develop();
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   395
#else
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   396
    return false;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   397
#endif
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   398
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   399
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
bool Flag::is_unlocker() const {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   401
  return strcmp(_name, "UnlockDiagnosticVMOptions") == 0     ||
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   402
         strcmp(_name, "UnlockExperimentalVMOptions") == 0   ||
11183
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
   403
         is_unlocker_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
bool Flag::is_unlocked() const {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   407
  if (is_diagnostic()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    return UnlockDiagnosticVMOptions;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   409
  }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   410
  if (is_experimental()) {
1382
fa3de4068282 6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents: 1374
diff changeset
   411
    return UnlockExperimentalVMOptions;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  }
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   413
  return is_unlocked_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
46434
55cc8fa66865 8067728: Flag::unlock_diagnostic() should be called Flag::clear_diagnostic()
rprotacio
parents: 46416
diff changeset
   416
void Flag::clear_diagnostic() {
27166
4ce0d93a8287 8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents: 25959
diff changeset
   417
  assert(is_diagnostic(), "sanity");
4ce0d93a8287 8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents: 25959
diff changeset
   418
  _flags = Flags(_flags & ~KIND_DIAGNOSTIC);
46434
55cc8fa66865 8067728: Flag::unlock_diagnostic() should be called Flag::clear_diagnostic()
rprotacio
parents: 46416
diff changeset
   419
  assert(!is_diagnostic(), "sanity");
27166
4ce0d93a8287 8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents: 25959
diff changeset
   420
}
4ce0d93a8287 8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents: 25959
diff changeset
   421
33592
ceda4a796f5d 8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents: 33198
diff changeset
   422
// Get custom message for this locked flag, or NULL if
ceda4a796f5d 8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents: 33198
diff changeset
   423
// none is available. Returns message type produced.
ceda4a796f5d 8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents: 33198
diff changeset
   424
Flag::MsgType Flag::get_locked_message(char* buf, int buflen) const {
22518
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   425
  buf[0] = '\0';
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   426
  if (is_diagnostic() && !is_unlocked()) {
32374
4fd9c17bc240 8133537: clarify position of unlock options in error messages
dcubed
parents: 32351
diff changeset
   427
    jio_snprintf(buf, buflen,
4fd9c17bc240 8133537: clarify position of unlock options in error messages
dcubed
parents: 32351
diff changeset
   428
                 "Error: VM option '%s' is diagnostic and must be enabled via -XX:+UnlockDiagnosticVMOptions.\n"
4fd9c17bc240 8133537: clarify position of unlock options in error messages
dcubed
parents: 32351
diff changeset
   429
                 "Error: The unlock option must precede '%s'.\n",
4fd9c17bc240 8133537: clarify position of unlock options in error messages
dcubed
parents: 32351
diff changeset
   430
                 _name, _name);
33592
ceda4a796f5d 8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents: 33198
diff changeset
   431
    return Flag::DIAGNOSTIC_FLAG_BUT_LOCKED;
22518
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   432
  }
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   433
  if (is_experimental() && !is_unlocked()) {
32374
4fd9c17bc240 8133537: clarify position of unlock options in error messages
dcubed
parents: 32351
diff changeset
   434
    jio_snprintf(buf, buflen,
4fd9c17bc240 8133537: clarify position of unlock options in error messages
dcubed
parents: 32351
diff changeset
   435
                 "Error: VM option '%s' is experimental and must be enabled via -XX:+UnlockExperimentalVMOptions.\n"
4fd9c17bc240 8133537: clarify position of unlock options in error messages
dcubed
parents: 32351
diff changeset
   436
                 "Error: The unlock option must precede '%s'.\n",
4fd9c17bc240 8133537: clarify position of unlock options in error messages
dcubed
parents: 32351
diff changeset
   437
                 _name, _name);
33592
ceda4a796f5d 8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents: 33198
diff changeset
   438
    return Flag::EXPERIMENTAL_FLAG_BUT_LOCKED;
22518
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   439
  }
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   440
  if (is_develop() && is_product_build()) {
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   441
    jio_snprintf(buf, buflen, "Error: VM option '%s' is develop and is available only in debug version of VM.\n",
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   442
                 _name);
33592
ceda4a796f5d 8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents: 33198
diff changeset
   443
    return Flag::DEVELOPER_FLAG_BUT_PRODUCT_BUILD;
22518
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   444
  }
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   445
  if (is_notproduct() && is_product_build()) {
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   446
    jio_snprintf(buf, buflen, "Error: VM option '%s' is notproduct and is available only in debug version of VM.\n",
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   447
                 _name);
33592
ceda4a796f5d 8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents: 33198
diff changeset
   448
    return Flag::NOTPRODUCT_FLAG_BUT_PRODUCT_BUILD;
22518
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   449
  }
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   450
  get_locked_message_ext(buf, buflen);
33592
ceda4a796f5d 8129855: "-XX:+IgnoreUnrecognizedVMOptions" hides out of range VM options.
gziemski
parents: 33198
diff changeset
   451
  return Flag::NONE;
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   452
}
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   453
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
bool Flag::is_writeable() const {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   455
  return is_manageable() || (is_product() && is_read_write()) || is_writeable_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
11254
e2dd3c32a7cb 7122880: Extend vendor-specific command interface to include manageable switches
phh
parents: 11183
diff changeset
   458
// All flags except "manageable" are assumed to be internal flags.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
// Long term, we need to define a mechanism to specify which flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
// are external/stable and change this function accordingly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
bool Flag::is_external() const {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   462
  return is_manageable() || is_external_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   465
void Flag::print_on(outputStream* st, bool withComments, bool printRanges) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   466
  // Don't print notproduct and develop flags in a product build.
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   467
  if (is_constant_in_binary()) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   468
    return;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   469
  }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   470
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   471
  if (!printRanges) {
43404
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   472
    // Use some named constants to make code more readable.
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   473
    const unsigned int nSpaces    = 10;
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   474
    const unsigned int maxFlagLen = 40 + nSpaces;
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   475
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   476
    // The print below assumes that the flag name is 40 characters or less.
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   477
    // This works for most flags, but there are exceptions. Our longest flag
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   478
    // name right now is UseAdaptiveGenerationSizePolicyAtMajorCollection and
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   479
    // its minor collection buddy. These are 48 characters. We use a buffer of
43404
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   480
    // nSpaces spaces below to adjust the space between the flag value and the
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   481
    // column of flag type and origin that is printed in the end of the line.
43404
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   482
    char spaces[nSpaces + 1] = "          ";
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   483
    st->print("%9s %-*s = ", _type, maxFlagLen-nSpaces, _name);
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   484
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   485
    if (is_bool()) {
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   486
      st->print("%-20s", get_bool() ? "true" : "false");
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   487
    } else if (is_int()) {
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   488
      st->print("%-20d", get_int());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   489
    } else if (is_uint()) {
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   490
      st->print("%-20u", get_uint());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   491
    } else if (is_intx()) {
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   492
      st->print(INTX_FORMAT_W(-20), get_intx());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   493
    } else if (is_uintx()) {
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   494
      st->print(UINTX_FORMAT_W(-20), get_uintx());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   495
    } else if (is_uint64_t()) {
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   496
      st->print(UINT64_FORMAT_W(-20), get_uint64_t());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   497
    } else if (is_size_t()) {
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   498
      st->print(SIZE_FORMAT_W(-20), get_size_t());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   499
    } else if (is_double()) {
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   500
      st->print("%-20f", get_double());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   501
    } else if (is_ccstr()) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   502
      const char* cp = get_ccstr();
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   503
      if (cp != NULL) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   504
        const char* eol;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   505
        while ((eol = strchr(cp, '\n')) != NULL) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   506
          size_t llen = pointer_delta(eol, cp, sizeof(char));
33604
ad1cd9269bd4 8139116: Fixes for warning "format not a string literal"
goetz
parents: 33592
diff changeset
   507
          st->print("%.*s", (int)llen, cp);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   508
          st->cr();
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   509
          cp = eol+1;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   510
          st->print("%5s %-35s += ", "", _name);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   511
        }
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   512
        st->print("%-20s", cp);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   513
      }
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   514
      else st->print("%-20s", "");
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   515
    }
43404
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   516
    // Make sure we do not punch a '\0' at a negative char array index.
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   517
    unsigned int nameLen = (unsigned int)strlen(_name);
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   518
    if (nameLen <= maxFlagLen) {
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   519
      spaces[maxFlagLen - MAX2(maxFlagLen-nSpaces, nameLen)] = '\0';
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   520
      st->print("%s", spaces);
c37afe5dc3a4 8170981: Possible access to char array with negative index
lucy
parents: 40664
diff changeset
   521
    }
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   522
    print_kind_and_origin(st);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   523
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   524
#ifndef PRODUCT
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   525
    if (withComments) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   526
      st->print("%s", _doc);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   527
    }
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   528
#endif
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   529
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   530
    st->cr();
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   531
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   532
  } else if (!is_bool() && !is_ccstr()) {
36189
2fbe2434b914 8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents: 34185
diff changeset
   533
    st->print("%9s %-50s ", _type, _name);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   534
37208
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   535
    RangeStrFunc func = NULL;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   536
    if (is_int()) {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   537
      func = Flag::get_int_default_range_str;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   538
    } else if (is_uint()) {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   539
      func = Flag::get_uint_default_range_str;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   540
    } else if (is_intx()) {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   541
      func = Flag::get_intx_default_range_str;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   542
    } else if (is_uintx()) {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   543
      func = Flag::get_uintx_default_range_str;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   544
    } else if (is_uint64_t()) {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   545
      func = Flag::get_uint64_t_default_range_str;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   546
    } else if (is_size_t()) {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   547
      func = Flag::get_size_t_default_range_str;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   548
    } else if (is_double()) {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   549
      func = Flag::get_double_default_range_str;
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   550
    } else {
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   551
      ShouldNotReachHere();
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   552
    }
aaf76eb8cfd4 8142510: -XX:+PrintFlagsRanges should print default range value for those flags that have constraint and an implicit range.
gziemski
parents: 36189
diff changeset
   553
    CommandLineFlagRangeList::print(st, _name, func);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   554
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   555
    st->print(" %-16s", " ");
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   556
    print_kind_and_origin(st);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   557
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   558
#ifndef PRODUCT
36189
2fbe2434b914 8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents: 34185
diff changeset
   559
    if (withComments) {
2fbe2434b914 8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents: 34185
diff changeset
   560
      st->print("%s", _doc);
2fbe2434b914 8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents: 34185
diff changeset
   561
    }
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   562
#endif
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   563
36189
2fbe2434b914 8146187: Print develop and nonproduct flags by -XX:+PrintFlags* options in debug build
ddmitriev
parents: 34185
diff changeset
   564
    st->cr();
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   565
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   568
void Flag::print_kind_and_origin(outputStream* st) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   569
  struct Data {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   570
    int flag;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   571
    const char* name;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   572
  };
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   573
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   574
  Data data[] = {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   575
      { KIND_JVMCI, "JVMCI" },
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   576
      { KIND_C1, "C1" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   577
      { KIND_C2, "C2" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   578
      { KIND_ARCH, "ARCH" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   579
      { KIND_PLATFORM_DEPENDENT, "pd" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   580
      { KIND_PRODUCT, "product" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   581
      { KIND_MANAGEABLE, "manageable" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   582
      { KIND_DIAGNOSTIC, "diagnostic" },
21736
ef8da7738ad4 8028341: PSR:FUNC: SCOPE PARAMETER MISSING FROM THE -XX:+PRINTFLAGSFINAL
sgabdura
parents: 20288
diff changeset
   583
      { KIND_EXPERIMENTAL, "experimental" },
ef8da7738ad4 8028341: PSR:FUNC: SCOPE PARAMETER MISSING FROM THE -XX:+PRINTFLAGSFINAL
sgabdura
parents: 20288
diff changeset
   584
      { KIND_COMMERCIAL, "commercial" },
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   585
      { KIND_NOT_PRODUCT, "notproduct" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   586
      { KIND_DEVELOP, "develop" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   587
      { KIND_LP64_PRODUCT, "lp64_product" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   588
      { KIND_READ_WRITE, "rw" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   589
      { -1, "" }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   590
  };
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   591
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   592
  if ((_flags & KIND_MASK) != 0) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   593
    bool is_first = true;
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   594
    const size_t buffer_size = 64;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   595
    size_t buffer_used = 0;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   596
    char kind[buffer_size];
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   597
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   598
    jio_snprintf(kind, buffer_size, "{");
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   599
    buffer_used++;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   600
    for (int i = 0; data[i].flag != -1; i++) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   601
      Data d = data[i];
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   602
      if ((_flags & d.flag) != 0) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   603
        if (is_first) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   604
          is_first = false;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   605
        } else {
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   606
          assert(buffer_used + 1 < buffer_size, "Too small buffer");
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   607
          jio_snprintf(kind + buffer_used, buffer_size - buffer_used, " ");
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   608
          buffer_used++;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   609
        }
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   610
        size_t length = strlen(d.name);
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   611
        assert(buffer_used + length < buffer_size, "Too small buffer");
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   612
        jio_snprintf(kind + buffer_used, buffer_size - buffer_used, "%s", d.name);
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   613
        buffer_used += length;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   614
      }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   615
    }
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   616
    assert(buffer_used + 2 <= buffer_size, "Too small buffer");
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   617
    jio_snprintf(kind + buffer_used, buffer_size - buffer_used, "}");
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   618
    st->print("%20s", kind);
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   619
  }
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   620
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   621
  int origin = _flags & VALUE_ORIGIN_MASK;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   622
  st->print(" {");
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   623
  switch(origin) {
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   624
    case DEFAULT:
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   625
      st->print("default"); break;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   626
    case COMMAND_LINE:
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   627
      st->print("command line"); break;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   628
    case ENVIRON_VAR:
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   629
      st->print("environment"); break;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   630
    case CONFIG_FILE:
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   631
      st->print("config file"); break;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   632
    case MANAGEMENT:
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   633
      st->print("management"); break;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   634
    case ERGONOMIC:
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   635
      if (_flags & ORIG_COMMAND_LINE) {
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   636
        st->print("command line, ");
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   637
      }
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   638
      st->print("ergonomic"); break;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   639
    case ATTACH_ON_DEMAND:
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   640
      st->print("attach"); break;
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   641
    case INTERNAL:
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   642
      st->print("internal"); break;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   643
  }
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   644
  st->print("}");
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   645
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   646
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
void Flag::print_as_flag(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  if (is_bool()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   649
    st->print("-XX:%s%s", get_bool() ? "+" : "-", _name);
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   650
  } else if (is_int()) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   651
    st->print("-XX:%s=%d", _name, get_int());
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   652
  } else if (is_uint()) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   653
    st->print("-XX:%s=%u", _name, get_uint());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  } else if (is_intx()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   655
    st->print("-XX:%s=" INTX_FORMAT, _name, get_intx());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  } else if (is_uintx()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   657
    st->print("-XX:%s=" UINTX_FORMAT, _name, get_uintx());
4437
d1abc17afffb 6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents: 4434
diff changeset
   658
  } else if (is_uint64_t()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   659
    st->print("-XX:%s=" UINT64_FORMAT, _name, get_uint64_t());
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   660
  } else if (is_size_t()) {
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   661
    st->print("-XX:%s=" SIZE_FORMAT, _name, get_size_t());
12598
1256ef9b648a 7167069: 6 VM flags crash the VM when queried via jinfo
brutisso
parents: 12157
diff changeset
   662
  } else if (is_double()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   663
    st->print("-XX:%s=%f", _name, get_double());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  } else if (is_ccstr()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   665
    st->print("-XX:%s=", _name);
350
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   666
    const char* cp = get_ccstr();
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   667
    if (cp != NULL) {
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   668
      // Need to turn embedded '\n's back into separate arguments
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   669
      // Not so efficient to print one character at a time,
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   670
      // but the choice is to do the transformation to a buffer
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   671
      // and print that.  And this need not be efficient.
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   672
      for (; *cp != '\0'; cp += 1) {
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   673
        switch (*cp) {
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   674
          default:
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   675
            st->print("%c", *cp);
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   676
            break;
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   677
          case '\n':
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   678
            st->print(" -XX:%s=", _name);
350
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   679
            break;
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   680
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   688
const char* Flag::flag_error_str(Flag::Error error) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   689
  switch (error) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   690
    case Flag::MISSING_NAME: return "MISSING_NAME";
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   691
    case Flag::MISSING_VALUE: return "MISSING_VALUE";
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   692
    case Flag::NON_WRITABLE: return "NON_WRITABLE";
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   693
    case Flag::OUT_OF_BOUNDS: return "OUT_OF_BOUNDS";
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   694
    case Flag::VIOLATES_CONSTRAINT: return "VIOLATES_CONSTRAINT";
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   695
    case Flag::INVALID_FLAG: return "INVALID_FLAG";
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   696
    case Flag::ERR_OTHER: return "ERR_OTHER";
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   697
    case Flag::SUCCESS: return "SUCCESS";
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   698
    default: ShouldNotReachHere(); return "NULL";
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   699
  }
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   700
}
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
   701
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
// 4991491 do not "optimize out" the was_set false values: omitting them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
// tickles a Microsoft compiler bug causing flagTable to be malformed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   705
#define RUNTIME_PRODUCT_FLAG_STRUCT(     type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_PRODUCT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   706
#define RUNTIME_PD_PRODUCT_FLAG_STRUCT(  type, name,        doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_PRODUCT | Flag::KIND_PLATFORM_DEPENDENT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   707
#define RUNTIME_DIAGNOSTIC_FLAG_STRUCT(  type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DIAGNOSTIC) },
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   708
#define RUNTIME_PD_DIAGNOSTIC_FLAG_STRUCT(type, name,       doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DIAGNOSTIC | Flag::KIND_PLATFORM_DEPENDENT) },
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   709
#define RUNTIME_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_EXPERIMENTAL) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   710
#define RUNTIME_MANAGEABLE_FLAG_STRUCT(  type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_MANAGEABLE) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   711
#define RUNTIME_PRODUCT_RW_FLAG_STRUCT(  type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_PRODUCT | Flag::KIND_READ_WRITE) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   712
#define RUNTIME_DEVELOP_FLAG_STRUCT(     type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DEVELOP) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   713
#define RUNTIME_PD_DEVELOP_FLAG_STRUCT(  type, name,        doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   714
#define RUNTIME_NOTPRODUCT_FLAG_STRUCT(  type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_NOT_PRODUCT) },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   716
#define JVMCI_PRODUCT_FLAG_STRUCT(       type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_PRODUCT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   717
#define JVMCI_PD_PRODUCT_FLAG_STRUCT(    type, name,        doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_PRODUCT | Flag::KIND_PLATFORM_DEPENDENT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   718
#define JVMCI_DIAGNOSTIC_FLAG_STRUCT(    type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_DIAGNOSTIC) },
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   719
#define JVMCI_PD_DIAGNOSTIC_FLAG_STRUCT( type, name,        doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_DIAGNOSTIC | Flag::KIND_PLATFORM_DEPENDENT) },
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   720
#define JVMCI_EXPERIMENTAL_FLAG_STRUCT(  type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_EXPERIMENTAL) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   721
#define JVMCI_DEVELOP_FLAG_STRUCT(       type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_DEVELOP) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   722
#define JVMCI_PD_DEVELOP_FLAG_STRUCT(    type, name,        doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   723
#define JVMCI_NOTPRODUCT_FLAG_STRUCT(    type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_JVMCI | Flag::KIND_NOT_PRODUCT) },
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   724
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   725
#ifdef _LP64
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   726
#define RUNTIME_LP64_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_LP64_PRODUCT) },
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   727
#else
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   728
#define RUNTIME_LP64_PRODUCT_FLAG_STRUCT(type, name, value, doc) /* flag is constant */
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   729
#endif // _LP64
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   730
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   731
#define C1_PRODUCT_FLAG_STRUCT(          type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_PRODUCT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   732
#define C1_PD_PRODUCT_FLAG_STRUCT(       type, name,        doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_PRODUCT | Flag::KIND_PLATFORM_DEPENDENT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   733
#define C1_DIAGNOSTIC_FLAG_STRUCT(       type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_DIAGNOSTIC) },
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   734
#define C1_PD_DIAGNOSTIC_FLAG_STRUCT(    type, name,        doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_DIAGNOSTIC | Flag::KIND_PLATFORM_DEPENDENT) },
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   735
#define C1_DEVELOP_FLAG_STRUCT(          type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_DEVELOP) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   736
#define C1_PD_DEVELOP_FLAG_STRUCT(       type, name,        doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   737
#define C1_NOTPRODUCT_FLAG_STRUCT(       type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_NOT_PRODUCT) },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   739
#define C2_PRODUCT_FLAG_STRUCT(          type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_PRODUCT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   740
#define C2_PD_PRODUCT_FLAG_STRUCT(       type, name,        doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_PRODUCT | Flag::KIND_PLATFORM_DEPENDENT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   741
#define C2_DIAGNOSTIC_FLAG_STRUCT(       type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_DIAGNOSTIC) },
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   742
#define C2_PD_DIAGNOSTIC_FLAG_STRUCT(    type, name,        doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_DIAGNOSTIC | Flag::KIND_PLATFORM_DEPENDENT) },
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   743
#define C2_EXPERIMENTAL_FLAG_STRUCT(     type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_EXPERIMENTAL) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   744
#define C2_DEVELOP_FLAG_STRUCT(          type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_DEVELOP) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   745
#define C2_PD_DEVELOP_FLAG_STRUCT(       type, name,        doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   746
#define C2_NOTPRODUCT_FLAG_STRUCT(       type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_NOT_PRODUCT) },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
34174
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   748
#define ARCH_PRODUCT_FLAG_STRUCT(        type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_PRODUCT) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   749
#define ARCH_DIAGNOSTIC_FLAG_STRUCT(     type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_DIAGNOSTIC) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   750
#define ARCH_EXPERIMENTAL_FLAG_STRUCT(   type, name, value, doc) { #type, XSTR(name), &name,         NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_EXPERIMENTAL) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   751
#define ARCH_DEVELOP_FLAG_STRUCT(        type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_DEVELOP) },
4db2fb26dc49 8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds
twisti
parents: 33198
diff changeset
   752
#define ARCH_NOTPRODUCT_FLAG_STRUCT(     type, name, value, doc) { #type, XSTR(name), (void*) &name, NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_NOT_PRODUCT) },
13521
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   753
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
static Flag flagTable[] = {
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   755
 RUNTIME_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   756
               RUNTIME_PD_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   757
               RUNTIME_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   758
               RUNTIME_PD_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   759
               RUNTIME_DIAGNOSTIC_FLAG_STRUCT, \
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   760
               RUNTIME_PD_DIAGNOSTIC_FLAG_STRUCT, \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   761
               RUNTIME_EXPERIMENTAL_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   762
               RUNTIME_NOTPRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   763
               RUNTIME_MANAGEABLE_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   764
               RUNTIME_PRODUCT_RW_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   765
               RUNTIME_LP64_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   766
               IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   767
               IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   768
               IGNORE_WRITEABLE)
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   769
 RUNTIME_OS_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   770
                  RUNTIME_PD_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   771
                  RUNTIME_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   772
                  RUNTIME_PD_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   773
                  RUNTIME_DIAGNOSTIC_FLAG_STRUCT, \
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   774
                  RUNTIME_PD_DIAGNOSTIC_FLAG_STRUCT, \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   775
                  RUNTIME_NOTPRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   776
                  IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   777
                  IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   778
                  IGNORE_WRITEABLE)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
   779
#if INCLUDE_ALL_GCS
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   780
 G1_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   781
          RUNTIME_PD_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   782
          RUNTIME_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   783
          RUNTIME_PD_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   784
          RUNTIME_DIAGNOSTIC_FLAG_STRUCT, \
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   785
          RUNTIME_PD_DIAGNOSTIC_FLAG_STRUCT, \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   786
          RUNTIME_EXPERIMENTAL_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   787
          RUNTIME_NOTPRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   788
          RUNTIME_MANAGEABLE_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   789
          RUNTIME_PRODUCT_RW_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   790
          IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   791
          IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   792
          IGNORE_WRITEABLE)
55767
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   793
 EPSILON_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   794
          RUNTIME_PD_DEVELOP_FLAG_STRUCT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   795
          RUNTIME_PRODUCT_FLAG_STRUCT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   796
          RUNTIME_PD_PRODUCT_FLAG_STRUCT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   797
          RUNTIME_DIAGNOSTIC_FLAG_STRUCT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   798
          RUNTIME_PD_DIAGNOSTIC_FLAG_STRUCT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   799
          RUNTIME_EXPERIMENTAL_FLAG_STRUCT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   800
          RUNTIME_NOTPRODUCT_FLAG_STRUCT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   801
          RUNTIME_MANAGEABLE_FLAG_STRUCT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   802
          RUNTIME_PRODUCT_RW_FLAG_STRUCT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   803
          IGNORE_RANGE, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   804
          IGNORE_CONSTRAINT, \
8e22715afabc Initial import of Epsilon sources from jdk10/sandbox
shade
parents: 47687
diff changeset
   805
          IGNORE_WRITEABLE)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
   806
#endif // INCLUDE_ALL_GCS
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   807
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   808
 JVMCI_FLAGS(JVMCI_DEVELOP_FLAG_STRUCT, \
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   809
             JVMCI_PD_DEVELOP_FLAG_STRUCT, \
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   810
             JVMCI_PRODUCT_FLAG_STRUCT, \
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   811
             JVMCI_PD_PRODUCT_FLAG_STRUCT, \
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   812
             JVMCI_DIAGNOSTIC_FLAG_STRUCT, \
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   813
             JVMCI_PD_DIAGNOSTIC_FLAG_STRUCT, \
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   814
             JVMCI_EXPERIMENTAL_FLAG_STRUCT, \
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   815
             JVMCI_NOTPRODUCT_FLAG_STRUCT, \
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   816
             IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   817
             IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   818
             IGNORE_WRITEABLE)
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32374
diff changeset
   819
#endif // INCLUDE_JVMCI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
#ifdef COMPILER1
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   821
 C1_FLAGS(C1_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   822
          C1_PD_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   823
          C1_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   824
          C1_PD_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   825
          C1_DIAGNOSTIC_FLAG_STRUCT, \
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   826
          C1_PD_DIAGNOSTIC_FLAG_STRUCT, \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   827
          C1_NOTPRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   828
          IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   829
          IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   830
          IGNORE_WRITEABLE)
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   831
#endif // COMPILER1
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
#ifdef COMPILER2
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   833
 C2_FLAGS(C2_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   834
          C2_PD_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   835
          C2_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   836
          C2_PD_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   837
          C2_DIAGNOSTIC_FLAG_STRUCT, \
39117
59fa99a45873 8150900: Implement diagnostic_pd
csahu
parents: 38273
diff changeset
   838
          C2_PD_DIAGNOSTIC_FLAG_STRUCT, \
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   839
          C2_EXPERIMENTAL_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   840
          C2_NOTPRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   841
          IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   842
          IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   843
          IGNORE_WRITEABLE)
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   844
#endif // COMPILER2
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   845
 ARCH_FLAGS(ARCH_DEVELOP_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   846
            ARCH_PRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   847
            ARCH_DIAGNOSTIC_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   848
            ARCH_EXPERIMENTAL_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   849
            ARCH_NOTPRODUCT_FLAG_STRUCT, \
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   850
            IGNORE_RANGE, \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   851
            IGNORE_CONSTRAINT, \
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
   852
            IGNORE_WRITEABLE)
11183
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
   853
 FLAGTABLE_EXT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
 {0, NULL, NULL}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
Flag* Flag::flags = flagTable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
size_t Flag::numFlags = (sizeof(flagTable) / sizeof(Flag));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
46416
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   860
inline bool str_equal(const char* s, size_t s_len, const char* q, size_t q_len) {
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   861
  if (s_len != q_len) return false;
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   862
  return memcmp(s, q, q_len) == 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   865
// Search the flag table for a named flag
22518
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   866
Flag* Flag::find_flag(const char* name, size_t length, bool allow_locked, bool return_flag) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   867
  for (Flag* current = &flagTable[0]; current->_name != NULL; current++) {
46416
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   868
    if (str_equal(current->_name, current->get_name_length(), name, length)) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   869
      // Found a matching entry.
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   870
      // Don't report notproduct and develop flags in product builds.
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   871
      if (current->is_constant_in_binary()) {
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   872
        return (return_flag ? current : NULL);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   873
      }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   874
      // Report locked flags only if allowed.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
      if (!(current->is_unlocked() || current->is_unlocker())) {
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   876
        if (!allow_locked) {
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   877
          // disable use of locked flags, e.g. diagnostic, experimental,
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   878
          // commercial... until they are explicitly unlocked
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   879
          return NULL;
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   880
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
      return current;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
  }
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   885
  // Flag name is not in the flag table
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
46416
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   889
// Get or compute the flag name length
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   890
size_t Flag::get_name_length() {
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   891
  if (_name_len == 0) {
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   892
    _name_len = strlen(_name);
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   893
  }
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   894
  return _name_len;
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   895
}
f1ebd584cdf3 8179224: Cache strlen of Flag::_name
redestad
parents: 43404
diff changeset
   896
18497
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   897
// Compute string similarity based on Dice's coefficient
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   898
static float str_similar(const char* str1, const char* str2, size_t len2) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   899
  int len1 = (int) strlen(str1);
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   900
  int total = len1 + (int) len2;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   901
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   902
  int hit = 0;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   903
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   904
  for (int i = 0; i < len1 -1; ++i) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   905
    for (int j = 0; j < (int) len2 -1; ++j) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   906
      if ((str1[i] == str2[j]) && (str1[i+1] == str2[j+1])) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   907
        ++hit;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   908
        break;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   909
      }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   910
    }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   911
  }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   912
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   913
  return 2.0f * (float) hit / (float) total;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   914
}
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   915
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   916
Flag* Flag::fuzzy_match(const char* name, size_t length, bool allow_locked) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   917
  float VMOptionsFuzzyMatchSimilarity = 0.7f;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   918
  Flag* match = NULL;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   919
  float score;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   920
  float max_score = -1;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   921
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   922
  for (Flag* current = &flagTable[0]; current->_name != NULL; current++) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   923
    score = str_similar(current->_name, name, length);
18497
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   924
    if (score > max_score) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   925
      max_score = score;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   926
      match = current;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   927
    }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   928
  }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   929
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   930
  if (!(match->is_unlocked() || match->is_unlocker())) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   931
    if (!allow_locked) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   932
      return NULL;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   933
    }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   934
  }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   935
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   936
  if (max_score < VMOptionsFuzzyMatchSimilarity) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   937
    return NULL;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   938
  }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   939
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   940
  return match;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   941
}
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   942
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
// Returns the address of the index'th element
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
static Flag* address_of_flag(CommandLineFlagWithType flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  assert((size_t)flag < Flag::numFlags, "bad command line flag index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
  return &Flag::flags[flag];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
bool CommandLineFlagsEx::is_default(CommandLineFlag flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  assert((size_t)flag < Flag::numFlags, "bad command line flag index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  Flag* f = &Flag::flags[flag];
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   952
  return f->is_default();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   955
bool CommandLineFlagsEx::is_ergo(CommandLineFlag flag) {
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   956
  assert((size_t)flag < Flag::numFlags, "bad command line flag index");
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   957
  Flag* f = &Flag::flags[flag];
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   958
  return f->is_ergonomic();
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   959
}
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   960
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   961
bool CommandLineFlagsEx::is_cmdline(CommandLineFlag flag) {
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   962
  assert((size_t)flag < Flag::numFlags, "bad command line flag index");
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   963
  Flag* f = &Flag::flags[flag];
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   964
  return f->is_command_line();
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   965
}
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   966
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
bool CommandLineFlags::wasSetOnCmdline(const char* name, bool* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  Flag* result = Flag::find_flag((char*)name, strlen(name));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  if (result == NULL) return false;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   970
  *value = result->is_command_line();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
39960
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   974
void CommandLineFlagsEx::setOnCmdLine(CommandLineFlagWithType flag) {
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   975
  Flag* faddr = address_of_flag(flag);
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   976
  assert(faddr != NULL, "Unknown flag");
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   977
  faddr->set_command_line();
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   978
}
ec06b2cf8575 8048093: Explicitly setting := vs = in the -XX:+PrintFlagsFinal output
jwilhelm
parents: 39117
diff changeset
   979
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   980
template<class E, class T>
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   981
static void trace_flag_changed(const char* name, const T old_value, const T new_value, const Flag::Flags origin) {
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   982
  E e;
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   983
  e.set_name(name);
40664
1ec65b303bb7 8164523: Clean up metadata for event based tracing
egahlin
parents: 39960
diff changeset
   984
  e.set_oldValue(old_value);
1ec65b303bb7 8164523: Clean up metadata for event based tracing
egahlin
parents: 39960
diff changeset
   985
  e.set_newValue(new_value);
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   986
  e.set_origin(origin);
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   987
  e.commit();
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   988
}
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   989
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
   990
static Flag::Error apply_constraint_and_check_range_bool(const char* name, bool new_value, bool verbose) {
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   991
  Flag::Error status = Flag::SUCCESS;
31995
aa4049b4184a 8130459: Add additional validation after heap creation
sangheki
parents: 31592
diff changeset
   992
  CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   993
  if (constraint != NULL) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   994
    status = constraint->apply_bool(new_value, verbose);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   995
  }
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   996
  return status;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   997
}
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   998
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
   999
Flag::Error CommandLineFlags::boolAt(const char* name, size_t len, bool* value, bool allow_locked, bool return_flag) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1000
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1001
  if (result == NULL) return Flag::INVALID_FLAG;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1002
  if (!result->is_bool()) return Flag::WRONG_FORMAT;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1003
  *value = result->get_bool();
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1004
  return Flag::SUCCESS;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1005
}
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1006
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1007
Flag::Error CommandLineFlags::boolAtPut(Flag* flag, bool* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1008
  const char* name;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1009
  if (flag == NULL) return Flag::INVALID_FLAG;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1010
  if (!flag->is_bool()) return Flag::WRONG_FORMAT;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1011
  name = flag->_name;
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1012
  Flag::Error check = apply_constraint_and_check_range_bool(name, *value, !CommandLineFlagConstraintList::validated_after_ergo());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1013
  if (check != Flag::SUCCESS) return check;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1014
  bool old_value = flag->get_bool();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
  1015
  trace_flag_changed<EventBooleanFlagChanged, bool>(name, old_value, *value, origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1016
  check = flag->set_bool(*value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  *value = old_value;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1018
  flag->set_origin(origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1019
  return check;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1022
Flag::Error CommandLineFlags::boolAtPut(const char* name, size_t len, bool* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1023
  Flag* result = Flag::find_flag(name, len);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1024
  return boolAtPut(result, value, origin);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1025
}
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1026
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1027
Flag::Error CommandLineFlagsEx::boolAtPut(CommandLineFlagWithType flag, bool value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  guarantee(faddr != NULL && faddr->is_bool(), "wrong flag type");
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1030
  return CommandLineFlags::boolAtPut(faddr, &value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1033
static Flag::Error apply_constraint_and_check_range_int(const char* name, int new_value, bool verbose) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1034
  Flag::Error status = Flag::SUCCESS;
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1035
  CommandLineFlagRange* range = CommandLineFlagRangeList::find(name);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1036
  if (range != NULL) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1037
    status = range->check_int(new_value, verbose);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1038
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1039
  if (status == Flag::SUCCESS) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1040
    CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1041
    if (constraint != NULL) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1042
      status = constraint->apply_int(new_value, verbose);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1043
    }
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1044
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1045
  return status;
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1046
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1047
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1048
Flag::Error CommandLineFlags::intAt(const char* name, size_t len, int* value, bool allow_locked, bool return_flag) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1049
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1050
  if (result == NULL) return Flag::INVALID_FLAG;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1051
  if (!result->is_int()) return Flag::WRONG_FORMAT;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1052
  *value = result->get_int();
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1053
  return Flag::SUCCESS;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1054
}
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1055
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1056
Flag::Error CommandLineFlags::intAtPut(Flag* flag, int* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1057
  const char* name;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1058
  if (flag == NULL) return Flag::INVALID_FLAG;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1059
  if (!flag->is_int()) return Flag::WRONG_FORMAT;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1060
  name = flag->_name;
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1061
  Flag::Error check = apply_constraint_and_check_range_int(name, *value, !CommandLineFlagConstraintList::validated_after_ergo());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1062
  if (check != Flag::SUCCESS) return check;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1063
  int old_value = flag->get_int();
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1064
  trace_flag_changed<EventIntFlagChanged, s4>(name, old_value, *value, origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1065
  check = flag->set_int(*value);
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1066
  *value = old_value;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1067
  flag->set_origin(origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1068
  return check;
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1069
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1070
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1071
Flag::Error CommandLineFlags::intAtPut(const char* name, size_t len, int* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1072
  Flag* result = Flag::find_flag(name, len);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1073
  return intAtPut(result, value, origin);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1074
}
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1075
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1076
Flag::Error CommandLineFlagsEx::intAtPut(CommandLineFlagWithType flag, int value, Flag::Flags origin) {
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1077
  Flag* faddr = address_of_flag(flag);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1078
  guarantee(faddr != NULL && faddr->is_int(), "wrong flag type");
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1079
  return CommandLineFlags::intAtPut(faddr, &value, origin);
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1080
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1081
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1082
static Flag::Error apply_constraint_and_check_range_uint(const char* name, uint new_value, bool verbose) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1083
  Flag::Error status = Flag::SUCCESS;
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1084
  CommandLineFlagRange* range = CommandLineFlagRangeList::find(name);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1085
  if (range != NULL) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1086
    status = range->check_uint(new_value, verbose);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1087
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1088
  if (status == Flag::SUCCESS) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1089
    CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1090
    if (constraint != NULL) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1091
      status = constraint->apply_uint(new_value, verbose);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1092
    }
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1093
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1094
  return status;
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1095
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1096
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1097
Flag::Error CommandLineFlags::uintAt(const char* name, size_t len, uint* value, bool allow_locked, bool return_flag) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1098
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1099
  if (result == NULL) return Flag::INVALID_FLAG;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1100
  if (!result->is_uint()) return Flag::WRONG_FORMAT;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1101
  *value = result->get_uint();
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1102
  return Flag::SUCCESS;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1103
}
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1104
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1105
Flag::Error CommandLineFlags::uintAtPut(Flag* flag, uint* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1106
  const char* name;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1107
  if (flag == NULL) return Flag::INVALID_FLAG;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1108
  if (!flag->is_uint()) return Flag::WRONG_FORMAT;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1109
  name = flag->_name;
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1110
  Flag::Error check = apply_constraint_and_check_range_uint(name, *value, !CommandLineFlagConstraintList::validated_after_ergo());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1111
  if (check != Flag::SUCCESS) return check;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1112
  uint old_value = flag->get_uint();
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1113
  trace_flag_changed<EventUnsignedIntFlagChanged, u4>(name, old_value, *value, origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1114
  check = flag->set_uint(*value);
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1115
  *value = old_value;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1116
  flag->set_origin(origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1117
  return check;
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1118
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1119
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1120
Flag::Error CommandLineFlags::uintAtPut(const char* name, size_t len, uint* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1121
  Flag* result = Flag::find_flag(name, len);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1122
  return uintAtPut(result, value, origin);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1123
}
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1124
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1125
Flag::Error CommandLineFlagsEx::uintAtPut(CommandLineFlagWithType flag, uint value, Flag::Flags origin) {
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1126
  Flag* faddr = address_of_flag(flag);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1127
  guarantee(faddr != NULL && faddr->is_uint(), "wrong flag type");
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1128
  return CommandLineFlags::uintAtPut(faddr, &value, origin);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1129
}
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1130
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1131
Flag::Error CommandLineFlags::intxAt(const char* name, size_t len, intx* value, bool allow_locked, bool return_flag) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1132
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1133
  if (result == NULL) return Flag::INVALID_FLAG;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1134
  if (!result->is_intx()) return Flag::WRONG_FORMAT;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1135
  *value = result->get_intx();
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1136
  return Flag::SUCCESS;
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1137
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
  1138
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1139
static Flag::Error apply_constraint_and_check_range_intx(const char* name, intx new_value, bool verbose) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1140
  Flag::Error status = Flag::SUCCESS;
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1141
  CommandLineFlagRange* range = CommandLineFlagRangeList::find(name);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1142
  if (range != NULL) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1143
    status = range->check_intx(new_value, verbose);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1144
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1145
  if (status == Flag::SUCCESS) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1146
    CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1147
    if (constraint != NULL) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1148
      status = constraint->apply_intx(new_value, verbose);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1149
    }
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1150
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1151
  return status;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1154
Flag::Error CommandLineFlags::intxAtPut(Flag* flag, intx* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1155
  const char* name;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1156
  if (flag == NULL) return Flag::INVALID_FLAG;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1157
  if (!flag->is_intx()) return Flag::WRONG_FORMAT;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1158
  name = flag->_name;
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1159
  Flag::Error check = apply_constraint_and_check_range_intx(name, *value, !CommandLineFlagConstraintList::validated_after_ergo());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1160
  if (check != Flag::SUCCESS) return check;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1161
  intx old_value = flag->get_intx();
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1162
  trace_flag_changed<EventLongFlagChanged, intx>(name, old_value, *value, origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1163
  check = flag->set_intx(*value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  *value = old_value;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1165
  flag->set_origin(origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1166
  return check;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1169
Flag::Error CommandLineFlags::intxAtPut(const char* name, size_t len, intx* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1170
  Flag* result = Flag::find_flag(name, len);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1171
  return intxAtPut(result, value, origin);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1172
}
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1173
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1174
Flag::Error CommandLineFlagsEx::intxAtPut(CommandLineFlagWithType flag, intx value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
  guarantee(faddr != NULL && faddr->is_intx(), "wrong flag type");
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1177
  return CommandLineFlags::intxAtPut(faddr, &value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1180
Flag::Error CommandLineFlags::uintxAt(const char* name, size_t len, uintx* value, bool allow_locked, bool return_flag) {
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
  1181
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1182
  if (result == NULL) return Flag::INVALID_FLAG;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1183
  if (!result->is_uintx()) return Flag::WRONG_FORMAT;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  *value = result->get_uintx();
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1185
  return Flag::SUCCESS;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1188
static Flag::Error apply_constraint_and_check_range_uintx(const char* name, uintx new_value, bool verbose) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1189
  Flag::Error status = Flag::SUCCESS;
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1190
  CommandLineFlagRange* range = CommandLineFlagRangeList::find(name);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1191
  if (range != NULL) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1192
    status = range->check_uintx(new_value, verbose);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1193
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1194
  if (status == Flag::SUCCESS) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1195
    CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1196
    if (constraint != NULL) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1197
      status = constraint->apply_uintx(new_value, verbose);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1198
    }
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1199
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1200
  return status;
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1201
}
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1202
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1203
Flag::Error CommandLineFlags::uintxAtPut(Flag* flag, uintx* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1204
  const char* name;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1205
  if (flag == NULL) return Flag::INVALID_FLAG;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1206
  if (!flag->is_uintx()) return Flag::WRONG_FORMAT;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1207
  name = flag->_name;
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1208
  Flag::Error check = apply_constraint_and_check_range_uintx(name, *value, !CommandLineFlagConstraintList::validated_after_ergo());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1209
  if (check != Flag::SUCCESS) return check;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1210
  uintx old_value = flag->get_uintx();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
  1211
  trace_flag_changed<EventUnsignedLongFlagChanged, u8>(name, old_value, *value, origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1212
  check = flag->set_uintx(*value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
  *value = old_value;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1214
  flag->set_origin(origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1215
  return check;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1218
Flag::Error CommandLineFlags::uintxAtPut(const char* name, size_t len, uintx* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1219
  Flag* result = Flag::find_flag(name, len);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1220
  return uintxAtPut(result, value, origin);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1221
}
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1222
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1223
Flag::Error CommandLineFlagsEx::uintxAtPut(CommandLineFlagWithType flag, uintx value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
  guarantee(faddr != NULL && faddr->is_uintx(), "wrong flag type");
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1226
  return CommandLineFlags::uintxAtPut(faddr, &value, origin);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1227
}
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1228
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1229
Flag::Error CommandLineFlags::uint64_tAt(const char* name, size_t len, uint64_t* value, bool allow_locked, bool return_flag) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1230
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1231
  if (result == NULL) return Flag::INVALID_FLAG;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1232
  if (!result->is_uint64_t()) return Flag::WRONG_FORMAT;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1233
  *value = result->get_uint64_t();
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1234
  return Flag::SUCCESS;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1237
static Flag::Error apply_constraint_and_check_range_uint64_t(const char* name, uint64_t new_value, bool verbose) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1238
  Flag::Error status = Flag::SUCCESS;
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1239
  CommandLineFlagRange* range = CommandLineFlagRangeList::find(name);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1240
  if (range != NULL) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1241
    status = range->check_uint64_t(new_value, verbose);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1242
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1243
  if (status == Flag::SUCCESS) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1244
    CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1245
    if (constraint != NULL) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1246
      status = constraint->apply_uint64_t(new_value, verbose);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1247
    }
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1248
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1249
  return status;
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
  1250
}
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
  1251
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1252
Flag::Error CommandLineFlags::uint64_tAtPut(Flag* flag, uint64_t* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1253
  const char* name;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1254
  if (flag == NULL) return Flag::INVALID_FLAG;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1255
  if (!flag->is_uint64_t()) return Flag::WRONG_FORMAT;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1256
  name = flag->_name;
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1257
  Flag::Error check = apply_constraint_and_check_range_uint64_t(name, *value, !CommandLineFlagConstraintList::validated_after_ergo());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1258
  if (check != Flag::SUCCESS) return check;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1259
  uint64_t old_value = flag->get_uint64_t();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
  1260
  trace_flag_changed<EventUnsignedLongFlagChanged, u8>(name, old_value, *value, origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1261
  check = flag->set_uint64_t(*value);
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
  1262
  *value = old_value;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1263
  flag->set_origin(origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1264
  return check;
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
  1265
}
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
  1266
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1267
Flag::Error CommandLineFlags::uint64_tAtPut(const char* name, size_t len, uint64_t* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1268
  Flag* result = Flag::find_flag(name, len);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1269
  return uint64_tAtPut(result, value, origin);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1270
}
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1271
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1272
Flag::Error CommandLineFlagsEx::uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, Flag::Flags origin) {
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
  1273
  Flag* faddr = address_of_flag(flag);
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
  1274
  guarantee(faddr != NULL && faddr->is_uint64_t(), "wrong flag type");
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1275
  return CommandLineFlags::uint64_tAtPut(faddr, &value, origin);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1276
}
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1277
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1278
Flag::Error CommandLineFlags::size_tAt(const char* name, size_t len, size_t* value, bool allow_locked, bool return_flag) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1279
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1280
  if (result == NULL) return Flag::INVALID_FLAG;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1281
  if (!result->is_size_t()) return Flag::WRONG_FORMAT;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1282
  *value = result->get_size_t();
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1283
  return Flag::SUCCESS;
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
  1284
}
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
  1285
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1286
static Flag::Error apply_constraint_and_check_range_size_t(const char* name, size_t new_value, bool verbose) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1287
  Flag::Error status = Flag::SUCCESS;
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1288
  CommandLineFlagRange* range = CommandLineFlagRangeList::find(name);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1289
  if (range != NULL) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1290
    status = range->check_size_t(new_value, verbose);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1291
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1292
  if (status == Flag::SUCCESS) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1293
    CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1294
    if (constraint != NULL) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1295
      status = constraint->apply_size_t(new_value, verbose);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1296
    }
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1297
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1298
  return status;
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
  1299
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
  1300
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1301
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1302
Flag::Error CommandLineFlags::size_tAtPut(Flag* flag, size_t* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1303
  const char* name;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1304
  if (flag == NULL) return Flag::INVALID_FLAG;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1305
  if (!flag->is_size_t()) return Flag::WRONG_FORMAT;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1306
  name = flag->_name;
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1307
  Flag::Error check = apply_constraint_and_check_range_size_t(name, *value, !CommandLineFlagConstraintList::validated_after_ergo());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1308
  if (check != Flag::SUCCESS) return check;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1309
  size_t old_value = flag->get_size_t();
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
  1310
  trace_flag_changed<EventUnsignedLongFlagChanged, u8>(name, old_value, *value, origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1311
  check = flag->set_size_t(*value);
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
  1312
  *value = old_value;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1313
  flag->set_origin(origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1314
  return check;
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
  1315
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
  1316
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1317
Flag::Error CommandLineFlags::size_tAtPut(const char* name, size_t len, size_t* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1318
  Flag* result = Flag::find_flag(name, len);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1319
  return size_tAtPut(result, value, origin);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1320
}
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1321
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1322
Flag::Error CommandLineFlagsEx::size_tAtPut(CommandLineFlagWithType flag, size_t value, Flag::Flags origin) {
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
  1323
  Flag* faddr = address_of_flag(flag);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
  1324
  guarantee(faddr != NULL && faddr->is_size_t(), "wrong flag type");
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1325
  return CommandLineFlags::size_tAtPut(faddr, &value, origin);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1326
}
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1327
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1328
Flag::Error CommandLineFlags::doubleAt(const char* name, size_t len, double* value, bool allow_locked, bool return_flag) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1329
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1330
  if (result == NULL) return Flag::INVALID_FLAG;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1331
  if (!result->is_double()) return Flag::WRONG_FORMAT;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1332
  *value = result->get_double();
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1333
  return Flag::SUCCESS;
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
  1334
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
  1335
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1336
static Flag::Error apply_constraint_and_check_range_double(const char* name, double new_value, bool verbose) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1337
  Flag::Error status = Flag::SUCCESS;
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1338
  CommandLineFlagRange* range = CommandLineFlagRangeList::find(name);
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1339
  if (range != NULL) {
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1340
    status = range->check_double(new_value, verbose);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1341
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1342
  if (status == Flag::SUCCESS) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1343
    CommandLineFlagConstraint* constraint = CommandLineFlagConstraintList::find_if_needs_check(name);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1344
    if (constraint != NULL) {
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1345
      status = constraint->apply_double(new_value, verbose);
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1346
    }
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1347
  }
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1348
  return status;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1351
Flag::Error CommandLineFlags::doubleAtPut(Flag* flag, double* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1352
  const char* name;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1353
  if (flag == NULL) return Flag::INVALID_FLAG;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1354
  if (!flag->is_double()) return Flag::WRONG_FORMAT;
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1355
  name = flag->_name;
32351
1da9b960b3d4 8112746: Followup to JDK-8059557 (JEP 245)
gziemski
parents: 31995
diff changeset
  1356
  Flag::Error check = apply_constraint_and_check_range_double(name, *value, !CommandLineFlagConstraintList::validated_after_ergo());
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1357
  if (check != Flag::SUCCESS) return check;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1358
  double old_value = flag->get_double();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
  1359
  trace_flag_changed<EventDoubleFlagChanged, double>(name, old_value, *value, origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1360
  check = flag->set_double(*value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
  *value = old_value;
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1362
  flag->set_origin(origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1363
  return check;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1366
Flag::Error CommandLineFlags::doubleAtPut(const char* name, size_t len, double* value, Flag::Flags origin) {
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1367
  Flag* result = Flag::find_flag(name, len);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1368
  return doubleAtPut(result, value, origin);
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1369
}
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1370
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1371
Flag::Error CommandLineFlagsEx::doubleAtPut(CommandLineFlagWithType flag, double value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  guarantee(faddr != NULL && faddr->is_double(), "wrong flag type");
33775
3ae47fa978ea 8139765: set_numeric_flag can call Flag::find_flag to determine the flag type
ddmitriev
parents: 33604
diff changeset
  1374
  return CommandLineFlags::doubleAtPut(faddr, &value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1377
Flag::Error CommandLineFlags::ccstrAt(const char* name, size_t len, ccstr* value, bool allow_locked, bool return_flag) {
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
  1378
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1379
  if (result == NULL) return Flag::INVALID_FLAG;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1380
  if (!result->is_ccstr()) return Flag::WRONG_FORMAT;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  *value = result->get_ccstr();
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1382
  return Flag::SUCCESS;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1385
Flag::Error CommandLineFlags::ccstrAtPut(const char* name, size_t len, ccstr* value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  Flag* result = Flag::find_flag(name, len);
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1387
  if (result == NULL) return Flag::INVALID_FLAG;
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1388
  if (!result->is_ccstr()) return Flag::WRONG_FORMAT;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  ccstr old_value = result->get_ccstr();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
  1390
  trace_flag_changed<EventStringFlagChanged, const char*>(name, old_value, *value, origin);
1402
ccb40ce62b79 6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents: 670
diff changeset
  1391
  char* new_value = NULL;
ccb40ce62b79 6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents: 670
diff changeset
  1392
  if (*value != NULL) {
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 27417
diff changeset
  1393
    new_value = os::strdup_check_oom(*value);
1402
ccb40ce62b79 6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents: 670
diff changeset
  1394
  }
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1395
  Flag::Error check = result->set_ccstr(new_value);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1396
  if (result->is_default() && old_value != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
    // Prior value is NOT heap allocated, but was a literal constant.
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 27417
diff changeset
  1398
    old_value = os::strdup_check_oom(old_value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
  *value = old_value;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1401
  result->set_origin(origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1402
  return check;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1405
Flag::Error CommandLineFlagsEx::ccstrAtPut(CommandLineFlagWithType flag, ccstr value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  guarantee(faddr != NULL && faddr->is_ccstr(), "wrong flag type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
  ccstr old_value = faddr->get_ccstr();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
  1409
  trace_flag_changed<EventStringFlagChanged, const char*>(faddr->_name, old_value, value, origin);
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 27417
diff changeset
  1410
  char* new_value = os::strdup_check_oom(value);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1411
  Flag::Error check = faddr->set_ccstr(new_value);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1412
  if (!faddr->is_default() && old_value != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
    // Prior value is heap allocated so free it.
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1414
    FREE_C_HEAP_ARRAY(char, old_value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
  }
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1416
  faddr->set_origin(origin);
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 37491
diff changeset
  1417
  return check;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  static int compare_flags(const void* void_a, const void* void_b) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1422
    return strcmp((*((Flag**) void_a))->_name, (*((Flag**) void_b))->_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
  1426
void CommandLineFlags::printSetFlags(outputStream* out) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  // Print which flags were set on the command line
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
  // note: this method is called before the thread structure is in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
  //       which means resource allocation cannot be used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1431
  // The last entry is the null entry.
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1432
  const size_t length = Flag::numFlags - 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  // Sort
37491
edf4cc53f5a3 8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents: 37466
diff changeset
  1435
  Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtArguments);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1436
  for (size_t i = 0; i < length; i++) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1437
    array[i] = &flagTable[i];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
  qsort(array, length, sizeof(Flag*), compare_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
  // Print
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1442
  for (size_t i = 0; i < length; i++) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1443
    if (array[i]->get_origin() /* naked field! */) {
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
  1444
      array[i]->print_as_flag(out);
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
  1445
      out->print(" ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  }
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
  1448
  out->cr();
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1449
  FREE_C_HEAP_ARRAY(Flag*, array);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
void CommandLineFlags::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
  assert(Arguments::check_vm_args_consistency(), "Some flag settings conflict");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
4579
62478db2dc78 6914622: Print values of all flags for product VM
kvn
parents: 4450
diff changeset
  1458
#endif // PRODUCT
62478db2dc78 6914622: Print values of all flags for product VM
kvn
parents: 4450
diff changeset
  1459
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1460
void CommandLineFlags::printFlags(outputStream* out, bool withComments, bool printRanges) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
  // Print the flags sorted by name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  // note: this method is called before the thread structure is in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
  //       which means resource allocation cannot be used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1465
  // The last entry is the null entry.
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1466
  const size_t length = Flag::numFlags - 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  // Sort
37491
edf4cc53f5a3 8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents: 37466
diff changeset
  1469
  Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtArguments);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1470
  for (size_t i = 0; i < length; i++) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1471
    array[i] = &flagTable[i];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  qsort(array, length, sizeof(Flag*), compare_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  // Print
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1476
  if (!printRanges) {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1477
    out->print_cr("[Global flags]");
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1478
  } else {
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1479
    out->print_cr("[Global flags ranges]");
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1480
  }
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1481
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
  1482
  for (size_t i = 0; i < length; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
    if (array[i]->is_unlocked()) {
31371
311143309e73 8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents: 31236
diff changeset
  1484
      array[i]->print_on(out, withComments, printRanges);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
  }
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1487
  FREE_C_HEAP_ARRAY(Flag*, array);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
}