1 /*
   2  * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_ARGUMENTS_HPP
  26 #define SHARE_VM_RUNTIME_ARGUMENTS_HPP
  27 
  28 #include "logging/logLevel.hpp"
  29 #include "logging/logTag.hpp"
  30 #include "memory/allocation.hpp"
  31 #include "runtime/java.hpp"
  32 #include "runtime/os.hpp"
  33 #include "runtime/perfData.hpp"
  34 #include "utilities/debug.hpp"
  35 
  36 // Arguments parses the command line and recognizes options
  37 
  38 // Invocation API hook typedefs (these should really be defined in jni.hpp)
  39 extern "C" {
  40   typedef void (JNICALL *abort_hook_t)(void);
  41   typedef void (JNICALL *exit_hook_t)(jint code);
  42   typedef jint (JNICALL *vfprintf_hook_t)(FILE *fp, const char *format, va_list args)  ATTRIBUTE_PRINTF(2, 0);
  43 }
  44 
  45 // Obsolete or deprecated -XX flag.
  46 struct SpecialFlag {
  47   const char* name;
  48   JDK_Version deprecated_in; // When the deprecation warning started (or "undefined").
  49   JDK_Version obsolete_in;   // When the obsolete warning started (or "undefined").
  50   JDK_Version expired_in;    // When the option expires (or "undefined").
  51 };
  52 
  53 // PathString is used as:
  54 //  - the underlying value for a SystemProperty
  55 //  - the path portion of an --patch-module module/path pair
  56 //  - the string that represents the system boot class path, Arguments::_system_boot_class_path.
  57 class PathString : public CHeapObj<mtArguments> {
  58  protected:
  59   char* _value;
  60  public:
  61   char* value() const { return _value; }
  62 
  63   bool set_value(const char *value);
  64   void append_value(const char *value);
  65 
  66   PathString(const char* value);
  67   ~PathString();
  68 };
  69 
  70 // ModulePatchPath records the module/path pair as specified to --patch-module.
  71 class ModulePatchPath : public CHeapObj<mtInternal> {
  72 private:
  73   char* _module_name;
  74   PathString* _path;
  75 public:
  76   ModulePatchPath(const char* module_name, const char* path);
  77   ~ModulePatchPath();
  78 
  79   inline void set_path(const char* path) { _path->set_value(path); }
  80   inline const char* module_name() const { return _module_name; }
  81   inline char* path_string() const { return _path->value(); }
  82 };
  83 
  84 // Element describing System and User (-Dkey=value flags) defined property.
  85 //
  86 // An internal SystemProperty is one that has been removed in
  87 // jdk.internal.VM.saveAndRemoveProperties, like jdk.boot.class.path.append.
  88 //
  89 class SystemProperty : public PathString {
  90  private:
  91   char*           _key;
  92   SystemProperty* _next;
  93   bool            _internal;
  94   bool            _writeable;
  95   bool writeable() { return _writeable; }
  96 
  97  public:
  98   // Accessors
  99   char* value() const                 { return PathString::value(); }
 100   const char* key() const             { return _key; }
 101   bool internal() const               { return _internal; }
 102   SystemProperty* next() const        { return _next; }
 103   void set_next(SystemProperty* next) { _next = next; }
 104 
 105   bool is_readable() const {
 106     return !_internal || strcmp(_key, "jdk.boot.class.path.append") == 0;
 107   }
 108 
 109   // A system property should only have its value set
 110   // via an external interface if it is a writeable property.
 111   // The internal, non-writeable property jdk.boot.class.path.append
 112   // is the only exception to this rule.  It can be set externally
 113   // via -Xbootclasspath/a or JVMTI OnLoad phase call to AddToBootstrapClassLoaderSearch.
 114   // In those cases for jdk.boot.class.path.append, the base class
 115   // set_value and append_value methods are called directly.
 116   bool set_writeable_value(const char *value) {
 117     if (writeable()) {
 118       return set_value(value);
 119     }
 120     return false;
 121   }
 122 
 123   // Constructor
 124   SystemProperty(const char* key, const char* value, bool writeable, bool internal = false);
 125 };
 126 
 127 
 128 // For use by -agentlib, -agentpath and -Xrun
 129 class AgentLibrary : public CHeapObj<mtArguments> {
 130   friend class AgentLibraryList;
 131 public:
 132   // Is this library valid or not. Don't rely on os_lib == NULL as statically
 133   // linked lib could have handle of RTLD_DEFAULT which == 0 on some platforms
 134   enum AgentState {
 135     agent_invalid = 0,
 136     agent_valid   = 1
 137   };
 138 
 139  private:
 140   char*           _name;
 141   char*           _options;
 142   void*           _os_lib;
 143   bool            _is_absolute_path;
 144   bool            _is_static_lib;
 145   bool            _is_instrument_lib;
 146   AgentState      _state;
 147   AgentLibrary*   _next;
 148 
 149  public:
 150   // Accessors
 151   const char* name() const                  { return _name; }
 152   char* options() const                     { return _options; }
 153   bool is_absolute_path() const             { return _is_absolute_path; }
 154   void* os_lib() const                      { return _os_lib; }
 155   void set_os_lib(void* os_lib)             { _os_lib = os_lib; }
 156   AgentLibrary* next() const                { return _next; }
 157   bool is_static_lib() const                { return _is_static_lib; }
 158   bool is_instrument_lib() const            { return _is_instrument_lib; }
 159   void set_static_lib(bool is_static_lib)   { _is_static_lib = is_static_lib; }
 160   bool valid()                              { return (_state == agent_valid); }
 161   void set_valid()                          { _state = agent_valid; }
 162   void set_invalid()                        { _state = agent_invalid; }
 163 
 164   // Constructor
 165   AgentLibrary(const char* name, const char* options, bool is_absolute_path,
 166                void* os_lib, bool instrument_lib=false);
 167 };
 168 
 169 // maintain an order of entry list of AgentLibrary
 170 class AgentLibraryList {
 171  private:
 172   AgentLibrary*   _first;
 173   AgentLibrary*   _last;
 174  public:
 175   bool is_empty() const                     { return _first == NULL; }
 176   AgentLibrary* first() const               { return _first; }
 177 
 178   // add to the end of the list
 179   void add(AgentLibrary* lib) {
 180     if (is_empty()) {
 181       _first = _last = lib;
 182     } else {
 183       _last->_next = lib;
 184       _last = lib;
 185     }
 186     lib->_next = NULL;
 187   }
 188 
 189   // search for and remove a library known to be in the list
 190   void remove(AgentLibrary* lib) {
 191     AgentLibrary* curr;
 192     AgentLibrary* prev = NULL;
 193     for (curr = first(); curr != NULL; prev = curr, curr = curr->next()) {
 194       if (curr == lib) {
 195         break;
 196       }
 197     }
 198     assert(curr != NULL, "always should be found");
 199 
 200     if (curr != NULL) {
 201       // it was found, by-pass this library
 202       if (prev == NULL) {
 203         _first = curr->_next;
 204       } else {
 205         prev->_next = curr->_next;
 206       }
 207       if (curr == _last) {
 208         _last = prev;
 209       }
 210       curr->_next = NULL;
 211     }
 212   }
 213 
 214   AgentLibraryList() {
 215     _first = NULL;
 216     _last = NULL;
 217   }
 218 };
 219 
 220 // Helper class for controlling the lifetime of JavaVMInitArgs objects.
 221 class ScopedVMInitArgs;
 222 
 223 // Most logging functions require 5 tags. Some of them may be _NO_TAG.
 224 typedef struct {
 225   const char* alias_name;
 226   LogLevelType level;
 227   bool exactMatch;
 228   LogTagType tag0;
 229   LogTagType tag1;
 230   LogTagType tag2;
 231   LogTagType tag3;
 232   LogTagType tag4;
 233   LogTagType tag5;
 234 } AliasedLoggingFlag;
 235 
 236 class Arguments : AllStatic {
 237   friend class VMStructs;
 238   friend class JvmtiExport;
 239   friend class CodeCacheExtensions;
 240   friend class ArgumentsTest;
 241  public:
 242   // Operation modi
 243   enum Mode {
 244     _int,       // corresponds to -Xint
 245     _mixed,     // corresponds to -Xmixed
 246     _comp       // corresponds to -Xcomp
 247   };
 248 
 249   enum ArgsRange {
 250     arg_unreadable = -3,
 251     arg_too_small  = -2,
 252     arg_too_big    = -1,
 253     arg_in_range   = 0
 254   };
 255 
 256   enum PropertyAppendable {
 257     AppendProperty,
 258     AddProperty
 259   };
 260 
 261   enum PropertyWriteable {
 262     WriteableProperty,
 263     UnwriteableProperty
 264   };
 265 
 266   enum PropertyInternal {
 267     InternalProperty,
 268     ExternalProperty
 269   };
 270 
 271  private:
 272 
 273   // a pointer to the flags file name if it is specified
 274   static char*  _jvm_flags_file;
 275   // an array containing all flags specified in the .hotspotrc file
 276   static char** _jvm_flags_array;
 277   static int    _num_jvm_flags;
 278   // an array containing all jvm arguments specified in the command line
 279   static char** _jvm_args_array;
 280   static int    _num_jvm_args;
 281   // string containing all java command (class/jarfile name and app args)
 282   static char* _java_command;
 283 
 284   // Property list
 285   static SystemProperty* _system_properties;
 286 
 287   // Quick accessor to System properties in the list:
 288   static SystemProperty *_sun_boot_library_path;
 289   static SystemProperty *_java_library_path;
 290   static SystemProperty *_java_home;
 291   static SystemProperty *_java_class_path;
 292   static SystemProperty *_jdk_boot_class_path_append;
 293 
 294   // --patch-module=module=<file>(<pathsep><file>)*
 295   // Each element contains the associated module name, path
 296   // string pair as specified to --patch-module.
 297   static GrowableArray<ModulePatchPath*>* _patch_mod_prefix;
 298 
 299   // The constructed value of the system class path after
 300   // argument processing and JVMTI OnLoad additions via
 301   // calls to AddToBootstrapClassLoaderSearch.  This is the
 302   // final form before ClassLoader::setup_bootstrap_search().
 303   // Note: since --patch-module is a module name/path pair, the
 304   // system boot class path string no longer contains the "prefix"
 305   // to the boot class path base piece as it did when
 306   // -Xbootclasspath/p was supported.
 307   static PathString *_system_boot_class_path;
 308 
 309   // Set if a modular java runtime image is present vs. a build with exploded modules
 310   static bool _has_jimage;
 311 
 312   // temporary: to emit warning if the default ext dirs are not empty.
 313   // remove this variable when the warning is no longer needed.
 314   static char* _ext_dirs;
 315 
 316   // java.vendor.url.bug, bug reporting URL for fatal errors.
 317   static const char* _java_vendor_url_bug;
 318 
 319   // sun.java.launcher, private property to provide information about
 320   // java launcher
 321   static const char* _sun_java_launcher;
 322 
 323   // sun.java.launcher.pid, private property
 324   static int    _sun_java_launcher_pid;
 325 
 326   // was this VM created via the -XXaltjvm=<path> option
 327   static bool   _sun_java_launcher_is_altjvm;
 328 
 329   // Option flags
 330   static const char*  _gc_log_filename;
 331   // Value of the conservative maximum heap alignment needed
 332   static size_t  _conservative_max_heap_alignment;
 333 
 334   static uintx  _min_heap_size;
 335 
 336   // -Xrun arguments
 337   static AgentLibraryList _libraryList;
 338   static void add_init_library(const char* name, char* options);
 339 
 340   // -agentlib and -agentpath arguments
 341   static AgentLibraryList _agentList;
 342   static void add_init_agent(const char* name, char* options, bool absolute_path);
 343   static void add_instrument_agent(const char* name, char* options, bool absolute_path);
 344 
 345   // Late-binding agents not started via arguments
 346   static void add_loaded_agent(AgentLibrary *agentLib);
 347   static void add_loaded_agent(const char* name, char* options, bool absolute_path, void* os_lib);
 348 
 349   // Operation modi
 350   static Mode _mode;
 351   static void set_mode_flags(Mode mode);
 352   static bool _java_compiler;
 353   static void set_java_compiler(bool arg) { _java_compiler = arg; }
 354   static bool java_compiler()   { return _java_compiler; }
 355 
 356   // -Xdebug flag
 357   static bool _xdebug_mode;
 358   static void set_xdebug_mode(bool arg) { _xdebug_mode = arg; }
 359   static bool xdebug_mode()             { return _xdebug_mode; }
 360 
 361   // preview features
 362   static bool _enable_preview;
 363 
 364   // Used to save default settings
 365   static bool _AlwaysCompileLoopMethods;
 366   static bool _UseOnStackReplacement;
 367   static bool _BackgroundCompilation;
 368   static bool _ClipInlining;
 369   static bool _CIDynamicCompilePriority;
 370   static intx _Tier3InvokeNotifyFreqLog;
 371   static intx _Tier4InvocationThreshold;
 372 
 373   // Compilation mode.
 374   static bool compilation_mode_selected();
 375   static void select_compilation_mode_ergonomically();
 376 
 377   // Tiered
 378   static void set_tiered_flags();
 379 
 380   // GC ergonomics
 381   static void set_conservative_max_heap_alignment();
 382   static void set_use_compressed_oops();
 383   static void set_use_compressed_klass_ptrs();
 384   static jint set_ergonomics_flags();
 385   static void set_shared_spaces_flags();
 386   // limits the given memory size by the maximum amount of memory this process is
 387   // currently allowed to allocate or reserve.
 388   static julong limit_by_allocatable_memory(julong size);
 389   // Setup heap size
 390   static void set_heap_size();
 391 
 392   // Bytecode rewriting
 393   static void set_bytecode_flags();
 394 
 395   // Invocation API hooks
 396   static abort_hook_t     _abort_hook;
 397   static exit_hook_t      _exit_hook;
 398   static vfprintf_hook_t  _vfprintf_hook;
 399 
 400   // System properties
 401   static bool add_property(const char* prop, PropertyWriteable writeable=WriteableProperty,
 402                            PropertyInternal internal=ExternalProperty);
 403 
 404   static bool create_property(const char* prop_name, const char* prop_value, PropertyInternal internal);
 405   static bool create_numbered_property(const char* prop_base_name, const char* prop_value, unsigned int count);
 406 
 407   static int process_patch_mod_option(const char* patch_mod_tail, bool* patch_mod_javabase);
 408 
 409   // Aggressive optimization flags.
 410   static jint set_aggressive_opts_flags();
 411 
 412   static jint set_aggressive_heap_flags();
 413 
 414   // Argument parsing
 415   static void do_pd_flag_adjustments();
 416   static bool parse_argument(const char* arg, Flag::Flags origin);
 417   static bool process_argument(const char* arg, jboolean ignore_unrecognized, Flag::Flags origin);
 418   static void process_java_launcher_argument(const char*, void*);
 419   static void process_java_compiler_argument(const char* arg);
 420   static jint parse_options_environment_variable(const char* name, ScopedVMInitArgs* vm_args);
 421   static jint parse_java_tool_options_environment_variable(ScopedVMInitArgs* vm_args);
 422   static jint parse_java_options_environment_variable(ScopedVMInitArgs* vm_args);
 423   static jint parse_vm_options_file(const char* file_name, ScopedVMInitArgs* vm_args);
 424   static jint parse_options_buffer(const char* name, char* buffer, const size_t buf_len, ScopedVMInitArgs* vm_args);
 425   static jint parse_xss(const JavaVMOption* option, const char* tail, intx* out_ThreadStackSize);
 426   static jint insert_vm_options_file(const JavaVMInitArgs* args,
 427                                      const char* vm_options_file,
 428                                      const int vm_options_file_pos,
 429                                      ScopedVMInitArgs* vm_options_file_args,
 430                                      ScopedVMInitArgs* args_out);
 431   static bool args_contains_vm_options_file_arg(const JavaVMInitArgs* args);
 432   static jint expand_vm_options_as_needed(const JavaVMInitArgs* args_in,
 433                                           ScopedVMInitArgs* mod_args,
 434                                           JavaVMInitArgs** args_out);
 435   static jint match_special_option_and_act(const JavaVMInitArgs* args,
 436                                            ScopedVMInitArgs* args_out);
 437 
 438   static bool handle_deprecated_print_gc_flags();
 439 
 440   static void handle_extra_cms_flags(const char* msg);
 441 
 442   static jint parse_vm_init_args(const JavaVMInitArgs *java_tool_options_args,
 443                                  const JavaVMInitArgs *java_options_args,
 444                                  const JavaVMInitArgs *cmd_line_args);
 445   static jint parse_each_vm_init_arg(const JavaVMInitArgs* args, bool* patch_mod_javabase, Flag::Flags origin);
 446   static jint finalize_vm_init_args(bool patch_mod_javabase);
 447   static bool is_bad_option(const JavaVMOption* option, jboolean ignore, const char* option_type);
 448 
 449   static bool is_bad_option(const JavaVMOption* option, jboolean ignore) {
 450     return is_bad_option(option, ignore, NULL);
 451   }
 452 
 453   static void describe_range_error(ArgsRange errcode);
 454   static ArgsRange check_memory_size(julong size, julong min_size, julong max_size);
 455   static ArgsRange parse_memory_size(const char* s, julong* long_arg,
 456                                      julong min_size, julong max_size = max_uintx);
 457   // Parse a string for a unsigned integer.  Returns true if value
 458   // is an unsigned integer greater than or equal to the minimum
 459   // parameter passed and returns the value in uintx_arg.  Returns
 460   // false otherwise, with uintx_arg undefined.
 461   static bool parse_uintx(const char* value, uintx* uintx_arg,
 462                           uintx min_size);
 463 
 464   // methods to build strings from individual args
 465   static void build_jvm_args(const char* arg);
 466   static void build_jvm_flags(const char* arg);
 467   static void add_string(char*** bldarray, int* count, const char* arg);
 468   static const char* build_resource_string(char** args, int count);
 469 
 470   static bool methodExists(
 471     char* className, char* methodName,
 472     int classesNum, char** classes, bool* allMethods,
 473     int methodsNum, char** methods, bool* allClasses
 474   );
 475 
 476   static void parseOnlyLine(
 477     const char* line,
 478     short* classesNum, short* classesMax, char*** classes, bool** allMethods,
 479     short* methodsNum, short* methodsMax, char*** methods, bool** allClasses
 480   );
 481 
 482   // Returns true if the flag is obsolete (and not yet expired).
 483   // In this case the 'version' buffer is filled in with
 484   // the version number when the flag became obsolete.
 485   static bool is_obsolete_flag(const char* flag_name, JDK_Version* version);
 486 
 487 #ifndef PRODUCT
 488   static const char* removed_develop_logging_flag_name(const char* name);
 489 #endif // PRODUCT
 490 
 491   // Returns 1 if the flag is deprecated (and not yet obsolete or expired).
 492   //     In this case the 'version' buffer is filled in with the version number when
 493   //     the flag became deprecated.
 494   // Returns -1 if the flag is expired or obsolete.
 495   // Returns 0 otherwise.
 496   static int is_deprecated_flag(const char* flag_name, JDK_Version* version);
 497 
 498   // Return the real name for the flag passed on the command line (either an alias name or "flag_name").
 499   static const char* real_flag_name(const char *flag_name);
 500 
 501   // Return the "real" name for option arg if arg is an alias, and print a warning if arg is deprecated.
 502   // Return NULL if the arg has expired.
 503   static const char* handle_aliases_and_deprecation(const char* arg, bool warn);
 504   static bool lookup_logging_aliases(const char* arg, char* buffer);
 505   static AliasedLoggingFlag catch_logging_aliases(const char* name, bool on);
 506   static short  CompileOnlyClassesNum;
 507   static short  CompileOnlyClassesMax;
 508   static char** CompileOnlyClasses;
 509   static bool*  CompileOnlyAllMethods;
 510 
 511   static short  CompileOnlyMethodsNum;
 512   static short  CompileOnlyMethodsMax;
 513   static char** CompileOnlyMethods;
 514   static bool*  CompileOnlyAllClasses;
 515 
 516   static short  InterpretOnlyClassesNum;
 517   static short  InterpretOnlyClassesMax;
 518   static char** InterpretOnlyClasses;
 519   static bool*  InterpretOnlyAllMethods;
 520 
 521   static bool   CheckCompileOnly;
 522 
 523   static char*  SharedArchivePath;
 524 
 525  public:
 526   // Scale compile thresholds
 527   // Returns threshold scaled with CompileThresholdScaling
 528   static intx scaled_compile_threshold(intx threshold, double scale);
 529   static intx scaled_compile_threshold(intx threshold) {
 530     return scaled_compile_threshold(threshold, CompileThresholdScaling);
 531   }
 532   // Returns freq_log scaled with CompileThresholdScaling
 533   static intx scaled_freq_log(intx freq_log, double scale);
 534   static intx scaled_freq_log(intx freq_log) {
 535     return scaled_freq_log(freq_log, CompileThresholdScaling);
 536   }
 537 
 538   // Parses the arguments, first phase
 539   static jint parse(const JavaVMInitArgs* args);
 540   // Apply ergonomics
 541   static jint apply_ergo();
 542   // Adjusts the arguments after the OS have adjusted the arguments
 543   static jint adjust_after_os();
 544 
 545 #if INCLUDE_JVMCI
 546   // Check consistency of jvmci vm argument settings.
 547   static bool check_jvmci_args_consistency();
 548   static void set_jvmci_specific_flags();
 549 #endif
 550   // Check for consistency in the selection of the garbage collector.
 551   static bool check_gc_consistency();        // Check user-selected gc
 552   // Check consistency or otherwise of VM argument settings
 553   static bool check_vm_args_consistency();
 554   // Used by os_solaris
 555   static bool process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized);
 556 
 557   static size_t conservative_max_heap_alignment() { return _conservative_max_heap_alignment; }
 558   // Return the maximum size a heap with compressed oops can take
 559   static size_t max_heap_for_compressed_oops();
 560 
 561   // return a char* array containing all options
 562   static char** jvm_flags_array()          { return _jvm_flags_array; }
 563   static char** jvm_args_array()           { return _jvm_args_array; }
 564   static int num_jvm_flags()               { return _num_jvm_flags; }
 565   static int num_jvm_args()                { return _num_jvm_args; }
 566   // return the arguments passed to the Java application
 567   static const char* java_command()        { return _java_command; }
 568 
 569   // print jvm_flags, jvm_args and java_command
 570   static void print_on(outputStream* st);
 571   static void print_summary_on(outputStream* st);
 572 
 573   // convenient methods to get and set jvm_flags_file
 574   static const char* get_jvm_flags_file()  { return _jvm_flags_file; }
 575   static void set_jvm_flags_file(const char *value) {
 576     if (_jvm_flags_file != NULL) {
 577       os::free(_jvm_flags_file);
 578     }
 579     _jvm_flags_file = os::strdup_check_oom(value);
 580   }
 581   // convenient methods to obtain / print jvm_flags and jvm_args
 582   static const char* jvm_flags()           { return build_resource_string(_jvm_flags_array, _num_jvm_flags); }
 583   static const char* jvm_args()            { return build_resource_string(_jvm_args_array, _num_jvm_args); }
 584   static void print_jvm_flags_on(outputStream* st);
 585   static void print_jvm_args_on(outputStream* st);
 586 
 587   // -Dkey=value flags
 588   static SystemProperty*  system_properties()   { return _system_properties; }
 589   static const char*    get_property(const char* key);
 590 
 591   // -Djava.vendor.url.bug
 592   static const char* java_vendor_url_bug()  { return _java_vendor_url_bug; }
 593 
 594   // -Dsun.java.launcher
 595   static const char* sun_java_launcher()    { return _sun_java_launcher; }
 596   // Was VM created by a Java launcher?
 597   static bool created_by_java_launcher();
 598   // -Dsun.java.launcher.is_altjvm
 599   static bool sun_java_launcher_is_altjvm();
 600   // -Dsun.java.launcher.pid
 601   static int sun_java_launcher_pid()        { return _sun_java_launcher_pid; }
 602 
 603   // -Xms
 604   static size_t min_heap_size()             { return _min_heap_size; }
 605   static void  set_min_heap_size(size_t v)  { _min_heap_size = v;  }
 606 
 607   // -Xrun
 608   static AgentLibrary* libraries()          { return _libraryList.first(); }
 609   static bool init_libraries_at_startup()   { return !_libraryList.is_empty(); }
 610   static void convert_library_to_agent(AgentLibrary* lib)
 611                                             { _libraryList.remove(lib);
 612                                               _agentList.add(lib); }
 613 
 614   // -agentlib -agentpath
 615   static AgentLibrary* agents()             { return _agentList.first(); }
 616   static bool init_agents_at_startup()      { return !_agentList.is_empty(); }
 617 
 618   // abort, exit, vfprintf hooks
 619   static abort_hook_t    abort_hook()       { return _abort_hook; }
 620   static exit_hook_t     exit_hook()        { return _exit_hook; }
 621   static vfprintf_hook_t vfprintf_hook()    { return _vfprintf_hook; }
 622 
 623   static bool GetCheckCompileOnly ()        { return CheckCompileOnly; }
 624 
 625   static const char* GetSharedArchivePath() { return SharedArchivePath; }
 626 
 627   static bool CompileMethod(char* className, char* methodName) {
 628     return
 629       methodExists(
 630         className, methodName,
 631         CompileOnlyClassesNum, CompileOnlyClasses, CompileOnlyAllMethods,
 632         CompileOnlyMethodsNum, CompileOnlyMethods, CompileOnlyAllClasses
 633       );
 634   }
 635 
 636   // Java launcher properties
 637   static void process_sun_java_launcher_properties(JavaVMInitArgs* args);
 638 
 639   // System properties
 640   static void init_system_properties();
 641 
 642   // Update/Initialize System properties after JDK version number is known
 643   static void init_version_specific_system_properties();
 644 
 645   // Property List manipulation
 646   static void PropertyList_add(SystemProperty *element);
 647   static void PropertyList_add(SystemProperty** plist, SystemProperty *element);
 648   static void PropertyList_add(SystemProperty** plist, const char* k, const char* v, bool writeable, bool internal);
 649 
 650   static void PropertyList_unique_add(SystemProperty** plist, const char* k, const char* v,
 651                                       PropertyAppendable append, PropertyWriteable writeable,
 652                                       PropertyInternal internal);
 653   static const char* PropertyList_get_value(SystemProperty* plist, const char* key);
 654   static const char* PropertyList_get_readable_value(SystemProperty* plist, const char* key);
 655   static int  PropertyList_count(SystemProperty* pl);
 656   static int  PropertyList_readable_count(SystemProperty* pl);
 657   static const char* PropertyList_get_key_at(SystemProperty* pl,int index);
 658   static char* PropertyList_get_value_at(SystemProperty* pl,int index);
 659 
 660   static bool is_internal_module_property(const char* option);
 661 
 662   // Miscellaneous System property value getter and setters.
 663   static void set_dll_dir(const char *value) { _sun_boot_library_path->set_value(value); }
 664   static void set_java_home(const char *value) { _java_home->set_value(value); }
 665   static void set_library_path(const char *value) { _java_library_path->set_value(value); }
 666   static void set_ext_dirs(char *value)     { _ext_dirs = os::strdup_check_oom(value); }
 667 
 668   // Set up the underlying pieces of the system boot class path
 669   static void add_patch_mod_prefix(const char *module_name, const char *path, bool* patch_mod_javabase);
 670   static void set_sysclasspath(const char *value, bool has_jimage) {
 671     // During start up, set by os::set_boot_path()
 672     assert(get_sysclasspath() == NULL, "System boot class path previously set");
 673     _system_boot_class_path->set_value(value);
 674     _has_jimage = has_jimage;
 675   }
 676   static void append_sysclasspath(const char *value) {
 677     _system_boot_class_path->append_value(value);
 678     _jdk_boot_class_path_append->append_value(value);
 679   }
 680 
 681   static GrowableArray<ModulePatchPath*>* get_patch_mod_prefix() { return _patch_mod_prefix; }
 682   static char* get_sysclasspath() { return _system_boot_class_path->value(); }
 683   static char* get_jdk_boot_class_path_append() { return _jdk_boot_class_path_append->value(); }
 684   static bool has_jimage() { return _has_jimage; }
 685 
 686   static char* get_java_home()    { return _java_home->value(); }
 687   static char* get_dll_dir()      { return _sun_boot_library_path->value(); }
 688   static char* get_ext_dirs()     { return _ext_dirs;  }
 689   static char* get_appclasspath() { return _java_class_path->value(); }
 690   static void  fix_appclasspath();
 691 
 692 
 693   // Operation modi
 694   static Mode mode()                        { return _mode; }
 695   static bool is_interpreter_only() { return mode() == _int; }
 696 
 697   // preview features
 698   static void set_enable_preview() { _enable_preview = true; }
 699   static bool enable_preview() { return _enable_preview; }
 700 
 701   // Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid.
 702   static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen);
 703 
 704   static void check_unsupported_dumping_properties() NOT_CDS_RETURN;
 705 
 706   static bool check_unsupported_cds_runtime_properties() NOT_CDS_RETURN;
 707 
 708   static bool atojulong(const char *s, julong* result);
 709 };
 710 
 711 // Disable options not supported in this release, with a warning if they
 712 // were explicitly requested on the command-line
 713 #define UNSUPPORTED_OPTION(opt)                          \
 714 do {                                                     \
 715   if (opt) {                                             \
 716     if (FLAG_IS_CMDLINE(opt)) {                          \
 717       warning("-XX:+" #opt " not supported in this VM"); \
 718     }                                                    \
 719     FLAG_SET_DEFAULT(opt, false);                        \
 720   }                                                      \
 721 } while(0)
 722 
 723 #endif // SHARE_VM_RUNTIME_ARGUMENTS_HPP