hotspot/src/share/vm/runtime/globals.cpp
author bpittore
Thu, 18 Jun 2015 10:47:34 -0400
changeset 31367 25d3fbc1fa5f
parent 31236 d4d3011aa98e
child 31371 311143309e73
permissions -rw-r--r--
8080776: ARM 32 bit binaries do not run on 64 bit ARM v8 hardware Summary: Need to know arm cpu type earlier in the init sequence to avoid illegal instruction Reviewed-by: dholmes, dlong, bdelsart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27883
diff changeset
     2
 * Copyright (c) 1997, 2015, 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"
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 27417
diff changeset
    31
#include "runtime/os.hpp"
27684
e0391b2bf625 8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents: 27417
diff changeset
    32
#include "trace/tracing.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27883
diff changeset
    33
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    34
#include "utilities/ostream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    35
#include "utilities/top.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
    36
#if INCLUDE_ALL_GCS
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 27883
diff changeset
    37
#include "gc/g1/g1_globals.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13521
diff changeset
    38
#endif // INCLUDE_ALL_GCS
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    39
#ifdef COMPILER1
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    40
#include "c1/c1_globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    41
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    42
#ifdef COMPILER2
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    43
#include "opto/c2_globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    44
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    45
#ifdef SHARK
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    46
#include "shark/shark_globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6438
diff changeset
    47
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22527
diff changeset
    49
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22527
diff changeset
    50
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
RUNTIME_FLAGS(MATERIALIZE_DEVELOPER_FLAG, MATERIALIZE_PD_DEVELOPER_FLAG, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
              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
    53
              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
    54
              MATERIALIZE_NOTPRODUCT_FLAG, \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
    55
              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
    56
              MATERIALIZE_LP64_PRODUCT_FLAG)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
RUNTIME_OS_FLAGS(MATERIALIZE_DEVELOPER_FLAG, MATERIALIZE_PD_DEVELOPER_FLAG, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
                 MATERIALIZE_PRODUCT_FLAG, MATERIALIZE_PD_PRODUCT_FLAG, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
                 MATERIALIZE_DIAGNOSTIC_FLAG, MATERIALIZE_NOTPRODUCT_FLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
13521
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
    62
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
    63
           MATERIALIZE_DIAGNOSTIC_FLAG, MATERIALIZE_EXPERIMENTAL_FLAG, \
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
    64
           MATERIALIZE_NOTPRODUCT_FLAG)
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
    65
11183
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    66
MATERIALIZE_FLAGS_EXT
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    67
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
    68
22518
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
    69
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
    70
#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
    71
  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
    72
#else
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
    73
  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
    74
#endif
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
    75
}
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
    76
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    77
void Flag::check_writable() {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    78
  if (is_constant_in_binary()) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    79
    fatal(err_msg("flag is constant: %s", _name));
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    80
  }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    81
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    82
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    83
bool Flag::is_bool() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    84
  return strcmp(_type, "bool") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    85
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    86
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    87
bool Flag::get_bool() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    88
  return *((bool*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    89
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    90
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    91
void Flag::set_bool(bool value) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    92
  check_writable();
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    93
  *((bool*) _addr) = value;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    94
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
    95
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
    96
bool Flag::is_int() const {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
    97
  return strcmp(_type, "int")  == 0;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
    98
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
    99
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   100
int Flag::get_int() const {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   101
  return *((int*) _addr);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   102
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   103
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   104
void Flag::set_int(int value) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   105
  check_writable();
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   106
  *((int*) _addr) = value;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   107
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   108
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   109
bool Flag::is_uint() const {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   110
  return strcmp(_type, "uint")  == 0;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   111
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   112
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   113
uint Flag::get_uint() const {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   114
  return *((uint*) _addr);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   115
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   116
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   117
void Flag::set_uint(uint value) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   118
  check_writable();
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   119
  *((uint*) _addr) = value;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   120
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   121
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   122
bool Flag::is_intx() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   123
  return strcmp(_type, "intx")  == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   124
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   125
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   126
intx Flag::get_intx() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   127
  return *((intx*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   128
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   129
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   130
void Flag::set_intx(intx value) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   131
  check_writable();
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   132
  *((intx*) _addr) = value;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   133
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   134
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   135
bool Flag::is_uintx() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   136
  return strcmp(_type, "uintx") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   137
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   138
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   139
uintx Flag::get_uintx() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   140
  return *((uintx*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   141
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   142
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   143
void Flag::set_uintx(uintx value) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   144
  check_writable();
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   145
  *((uintx*) _addr) = value;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   146
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   147
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   148
bool Flag::is_uint64_t() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   149
  return strcmp(_type, "uint64_t") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   150
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   151
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   152
uint64_t Flag::get_uint64_t() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   153
  return *((uint64_t*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   154
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   155
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   156
void Flag::set_uint64_t(uint64_t value) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   157
  check_writable();
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   158
  *((uint64_t*) _addr) = value;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   159
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   160
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   161
bool Flag::is_size_t() const {
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   162
  return strcmp(_type, "size_t") == 0;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   163
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   164
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   165
size_t Flag::get_size_t() const {
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   166
  return *((size_t*) _addr);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   167
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   168
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   169
void Flag::set_size_t(size_t value) {
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   170
  check_writable();
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   171
  *((size_t*) _addr) = value;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   172
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   173
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   174
bool Flag::is_double() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   175
  return strcmp(_type, "double") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   176
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   177
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   178
double Flag::get_double() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   179
  return *((double*) _addr);
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
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   182
void Flag::set_double(double value) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   183
  check_writable();
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   184
  *((double*) _addr) = value;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   185
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   186
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   187
bool Flag::is_ccstr() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   188
  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
   189
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   190
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   191
bool Flag::ccstr_accumulates() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   192
  return strcmp(_type, "ccstrlist") == 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   193
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   194
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   195
ccstr Flag::get_ccstr() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   196
  return *((ccstr*) _addr);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   197
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   198
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   199
void Flag::set_ccstr(ccstr value) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   200
  check_writable();
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   201
  *((ccstr*) _addr) = value;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   202
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   203
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   204
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   205
Flag::Flags Flag::get_origin() {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   206
  return Flags(_flags & VALUE_ORIGIN_MASK);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   207
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   208
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   209
void Flag::set_origin(Flags origin) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   210
  assert((origin & VALUE_ORIGIN_MASK) == origin, "sanity");
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   211
  _flags = Flags((_flags & ~VALUE_ORIGIN_MASK) | origin);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   212
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   213
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   214
bool Flag::is_default() {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   215
  return (get_origin() == DEFAULT);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   216
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   217
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   218
bool Flag::is_ergonomic() {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   219
  return (get_origin() == ERGONOMIC);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   220
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   221
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   222
bool Flag::is_command_line() {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   223
  return (get_origin() == COMMAND_LINE);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   224
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   225
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   226
bool Flag::is_product() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   227
  return (_flags & KIND_PRODUCT) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   228
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   229
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   230
bool Flag::is_manageable() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   231
  return (_flags & KIND_MANAGEABLE) != 0;
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
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   234
bool Flag::is_diagnostic() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   235
  return (_flags & KIND_DIAGNOSTIC) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   236
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   237
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   238
bool Flag::is_experimental() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   239
  return (_flags & KIND_EXPERIMENTAL) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   240
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   241
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   242
bool Flag::is_notproduct() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   243
  return (_flags & KIND_NOT_PRODUCT) != 0;
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
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   246
bool Flag::is_develop() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   247
  return (_flags & KIND_DEVELOP) != 0;
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
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   250
bool Flag::is_read_write() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   251
  return (_flags & KIND_READ_WRITE) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   252
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   253
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   254
bool Flag::is_commercial() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   255
  return (_flags & KIND_COMMERCIAL) != 0;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   256
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   257
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   258
/**
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   259
 * 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
   260
 * 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
   261
 */
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   262
bool Flag::is_constant_in_binary() const {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   263
#ifdef PRODUCT
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   264
    return is_notproduct() || is_develop();
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   265
#else
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   266
    return false;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   267
#endif
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   268
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   269
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
bool Flag::is_unlocker() const {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   271
  return strcmp(_name, "UnlockDiagnosticVMOptions") == 0     ||
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   272
         strcmp(_name, "UnlockExperimentalVMOptions") == 0   ||
11183
a81bb5c041d3 7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents: 11167
diff changeset
   273
         is_unlocker_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
bool Flag::is_unlocked() const {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   277
  if (is_diagnostic()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    return UnlockDiagnosticVMOptions;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   279
  }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   280
  if (is_experimental()) {
1382
fa3de4068282 6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents: 1374
diff changeset
   281
    return UnlockExperimentalVMOptions;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  }
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   283
  return is_unlocked_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
27166
4ce0d93a8287 8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents: 25959
diff changeset
   286
void Flag::unlock_diagnostic() {
4ce0d93a8287 8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents: 25959
diff changeset
   287
  assert(is_diagnostic(), "sanity");
4ce0d93a8287 8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents: 25959
diff changeset
   288
  _flags = Flags(_flags & ~KIND_DIAGNOSTIC);
4ce0d93a8287 8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents: 25959
diff changeset
   289
}
4ce0d93a8287 8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents: 25959
diff changeset
   290
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   291
// 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
   292
// none is available.
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   293
void 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
   294
  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
   295
  if (is_diagnostic() && !is_unlocked()) {
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   296
    jio_snprintf(buf, buflen, "Error: VM option '%s' is diagnostic and must be enabled via -XX:+UnlockDiagnosticVMOptions.\n",
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   297
                 _name);
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   298
    return;
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   299
  }
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   300
  if (is_experimental() && !is_unlocked()) {
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   301
    jio_snprintf(buf, buflen, "Error: VM option '%s' is experimental and must be enabled via -XX:+UnlockExperimentalVMOptions.\n",
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   302
                 _name);
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   303
    return;
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   304
  }
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   305
  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
   306
    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
   307
                 _name);
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   308
    return;
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   309
  }
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   310
  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
   311
    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
   312
                 _name);
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   313
    return;
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   314
  }
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   315
  get_locked_message_ext(buf, buflen);
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   316
}
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   317
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
bool Flag::is_writeable() const {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   319
  return is_manageable() || (is_product() && is_read_write()) || is_writeable_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
11254
e2dd3c32a7cb 7122880: Extend vendor-specific command interface to include manageable switches
phh
parents: 11183
diff changeset
   322
// All flags except "manageable" are assumed to be internal flags.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
// Long term, we need to define a mechanism to specify which flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
// are external/stable and change this function accordingly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
bool Flag::is_external() const {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   326
  return is_manageable() || is_external_ext();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
11254
e2dd3c32a7cb 7122880: Extend vendor-specific command interface to include manageable switches
phh
parents: 11183
diff changeset
   329
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// Length of format string (e.g. "%.1234s") for printing ccstr below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
#define FORMAT_BUFFER_LEN 16
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22527
diff changeset
   333
PRAGMA_FORMAT_NONLITERAL_IGNORED_EXTERNAL
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   334
void Flag::print_on(outputStream* st, bool withComments) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   335
  // 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
   336
  if (is_constant_in_binary()) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   337
    return;
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
  st->print("%9s %-40s %c= ", _type, _name, (!is_default() ? ':' : ' '));
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   341
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   342
  if (is_bool()) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   343
    st->print("%-16s", get_bool() ? "true" : "false");
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   344
  }
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   345
  if (is_int()) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   346
    st->print("%-16d", get_int());
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   347
  }
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   348
  if (is_uint()) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   349
    st->print("%-16u", get_uint());
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   350
  }
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   351
  if (is_intx()) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   352
    st->print("%-16ld", get_intx());
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   353
  }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   354
  if (is_uintx()) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   355
    st->print("%-16lu", get_uintx());
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   356
  }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   357
  if (is_uint64_t()) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   358
    st->print("%-16lu", get_uint64_t());
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   359
  }
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   360
  if (is_size_t()) {
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   361
    st->print(SIZE_FORMAT_W(-16), get_size_t());
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   362
  }
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   363
  if (is_double()) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   364
    st->print("%-16f", get_double());
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   365
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  if (is_ccstr()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   367
    const char* cp = get_ccstr();
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   368
    if (cp != NULL) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   369
      const char* eol;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   370
      while ((eol = strchr(cp, '\n')) != NULL) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   371
        char format_buffer[FORMAT_BUFFER_LEN];
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   372
        size_t llen = pointer_delta(eol, cp, sizeof(char));
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   373
        jio_snprintf(format_buffer, FORMAT_BUFFER_LEN,
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   374
            "%%." SIZE_FORMAT "s", llen);
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22527
diff changeset
   375
PRAGMA_DIAG_PUSH
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22527
diff changeset
   376
PRAGMA_FORMAT_NONLITERAL_IGNORED_INTERNAL
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   377
        st->print(format_buffer, cp);
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22527
diff changeset
   378
PRAGMA_DIAG_POP
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   379
        st->cr();
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   380
        cp = eol+1;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   381
        st->print("%5s %-35s += ", "", _name);
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
      st->print("%-16s", cp);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   384
    }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   385
    else st->print("%-16s", "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  }
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   387
22188
c878825ed998 8026300: VM warning: increase O_BUFLEN in ostream.hpp -- output truncated occurs with fastdebug VM when printing flags
zgu
parents: 21736
diff changeset
   388
  st->print("%-20s", " ");
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   389
  print_kind(st);
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   390
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   391
  if (withComments) {
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   392
#ifndef PRODUCT
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   393
    st->print("%s", _doc);
6438
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   394
#endif
ace4f8100e90 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 6187
diff changeset
   395
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   399
void Flag::print_kind(outputStream* st) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   400
  struct Data {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   401
    int flag;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   402
    const char* name;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   403
  };
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   404
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   405
  Data data[] = {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   406
      { KIND_C1, "C1" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   407
      { KIND_C2, "C2" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   408
      { KIND_ARCH, "ARCH" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   409
      { KIND_SHARK, "SHARK" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   410
      { KIND_PLATFORM_DEPENDENT, "pd" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   411
      { KIND_PRODUCT, "product" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   412
      { KIND_MANAGEABLE, "manageable" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   413
      { KIND_DIAGNOSTIC, "diagnostic" },
21736
ef8da7738ad4 8028341: PSR:FUNC: SCOPE PARAMETER MISSING FROM THE -XX:+PRINTFLAGSFINAL
sgabdura
parents: 20288
diff changeset
   414
      { KIND_EXPERIMENTAL, "experimental" },
ef8da7738ad4 8028341: PSR:FUNC: SCOPE PARAMETER MISSING FROM THE -XX:+PRINTFLAGSFINAL
sgabdura
parents: 20288
diff changeset
   415
      { KIND_COMMERCIAL, "commercial" },
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   416
      { KIND_NOT_PRODUCT, "notproduct" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   417
      { KIND_DEVELOP, "develop" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   418
      { KIND_LP64_PRODUCT, "lp64_product" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   419
      { KIND_READ_WRITE, "rw" },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   420
      { -1, "" }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   421
  };
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   422
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   423
  if ((_flags & KIND_MASK) != 0) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   424
    st->print("{");
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   425
    bool is_first = true;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   426
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   427
    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
   428
      Data d = data[i];
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   429
      if ((_flags & d.flag) != 0) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   430
        if (is_first) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   431
          is_first = false;
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   432
        } else {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   433
          st->print(" ");
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   434
        }
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22527
diff changeset
   435
        st->print("%s", d.name);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   436
      }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   437
    }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   438
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   439
    st->print("}");
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   440
  }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   441
}
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   442
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
void Flag::print_as_flag(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  if (is_bool()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   445
    st->print("-XX:%s%s", get_bool() ? "+" : "-", _name);
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   446
  } else if (is_int()) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   447
    st->print("-XX:%s=%d", _name, get_int());
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   448
  } else if (is_uint()) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   449
    st->print("-XX:%s=%u", _name, get_uint());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  } else if (is_intx()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   451
    st->print("-XX:%s=" INTX_FORMAT, _name, get_intx());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  } else if (is_uintx()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   453
    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
   454
  } else if (is_uint64_t()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   455
    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
   456
  } else if (is_size_t()) {
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   457
    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
   458
  } else if (is_double()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   459
    st->print("-XX:%s=%f", _name, get_double());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  } else if (is_ccstr()) {
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   461
    st->print("-XX:%s=", _name);
350
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   462
    const char* cp = get_ccstr();
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   463
    if (cp != NULL) {
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   464
      // Need to turn embedded '\n's back into separate arguments
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   465
      // Not so efficient to print one character at a time,
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   466
      // 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
   467
      // and print that.  And this need not be efficient.
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   468
      for (; *cp != '\0'; cp += 1) {
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   469
        switch (*cp) {
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   470
          default:
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   471
            st->print("%c", *cp);
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   472
            break;
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   473
          case '\n':
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   474
            st->print(" -XX:%s=", _name);
350
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   475
            break;
d6d713dd712a 6619271: The -Xprintflags causes the VM to segv
never
parents: 186
diff changeset
   476
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
// 4991491 do not "optimize out" the was_set false values: omitting them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
// tickles a Microsoft compiler bug causing flagTable to be malformed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   487
#define NAME(name) NOT_PRODUCT(&name) PRODUCT_ONLY(&CONST_##name)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   489
#define RUNTIME_PRODUCT_FLAG_STRUCT(     type, name, value, doc) { #type, XSTR(name), &name,      NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_PRODUCT) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   490
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   491
#define RUNTIME_DIAGNOSTIC_FLAG_STRUCT(  type, name, value, doc) { #type, XSTR(name), &name,      NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DIAGNOSTIC) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   492
#define RUNTIME_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name,      NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_EXPERIMENTAL) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   493
#define RUNTIME_MANAGEABLE_FLAG_STRUCT(  type, name, value, doc) { #type, XSTR(name), &name,      NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_MANAGEABLE) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   494
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   495
#define RUNTIME_DEVELOP_FLAG_STRUCT(     type, name, value, doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DEVELOP) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   496
#define RUNTIME_PD_DEVELOP_FLAG_STRUCT(  type, name,        doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   497
#define RUNTIME_NOTPRODUCT_FLAG_STRUCT(  type, name, value, doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_NOT_PRODUCT) },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   499
#ifdef _LP64
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   500
#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
   501
#else
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   502
#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
   503
#endif // _LP64
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 350
diff changeset
   504
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   505
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   506
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   507
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   508
#define C1_DEVELOP_FLAG_STRUCT(          type, name, value, doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_DEVELOP) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   509
#define C1_PD_DEVELOP_FLAG_STRUCT(       type, name,        doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   510
#define C1_NOTPRODUCT_FLAG_STRUCT(       type, name, value, doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C1 | Flag::KIND_NOT_PRODUCT) },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   512
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   513
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   514
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   515
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   516
#define C2_DEVELOP_FLAG_STRUCT(          type, name, value, doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_DEVELOP) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   517
#define C2_PD_DEVELOP_FLAG_STRUCT(       type, name,        doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   518
#define C2_NOTPRODUCT_FLAG_STRUCT(       type, name, value, doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_C2 | Flag::KIND_NOT_PRODUCT) },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   520
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   521
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   522
#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) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   523
#define ARCH_DEVELOP_FLAG_STRUCT(        type, name, value, doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_ARCH | Flag::KIND_DEVELOP) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   524
#define ARCH_NOTPRODUCT_FLAG_STRUCT(     type, name, value, doc) { #type, XSTR(name), NAME(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
   525
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   526
#define SHARK_PRODUCT_FLAG_STRUCT(       type, name, value, doc) { #type, XSTR(name), &name,      NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_PRODUCT) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   527
#define SHARK_PD_PRODUCT_FLAG_STRUCT(    type, name,        doc) { #type, XSTR(name), &name,      NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_PRODUCT | Flag::KIND_PLATFORM_DEPENDENT) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   528
#define SHARK_DIAGNOSTIC_FLAG_STRUCT(    type, name, value, doc) { #type, XSTR(name), &name,      NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_DIAGNOSTIC) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   529
#define SHARK_DEVELOP_FLAG_STRUCT(       type, name, value, doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_DEVELOP) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   530
#define SHARK_PD_DEVELOP_FLAG_STRUCT(    type, name,        doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_DEVELOP | Flag::KIND_PLATFORM_DEPENDENT) },
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   531
#define SHARK_NOTPRODUCT_FLAG_STRUCT(    type, name, value, doc) { #type, XSTR(name), NAME(name), NOT_PRODUCT_ARG(doc) Flag::Flags(Flag::DEFAULT | Flag::KIND_SHARK | Flag::KIND_NOT_PRODUCT) },
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
static Flag flagTable[] = {
11167
3931428f62ae 7116730: Revert 7116481: Commercial features in Hotspot must be gated by a switch
phh
parents: 11166
diff changeset
   534
 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
   535
 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
   536
#if INCLUDE_ALL_GCS
1382
fa3de4068282 6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents: 1374
diff changeset
   537
 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
   538
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
#ifdef COMPILER1
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 18497
diff changeset
   540
 C1_FLAGS(C1_DEVELOP_FLAG_STRUCT, C1_PD_DEVELOP_FLAG_STRUCT, C1_PRODUCT_FLAG_STRUCT, C1_PD_PRODUCT_FLAG_STRUCT, C1_DIAGNOSTIC_FLAG_STRUCT, C1_NOTPRODUCT_FLAG_STRUCT)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
#ifdef COMPILER2
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4437
diff changeset
   543
 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
   544
#endif
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   545
#ifdef SHARK
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
   546
 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
   547
#endif
13521
97a23be06f4e 6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents: 13195
diff changeset
   548
 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
   549
 FLAGTABLE_EXT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
 {0, NULL, NULL}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
Flag* Flag::flags = flagTable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
size_t Flag::numFlags = (sizeof(flagTable) / sizeof(Flag));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
18497
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   556
inline bool str_equal(const char* s, const char* q, size_t len) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  // s is null terminated, q is not!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  if (strlen(s) != (unsigned int) len) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  return strncmp(s, q, len) == 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   562
// 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
   563
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
   564
  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
   565
    if (str_equal(current->_name, name, length)) {
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   566
      // Found a matching entry.
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   567
      // 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
   568
      if (current->is_constant_in_binary()) {
22518
e23c5545e376 8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents: 22194
diff changeset
   569
        return (return_flag == true ? current : NULL);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   570
      }
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   571
      // Report locked flags only if allowed.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
      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
   573
        if (!allow_locked) {
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   574
          // 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
   575
          // commercial... until they are explicitly unlocked
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   576
          return NULL;
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   577
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
      return current;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  }
12157
439a7166bf0f 7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents: 11441
diff changeset
   582
  // Flag name is not in the flag table
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
18497
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   586
// Compute string similarity based on Dice's coefficient
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   587
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
   588
  int len1 = (int) strlen(str1);
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   589
  int total = len1 + (int) len2;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   590
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   591
  int hit = 0;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   592
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   593
  for (int i = 0; i < len1 -1; ++i) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   594
    for (int j = 0; j < (int) len2 -1; ++j) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   595
      if ((str1[i] == str2[j]) && (str1[i+1] == str2[j+1])) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   596
        ++hit;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   597
        break;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   598
      }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   599
    }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   600
  }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   601
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   602
  return 2.0f * (float) hit / (float) total;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   603
}
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   604
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   605
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
   606
  float VMOptionsFuzzyMatchSimilarity = 0.7f;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   607
  Flag* match = NULL;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   608
  float score;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   609
  float max_score = -1;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   610
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   611
  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
   612
    score = str_similar(current->_name, name, length);
18497
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   613
    if (score > max_score) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   614
      max_score = score;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   615
      match = current;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   616
    }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   617
  }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   618
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   619
  if (!(match->is_unlocked() || match->is_unlocker())) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   620
    if (!allow_locked) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   621
      return NULL;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   622
    }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   623
  }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   624
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   625
  if (max_score < VMOptionsFuzzyMatchSimilarity) {
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   626
    return NULL;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   627
  }
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   628
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   629
  return match;
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   630
}
9ff60555fcd3 8017611: Auto corrector for mistyped vm options
tamao
parents: 18433
diff changeset
   631
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
// Returns the address of the index'th element
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
static Flag* address_of_flag(CommandLineFlagWithType flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  assert((size_t)flag < Flag::numFlags, "bad command line flag index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  return &Flag::flags[flag];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
bool CommandLineFlagsEx::is_default(CommandLineFlag flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  assert((size_t)flag < Flag::numFlags, "bad command line flag index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  Flag* f = &Flag::flags[flag];
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   641
  return f->is_default();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   644
bool CommandLineFlagsEx::is_ergo(CommandLineFlag flag) {
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   645
  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
   646
  Flag* f = &Flag::flags[flag];
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   647
  return f->is_ergonomic();
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   648
}
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   649
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   650
bool CommandLineFlagsEx::is_cmdline(CommandLineFlag flag) {
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   651
  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
   652
  Flag* f = &Flag::flags[flag];
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   653
  return f->is_command_line();
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   654
}
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   655
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
bool CommandLineFlags::wasSetOnCmdline(const char* name, bool* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  Flag* result = Flag::find_flag((char*)name, strlen(name));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  if (result == NULL) return false;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   659
  *value = result->is_command_line();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   663
template<class E, class T>
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   664
static void trace_flag_changed(const char* name, const T old_value, const T new_value, const Flag::Flags origin)
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   665
{
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   666
  E e;
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   667
  e.set_name(name);
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   668
  e.set_old_value(old_value);
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   669
  e.set_new_value(new_value);
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   670
  e.set_origin(origin);
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   671
  e.commit();
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   672
}
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   673
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   674
bool CommandLineFlags::boolAt(const char* name, size_t len, bool* value, bool allow_locked, bool return_flag) {
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   675
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  if (!result->is_bool()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  *value = result->get_bool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24424
diff changeset
   682
bool CommandLineFlags::boolAtPut(const char* name, size_t len, bool* value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  if (!result->is_bool()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  bool old_value = result->get_bool();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   687
  trace_flag_changed<EventBooleanFlagChanged, bool>(name, old_value, *value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  result->set_bool(*value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  *value = old_value;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   690
  result->set_origin(origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   694
void CommandLineFlagsEx::boolAtPut(CommandLineFlagWithType flag, bool value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  guarantee(faddr != NULL && faddr->is_bool(), "wrong flag type");
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   697
  trace_flag_changed<EventBooleanFlagChanged, bool>(faddr->_name, faddr->get_bool(), value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  faddr->set_bool(value);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   699
  faddr->set_origin(origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
31236
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   702
bool CommandLineFlags::intAt(const char* name, size_t len, int* value, bool allow_locked, bool return_flag) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   703
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   704
  if (result == NULL) return false;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   705
  if (!result->is_int()) return false;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   706
  *value = result->get_int();
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   707
  return true;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   708
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   709
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   710
bool CommandLineFlags::intAtPut(const char* name, size_t len, int* value, Flag::Flags origin) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   711
  Flag* result = Flag::find_flag(name, len);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   712
  if (result == NULL) return false;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   713
  if (!result->is_int()) return false;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   714
  int old_value = result->get_int();
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   715
  trace_flag_changed<EventIntFlagChanged, s4>(name, old_value, *value, origin);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   716
  result->set_int(*value);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   717
  *value = old_value;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   718
  result->set_origin(origin);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   719
  return true;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   720
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   721
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   722
void CommandLineFlagsEx::intAtPut(CommandLineFlagWithType flag, int value, Flag::Flags origin) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   723
  Flag* faddr = address_of_flag(flag);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   724
  guarantee(faddr != NULL && faddr->is_int(), "wrong flag type");
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   725
  trace_flag_changed<EventIntFlagChanged, s4>(faddr->_name, faddr->get_int(), value, origin);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   726
  faddr->set_int(value);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   727
  faddr->set_origin(origin);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   728
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   729
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   730
bool CommandLineFlags::uintAt(const char* name, size_t len, uint* value, bool allow_locked, bool return_flag) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   731
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   732
  if (result == NULL) return false;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   733
  if (!result->is_uint()) return false;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   734
  *value = result->get_uint();
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   735
  return true;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   736
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   737
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   738
bool CommandLineFlags::uintAtPut(const char* name, size_t len, uint* value, Flag::Flags origin) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   739
  Flag* result = Flag::find_flag(name, len);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   740
  if (result == NULL) return false;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   741
  if (!result->is_uint()) return false;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   742
  uint old_value = result->get_uint();
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   743
  trace_flag_changed<EventUnsignedIntFlagChanged, u4>(name, old_value, *value, origin);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   744
  result->set_uint(*value);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   745
  *value = old_value;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   746
  result->set_origin(origin);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   747
  return true;
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   748
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   749
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   750
void CommandLineFlagsEx::uintAtPut(CommandLineFlagWithType flag, uint value, Flag::Flags origin) {
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   751
  Flag* faddr = address_of_flag(flag);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   752
  guarantee(faddr != NULL && faddr->is_uint(), "wrong flag type");
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   753
  trace_flag_changed<EventUnsignedIntFlagChanged, u4>(faddr->_name, faddr->get_uint(), value, origin);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   754
  faddr->set_uint(value);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   755
  faddr->set_origin(origin);
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   756
}
d4d3011aa98e 8080947: Add uint as a valid VM flag type
david
parents: 30764
diff changeset
   757
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   758
bool CommandLineFlags::intxAt(const char* name, size_t len, intx* value, bool allow_locked, bool return_flag) {
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   759
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  if (!result->is_intx()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  *value = result->get_intx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24424
diff changeset
   766
bool CommandLineFlags::intxAtPut(const char* name, size_t len, intx* value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  if (!result->is_intx()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  intx old_value = result->get_intx();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   771
  trace_flag_changed<EventLongFlagChanged, s8>(name, old_value, *value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  result->set_intx(*value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  *value = old_value;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   774
  result->set_origin(origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   778
void CommandLineFlagsEx::intxAtPut(CommandLineFlagWithType flag, intx value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  guarantee(faddr != NULL && faddr->is_intx(), "wrong flag type");
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   781
  trace_flag_changed<EventLongFlagChanged, s8>(faddr->_name, faddr->get_intx(), value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  faddr->set_intx(value);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   783
  faddr->set_origin(origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   786
bool CommandLineFlags::uintxAt(const char* name, size_t len, uintx* value, bool allow_locked, bool return_flag) {
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   787
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  if (!result->is_uintx()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  *value = result->get_uintx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24424
diff changeset
   794
bool CommandLineFlags::uintxAtPut(const char* name, size_t len, uintx* value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  if (!result->is_uintx()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  uintx old_value = result->get_uintx();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   799
  trace_flag_changed<EventUnsignedLongFlagChanged, u8>(name, old_value, *value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  result->set_uintx(*value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  *value = old_value;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   802
  result->set_origin(origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   806
void CommandLineFlagsEx::uintxAtPut(CommandLineFlagWithType flag, uintx value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  guarantee(faddr != NULL && faddr->is_uintx(), "wrong flag type");
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   809
  trace_flag_changed<EventUnsignedLongFlagChanged, u8>(faddr->_name, faddr->get_uintx(), value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  faddr->set_uintx(value);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   811
  faddr->set_origin(origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   814
bool CommandLineFlags::uint64_tAt(const char* name, size_t len, uint64_t* value, bool allow_locked, bool return_flag) {
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   815
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   816
  if (result == NULL) return false;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   817
  if (!result->is_uint64_t()) return false;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   818
  *value = result->get_uint64_t();
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   819
  return true;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   820
}
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   821
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24424
diff changeset
   822
bool CommandLineFlags::uint64_tAtPut(const char* name, size_t len, uint64_t* value, Flag::Flags origin) {
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   823
  Flag* result = Flag::find_flag(name, len);
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   824
  if (result == NULL) return false;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   825
  if (!result->is_uint64_t()) return false;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   826
  uint64_t old_value = result->get_uint64_t();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   827
  trace_flag_changed<EventUnsignedLongFlagChanged, u8>(name, old_value, *value, origin);
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   828
  result->set_uint64_t(*value);
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   829
  *value = old_value;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   830
  result->set_origin(origin);
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   831
  return true;
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   832
}
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   833
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   834
void CommandLineFlagsEx::uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, Flag::Flags origin) {
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   835
  Flag* faddr = address_of_flag(flag);
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   836
  guarantee(faddr != NULL && faddr->is_uint64_t(), "wrong flag type");
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   837
  trace_flag_changed<EventUnsignedLongFlagChanged, u8>(faddr->_name, faddr->get_uint64_t(), value, origin);
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   838
  faddr->set_uint64_t(value);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   839
  faddr->set_origin(origin);
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   840
}
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 1404
diff changeset
   841
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   842
bool CommandLineFlags::size_tAt(const char* name, size_t len, size_t* value, bool allow_locked, bool return_flag) {
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   843
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
25959
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   844
  if (result == NULL) return false;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   845
  if (!result->is_size_t()) return false;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   846
  *value = result->get_size_t();
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   847
  return true;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   848
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   849
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   850
bool CommandLineFlags::size_tAtPut(const char* name, size_t len, size_t* value, Flag::Flags origin) {
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   851
  Flag* result = Flag::find_flag(name, len);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   852
  if (result == NULL) return false;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   853
  if (!result->is_size_t()) return false;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   854
  size_t old_value = result->get_size_t();
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   855
  trace_flag_changed<EventUnsignedLongFlagChanged, u8>(name, old_value, *value, origin);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   856
  result->set_size_t(*value);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   857
  *value = old_value;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   858
  result->set_origin(origin);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   859
  return true;
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   860
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   861
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   862
void CommandLineFlagsEx::size_tAtPut(CommandLineFlagWithType flag, size_t value, Flag::Flags origin) {
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   863
  Flag* faddr = address_of_flag(flag);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   864
  guarantee(faddr != NULL && faddr->is_size_t(), "wrong flag type");
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   865
  trace_flag_changed<EventUnsignedLongFlagChanged, u8>(faddr->_name, faddr->get_size_t(), value, origin);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   866
  faddr->set_size_t(value);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   867
  faddr->set_origin(origin);
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   868
}
6c11a6272b60 8054823: Add size_t as a valid VM flag type
stefank
parents: 24921
diff changeset
   869
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   870
bool CommandLineFlags::doubleAt(const char* name, size_t len, double* value, bool allow_locked, bool return_flag) {
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   871
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  if (!result->is_double()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  *value = result->get_double();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24424
diff changeset
   878
bool CommandLineFlags::doubleAtPut(const char* name, size_t len, double* value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  if (!result->is_double()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  double old_value = result->get_double();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   883
  trace_flag_changed<EventDoubleFlagChanged, double>(name, old_value, *value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
  result->set_double(*value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  *value = old_value;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   886
  result->set_origin(origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   890
void CommandLineFlagsEx::doubleAtPut(CommandLineFlagWithType flag, double value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  guarantee(faddr != NULL && faddr->is_double(), "wrong flag type");
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   893
  trace_flag_changed<EventDoubleFlagChanged, double>(faddr->_name, faddr->get_double(), value, origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  faddr->set_double(value);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   895
  faddr->set_origin(origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
27417
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   898
bool CommandLineFlags::ccstrAt(const char* name, size_t len, ccstr* value, bool allow_locked, bool return_flag) {
576e2b527e1c 8061443: Whitebox get*VMFlag() methods fail with develop flags in product builds
thartmann
parents: 27166
diff changeset
   899
  Flag* result = Flag::find_flag(name, len, allow_locked, return_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  if (!result->is_ccstr()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  *value = result->get_ccstr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
24921
3b73ef0b62d1 8038756: new WB API :: get/setVMFlag
iignatyev
parents: 24424
diff changeset
   906
bool CommandLineFlags::ccstrAtPut(const char* name, size_t len, ccstr* value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  Flag* result = Flag::find_flag(name, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  if (result == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  if (!result->is_ccstr()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  ccstr old_value = result->get_ccstr();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   911
  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
   912
  char* new_value = NULL;
ccb40ce62b79 6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents: 670
diff changeset
   913
  if (*value != NULL) {
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 27417
diff changeset
   914
    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
   915
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  result->set_ccstr(new_value);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   917
  if (result->is_default() && old_value != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
    // Prior value is NOT heap allocated, but was a literal constant.
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 27417
diff changeset
   919
    old_value = os::strdup_check_oom(old_value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  *value = old_value;
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   922
  result->set_origin(origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   926
void CommandLineFlagsEx::ccstrAtPut(CommandLineFlagWithType flag, ccstr value, Flag::Flags origin) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  Flag* faddr = address_of_flag(flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
  guarantee(faddr != NULL && faddr->is_ccstr(), "wrong flag type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  ccstr old_value = faddr->get_ccstr();
22527
a5de5537d8a6 8032250: Add trace event for VM flag changes
sla
parents: 22518
diff changeset
   930
  trace_flag_changed<EventStringFlagChanged, const char*>(faddr->_name, old_value, value, origin);
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 27417
diff changeset
   931
  char* new_value = os::strdup_check_oom(value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  faddr->set_ccstr(new_value);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   933
  if (!faddr->is_default() && old_value != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    // 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
   935
    FREE_C_HEAP_ARRAY(char, old_value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  }
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   937
  faddr->set_origin(origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  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
   942
    return strcmp((*((Flag**) void_a))->_name, (*((Flag**) void_b))->_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   946
void CommandLineFlags::printSetFlags(outputStream* out) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  // Print which flags were set on the command line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  // note: this method is called before the thread structure is in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  //       which means resource allocation cannot be used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   951
  // The last entry is the null entry.
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   952
  const size_t length = Flag::numFlags - 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  // Sort
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12598
diff changeset
   955
  Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtInternal);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   956
  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
   957
    array[i] = &flagTable[i];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  qsort(array, length, sizeof(Flag*), compare_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  // Print
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   962
  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
   963
    if (array[i]->get_origin() /* naked field! */) {
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   964
      array[i]->print_as_flag(out);
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   965
      out->print(" ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  }
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   968
  out->cr();
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   969
  FREE_C_HEAP_ARRAY(Flag*, array);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
void CommandLineFlags::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  assert(Arguments::check_vm_args_consistency(), "Some flag settings conflict");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
4579
62478db2dc78 6914622: Print values of all flags for product VM
kvn
parents: 4450
diff changeset
   979
#endif // PRODUCT
62478db2dc78 6914622: Print values of all flags for product VM
kvn
parents: 4450
diff changeset
   980
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   981
void CommandLineFlags::printFlags(outputStream* out, bool withComments) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  // Print the flags sorted by name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
  // note: this method is called before the thread structure is in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  //       which means resource allocation cannot be used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   986
  // The last entry is the null entry.
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   987
  const size_t length = Flag::numFlags - 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  // Sort
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12598
diff changeset
   990
  Flag** array = NEW_C_HEAP_ARRAY(Flag*, length, mtInternal);
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   991
  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
   992
    array[i] = &flagTable[i];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
  qsort(array, length, sizeof(Flag*), compare_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  // Print
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
   997
  out->print_cr("[Global flags]");
20288
e2d549f40de9 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 19710
diff changeset
   998
  for (size_t i = 0; i < length; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    if (array[i]->is_unlocked()) {
11441
a89f443814cd 7120511: Add diagnostic commands
fparain
parents: 11254
diff changeset
  1000
      array[i]->print_on(out, withComments);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
  }
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1003
  FREE_C_HEAP_ARRAY(Flag*, array);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
}