hotspot/src/share/vm/runtime/globals.cpp
author kmo
Sun, 10 Feb 2013 22:35:38 -0800
changeset 15615 188bbf11988e
parent 15482 470d0b0c09f1
child 18433 bcb2e8b5f81e
permissions -rw-r--r--
8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag Summary: make sure all diagnostic and experimental flag kinds are checked in Flag::is_unlocked() Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
15615
188bbf11988e 8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents: 15482
diff changeset
     2
 * Copyright (c) 1997, 2013, 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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    26
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    27
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    28
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    29
#include "runtime/globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    30
#include "runtime/globals_extension.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    31
#include "utilities/ostream.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
    32
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    33
#include "utilities/top.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
    34
#if INCLUDE_ALL_GCS
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    35
#include "gc_implementation/g1/g1_globals.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
    36
#endif // INCLUDE_ALL_GCS
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    37
#ifdef COMPILER1
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    38
#include "c1/c1_globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    39
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    40
#ifdef COMPILER2
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    41
#include "opto/c2_globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    42
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    43
#ifdef SHARK
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    44
#include "shark/shark_globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    45
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
RUNTIME_FLAGS(MATERIALIZE_DEVELOPER_FLAG, MATERIALIZE_PD_DEVELOPER_FLAG, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
              MATERIALIZE_PRODUCT_FLAG, MATERIALIZE_PD_PRODUCT_FLAG, \
11167
3931428f62ae 7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents: 11166
diff changeset
    49
              MATERIALIZE_DIAGNOSTIC_FLAG, MATERIALIZE_EXPERIMENTAL_FLAG, \
3931428f62ae 7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents: 11166
diff changeset
    50
              MATERIALIZE_NOTPRODUCT_FLAG, \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
    51
              MATERIALIZE_MANAGEABLE_FLAG, MATERIALIZE_PRODUCT_RW_FLAG, \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
    52
              MATERIALIZE_LP64_PRODUCT_FLAG)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
RUNTIME_OS_FLAGS(MATERIALIZE_DEVELOPER_FLAG, MATERIALIZE_PD_DEVELOPER_FLAG, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
                 MATERIALIZE_PRODUCT_FLAG, MATERIALIZE_PD_PRODUCT_FLAG, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
                 MATERIALIZE_DIAGNOSTIC_FLAG, MATERIALIZE_NOTPRODUCT_FLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
13521
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
    58
ARCH_FLAGS(MATERIALIZE_DEVELOPER_FLAG, MATERIALIZE_PRODUCT_FLAG, \
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
    59
           MATERIALIZE_DIAGNOSTIC_FLAG, MATERIALIZE_EXPERIMENTAL_FLAG, \
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
    60
           MATERIALIZE_NOTPRODUCT_FLAG)
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
    61
11183
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    62
MATERIALIZE_FLAGS_EXT
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    63
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
bool Flag::is_unlocker() const {
11167
3931428f62ae 7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents: 11166
diff changeset
    66
  return strcmp(name, "UnlockDiagnosticVMOptions") == 0     ||
11183
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    67
         strcmp(name, "UnlockExperimentalVMOptions") == 0   ||
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    68
         is_unlocker_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
bool Flag::is_unlocked() const {
15615
188bbf11988e 8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents: 15482
diff changeset
    72
  if (strcmp(kind, "{diagnostic}") == 0 ||
188bbf11988e 8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents: 15482
diff changeset
    73
      strcmp(kind, "{C2 diagnostic}") == 0 ||
188bbf11988e 8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents: 15482
diff changeset
    74
      strcmp(kind, "{ARCH diagnostic}") == 0 ||
188bbf11988e 8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents: 15482
diff changeset
    75
      strcmp(kind, "{Shark diagnostic}") == 0) {
9116
9bc44be338d6 6981791: remove experimental code for JSR 292
jrose
parents: 7397
diff changeset
    76
    if (strcmp(name, "EnableInvokeDynamic") == 0 && UnlockExperimentalVMOptions && !UnlockDiagnosticVMOptions) {
9bc44be338d6 6981791: remove experimental code for JSR 292
jrose
parents: 7397
diff changeset
    77
      // transitional logic to allow tests to run until they are changed
9bc44be338d6 6981791: remove experimental code for JSR 292
jrose
parents: 7397
diff changeset
    78
      static int warned;
9bc44be338d6 6981791: remove experimental code for JSR 292
jrose
parents: 7397
diff changeset
    79
      if (++warned == 1)  warning("Use -XX:+UnlockDiagnosticVMOptions before EnableInvokeDynamic flag");
9bc44be338d6 6981791: remove experimental code for JSR 292
jrose
parents: 7397
diff changeset
    80
      return true;
9bc44be338d6 6981791: remove experimental code for JSR 292
jrose
parents: 7397
diff changeset
    81
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    return UnlockDiagnosticVMOptions;
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4437
diff changeset
    83
  } else if (strcmp(kind, "{experimental}") == 0 ||
15615
188bbf11988e 8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents: 15482
diff changeset
    84
             strcmp(kind, "{C2 experimental}") == 0 ||
188bbf11988e 8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents: 15482
diff changeset
    85
             strcmp(kind, "{ARCH experimental}") == 0 ||
188bbf11988e 8006430: TraceTypeProfile is a product flag while it should be a diagnostic flag
kmo
parents: 15482
diff changeset
    86
             strcmp(kind, "{Shark experimental}") == 0) {
1382
fa3de4068282 6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents: 1374
diff changeset
    87
    return UnlockExperimentalVMOptions;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  } else {
11183
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    89
    return is_unlocked_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
    93
// Get custom message for this locked flag, or return NULL if
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
    94
// none is available.
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
    95
void Flag::get_locked_message(char* buf, int buflen) const {
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
    96
  get_locked_message_ext(buf, buflen);
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
    97
}
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
    98
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
bool Flag::is_writeable() const {
11254
e2dd3c32a7cb 7122880: Extend vendor-specific command interface to include manageable switches
phh
parents: 11183
diff changeset
   100
  return strcmp(kind, "{manageable}") == 0 ||
e2dd3c32a7cb 7122880: Extend vendor-specific command interface to include manageable switches
phh
parents: 11183
diff changeset
   101
         strcmp(kind, "{product rw}") == 0 ||
e2dd3c32a7cb 7122880: Extend vendor-specific command interface to include manageable switches
phh
parents: 11183
diff changeset
   102
         is_writeable_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
11254
e2dd3c32a7cb 7122880: Extend vendor-specific command interface to include manageable switches
phh
parents: 11183
diff changeset
   105
// All flags except "manageable" are assumed to be internal flags.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// Long term, we need to define a mechanism to specify which flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// are external/stable and change this function accordingly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
bool Flag::is_external() const {
11254
e2dd3c32a7cb 7122880: Extend vendor-specific command interface to include manageable switches
phh
parents: 11183
diff changeset
   109
  return strcmp(kind, "{manageable}") == 0 || is_external_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
11254
e2dd3c32a7cb 7122880: Extend vendor-specific command interface to include manageable switches
phh
parents: 11183
diff changeset
   112
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// Length of format string (e.g. "%.1234s") for printing ccstr below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
#define FORMAT_BUFFER_LEN 16
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   116
void Flag::print_on(outputStream* st, bool withComments) {
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   117
  st->print("%9s %-40s %c= ", type, name, (origin != DEFAULT ? ':' : ' '));
4437
d1abc17afffb 6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents: 4434
diff changeset
   118
  if (is_bool())     st->print("%-16s", get_bool() ? "true" : "false");
d1abc17afffb 6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents: 4434
diff changeset
   119
  if (is_intx())     st->print("%-16ld", get_intx());
d1abc17afffb 6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents: 4434
diff changeset
   120
  if (is_uintx())    st->print("%-16lu", get_uintx());
d1abc17afffb 6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents: 4434
diff changeset
   121
  if (is_uint64_t()) st->print("%-16lu", get_uint64_t());
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   122
  if (is_double())   st->print("%-16f", get_double());
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   123
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  if (is_ccstr()) {
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   125
     const char* cp = get_ccstr();
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   126
     if (cp != NULL) {
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   127
       const char* eol;
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   128
       while ((eol = strchr(cp, '\n')) != NULL) {
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   129
         char format_buffer[FORMAT_BUFFER_LEN];
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   130
         size_t llen = pointer_delta(eol, cp, sizeof(char));
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   131
         jio_snprintf(format_buffer, FORMAT_BUFFER_LEN,
350
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   132
                     "%%." SIZE_FORMAT "s", llen);
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   133
         st->print(format_buffer, cp);
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   134
         st->cr();
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   135
         cp = eol+1;
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   136
         st->print("%5s %-35s += ", "", name);
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   137
       }
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   138
       st->print("%-16s", cp);
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   139
     }
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   140
     else st->print("%-16s", "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   142
  st->print("%-20s", kind);
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   143
  if (withComments) {
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   144
#ifndef PRODUCT
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   145
    st->print("%s", doc );
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   146
#endif
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   147
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
void Flag::print_as_flag(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  if (is_bool()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    st->print("-XX:%s%s", get_bool() ? "+" : "-", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  } else if (is_intx()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    st->print("-XX:%s=" INTX_FORMAT, name, get_intx());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  } else if (is_uintx()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    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
   158
  } else if (is_uint64_t()) {
d1abc17afffb 6898160: Need serviceability support for new vm argument type 'uint64_t'
phh
parents: 4434
diff changeset
   159
    st->print("-XX:%s=" UINT64_FORMAT, name, get_uint64_t());
12598
1256ef9b648a 7167069: 6 VM flags crash the VM when queried via jinfo
brutisso
parents: 12157
diff changeset
   160
  } else if (is_double()) {
1256ef9b648a 7167069: 6 VM flags crash the VM when queried via jinfo
brutisso
parents: 12157
diff changeset
   161
    st->print("-XX:%s=%f", name, get_double());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  } else if (is_ccstr()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    st->print("-XX:%s=", name);
350
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   164
    const char* cp = get_ccstr();
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   165
    if (cp != NULL) {
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   166
      // Need to turn embedded '\n's back into separate arguments
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   167
      // Not so efficient to print one character at a time,
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   168
      // 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
   169
      // and print that.  And this need not be efficient.
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   170
      for (; *cp != '\0'; cp += 1) {
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   171
        switch (*cp) {
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   172
          default:
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   173
            st->print("%c", *cp);
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   174
            break;
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   175
          case '\n':
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   176
            st->print(" -XX:%s=", name);
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   177
            break;
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   178
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
// 4991491 do not "optimize out" the was_set false values: omitting them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
// tickles a Microsoft compiler bug causing flagTable to be malformed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   189
#define RUNTIME_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{product}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   190
#define RUNTIME_PD_PRODUCT_FLAG_STRUCT(type, name, doc)     { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{pd product}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   191
#define RUNTIME_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{diagnostic}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   192
#define RUNTIME_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{experimental}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   193
#define RUNTIME_MANAGEABLE_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{manageable}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   194
#define RUNTIME_PRODUCT_RW_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{product rw}", DEFAULT },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  #define RUNTIME_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  #define RUNTIME_PD_DEVELOP_FLAG_STRUCT(type, name, doc)     /* flag is constant */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  #define RUNTIME_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
#else
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   201
  #define RUNTIME_DEVELOP_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   202
  #define RUNTIME_PD_DEVELOP_FLAG_STRUCT(type, name, doc)     { #type, XSTR(name), &name, doc, "{pd}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   203
  #define RUNTIME_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{notproduct}", DEFAULT },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   206
#ifdef _LP64
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   207
  #define RUNTIME_LP64_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{lp64_product}", DEFAULT },
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   208
#else
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   209
  #define RUNTIME_LP64_PRODUCT_FLAG_STRUCT(type, name, value, doc) /* flag is constant */
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   210
#endif // _LP64
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   211
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   212
#define C1_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C1 product}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   213
#define C1_PD_PRODUCT_FLAG_STRUCT(type, name, doc)     { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C1 pd product}", DEFAULT },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  #define C1_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  #define C1_PD_DEVELOP_FLAG_STRUCT(type, name, doc)     /* flag is constant */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  #define C1_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
#else
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   219
  #define C1_DEVELOP_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C1}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   220
  #define C1_PD_DEVELOP_FLAG_STRUCT(type, name, doc)     { #type, XSTR(name), &name, doc, "{C1 pd}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   221
  #define C1_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C1 notproduct}", DEFAULT },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   224
#define C2_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C2 product}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   225
#define C2_PD_PRODUCT_FLAG_STRUCT(type, name, doc)     { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C2 pd product}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   226
#define C2_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C2 diagnostic}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   227
#define C2_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{C2 experimental}", DEFAULT },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  #define C2_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  #define C2_PD_DEVELOP_FLAG_STRUCT(type, name, doc)     /* flag is constant */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  #define C2_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
#else
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   233
  #define C2_DEVELOP_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C2}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   234
  #define C2_PD_DEVELOP_FLAG_STRUCT(type, name, doc)     { #type, XSTR(name), &name, doc, "{C2 pd}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   235
  #define C2_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{C2 notproduct}", DEFAULT },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
13521
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   238
#define ARCH_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{ARCH product}", DEFAULT },
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   239
#define ARCH_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{ARCH diagnostic}", DEFAULT },
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   240
#define ARCH_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{ARCH experimental}", DEFAULT },
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   241
#ifdef PRODUCT
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   242
  #define ARCH_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   243
  #define ARCH_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc)
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   244
#else
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   245
  #define ARCH_DEVELOP_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{ARCH}", DEFAULT },
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   246
  #define ARCH_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{ARCH notproduct}", DEFAULT },
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   247
#endif
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   248
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   249
#define SHARK_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{Shark product}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   250
#define SHARK_PD_PRODUCT_FLAG_STRUCT(type, name, doc)     { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{Shark pd product}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   251
#define SHARK_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{Shark diagnostic}", DEFAULT },
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   252
#ifdef PRODUCT
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   253
  #define SHARK_DEVELOP_FLAG_STRUCT(type, name, value, doc) /* flag is constant */
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   254
  #define SHARK_PD_DEVELOP_FLAG_STRUCT(type, name, doc)     /* flag is constant */
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   255
  #define SHARK_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc)
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   256
#else
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   257
  #define SHARK_DEVELOP_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{Shark}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   258
  #define SHARK_PD_DEVELOP_FLAG_STRUCT(type, name, doc)     { #type, XSTR(name), &name, doc, "{Shark pd}", DEFAULT },
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   259
  #define SHARK_NOTPRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, doc, "{Shark notproduct}", DEFAULT },
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   260
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
static Flag flagTable[] = {
11167
3931428f62ae 7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents: 11166
diff changeset
   263
 RUNTIME_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, RUNTIME_PD_DEVELOP_FLAG_STRUCT, RUNTIME_PRODUCT_FLAG_STRUCT, RUNTIME_PD_PRODUCT_FLAG_STRUCT, RUNTIME_DIAGNOSTIC_FLAG_STRUCT, RUNTIME_EXPERIMENTAL_FLAG_STRUCT, RUNTIME_NOTPRODUCT_FLAG_STRUCT, RUNTIME_MANAGEABLE_FLAG_STRUCT, RUNTIME_PRODUCT_RW_FLAG_STRUCT, RUNTIME_LP64_PRODUCT_FLAG_STRUCT)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
 RUNTIME_OS_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, RUNTIME_PD_DEVELOP_FLAG_STRUCT, RUNTIME_PRODUCT_FLAG_STRUCT, RUNTIME_PD_PRODUCT_FLAG_STRUCT, RUNTIME_DIAGNOSTIC_FLAG_STRUCT, RUNTIME_NOTPRODUCT_FLAG_STRUCT)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
   265
#if INCLUDE_ALL_GCS
1382
fa3de4068282 6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents: 1374
diff changeset
   266
 G1_FLAGS(RUNTIME_DEVELOP_FLAG_STRUCT, RUNTIME_PD_DEVELOP_FLAG_STRUCT, RUNTIME_PRODUCT_FLAG_STRUCT, RUNTIME_PD_PRODUCT_FLAG_STRUCT, RUNTIME_DIAGNOSTIC_FLAG_STRUCT, RUNTIME_EXPERIMENTAL_FLAG_STRUCT, RUNTIME_NOTPRODUCT_FLAG_STRUCT, RUNTIME_MANAGEABLE_FLAG_STRUCT, RUNTIME_PRODUCT_RW_FLAG_STRUCT)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
   267
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
#ifdef COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
 C1_FLAGS(C1_DEVELOP_FLAG_STRUCT, C1_PD_DEVELOP_FLAG_STRUCT, C1_PRODUCT_FLAG_STRUCT, C1_PD_PRODUCT_FLAG_STRUCT, C1_NOTPRODUCT_FLAG_STRUCT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
#ifdef COMPILER2
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4437
diff changeset
   272
 C2_FLAGS(C2_DEVELOP_FLAG_STRUCT, C2_PD_DEVELOP_FLAG_STRUCT, C2_PRODUCT_FLAG_STRUCT, C2_PD_PRODUCT_FLAG_STRUCT, C2_DIAGNOSTIC_FLAG_STRUCT, C2_EXPERIMENTAL_FLAG_STRUCT, C2_NOTPRODUCT_FLAG_STRUCT)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
#endif
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   274
#ifdef SHARK
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   275
 SHARK_FLAGS(SHARK_DEVELOP_FLAG_STRUCT, SHARK_PD_DEVELOP_FLAG_STRUCT, SHARK_PRODUCT_FLAG_STRUCT, SHARK_PD_PRODUCT_FLAG_STRUCT, SHARK_DIAGNOSTIC_FLAG_STRUCT, SHARK_NOTPRODUCT_FLAG_STRUCT)
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   276
#endif
13521
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   277
 ARCH_FLAGS(ARCH_DEVELOP_FLAG_STRUCT, ARCH_PRODUCT_FLAG_STRUCT, ARCH_DIAGNOSTIC_FLAG_STRUCT, ARCH_EXPERIMENTAL_FLAG_STRUCT, ARCH_NOTPRODUCT_FLAG_STRUCT)
11183
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
   278
 FLAGTABLE_EXT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
 {0, NULL, NULL}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
Flag* Flag::flags = flagTable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
size_t Flag::numFlags = (sizeof(flagTable) / sizeof(Flag));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
inline bool str_equal(const char* s, char* q, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // s is null terminated, q is not!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  if (strlen(s) != (unsigned int) len) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  return strncmp(s, q, len) == 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   291
// Search the flag table for a named flag
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   292
Flag* Flag::find_flag(char* name, size_t length, bool allow_locked) {
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   293
  for (Flag* current = &flagTable[0]; current->name != NULL; current++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    if (str_equal(current->name, name, length)) {
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   295
      // Found a matching entry.  Report locked flags only if allowed.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
      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
   297
        if (!allow_locked) {
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   298
          // 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
   299
          // commercial... until they are explicitly unlocked
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   300
          return NULL;
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   301
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
      return current;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  }
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   306
  // Flag name is not in the flag table
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
// Returns the address of the index'th element
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
static Flag* address_of_flag(CommandLineFlagWithType flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  assert((size_t)flag < Flag::numFlags, "bad command line flag index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  return &Flag::flags[flag];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
bool CommandLineFlagsEx::is_default(CommandLineFlag flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  assert((size_t)flag < Flag::numFlags, "bad command line flag index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  Flag* f = &Flag::flags[flag];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  return (f->origin == DEFAULT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   322
bool CommandLineFlagsEx::is_ergo(CommandLineFlag flag) {
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   323
  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
   324
  Flag* f = &Flag::flags[flag];
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   325
  return (f->origin == ERGONOMIC);
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   326
}
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   327
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   328
bool CommandLineFlagsEx::is_cmdline(CommandLineFlag flag) {
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   329
  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
   330
  Flag* f = &Flag::flags[flag];
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   331
  return (f->origin == COMMAND_LINE);
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   332
}
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   333
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
bool CommandLineFlags::wasSetOnCmdline(const char* name, bool* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  Flag* result = Flag::find_flag((char*)name, strlen(name));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  *value = (result->origin == COMMAND_LINE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
bool CommandLineFlags::boolAt(char* name, size_t len, bool* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  if (!result->is_bool()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  *value = result->get_bool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
bool CommandLineFlags::boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  if (!result->is_bool()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  bool old_value = result->get_bool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  result->set_bool(*value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  *value = old_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  result->origin = origin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
void CommandLineFlagsEx::boolAtPut(CommandLineFlagWithType flag, bool value, FlagValueOrigin origin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  guarantee(faddr != NULL && faddr->is_bool(), "wrong flag type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  faddr->set_bool(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  faddr->origin = origin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
bool CommandLineFlags::intxAt(char* name, size_t len, intx* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  if (!result->is_intx()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  *value = result->get_intx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
bool CommandLineFlags::intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  if (!result->is_intx()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  intx old_value = result->get_intx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  result->set_intx(*value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  *value = old_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  result->origin = origin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
void CommandLineFlagsEx::intxAtPut(CommandLineFlagWithType flag, intx value, FlagValueOrigin origin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  guarantee(faddr != NULL && faddr->is_intx(), "wrong flag type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  faddr->set_intx(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  faddr->origin = origin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
bool CommandLineFlags::uintxAt(char* name, size_t len, uintx* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  if (!result->is_uintx()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  *value = result->get_uintx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
bool CommandLineFlags::uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  if (!result->is_uintx()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  uintx old_value = result->get_uintx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  result->set_uintx(*value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  *value = old_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  result->origin = origin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
void CommandLineFlagsEx::uintxAtPut(CommandLineFlagWithType flag, uintx value, FlagValueOrigin origin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  guarantee(faddr != NULL && faddr->is_uintx(), "wrong flag type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  faddr->set_uintx(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  faddr->origin = origin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   419
bool CommandLineFlags::uint64_tAt(char* name, size_t len, uint64_t* value) {
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   420
  Flag* result = Flag::find_flag(name, len);
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   421
  if (result == NULL) return false;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   422
  if (!result->is_uint64_t()) return false;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   423
  *value = result->get_uint64_t();
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   424
  return true;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   425
}
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   426
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   427
bool CommandLineFlags::uint64_tAtPut(char* name, size_t len, uint64_t* value, FlagValueOrigin origin) {
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   428
  Flag* result = Flag::find_flag(name, len);
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   429
  if (result == NULL) return false;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   430
  if (!result->is_uint64_t()) return false;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   431
  uint64_t old_value = result->get_uint64_t();
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   432
  result->set_uint64_t(*value);
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   433
  *value = old_value;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   434
  result->origin = origin;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   435
  return true;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   436
}
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   437
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   438
void CommandLineFlagsEx::uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, FlagValueOrigin origin) {
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   439
  Flag* faddr = address_of_flag(flag);
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   440
  guarantee(faddr != NULL && faddr->is_uint64_t(), "wrong flag type");
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   441
  faddr->set_uint64_t(value);
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   442
  faddr->origin = origin;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   443
}
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   444
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
bool CommandLineFlags::doubleAt(char* name, size_t len, double* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  if (!result->is_double()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  *value = result->get_double();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
bool CommandLineFlags::doubleAtPut(char* name, size_t len, double* value, FlagValueOrigin origin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  if (!result->is_double()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  double old_value = result->get_double();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  result->set_double(*value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  *value = old_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  result->origin = origin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
void CommandLineFlagsEx::doubleAtPut(CommandLineFlagWithType flag, double value, FlagValueOrigin origin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  guarantee(faddr != NULL && faddr->is_double(), "wrong flag type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  faddr->set_double(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  faddr->origin = origin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
bool CommandLineFlags::ccstrAt(char* name, size_t len, ccstr* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  if (!result->is_ccstr()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  *value = result->get_ccstr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
// Contract:  Flag will make private copy of the incoming value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
// Outgoing value is always malloc-ed, and caller MUST call free.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
bool CommandLineFlags::ccstrAtPut(char* name, size_t len, ccstr* value, FlagValueOrigin origin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  if (!result->is_ccstr()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  ccstr old_value = result->get_ccstr();
1402
ccb40ce62b79 6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents: 670
diff changeset
   486
  char* new_value = NULL;
ccb40ce62b79 6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents: 670
diff changeset
   487
  if (*value != NULL) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12598
diff changeset
   488
    new_value = NEW_C_HEAP_ARRAY(char, strlen(*value)+1, mtInternal);
1402
ccb40ce62b79 6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents: 670
diff changeset
   489
    strcpy(new_value, *value);
ccb40ce62b79 6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents: 670
diff changeset
   490
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  result->set_ccstr(new_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  if (result->origin == DEFAULT && old_value != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
    // Prior value is NOT heap allocated, but was a literal constant.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12598
diff changeset
   494
    char* old_value_to_free = NEW_C_HEAP_ARRAY(char, strlen(old_value)+1, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    strcpy(old_value_to_free, old_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    old_value = old_value_to_free;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  *value = old_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  result->origin = origin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
// Contract:  Flag will make private copy of the incoming value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
void CommandLineFlagsEx::ccstrAtPut(CommandLineFlagWithType flag, ccstr value, FlagValueOrigin origin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  guarantee(faddr != NULL && faddr->is_ccstr(), "wrong flag type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  ccstr old_value = faddr->get_ccstr();
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12598
diff changeset
   508
  char* new_value = NEW_C_HEAP_ARRAY(char, strlen(value)+1, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  strcpy(new_value, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  faddr->set_ccstr(new_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  if (faddr->origin != DEFAULT && old_value != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    // Prior value is heap allocated so free it.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12598
diff changeset
   513
    FREE_C_HEAP_ARRAY(char, old_value, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  faddr->origin = origin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  static int compare_flags(const void* void_a, const void* void_b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    return strcmp((*((Flag**) void_a))->name, (*((Flag**) void_b))->name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   524
void CommandLineFlags::printSetFlags(outputStream* out) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  // Print which flags were set on the command line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  // note: this method is called before the thread structure is in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  //       which means resource allocation cannot be used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // Compute size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  int length= 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  while (flagTable[length].name != NULL) length++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  // Sort
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12598
diff changeset
   534
  Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  for (int index = 0; index < length; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    array[index] = &flagTable[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  qsort(array, length, sizeof(Flag*), compare_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  // Print
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    if (array[i]->origin /* naked field! */) {
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   543
      array[i]->print_as_flag(out);
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   544
      out->print(" ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  }
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   547
  out->cr();
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12598
diff changeset
   548
  FREE_C_HEAP_ARRAY(Flag*, array, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
void CommandLineFlags::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  assert(Arguments::check_vm_args_consistency(), "Some flag settings conflict");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
4579
62478db2dc78 6914622: Print values of all flags for product VM
kvn
parents: 4450
diff changeset
   558
#endif // PRODUCT
62478db2dc78 6914622: Print values of all flags for product VM
kvn
parents: 4450
diff changeset
   559
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   560
void CommandLineFlags::printFlags(outputStream* out, bool withComments) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  // Print the flags sorted by name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  // note: this method is called before the thread structure is in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  //       which means resource allocation cannot be used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  // Compute size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  int length= 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  while (flagTable[length].name != NULL) length++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  // Sort
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12598
diff changeset
   570
  Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  for (int index = 0; index < length; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    array[index] = &flagTable[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  qsort(array, length, sizeof(Flag*), compare_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  // Print
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   577
  out->print_cr("[Global flags]");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    if (array[i]->is_unlocked()) {
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   580
      array[i]->print_on(out, withComments);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  }
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12598
diff changeset
   583
  FREE_C_HEAP_ARRAY(Flag*, array, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
}