src/share/vm/runtime/arguments.hpp

Thu, 22 May 2014 15:52:41 -0400

author
drchase
date
Thu, 22 May 2014 15:52:41 -0400
changeset 6680
78bbf4d43a14
parent 6267
a034dc5e910b
child 6876
710a3c8b516e
child 6951
99dbb9cd9521
permissions
-rw-r--r--

8037816: Fix for 8036122 breaks build with Xcode5/clang
8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas
8043164: Format warning in traceStream.hpp
Summary: Backport of main fix + two corrections, enables clang compilation, turns on format attributes, corrects/mutes warnings
Reviewed-by: kvn, coleenp, iveresov, twisti

duke@435 1 /*
drchase@6680 2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_RUNTIME_ARGUMENTS_HPP
stefank@2314 26 #define SHARE_VM_RUNTIME_ARGUMENTS_HPP
stefank@2314 27
stefank@2314 28 #include "runtime/java.hpp"
stefank@2314 29 #include "runtime/perfData.hpp"
jwilhelm@6267 30 #include "utilities/debug.hpp"
stefank@2314 31 #include "utilities/top.hpp"
stefank@2314 32
duke@435 33 // Arguments parses the command line and recognizes options
duke@435 34
duke@435 35 // Invocation API hook typedefs (these should really be defined in jni.hpp)
duke@435 36 extern "C" {
duke@435 37 typedef void (JNICALL *abort_hook_t)(void);
duke@435 38 typedef void (JNICALL *exit_hook_t)(jint code);
drchase@6680 39 typedef jint (JNICALL *vfprintf_hook_t)(FILE *fp, const char *format, va_list args) ATTRIBUTE_PRINTF(2, 0);
duke@435 40 }
duke@435 41
duke@435 42 // Forward declarations
duke@435 43
duke@435 44 class SysClassPath;
duke@435 45
duke@435 46 // Element describing System and User (-Dkey=value flags) defined property.
duke@435 47
zgu@3900 48 class SystemProperty: public CHeapObj<mtInternal> {
duke@435 49 private:
duke@435 50 char* _key;
duke@435 51 char* _value;
duke@435 52 SystemProperty* _next;
duke@435 53 bool _writeable;
duke@435 54 bool writeable() { return _writeable; }
duke@435 55
duke@435 56 public:
duke@435 57 // Accessors
duke@435 58 const char* key() const { return _key; }
duke@435 59 char* value() const { return _value; }
duke@435 60 SystemProperty* next() const { return _next; }
duke@435 61 void set_next(SystemProperty* next) { _next = next; }
duke@435 62 bool set_value(char *value) {
duke@435 63 if (writeable()) {
duke@435 64 if (_value != NULL) {
duke@435 65 FreeHeap(_value);
duke@435 66 }
zgu@3900 67 _value = AllocateHeap(strlen(value)+1, mtInternal);
duke@435 68 if (_value != NULL) {
duke@435 69 strcpy(_value, value);
duke@435 70 }
duke@435 71 return true;
duke@435 72 }
duke@435 73 return false;
duke@435 74 }
duke@435 75
duke@435 76 void append_value(const char *value) {
duke@435 77 char *sp;
duke@435 78 size_t len = 0;
duke@435 79 if (value != NULL) {
duke@435 80 len = strlen(value);
duke@435 81 if (_value != NULL) {
duke@435 82 len += strlen(_value);
duke@435 83 }
zgu@3900 84 sp = AllocateHeap(len+2, mtInternal);
duke@435 85 if (sp != NULL) {
duke@435 86 if (_value != NULL) {
duke@435 87 strcpy(sp, _value);
duke@435 88 strcat(sp, os::path_separator());
duke@435 89 strcat(sp, value);
duke@435 90 FreeHeap(_value);
duke@435 91 } else {
duke@435 92 strcpy(sp, value);
duke@435 93 }
duke@435 94 _value = sp;
duke@435 95 }
duke@435 96 }
duke@435 97 }
duke@435 98
duke@435 99 // Constructor
duke@435 100 SystemProperty(const char* key, const char* value, bool writeable) {
duke@435 101 if (key == NULL) {
duke@435 102 _key = NULL;
duke@435 103 } else {
zgu@3900 104 _key = AllocateHeap(strlen(key)+1, mtInternal);
duke@435 105 strcpy(_key, key);
duke@435 106 }
duke@435 107 if (value == NULL) {
duke@435 108 _value = NULL;
duke@435 109 } else {
zgu@3900 110 _value = AllocateHeap(strlen(value)+1, mtInternal);
duke@435 111 strcpy(_value, value);
duke@435 112 }
duke@435 113 _next = NULL;
duke@435 114 _writeable = writeable;
duke@435 115 }
duke@435 116 };
duke@435 117
duke@435 118
duke@435 119 // For use by -agentlib, -agentpath and -Xrun
zgu@3900 120 class AgentLibrary : public CHeapObj<mtInternal> {
duke@435 121 friend class AgentLibraryList;
bpittore@5585 122 public:
bpittore@5585 123 // Is this library valid or not. Don't rely on os_lib == NULL as statically
bpittore@5585 124 // linked lib could have handle of RTLD_DEFAULT which == 0 on some platforms
bpittore@5585 125 enum AgentState {
bpittore@5585 126 agent_invalid = 0,
bpittore@5585 127 agent_valid = 1
bpittore@5585 128 };
bpittore@5585 129
duke@435 130 private:
duke@435 131 char* _name;
duke@435 132 char* _options;
duke@435 133 void* _os_lib;
duke@435 134 bool _is_absolute_path;
bpittore@5585 135 bool _is_static_lib;
bpittore@5585 136 AgentState _state;
duke@435 137 AgentLibrary* _next;
duke@435 138
duke@435 139 public:
duke@435 140 // Accessors
duke@435 141 const char* name() const { return _name; }
duke@435 142 char* options() const { return _options; }
duke@435 143 bool is_absolute_path() const { return _is_absolute_path; }
duke@435 144 void* os_lib() const { return _os_lib; }
duke@435 145 void set_os_lib(void* os_lib) { _os_lib = os_lib; }
duke@435 146 AgentLibrary* next() const { return _next; }
bpittore@5585 147 bool is_static_lib() const { return _is_static_lib; }
bpittore@5688 148 void set_static_lib(bool is_static_lib) { _is_static_lib = is_static_lib; }
bpittore@5585 149 bool valid() { return (_state == agent_valid); }
bpittore@5585 150 void set_valid() { _state = agent_valid; }
bpittore@5585 151 void set_invalid() { _state = agent_invalid; }
duke@435 152
duke@435 153 // Constructor
duke@435 154 AgentLibrary(const char* name, const char* options, bool is_absolute_path, void* os_lib) {
zgu@3900 155 _name = AllocateHeap(strlen(name)+1, mtInternal);
duke@435 156 strcpy(_name, name);
duke@435 157 if (options == NULL) {
duke@435 158 _options = NULL;
duke@435 159 } else {
zgu@3900 160 _options = AllocateHeap(strlen(options)+1, mtInternal);
duke@435 161 strcpy(_options, options);
duke@435 162 }
duke@435 163 _is_absolute_path = is_absolute_path;
duke@435 164 _os_lib = os_lib;
duke@435 165 _next = NULL;
bpittore@5585 166 _state = agent_invalid;
bpittore@5585 167 _is_static_lib = false;
duke@435 168 }
duke@435 169 };
duke@435 170
duke@435 171 // maintain an order of entry list of AgentLibrary
duke@435 172 class AgentLibraryList VALUE_OBJ_CLASS_SPEC {
duke@435 173 private:
duke@435 174 AgentLibrary* _first;
duke@435 175 AgentLibrary* _last;
duke@435 176 public:
duke@435 177 bool is_empty() const { return _first == NULL; }
duke@435 178 AgentLibrary* first() const { return _first; }
duke@435 179
duke@435 180 // add to the end of the list
duke@435 181 void add(AgentLibrary* lib) {
duke@435 182 if (is_empty()) {
duke@435 183 _first = _last = lib;
duke@435 184 } else {
duke@435 185 _last->_next = lib;
duke@435 186 _last = lib;
duke@435 187 }
duke@435 188 lib->_next = NULL;
duke@435 189 }
duke@435 190
duke@435 191 // search for and remove a library known to be in the list
duke@435 192 void remove(AgentLibrary* lib) {
duke@435 193 AgentLibrary* curr;
duke@435 194 AgentLibrary* prev = NULL;
duke@435 195 for (curr = first(); curr != NULL; prev = curr, curr = curr->next()) {
duke@435 196 if (curr == lib) {
duke@435 197 break;
duke@435 198 }
duke@435 199 }
duke@435 200 assert(curr != NULL, "always should be found");
duke@435 201
duke@435 202 if (curr != NULL) {
duke@435 203 // it was found, by-pass this library
duke@435 204 if (prev == NULL) {
duke@435 205 _first = curr->_next;
duke@435 206 } else {
duke@435 207 prev->_next = curr->_next;
duke@435 208 }
duke@435 209 if (curr == _last) {
duke@435 210 _last = prev;
duke@435 211 }
duke@435 212 curr->_next = NULL;
duke@435 213 }
duke@435 214 }
duke@435 215
duke@435 216 AgentLibraryList() {
duke@435 217 _first = NULL;
duke@435 218 _last = NULL;
duke@435 219 }
duke@435 220 };
duke@435 221
duke@435 222
duke@435 223 class Arguments : AllStatic {
duke@435 224 friend class VMStructs;
duke@435 225 friend class JvmtiExport;
duke@435 226 public:
duke@435 227 // Operation modi
duke@435 228 enum Mode {
duke@435 229 _int, // corresponds to -Xint
duke@435 230 _mixed, // corresponds to -Xmixed
duke@435 231 _comp // corresponds to -Xcomp
duke@435 232 };
duke@435 233
duke@435 234 enum ArgsRange {
duke@435 235 arg_unreadable = -3,
duke@435 236 arg_too_small = -2,
duke@435 237 arg_too_big = -1,
duke@435 238 arg_in_range = 0
duke@435 239 };
duke@435 240
duke@435 241 private:
duke@435 242
duke@435 243 // an array containing all flags specified in the .hotspotrc file
duke@435 244 static char** _jvm_flags_array;
duke@435 245 static int _num_jvm_flags;
duke@435 246 // an array containing all jvm arguments specified in the command line
duke@435 247 static char** _jvm_args_array;
duke@435 248 static int _num_jvm_args;
duke@435 249 // string containing all java command (class/jarfile name and app args)
duke@435 250 static char* _java_command;
duke@435 251
duke@435 252 // Property list
duke@435 253 static SystemProperty* _system_properties;
duke@435 254
duke@435 255 // Quick accessor to System properties in the list:
duke@435 256 static SystemProperty *_java_ext_dirs;
duke@435 257 static SystemProperty *_java_endorsed_dirs;
duke@435 258 static SystemProperty *_sun_boot_library_path;
duke@435 259 static SystemProperty *_java_library_path;
duke@435 260 static SystemProperty *_java_home;
duke@435 261 static SystemProperty *_java_class_path;
duke@435 262 static SystemProperty *_sun_boot_class_path;
duke@435 263
duke@435 264 // Meta-index for knowing what packages are in the boot class path
duke@435 265 static char* _meta_index_path;
duke@435 266 static char* _meta_index_dir;
duke@435 267
duke@435 268 // java.vendor.url.bug, bug reporting URL for fatal errors.
duke@435 269 static const char* _java_vendor_url_bug;
duke@435 270
duke@435 271 // sun.java.launcher, private property to provide information about
duke@435 272 // java/gamma launcher
duke@435 273 static const char* _sun_java_launcher;
duke@435 274
duke@435 275 // sun.java.launcher.pid, private property
duke@435 276 static int _sun_java_launcher_pid;
duke@435 277
sla@2584 278 // was this VM created by the gamma launcher
sla@2584 279 static bool _created_by_gamma_launcher;
sla@2584 280
duke@435 281 // Option flags
duke@435 282 static bool _has_profile;
duke@435 283 static const char* _gc_log_filename;
tschatzl@5701 284 // Value of the conservative maximum heap alignment needed
tschatzl@5701 285 static size_t _conservative_max_heap_alignment;
tschatzl@5701 286
duke@435 287 static uintx _min_heap_size;
duke@435 288
duke@435 289 // -Xrun arguments
duke@435 290 static AgentLibraryList _libraryList;
duke@435 291 static void add_init_library(const char* name, char* options)
duke@435 292 { _libraryList.add(new AgentLibrary(name, options, false, NULL)); }
duke@435 293
duke@435 294 // -agentlib and -agentpath arguments
duke@435 295 static AgentLibraryList _agentList;
duke@435 296 static void add_init_agent(const char* name, char* options, bool absolute_path)
duke@435 297 { _agentList.add(new AgentLibrary(name, options, absolute_path, NULL)); }
duke@435 298
duke@435 299 // Late-binding agents not started via arguments
bpittore@5585 300 static void add_loaded_agent(AgentLibrary *agentLib)
bpittore@5585 301 { _agentList.add(agentLib); }
duke@435 302 static void add_loaded_agent(const char* name, char* options, bool absolute_path, void* os_lib)
duke@435 303 { _agentList.add(new AgentLibrary(name, options, absolute_path, os_lib)); }
duke@435 304
duke@435 305 // Operation modi
duke@435 306 static Mode _mode;
duke@435 307 static void set_mode_flags(Mode mode);
duke@435 308 static bool _java_compiler;
duke@435 309 static void set_java_compiler(bool arg) { _java_compiler = arg; }
duke@435 310 static bool java_compiler() { return _java_compiler; }
duke@435 311
duke@435 312 // -Xdebug flag
duke@435 313 static bool _xdebug_mode;
duke@435 314 static void set_xdebug_mode(bool arg) { _xdebug_mode = arg; }
duke@435 315 static bool xdebug_mode() { return _xdebug_mode; }
duke@435 316
duke@435 317 // Used to save default settings
duke@435 318 static bool _AlwaysCompileLoopMethods;
duke@435 319 static bool _UseOnStackReplacement;
duke@435 320 static bool _BackgroundCompilation;
duke@435 321 static bool _ClipInlining;
duke@435 322 static bool _CIDynamicCompilePriority;
duke@435 323
iveresov@2138 324 // Tiered
iveresov@2138 325 static void set_tiered_flags();
duke@435 326 // CMS/ParNew garbage collectors
duke@435 327 static void set_parnew_gc_flags();
duke@435 328 static void set_cms_and_parnew_gc_flags();
ysr@777 329 // UseParallel[Old]GC
duke@435 330 static void set_parallel_gc_flags();
ysr@777 331 // Garbage-First (UseG1GC)
ysr@777 332 static void set_g1_gc_flags();
duke@435 333 // GC ergonomics
tschatzl@5701 334 static void set_conservative_max_heap_alignment();
brutisso@4741 335 static void set_use_compressed_oops();
hseigel@5528 336 static void set_use_compressed_klass_ptrs();
duke@435 337 static void set_ergonomics_flags();
jcoomes@2644 338 static void set_shared_spaces_flags();
tschatzl@4854 339 // limits the given memory size by the maximum amount of memory this process is
tschatzl@4854 340 // currently allowed to allocate or reserve.
tschatzl@4854 341 static julong limit_by_allocatable_memory(julong size);
phh@1499 342 // Setup heap size
phh@1499 343 static void set_heap_size();
duke@435 344 // Based on automatic selection criteria, should the
duke@435 345 // low pause collector be used.
duke@435 346 static bool should_auto_select_low_pause_collector();
duke@435 347
duke@435 348 // Bytecode rewriting
duke@435 349 static void set_bytecode_flags();
duke@435 350
duke@435 351 // Invocation API hooks
duke@435 352 static abort_hook_t _abort_hook;
duke@435 353 static exit_hook_t _exit_hook;
duke@435 354 static vfprintf_hook_t _vfprintf_hook;
duke@435 355
duke@435 356 // System properties
duke@435 357 static bool add_property(const char* prop);
duke@435 358
duke@435 359 // Aggressive optimization flags.
duke@435 360 static void set_aggressive_opts_flags();
duke@435 361
duke@435 362 // Argument parsing
duke@435 363 static void do_pd_flag_adjustments();
twisti@5790 364 static bool parse_argument(const char* arg, Flag::Flags origin);
twisti@5790 365 static bool process_argument(const char* arg, jboolean ignore_unrecognized, Flag::Flags origin);
duke@435 366 static void process_java_launcher_argument(const char*, void*);
duke@435 367 static void process_java_compiler_argument(char* arg);
duke@435 368 static jint parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p);
duke@435 369 static jint parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p);
duke@435 370 static jint parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p);
duke@435 371 static jint parse_vm_init_args(const JavaVMInitArgs* args);
twisti@5790 372 static jint parse_each_vm_init_arg(const JavaVMInitArgs* args, SysClassPath* scp_p, bool* scp_assembly_required_p, Flag::Flags origin);
duke@435 373 static jint finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required);
jwilhelm@6267 374 static bool is_bad_option(const JavaVMOption* option, jboolean ignore, const char* option_type);
jwilhelm@6267 375
duke@435 376 static bool is_bad_option(const JavaVMOption* option, jboolean ignore) {
duke@435 377 return is_bad_option(option, ignore, NULL);
duke@435 378 }
jwilhelm@6267 379
jwilhelm@6267 380 static bool is_percentage(uintx val) {
jwilhelm@6267 381 return val <= 100;
jwilhelm@6267 382 }
jwilhelm@6267 383
johnc@1679 384 static bool verify_interval(uintx val, uintx min,
johnc@1679 385 uintx max, const char* name);
ptisnovs@2099 386 static bool verify_min_value(intx val, intx min, const char* name);
duke@435 387 static bool verify_percentage(uintx value, const char* name);
duke@435 388 static void describe_range_error(ArgsRange errcode);
swamyv@924 389 static ArgsRange check_memory_size(julong size, julong min_size);
swamyv@924 390 static ArgsRange parse_memory_size(const char* s, julong* long_arg,
swamyv@924 391 julong min_size);
jmasa@1719 392 // Parse a string for a unsigned integer. Returns true if value
jmasa@1719 393 // is an unsigned integer greater than or equal to the minimum
jmasa@1719 394 // parameter passed and returns the value in uintx_arg. Returns
jmasa@1719 395 // false otherwise, with uintx_arg undefined.
jmasa@1719 396 static bool parse_uintx(const char* value, uintx* uintx_arg,
jmasa@1719 397 uintx min_size);
duke@435 398
duke@435 399 // methods to build strings from individual args
duke@435 400 static void build_jvm_args(const char* arg);
duke@435 401 static void build_jvm_flags(const char* arg);
duke@435 402 static void add_string(char*** bldarray, int* count, const char* arg);
duke@435 403 static const char* build_resource_string(char** args, int count);
duke@435 404
duke@435 405 static bool methodExists(
duke@435 406 char* className, char* methodName,
duke@435 407 int classesNum, char** classes, bool* allMethods,
duke@435 408 int methodsNum, char** methods, bool* allClasses
duke@435 409 );
duke@435 410
duke@435 411 static void parseOnlyLine(
duke@435 412 const char* line,
duke@435 413 short* classesNum, short* classesMax, char*** classes, bool** allMethods,
duke@435 414 short* methodsNum, short* methodsMax, char*** methods, bool** allClasses
duke@435 415 );
duke@435 416
kamg@677 417 // Returns true if the string s is in the list of flags that have recently
kamg@677 418 // been made obsolete. If we detect one of these flags on the command
kamg@677 419 // line, instead of failing we print a warning message and ignore the
kamg@677 420 // flag. This gives the user a release or so to stop using the flag.
kamg@677 421 static bool is_newly_obsolete(const char* s, JDK_Version* buffer);
duke@435 422
duke@435 423 static short CompileOnlyClassesNum;
duke@435 424 static short CompileOnlyClassesMax;
duke@435 425 static char** CompileOnlyClasses;
duke@435 426 static bool* CompileOnlyAllMethods;
duke@435 427
duke@435 428 static short CompileOnlyMethodsNum;
duke@435 429 static short CompileOnlyMethodsMax;
duke@435 430 static char** CompileOnlyMethods;
duke@435 431 static bool* CompileOnlyAllClasses;
duke@435 432
duke@435 433 static short InterpretOnlyClassesNum;
duke@435 434 static short InterpretOnlyClassesMax;
duke@435 435 static char** InterpretOnlyClasses;
duke@435 436 static bool* InterpretOnlyAllMethods;
duke@435 437
duke@435 438 static bool CheckCompileOnly;
duke@435 439
duke@435 440 static char* SharedArchivePath;
duke@435 441
duke@435 442 public:
tschatzl@5701 443 // Parses the arguments, first phase
duke@435 444 static jint parse(const JavaVMInitArgs* args);
tschatzl@5701 445 // Apply ergonomics
tschatzl@5701 446 static jint apply_ergo();
brutisso@4296 447 // Adjusts the arguments after the OS have adjusted the arguments
brutisso@4296 448 static jint adjust_after_os();
jwilhelm@6267 449
jwilhelm@6267 450 // Verifies that the given value will fit as a MinHeapFreeRatio. If not, an error
jwilhelm@6267 451 // message is returned in the provided buffer.
jwilhelm@6267 452 static bool verify_MinHeapFreeRatio(FormatBuffer<80>& err_msg, uintx min_heap_free_ratio);
jwilhelm@6267 453
jwilhelm@6267 454 // Verifies that the given value will fit as a MaxHeapFreeRatio. If not, an error
jwilhelm@6267 455 // message is returned in the provided buffer.
jwilhelm@6267 456 static bool verify_MaxHeapFreeRatio(FormatBuffer<80>& err_msg, uintx max_heap_free_ratio);
jwilhelm@6267 457
jmasa@445 458 // Check for consistency in the selection of the garbage collector.
jmasa@445 459 static bool check_gc_consistency();
brutisso@4388 460 static void check_deprecated_gcs();
tamao@4734 461 static void check_deprecated_gc_flags();
duke@435 462 // Check consistecy or otherwise of VM argument settings
duke@435 463 static bool check_vm_args_consistency();
ptisnovs@2099 464 // Check stack pages settings
ptisnovs@2099 465 static bool check_stack_pages();
duke@435 466 // Used by os_solaris
duke@435 467 static bool process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized);
duke@435 468
tschatzl@5701 469 static size_t conservative_max_heap_alignment() { return _conservative_max_heap_alignment; }
tschatzl@5701 470 // Return the maximum size a heap with compressed oops can take
tschatzl@5701 471 static size_t max_heap_for_compressed_oops();
tschatzl@5701 472
duke@435 473 // return a char* array containing all options
duke@435 474 static char** jvm_flags_array() { return _jvm_flags_array; }
duke@435 475 static char** jvm_args_array() { return _jvm_args_array; }
duke@435 476 static int num_jvm_flags() { return _num_jvm_flags; }
duke@435 477 static int num_jvm_args() { return _num_jvm_args; }
duke@435 478 // return the arguments passed to the Java application
duke@435 479 static const char* java_command() { return _java_command; }
duke@435 480
duke@435 481 // print jvm_flags, jvm_args and java_command
duke@435 482 static void print_on(outputStream* st);
duke@435 483
duke@435 484 // convenient methods to obtain / print jvm_flags and jvm_args
duke@435 485 static const char* jvm_flags() { return build_resource_string(_jvm_flags_array, _num_jvm_flags); }
duke@435 486 static const char* jvm_args() { return build_resource_string(_jvm_args_array, _num_jvm_args); }
duke@435 487 static void print_jvm_flags_on(outputStream* st);
duke@435 488 static void print_jvm_args_on(outputStream* st);
duke@435 489
duke@435 490 // -Dkey=value flags
duke@435 491 static SystemProperty* system_properties() { return _system_properties; }
duke@435 492 static const char* get_property(const char* key);
duke@435 493
duke@435 494 // -Djava.vendor.url.bug
duke@435 495 static const char* java_vendor_url_bug() { return _java_vendor_url_bug; }
duke@435 496
duke@435 497 // -Dsun.java.launcher
duke@435 498 static const char* sun_java_launcher() { return _sun_java_launcher; }
duke@435 499 // Was VM created by a Java launcher?
duke@435 500 static bool created_by_java_launcher();
sla@2584 501 // Was VM created by the gamma Java launcher?
sla@2584 502 static bool created_by_gamma_launcher();
duke@435 503 // -Dsun.java.launcher.pid
duke@435 504 static int sun_java_launcher_pid() { return _sun_java_launcher_pid; }
duke@435 505
duke@435 506 // -Xloggc:<file>, if not specified will be NULL
duke@435 507 static const char* gc_log_filename() { return _gc_log_filename; }
duke@435 508
jiangli@5369 509 // -Xprof
duke@435 510 static bool has_profile() { return _has_profile; }
duke@435 511
phh@1499 512 // -Xms, -Xmx
duke@435 513 static uintx min_heap_size() { return _min_heap_size; }
duke@435 514 static void set_min_heap_size(uintx v) { _min_heap_size = v; }
duke@435 515
duke@435 516 // -Xrun
duke@435 517 static AgentLibrary* libraries() { return _libraryList.first(); }
duke@435 518 static bool init_libraries_at_startup() { return !_libraryList.is_empty(); }
duke@435 519 static void convert_library_to_agent(AgentLibrary* lib)
duke@435 520 { _libraryList.remove(lib);
duke@435 521 _agentList.add(lib); }
duke@435 522
duke@435 523 // -agentlib -agentpath
duke@435 524 static AgentLibrary* agents() { return _agentList.first(); }
duke@435 525 static bool init_agents_at_startup() { return !_agentList.is_empty(); }
duke@435 526
duke@435 527 // abort, exit, vfprintf hooks
duke@435 528 static abort_hook_t abort_hook() { return _abort_hook; }
duke@435 529 static exit_hook_t exit_hook() { return _exit_hook; }
duke@435 530 static vfprintf_hook_t vfprintf_hook() { return _vfprintf_hook; }
duke@435 531
duke@435 532 static bool GetCheckCompileOnly () { return CheckCompileOnly; }
duke@435 533
duke@435 534 static const char* GetSharedArchivePath() { return SharedArchivePath; }
duke@435 535
duke@435 536 static bool CompileMethod(char* className, char* methodName) {
duke@435 537 return
duke@435 538 methodExists(
duke@435 539 className, methodName,
duke@435 540 CompileOnlyClassesNum, CompileOnlyClasses, CompileOnlyAllMethods,
duke@435 541 CompileOnlyMethodsNum, CompileOnlyMethods, CompileOnlyAllClasses
duke@435 542 );
duke@435 543 }
duke@435 544
duke@435 545 // Java launcher properties
duke@435 546 static void process_sun_java_launcher_properties(JavaVMInitArgs* args);
duke@435 547
duke@435 548 // System properties
duke@435 549 static void init_system_properties();
duke@435 550
zgu@2219 551 // Update/Initialize System properties after JDK version number is known
zgu@2219 552 static void init_version_specific_system_properties();
zgu@2219 553
phh@1126 554 // Property List manipulation
duke@435 555 static void PropertyList_add(SystemProperty** plist, SystemProperty *element);
duke@435 556 static void PropertyList_add(SystemProperty** plist, const char* k, char* v);
phh@1126 557 static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v) {
phh@1126 558 PropertyList_unique_add(plist, k, v, false);
phh@1126 559 }
phh@1126 560 static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append);
duke@435 561 static const char* PropertyList_get_value(SystemProperty* plist, const char* key);
duke@435 562 static int PropertyList_count(SystemProperty* pl);
duke@435 563 static const char* PropertyList_get_key_at(SystemProperty* pl,int index);
duke@435 564 static char* PropertyList_get_value_at(SystemProperty* pl,int index);
duke@435 565
duke@435 566 // Miscellaneous System property value getter and setters.
duke@435 567 static void set_dll_dir(char *value) { _sun_boot_library_path->set_value(value); }
duke@435 568 static void set_java_home(char *value) { _java_home->set_value(value); }
duke@435 569 static void set_library_path(char *value) { _java_library_path->set_value(value); }
duke@435 570 static void set_ext_dirs(char *value) { _java_ext_dirs->set_value(value); }
duke@435 571 static void set_endorsed_dirs(char *value) { _java_endorsed_dirs->set_value(value); }
duke@435 572 static void set_sysclasspath(char *value) { _sun_boot_class_path->set_value(value); }
duke@435 573 static void append_sysclasspath(const char *value) { _sun_boot_class_path->append_value(value); }
duke@435 574 static void set_meta_index_path(char* meta_index_path, char* meta_index_dir) {
duke@435 575 _meta_index_path = meta_index_path;
duke@435 576 _meta_index_dir = meta_index_dir;
duke@435 577 }
duke@435 578
duke@435 579 static char *get_java_home() { return _java_home->value(); }
duke@435 580 static char *get_dll_dir() { return _sun_boot_library_path->value(); }
duke@435 581 static char *get_endorsed_dir() { return _java_endorsed_dirs->value(); }
duke@435 582 static char *get_sysclasspath() { return _sun_boot_class_path->value(); }
duke@435 583 static char* get_meta_index_path() { return _meta_index_path; }
duke@435 584 static char* get_meta_index_dir() { return _meta_index_dir; }
duke@435 585
duke@435 586 // Operation modi
duke@435 587 static Mode mode() { return _mode; }
duke@435 588
duke@435 589 // Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid.
duke@435 590 static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen);
duke@435 591 };
stefank@2314 592
stefank@2314 593 #endif // SHARE_VM_RUNTIME_ARGUMENTS_HPP

mercurial