src/hotspot/share/runtime/arguments.hpp
author ccheung
Wed, 02 Oct 2019 16:55:08 -0700
changeset 58447 319173c62caa
parent 58280 ef8c8cf9256a
child 58679 9c3209ff7550
child 58842 6c255334120d
permissions -rw-r--r--
8231606: _method_ordering is not set during CDS dynamic dump time Summary: Add the missing DynamicDumpSharedSpaces check in sort_methods(); replace the (DumpSharedSpaces || DynamicDumpSharedSpaces) with the Arguments::is_dumping_archive() function call. Reviewed-by: iklam, coleenp, jiangli
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52185
diff changeset
     2
 * Copyright (c) 1997, 2019, 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: 5035
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5035
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: 5035
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52185
diff changeset
    25
#ifndef SHARE_RUNTIME_ARGUMENTS_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52185
diff changeset
    26
#define SHARE_RUNTIME_ARGUMENTS_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6988
diff changeset
    27
35489
368deab8e88b 8146800: Reorganize logging alias code.
mockner
parents: 35466
diff changeset
    28
#include "logging/logLevel.hpp"
368deab8e88b 8146800: Reorganize logging alias code.
mockner
parents: 35466
diff changeset
    29
#include "logging/logTag.hpp"
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
    30
#include "memory/allocation.hpp"
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49860
diff changeset
    31
#include "runtime/flags/jvmFlag.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6988
diff changeset
    32
#include "runtime/java.hpp"
25468
5331df506290 8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents: 25074
diff changeset
    33
#include "runtime/os.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6988
diff changeset
    34
#include "runtime/perfData.hpp"
22555
ea32f6c51d08 8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents: 22551
diff changeset
    35
#include "utilities/debug.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6988
diff changeset
    36
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Arguments parses the command line and recognizes options
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
52185
c657b5b0e666 8212612: Add documentation about Arguments::_exit_hook
iklam
parents: 52030
diff changeset
    39
// Invocation API hook typedefs (these should really be defined in jni.h)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  typedef void (JNICALL *abort_hook_t)(void);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  typedef void (JNICALL *exit_hook_t)(jint code);
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22735
diff changeset
    43
  typedef jint (JNICALL *vfprintf_hook_t)(FILE *fp, const char *format, va_list args)  ATTRIBUTE_PRINTF(2, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
41708
82f5dc0dfccf 8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents: 41073
diff changeset
    46
// Obsolete or deprecated -XX flag.
82f5dc0dfccf 8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents: 41073
diff changeset
    47
struct SpecialFlag {
82f5dc0dfccf 8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents: 41073
diff changeset
    48
  const char* name;
82f5dc0dfccf 8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents: 41073
diff changeset
    49
  JDK_Version deprecated_in; // When the deprecation warning started (or "undefined").
82f5dc0dfccf 8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents: 41073
diff changeset
    50
  JDK_Version obsolete_in;   // When the obsolete warning started (or "undefined").
82f5dc0dfccf 8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents: 41073
diff changeset
    51
  JDK_Version expired_in;    // When the option expires (or "undefined").
82f5dc0dfccf 8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents: 41073
diff changeset
    52
};
82f5dc0dfccf 8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents: 41073
diff changeset
    53
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    54
// PathString is used as:
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    55
//  - the underlying value for a SystemProperty
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
    56
//  - the path portion of an --patch-module module/path pair
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    57
//  - the string that represents the system boot class path, Arguments::_system_boot_class_path.
37491
edf4cc53f5a3 8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents: 37466
diff changeset
    58
class PathString : public CHeapObj<mtArguments> {
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    59
 protected:
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    60
  char* _value;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
 public:
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    62
  char* value() const { return _value; }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    63
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
    64
  bool set_value(const char *value);
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
    65
  void append_value(const char *value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
    67
  PathString(const char* value);
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
    68
  ~PathString();
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    69
};
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    70
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
    71
// ModulePatchPath records the module/path pair as specified to --patch-module.
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
    72
class ModulePatchPath : public CHeapObj<mtInternal> {
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    73
private:
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    74
  char* _module_name;
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    75
  PathString* _path;
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    76
public:
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
    77
  ModulePatchPath(const char* module_name, const char* path);
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
    78
  ~ModulePatchPath();
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    79
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    80
  inline void set_path(const char* path) { _path->set_value(path); }
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    81
  inline const char* module_name() const { return _module_name; }
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    82
  inline char* path_string() const { return _path->value(); }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    83
};
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    84
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    85
// Element describing System and User (-Dkey=value flags) defined property.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    86
//
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    87
// An internal SystemProperty is one that has been removed in
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    88
// jdk.internal.VM.saveAndRemoveProperties, like jdk.boot.class.path.append.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    89
//
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    90
class SystemProperty : public PathString {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    91
 private:
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    92
  char*           _key;
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    93
  SystemProperty* _next;
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    94
  bool            _internal;
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    95
  bool            _writeable;
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
    96
  bool writeable() { return _writeable; }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    97
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    98
 public:
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
    99
  // Accessors
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   100
  char* value() const                 { return PathString::value(); }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   101
  const char* key() const             { return _key; }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   102
  bool internal() const               { return _internal; }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   103
  SystemProperty* next() const        { return _next; }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   104
  void set_next(SystemProperty* next) { _next = next; }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   105
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   106
  bool is_readable() const {
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   107
    return !_internal || strcmp(_key, "jdk.boot.class.path.append") == 0;
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   108
  }
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   109
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   110
  // A system property should only have its value set
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   111
  // via an external interface if it is a writeable property.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   112
  // The internal, non-writeable property jdk.boot.class.path.append
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   113
  // is the only exception to this rule.  It can be set externally
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   114
  // via -Xbootclasspath/a or JVMTI OnLoad phase call to AddToBootstrapClassLoaderSearch.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   115
  // In those cases for jdk.boot.class.path.append, the base class
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   116
  // set_value and append_value methods are called directly.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   117
  bool set_writeable_value(const char *value) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   118
    if (writeable()) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   119
      return set_value(value);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   120
    }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   121
    return false;
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   122
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   123
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   124
  // Constructor
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
   125
  SystemProperty(const char* key, const char* value, bool writeable, bool internal = false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
// For use by -agentlib, -agentpath and -Xrun
37491
edf4cc53f5a3 8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents: 37466
diff changeset
   130
class AgentLibrary : public CHeapObj<mtArguments> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  friend class AgentLibraryList;
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   132
public:
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   133
  // Is this library valid or not. Don't rely on os_lib == NULL as statically
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   134
  // linked lib could have handle of RTLD_DEFAULT which == 0 on some platforms
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   135
  enum AgentState {
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   136
    agent_invalid = 0,
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   137
    agent_valid   = 1
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   138
  };
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   139
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  char*           _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  char*           _options;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  void*           _os_lib;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  bool            _is_absolute_path;
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   145
  bool            _is_static_lib;
48474
6e69aea2aee7 8180709: java -javaagent:agent.jar with run-time that does not contain java.instrument prints confusing error
gadams
parents: 48157
diff changeset
   146
  bool            _is_instrument_lib;
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   147
  AgentState      _state;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  AgentLibrary*   _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  const char* name() const                  { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  char* options() const                     { return _options; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  bool is_absolute_path() const             { return _is_absolute_path; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  void* os_lib() const                      { return _os_lib; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  void set_os_lib(void* os_lib)             { _os_lib = os_lib; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  AgentLibrary* next() const                { return _next; }
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   158
  bool is_static_lib() const                { return _is_static_lib; }
48474
6e69aea2aee7 8180709: java -javaagent:agent.jar with run-time that does not contain java.instrument prints confusing error
gadams
parents: 48157
diff changeset
   159
  bool is_instrument_lib() const            { return _is_instrument_lib; }
19973
d98623e1f50b 8024007: Misc. cleanup of static agent code
bpittore
parents: 19732
diff changeset
   160
  void set_static_lib(bool is_static_lib)   { _is_static_lib = is_static_lib; }
19553
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   161
  bool valid()                              { return (_state == agent_valid); }
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   162
  void set_valid()                          { _state = agent_valid; }
9bbd930be684 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 19319
diff changeset
   163
  void set_invalid()                        { _state = agent_invalid; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // Constructor
48474
6e69aea2aee7 8180709: java -javaagent:agent.jar with run-time that does not contain java.instrument prints confusing error
gadams
parents: 48157
diff changeset
   166
  AgentLibrary(const char* name, const char* options, bool is_absolute_path,
6e69aea2aee7 8180709: java -javaagent:agent.jar with run-time that does not contain java.instrument prints confusing error
gadams
parents: 48157
diff changeset
   167
               void* os_lib, bool instrument_lib=false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
// maintain an order of entry list of AgentLibrary
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 49339
diff changeset
   171
class AgentLibraryList {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  AgentLibrary*   _first;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  AgentLibrary*   _last;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  bool is_empty() const                     { return _first == NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  AgentLibrary* first() const               { return _first; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // add to the end of the list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  void add(AgentLibrary* lib) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    if (is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
      _first = _last = lib;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      _last->_next = lib;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      _last = lib;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    lib->_next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // search for and remove a library known to be in the list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  void remove(AgentLibrary* lib) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    AgentLibrary* curr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    AgentLibrary* prev = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    for (curr = first(); curr != NULL; prev = curr, curr = curr->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
      if (curr == lib) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    assert(curr != NULL, "always should be found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    if (curr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
      // it was found, by-pass this library
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      if (prev == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
        _first = curr->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
        prev->_next = curr->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
      if (curr == _last) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
        _last = prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
      curr->_next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  AgentLibraryList() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    _first = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    _last = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
31853
c70929a2573c 8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents: 31620
diff changeset
   221
// Helper class for controlling the lifetime of JavaVMInitArgs objects.
c70929a2573c 8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents: 31620
diff changeset
   222
class ScopedVMInitArgs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
35489
368deab8e88b 8146800: Reorganize logging alias code.
mockner
parents: 35466
diff changeset
   224
// Most logging functions require 5 tags. Some of them may be _NO_TAG.
368deab8e88b 8146800: Reorganize logging alias code.
mockner
parents: 35466
diff changeset
   225
typedef struct {
368deab8e88b 8146800: Reorganize logging alias code.
mockner
parents: 35466
diff changeset
   226
  const char* alias_name;
368deab8e88b 8146800: Reorganize logging alias code.
mockner
parents: 35466
diff changeset
   227
  LogLevelType level;
368deab8e88b 8146800: Reorganize logging alias code.
mockner
parents: 35466
diff changeset
   228
  bool exactMatch;
37094
c12f414936a1 8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents: 36313
diff changeset
   229
  LogTagType tag0;
c12f414936a1 8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents: 36313
diff changeset
   230
  LogTagType tag1;
c12f414936a1 8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents: 36313
diff changeset
   231
  LogTagType tag2;
c12f414936a1 8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents: 36313
diff changeset
   232
  LogTagType tag3;
c12f414936a1 8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents: 36313
diff changeset
   233
  LogTagType tag4;
c12f414936a1 8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents: 36313
diff changeset
   234
  LogTagType tag5;
35489
368deab8e88b 8146800: Reorganize logging alias code.
mockner
parents: 35466
diff changeset
   235
} AliasedLoggingFlag;
368deab8e88b 8146800: Reorganize logging alias code.
mockner
parents: 35466
diff changeset
   236
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
class Arguments : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  friend class JvmtiExport;
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 31608
diff changeset
   240
  friend class CodeCacheExtensions;
46616
66d452cca30f 8178491: -Xss and -XX:ThreadStackSize argument parsing truncates bits
stefank
parents: 43607
diff changeset
   241
  friend class ArgumentsTest;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // Operation modi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  enum Mode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    _int,       // corresponds to -Xint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    _mixed,     // corresponds to -Xmixed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    _comp       // corresponds to -Xcomp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  enum ArgsRange {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    arg_unreadable = -3,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    arg_too_small  = -2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    arg_too_big    = -1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    arg_in_range   = 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   257
  enum PropertyAppendable {
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   258
    AppendProperty,
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   259
    AddProperty
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   260
  };
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   261
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   262
  enum PropertyWriteable {
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   263
    WriteableProperty,
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   264
    UnwriteableProperty
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   265
  };
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   266
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   267
  enum PropertyInternal {
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   268
    InternalProperty,
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   269
    ExternalProperty
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   270
  };
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   271
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
34125
56c4a2d19ee1 8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents: 32823
diff changeset
   274
  // a pointer to the flags file name if it is specified
56c4a2d19ee1 8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents: 32823
diff changeset
   275
  static char*  _jvm_flags_file;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // an array containing all flags specified in the .hotspotrc file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  static char** _jvm_flags_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  static int    _num_jvm_flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // an array containing all jvm arguments specified in the command line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  static char** _jvm_args_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  static int    _num_jvm_args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  // string containing all java command (class/jarfile name and app args)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  static char* _java_command;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // Property list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  static SystemProperty* _system_properties;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // Quick accessor to System properties in the list:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  static SystemProperty *_sun_boot_library_path;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  static SystemProperty *_java_library_path;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  static SystemProperty *_java_home;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  static SystemProperty *_java_class_path;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   293
  static SystemProperty *_jdk_boot_class_path_append;
50557
83e2deb73612 8204668: Cleanup management of the java.vm.info System property
dholmes
parents: 50456
diff changeset
   294
  static SystemProperty *_vm_info;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   295
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   296
  // --patch-module=module=<file>(<pathsep><file>)*
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
   297
  // Each element contains the associated module name, path
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   298
  // string pair as specified to --patch-module.
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   299
  static GrowableArray<ModulePatchPath*>* _patch_mod_prefix;
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
   300
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   301
  // The constructed value of the system class path after
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   302
  // argument processing and JVMTI OnLoad additions via
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   303
  // calls to AddToBootstrapClassLoaderSearch.  This is the
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   304
  // final form before ClassLoader::setup_bootstrap_search().
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   305
  // Note: since --patch-module is a module name/path pair, the
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   306
  // system boot class path string no longer contains the "prefix"
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   307
  // to the boot class path base piece as it did when
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
   308
  // -Xbootclasspath/p was supported.
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   309
  static PathString *_system_boot_class_path;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 38207
diff changeset
   311
  // Set if a modular java runtime image is present vs. a build with exploded modules
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 38207
diff changeset
   312
  static bool _has_jimage;
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 38207
diff changeset
   313
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27148
diff changeset
   314
  // temporary: to emit warning if the default ext dirs are not empty.
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27148
diff changeset
   315
  // remove this variable when the warning is no longer needed.
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27148
diff changeset
   316
  static char* _ext_dirs;
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27148
diff changeset
   317
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  // java.vendor.url.bug, bug reporting URL for fatal errors.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  static const char* _java_vendor_url_bug;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // sun.java.launcher, private property to provide information about
22734
41757c1f3946 8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents: 20288
diff changeset
   322
  // java launcher
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  static const char* _sun_java_launcher;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
22734
41757c1f3946 8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents: 20288
diff changeset
   325
  // was this VM created via the -XXaltjvm=<path> option
41757c1f3946 8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents: 20288
diff changeset
   326
  static bool   _sun_java_launcher_is_altjvm;
8476
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 7397
diff changeset
   327
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  // Option flags
35872
7fb1e4de83ff 8145180: Add back PrintGC, PrintGCDetails and -Xloggc
brutisso
parents: 35489
diff changeset
   329
  static const char*  _gc_log_filename;
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   330
  // Value of the conservative maximum heap alignment needed
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   331
  static size_t  _conservative_max_heap_alignment;
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   332
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  // -Xrun arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  static AgentLibraryList _libraryList;
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
   335
  static void add_init_library(const char* name, char* options);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  // -agentlib and -agentpath arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  static AgentLibraryList _agentList;
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
   339
  static void add_init_agent(const char* name, char* options, bool absolute_path);
48474
6e69aea2aee7 8180709: java -javaagent:agent.jar with run-time that does not contain java.instrument prints confusing error
gadams
parents: 48157
diff changeset
   340
  static void add_instrument_agent(const char* name, char* options, bool absolute_path);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  // Late-binding agents not started via arguments
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48115
diff changeset
   343
  static void add_loaded_agent(AgentLibrary *agentLib);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // Operation modi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  static Mode _mode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  static void set_mode_flags(Mode mode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  static bool _java_compiler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  static void set_java_compiler(bool arg) { _java_compiler = arg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  static bool java_compiler()   { return _java_compiler; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  // -Xdebug flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  static bool _xdebug_mode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  static void set_xdebug_mode(bool arg) { _xdebug_mode = arg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  static bool xdebug_mode()             { return _xdebug_mode; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
49716
450d709262c1 8198908: Add JVM support for preview features
hseigel
parents: 49364
diff changeset
   357
  // preview features
450d709262c1 8198908: Add JVM support for preview features
hseigel
parents: 49364
diff changeset
   358
  static bool _enable_preview;
450d709262c1 8198908: Add JVM support for preview features
hseigel
parents: 49364
diff changeset
   359
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // Used to save default settings
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  static bool _AlwaysCompileLoopMethods;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  static bool _UseOnStackReplacement;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  static bool _BackgroundCompilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  static bool _ClipInlining;
30201
cfe623bb3f9c 8075663: compiler/rangechecks/TestExplicitRangeChecks.java fails in compiler nightlies
roland
parents: 29697
diff changeset
   365
  static intx _Tier3InvokeNotifyFreqLog;
cfe623bb3f9c 8075663: compiler/rangechecks/TestExplicitRangeChecks.java fails in compiler nightlies
roland
parents: 29697
diff changeset
   366
  static intx _Tier4InvocationThreshold;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // GC ergonomics
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   369
  static void set_conservative_max_heap_alignment();
15957
58302a2ffb9a 8001049: VM crashes when running with large -Xms and not specifying ObjectAlignmentInBytes
brutisso
parents: 15950
diff changeset
   370
  static void set_use_compressed_oops();
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18687
diff changeset
   371
  static void set_use_compressed_klass_ptrs();
47901
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents: 47216
diff changeset
   372
  static jint set_ergonomics_flags();
8681
c691d94813f9 7018056: large pages not always enabled by default
jcoomes
parents: 8476
diff changeset
   373
  static void set_shared_spaces_flags();
16605
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 15957
diff changeset
   374
  // limits the given memory size by the maximum amount of memory this process is
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 15957
diff changeset
   375
  // currently allowed to allocate or reserve.
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 15957
diff changeset
   376
  static julong limit_by_allocatable_memory(julong size);
4434
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 2358
diff changeset
   377
  // Setup heap size
4b41e5b42f81 6887571: Increase default heap config sizes
phh
parents: 2358
diff changeset
   378
  static void set_heap_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // Bytecode rewriting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  static void set_bytecode_flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // Invocation API hooks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  static abort_hook_t     _abort_hook;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  static exit_hook_t      _exit_hook;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  static vfprintf_hook_t  _vfprintf_hook;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // System properties
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   389
  static bool add_property(const char* prop, PropertyWriteable writeable=WriteableProperty,
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   390
                           PropertyInternal internal=ExternalProperty);
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   391
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   392
  static bool create_property(const char* prop_name, const char* prop_value, PropertyInternal internal);
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   393
  static bool create_numbered_property(const char* prop_base_name, const char* prop_value, unsigned int count);
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   394
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   395
  static int process_patch_mod_option(const char* patch_mod_tail, bool* patch_mod_javabase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // Aggressive optimization flags.
32595
8cde9aca5e9f 8132725: Memory leak in Arguments::add_property function
ddmitriev
parents: 32366
diff changeset
   398
  static jint set_aggressive_opts_flags();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
32823
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   400
  static jint set_aggressive_heap_flags();
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   401
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // Argument parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  static void do_pd_flag_adjustments();
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49860
diff changeset
   404
  static bool parse_argument(const char* arg, JVMFlag::Flags origin);
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49860
diff changeset
   405
  static bool process_argument(const char* arg, jboolean ignore_unrecognized, JVMFlag::Flags origin);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  static void process_java_launcher_argument(const char*, void*);
32595
8cde9aca5e9f 8132725: Memory leak in Arguments::add_property function
ddmitriev
parents: 32366
diff changeset
   407
  static void process_java_compiler_argument(const char* arg);
31853
c70929a2573c 8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents: 31620
diff changeset
   408
  static jint parse_options_environment_variable(const char* name, ScopedVMInitArgs* vm_args);
c70929a2573c 8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents: 31620
diff changeset
   409
  static jint parse_java_tool_options_environment_variable(ScopedVMInitArgs* vm_args);
c70929a2573c 8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents: 31620
diff changeset
   410
  static jint parse_java_options_environment_variable(ScopedVMInitArgs* vm_args);
32621
cdab920f3b6c 8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents: 32619
diff changeset
   411
  static jint parse_vm_options_file(const char* file_name, ScopedVMInitArgs* vm_args);
cdab920f3b6c 8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents: 32619
diff changeset
   412
  static jint parse_options_buffer(const char* name, char* buffer, const size_t buf_len, ScopedVMInitArgs* vm_args);
46616
66d452cca30f 8178491: -Xss and -XX:ThreadStackSize argument parsing truncates bits
stefank
parents: 43607
diff changeset
   413
  static jint parse_xss(const JavaVMOption* option, const char* tail, intx* out_ThreadStackSize);
32621
cdab920f3b6c 8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents: 32619
diff changeset
   414
  static jint insert_vm_options_file(const JavaVMInitArgs* args,
35466
4ace9ef0201b 8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents: 35171
diff changeset
   415
                                     const char* vm_options_file,
32621
cdab920f3b6c 8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents: 32619
diff changeset
   416
                                     const int vm_options_file_pos,
cdab920f3b6c 8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents: 32619
diff changeset
   417
                                     ScopedVMInitArgs* vm_options_file_args,
cdab920f3b6c 8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents: 32619
diff changeset
   418
                                     ScopedVMInitArgs* args_out);
35466
4ace9ef0201b 8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents: 35171
diff changeset
   419
  static bool args_contains_vm_options_file_arg(const JavaVMInitArgs* args);
4ace9ef0201b 8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents: 35171
diff changeset
   420
  static jint expand_vm_options_as_needed(const JavaVMInitArgs* args_in,
4ace9ef0201b 8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents: 35171
diff changeset
   421
                                          ScopedVMInitArgs* mod_args,
4ace9ef0201b 8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents: 35171
diff changeset
   422
                                          JavaVMInitArgs** args_out);
32621
cdab920f3b6c 8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents: 32619
diff changeset
   423
  static jint match_special_option_and_act(const JavaVMInitArgs* args,
cdab920f3b6c 8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents: 32619
diff changeset
   424
                                           ScopedVMInitArgs* args_out);
cdab920f3b6c 8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents: 32619
diff changeset
   425
35872
7fb1e4de83ff 8145180: Add back PrintGC, PrintGCDetails and -Xloggc
brutisso
parents: 35489
diff changeset
   426
  static bool handle_deprecated_print_gc_flags();
7fb1e4de83ff 8145180: Add back PrintGC, PrintGCDetails and -Xloggc
brutisso
parents: 35489
diff changeset
   427
41708
82f5dc0dfccf 8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents: 41073
diff changeset
   428
  static void handle_extra_cms_flags(const char* msg);
82f5dc0dfccf 8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents: 41073
diff changeset
   429
31853
c70929a2573c 8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents: 31620
diff changeset
   430
  static jint parse_vm_init_args(const JavaVMInitArgs *java_tool_options_args,
c70929a2573c 8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents: 31620
diff changeset
   431
                                 const JavaVMInitArgs *java_options_args,
c70929a2573c 8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents: 31620
diff changeset
   432
                                 const JavaVMInitArgs *cmd_line_args);
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49860
diff changeset
   433
  static jint parse_each_vm_init_arg(const JavaVMInitArgs* args, bool* patch_mod_javabase, JVMFlag::Flags origin);
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46616
diff changeset
   434
  static jint finalize_vm_init_args(bool patch_mod_javabase);
22555
ea32f6c51d08 8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents: 22551
diff changeset
   435
  static bool is_bad_option(const JavaVMOption* option, jboolean ignore, const char* option_type);
ea32f6c51d08 8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents: 22551
diff changeset
   436
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  static bool is_bad_option(const JavaVMOption* option, jboolean ignore) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    return is_bad_option(option, ignore, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  }
22555
ea32f6c51d08 8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents: 22551
diff changeset
   440
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  static void describe_range_error(ArgsRange errcode);
46616
66d452cca30f 8178491: -Xss and -XX:ThreadStackSize argument parsing truncates bits
stefank
parents: 43607
diff changeset
   442
  static ArgsRange check_memory_size(julong size, julong min_size, julong max_size);
1676
d80e69372634 6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents: 1388
diff changeset
   443
  static ArgsRange parse_memory_size(const char* s, julong* long_arg,
46616
66d452cca30f 8178491: -Xss and -XX:ThreadStackSize argument parsing truncates bits
stefank
parents: 43607
diff changeset
   444
                                     julong min_size, julong max_size = max_uintx);
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4885
diff changeset
   445
  // Parse a string for a unsigned integer.  Returns true if value
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4885
diff changeset
   446
  // is an unsigned integer greater than or equal to the minimum
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4885
diff changeset
   447
  // parameter passed and returns the value in uintx_arg.  Returns
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4885
diff changeset
   448
  // false otherwise, with uintx_arg undefined.
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4885
diff changeset
   449
  static bool parse_uintx(const char* value, uintx* uintx_arg,
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4885
diff changeset
   450
                          uintx min_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  // methods to build strings from individual args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  static void build_jvm_args(const char* arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  static void build_jvm_flags(const char* arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  static void add_string(char*** bldarray, int* count, const char* arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  static const char* build_resource_string(char** args, int count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
32823
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   458
  // Returns true if the flag is obsolete (and not yet expired).
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   459
  // In this case the 'version' buffer is filled in with
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   460
  // the version number when the flag became obsolete.
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   461
  static bool is_obsolete_flag(const char* flag_name, JDK_Version* version);
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   462
37173
d8aea1500483 8146632: Add descriptive error messages for removed non-product logging flags.
mockner
parents: 37094
diff changeset
   463
#ifndef PRODUCT
d8aea1500483 8146632: Add descriptive error messages for removed non-product logging flags.
mockner
parents: 37094
diff changeset
   464
  static const char* removed_develop_logging_flag_name(const char* name);
d8aea1500483 8146632: Add descriptive error messages for removed non-product logging flags.
mockner
parents: 37094
diff changeset
   465
#endif // PRODUCT
d8aea1500483 8146632: Add descriptive error messages for removed non-product logging flags.
mockner
parents: 37094
diff changeset
   466
32823
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   467
  // Returns 1 if the flag is deprecated (and not yet obsolete or expired).
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   468
  //     In this case the 'version' buffer is filled in with the version number when
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   469
  //     the flag became deprecated.
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   470
  // Returns -1 if the flag is expired or obsolete.
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   471
  // Returns 0 otherwise.
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   472
  static int is_deprecated_flag(const char* flag_name, JDK_Version* version);
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   473
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   474
  // Return the real name for the flag passed on the command line (either an alias name or "flag_name").
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   475
  static const char* real_flag_name(const char *flag_name);
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   476
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   477
  // Return the "real" name for option arg if arg is an alias, and print a warning if arg is deprecated.
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   478
  // Return NULL if the arg has expired.
ca8fef4cd57b 8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents: 32621
diff changeset
   479
  static const char* handle_aliases_and_deprecation(const char* arg, bool warn);
35171
cf7d5a1d0662 8145153: Convert TraceMonitorInflation to Unified Logging
rprotacio
parents: 35061
diff changeset
   480
  static bool lookup_logging_aliases(const char* arg, char* buffer);
37216
5555c1f804c4 8145235: Deprecate product flags that have been converted to Unified Logging
rprotacio
parents: 37199
diff changeset
   481
  static AliasedLoggingFlag catch_logging_aliases(const char* name, bool on);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  static char*  SharedArchivePath;
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54678
diff changeset
   484
  static char*  SharedDynamicArchivePath;
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54678
diff changeset
   485
  static int num_archives(const char* archive_path) NOT_CDS_RETURN_(0);
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54678
diff changeset
   486
  static void extract_shared_archive_paths(const char* archive_path,
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54678
diff changeset
   487
                                         char** base_archive_path,
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54678
diff changeset
   488
                                         char** top_archive_path) NOT_CDS_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
 public:
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   491
  // Parses the arguments, first phase
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  static jint parse(const JavaVMInitArgs* args);
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   493
  // Apply ergonomics
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   494
  static jint apply_ergo();
14580
3e2316663327 7198334: UseNUMA modifies system parameters on non-NUMA system
brutisso
parents: 13963
diff changeset
   495
  // Adjusts the arguments after the OS have adjusted the arguments
3e2316663327 7198334: UseNUMA modifies system parameters on non-NUMA system
brutisso
parents: 13963
diff changeset
   496
  static jint adjust_after_os();
22555
ea32f6c51d08 8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents: 22551
diff changeset
   497
183
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   498
  // Check for consistency in the selection of the garbage collector.
29696
01571dfab5be 8073944: Simplify ArgumentsExt and remove unneeded functionallity
sjohanss
parents: 29076
diff changeset
   499
  static bool check_gc_consistency();        // Check user-selected gc
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20288
diff changeset
   500
  // Check consistency or otherwise of VM argument settings
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  static bool check_vm_args_consistency();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  // Used by os_solaris
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  static bool process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   505
  static size_t conservative_max_heap_alignment() { return _conservative_max_heap_alignment; }
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   506
  // Return the maximum size a heap with compressed oops can take
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   507
  static size_t max_heap_for_compressed_oops();
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19732
diff changeset
   508
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  // return a char* array containing all options
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  static char** jvm_flags_array()          { return _jvm_flags_array; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  static char** jvm_args_array()           { return _jvm_args_array; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  static int num_jvm_flags()               { return _num_jvm_flags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  static int num_jvm_args()                { return _num_jvm_args; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  // return the arguments passed to the Java application
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  static const char* java_command()        { return _java_command; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  // print jvm_flags, jvm_args and java_command
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  static void print_on(outputStream* st);
31963
641ed52732ec 8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents: 31853
diff changeset
   519
  static void print_summary_on(outputStream* st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
34125
56c4a2d19ee1 8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents: 32823
diff changeset
   521
  // convenient methods to get and set jvm_flags_file
56c4a2d19ee1 8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents: 32823
diff changeset
   522
  static const char* get_jvm_flags_file()  { return _jvm_flags_file; }
56c4a2d19ee1 8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents: 32823
diff changeset
   523
  static void set_jvm_flags_file(const char *value) {
56c4a2d19ee1 8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents: 32823
diff changeset
   524
    if (_jvm_flags_file != NULL) {
56c4a2d19ee1 8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents: 32823
diff changeset
   525
      os::free(_jvm_flags_file);
56c4a2d19ee1 8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents: 32823
diff changeset
   526
    }
56c4a2d19ee1 8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents: 32823
diff changeset
   527
    _jvm_flags_file = os::strdup_check_oom(value);
56c4a2d19ee1 8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents: 32823
diff changeset
   528
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // convenient methods to obtain / print jvm_flags and jvm_args
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  static const char* jvm_flags()           { return build_resource_string(_jvm_flags_array, _num_jvm_flags); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  static const char* jvm_args()            { return build_resource_string(_jvm_args_array, _num_jvm_args); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  static void print_jvm_flags_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  static void print_jvm_args_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  // -Dkey=value flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  static SystemProperty*  system_properties()   { return _system_properties; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  static const char*    get_property(const char* key);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  // -Djava.vendor.url.bug
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  static const char* java_vendor_url_bug()  { return _java_vendor_url_bug; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  // -Dsun.java.launcher
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  static const char* sun_java_launcher()    { return _sun_java_launcher; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  // Was VM created by a Java launcher?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  static bool created_by_java_launcher();
22734
41757c1f3946 8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents: 20288
diff changeset
   546
  // -Dsun.java.launcher.is_altjvm
41757c1f3946 8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents: 20288
diff changeset
   547
  static bool sun_java_launcher_is_altjvm();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  // -Xrun
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  static AgentLibrary* libraries()          { return _libraryList.first(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  static bool init_libraries_at_startup()   { return !_libraryList.is_empty(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  static void convert_library_to_agent(AgentLibrary* lib)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
                                            { _libraryList.remove(lib);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
                                              _agentList.add(lib); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  // -agentlib -agentpath
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  static AgentLibrary* agents()             { return _agentList.first(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  static bool init_agents_at_startup()      { return !_agentList.is_empty(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  // abort, exit, vfprintf hooks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  static abort_hook_t    abort_hook()       { return _abort_hook; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  static exit_hook_t     exit_hook()        { return _exit_hook; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  static vfprintf_hook_t vfprintf_hook()    { return _vfprintf_hook; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  static const char* GetSharedArchivePath() { return SharedArchivePath; }
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54678
diff changeset
   566
  static const char* GetSharedDynamicArchivePath() { return SharedDynamicArchivePath; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  // Java launcher properties
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  static void process_sun_java_launcher_properties(JavaVMInitArgs* args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  // System properties
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  static void init_system_properties();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
6961
a32b2fc66321 6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents: 6453
diff changeset
   574
  // Update/Initialize System properties after JDK version number is known
a32b2fc66321 6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents: 6453
diff changeset
   575
  static void init_version_specific_system_properties();
a32b2fc66321 6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents: 6453
diff changeset
   576
50557
83e2deb73612 8204668: Cleanup management of the java.vm.info System property
dholmes
parents: 50456
diff changeset
   577
  // Update VM info property - called after argument parsing
83e2deb73612 8204668: Cleanup management of the java.vm.info System property
dholmes
parents: 50456
diff changeset
   578
  static void update_vm_info_property(const char* vm_info) {
83e2deb73612 8204668: Cleanup management of the java.vm.info System property
dholmes
parents: 50456
diff changeset
   579
    _vm_info->set_value(vm_info);
83e2deb73612 8204668: Cleanup management of the java.vm.info System property
dholmes
parents: 50456
diff changeset
   580
  }
83e2deb73612 8204668: Cleanup management of the java.vm.info System property
dholmes
parents: 50456
diff changeset
   581
2358
7c8346929fc6 6819213: revive sun.boot.library.path
phh
parents: 2105
diff changeset
   582
  // Property List manipulation
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 27926
diff changeset
   583
  static void PropertyList_add(SystemProperty *element);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  static void PropertyList_add(SystemProperty** plist, SystemProperty *element);
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   585
  static void PropertyList_add(SystemProperty** plist, const char* k, const char* v, bool writeable, bool internal);
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   586
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   587
  static void PropertyList_unique_add(SystemProperty** plist, const char* k, const char* v,
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   588
                                      PropertyAppendable append, PropertyWriteable writeable,
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   589
                                      PropertyInternal internal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  static const char* PropertyList_get_value(SystemProperty* plist, const char* key);
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   591
  static const char* PropertyList_get_readable_value(SystemProperty* plist, const char* key);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  static int  PropertyList_count(SystemProperty* pl);
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   593
  static int  PropertyList_readable_count(SystemProperty* pl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  static const char* PropertyList_get_key_at(SystemProperty* pl,int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  static char* PropertyList_get_value_at(SystemProperty* pl,int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   597
  static bool is_internal_module_property(const char* option);
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   598
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  // Miscellaneous System property value getter and setters.
32595
8cde9aca5e9f 8132725: Memory leak in Arguments::add_property function
ddmitriev
parents: 32366
diff changeset
   600
  static void set_dll_dir(const char *value) { _sun_boot_library_path->set_value(value); }
8cde9aca5e9f 8132725: Memory leak in Arguments::add_property function
ddmitriev
parents: 32366
diff changeset
   601
  static void set_java_home(const char *value) { _java_home->set_value(value); }
8cde9aca5e9f 8132725: Memory leak in Arguments::add_property function
ddmitriev
parents: 32366
diff changeset
   602
  static void set_library_path(const char *value) { _java_library_path->set_value(value); }
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27148
diff changeset
   603
  static void set_ext_dirs(char *value)     { _ext_dirs = os::strdup_check_oom(value); }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   604
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
   605
  // Set up the underlying pieces of the system boot class path
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   606
  static void add_patch_mod_prefix(const char *module_name, const char *path, bool* patch_mod_javabase);
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 38207
diff changeset
   607
  static void set_sysclasspath(const char *value, bool has_jimage) {
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 38207
diff changeset
   608
    // During start up, set by os::set_boot_path()
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 38207
diff changeset
   609
    assert(get_sysclasspath() == NULL, "System boot class path previously set");
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   610
    _system_boot_class_path->set_value(value);
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 38207
diff changeset
   611
    _has_jimage = has_jimage;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   612
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   613
  static void append_sysclasspath(const char *value) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   614
    _system_boot_class_path->append_value(value);
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 38207
diff changeset
   615
    _jdk_boot_class_path_append->append_value(value);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   616
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   618
  static GrowableArray<ModulePatchPath*>* get_patch_mod_prefix() { return _patch_mod_prefix; }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   619
  static char* get_sysclasspath() { return _system_boot_class_path->value(); }
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
   620
  static char* get_jdk_boot_class_path_append() { return _jdk_boot_class_path_append->value(); }
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 38207
diff changeset
   621
  static bool has_jimage() { return _has_jimage; }
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
   622
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
   623
  static char* get_java_home()    { return _java_home->value(); }
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
   624
  static char* get_dll_dir()      { return _sun_boot_library_path->value(); }
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37491
diff changeset
   625
  static char* get_ext_dirs()     { return _ext_dirs;  }
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25468
diff changeset
   626
  static char* get_appclasspath() { return _java_class_path->value(); }
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25468
diff changeset
   627
  static void  fix_appclasspath();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54678
diff changeset
   629
  static char* get_default_shared_archive_path() NOT_CDS_RETURN_(NULL);
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54678
diff changeset
   630
  static bool  init_shared_archive_paths() NOT_CDS_RETURN_(false);
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27148
diff changeset
   631
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  // Operation modi
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   633
  static Mode mode()                        { return _mode; }
26585
2048b8d90c91 8058092: Test vm/mlvm/meth/stress/compiler/deoptimize. Assert in src/share/vm/classfile/systemDictionary.cpp: MH intrinsic invariant
iveresov
parents: 26135
diff changeset
   634
  static bool is_interpreter_only() { return mode() == _int; }
2048b8d90c91 8058092: Test vm/mlvm/meth/stress/compiler/deoptimize. Assert in src/share/vm/classfile/systemDictionary.cpp: MH intrinsic invariant
iveresov
parents: 26135
diff changeset
   635
49716
450d709262c1 8198908: Add JVM support for preview features
hseigel
parents: 49364
diff changeset
   636
  // preview features
450d709262c1 8198908: Add JVM support for preview features
hseigel
parents: 49364
diff changeset
   637
  static void set_enable_preview() { _enable_preview = true; }
450d709262c1 8198908: Add JVM support for preview features
hseigel
parents: 49364
diff changeset
   638
  static bool enable_preview() { return _enable_preview; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  // Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   642
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36313
diff changeset
   643
  static void check_unsupported_dumping_properties() NOT_CDS_RETURN;
38195
d317aafcc87c 8153073: UL: Set filesize option with k/m/g
ysuenaga
parents: 37491
diff changeset
   644
49746
b17256b5c047 8201427: Fix Minimal VM builds on Linux x64
stefank
parents: 49739
diff changeset
   645
  static bool check_unsupported_cds_runtime_properties() NOT_CDS_RETURN0;
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49716
diff changeset
   646
38195
d317aafcc87c 8153073: UL: Set filesize option with k/m/g
ysuenaga
parents: 37491
diff changeset
   647
  static bool atojulong(const char *s, julong* result);
54573
b73893f7fee3 8222379: JFR TestClassLoadEvent.java failed due to EXCEPTION_ACCESS_VIOLATION
coleenp
parents: 53730
diff changeset
   648
b73893f7fee3 8222379: JFR TestClassLoadEvent.java failed due to EXCEPTION_ACCESS_VIOLATION
coleenp
parents: 53730
diff changeset
   649
  static bool has_jfr_option() NOT_JFR_RETURN_(false);
58447
319173c62caa 8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents: 58280
diff changeset
   650
319173c62caa 8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents: 58280
diff changeset
   651
  static bool is_dumping_archive() { return DumpSharedSpaces || DynamicDumpSharedSpaces; }
319173c62caa 8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents: 58280
diff changeset
   652
319173c62caa 8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents: 58280
diff changeset
   653
  static void assert_is_dumping_archive() {
319173c62caa 8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents: 58280
diff changeset
   654
    assert(Arguments::is_dumping_archive(), "dump time only");
319173c62caa 8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents: 58280
diff changeset
   655
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6988
diff changeset
   657
28838
da47c3cc5c98 8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents: 28650
diff changeset
   658
// Disable options not supported in this release, with a warning if they
da47c3cc5c98 8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents: 28650
diff changeset
   659
// were explicitly requested on the command-line
37253
45e69c7b0bac 8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents: 37216
diff changeset
   660
#define UNSUPPORTED_OPTION(opt)                          \
45e69c7b0bac 8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents: 37216
diff changeset
   661
do {                                                     \
45e69c7b0bac 8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents: 37216
diff changeset
   662
  if (opt) {                                             \
45e69c7b0bac 8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents: 37216
diff changeset
   663
    if (FLAG_IS_CMDLINE(opt)) {                          \
45e69c7b0bac 8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents: 37216
diff changeset
   664
      warning("-XX:+" #opt " not supported in this VM"); \
45e69c7b0bac 8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents: 37216
diff changeset
   665
    }                                                    \
45e69c7b0bac 8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents: 37216
diff changeset
   666
    FLAG_SET_DEFAULT(opt, false);                        \
45e69c7b0bac 8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents: 37216
diff changeset
   667
  }                                                      \
28838
da47c3cc5c98 8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents: 28650
diff changeset
   668
} while(0)
da47c3cc5c98 8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents: 28650
diff changeset
   669
53730
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   670
// similar to UNSUPPORTED_OPTION but sets flag to NULL
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   671
#define UNSUPPORTED_OPTION_NULL(opt)                     \
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   672
do {                                                     \
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   673
  if (opt) {                                             \
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   674
    if (FLAG_IS_CMDLINE(opt)) {                          \
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   675
      warning("-XX flag " #opt " not supported in this VM"); \
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   676
    }                                                    \
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   677
    FLAG_SET_DEFAULT(opt, NULL);                         \
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   678
  }                                                      \
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   679
} while(0)
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   680
1d942423516c 8218136: minor hotspot adjustments for xlclang++ from xlc16 on AIX
mbaesken
parents: 53547
diff changeset
   681
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52185
diff changeset
   682
#endif // SHARE_RUNTIME_ARGUMENTS_HPP