comparison src/share/vm/runtime/arguments.hpp @ 8135:8d10fc6b4f6c

graal.jar is now the only way Graal is deployed in the VM (GRAAL-136)
author Doug Simon <doug.simon@oracle.com>
date Wed, 06 Mar 2013 20:48:32 +0100
parents 5fc51c1ecdeb
children b9a918201d47
comparison
equal deleted inserted replaced
8134:6e3ebc6fd5a4 8135:8d10fc6b4f6c
245 static SystemProperty *_sun_boot_library_path; 245 static SystemProperty *_sun_boot_library_path;
246 static SystemProperty *_java_library_path; 246 static SystemProperty *_java_library_path;
247 static SystemProperty *_java_home; 247 static SystemProperty *_java_home;
248 static SystemProperty *_java_class_path; 248 static SystemProperty *_java_class_path;
249 static SystemProperty *_sun_boot_class_path; 249 static SystemProperty *_sun_boot_class_path;
250 #ifdef GRAAL
251 static SystemProperty *_compiler_class_path;
252 #endif
253 250
254 // Meta-index for knowing what packages are in the boot class path 251 // Meta-index for knowing what packages are in the boot class path
255 static char* _meta_index_path; 252 static char* _meta_index_path;
256 static char* _meta_index_dir; 253 static char* _meta_index_dir;
257 254
535 static void set_java_home(char *value) { _java_home->set_value(value); } 532 static void set_java_home(char *value) { _java_home->set_value(value); }
536 static void set_library_path(char *value) { _java_library_path->set_value(value); } 533 static void set_library_path(char *value) { _java_library_path->set_value(value); }
537 static void set_ext_dirs(char *value) { _java_ext_dirs->set_value(value); } 534 static void set_ext_dirs(char *value) { _java_ext_dirs->set_value(value); }
538 static void set_endorsed_dirs(char *value) { _java_endorsed_dirs->set_value(value); } 535 static void set_endorsed_dirs(char *value) { _java_endorsed_dirs->set_value(value); }
539 static void set_sysclasspath(char *value) { _sun_boot_class_path->set_value(value); } 536 static void set_sysclasspath(char *value) { _sun_boot_class_path->set_value(value); }
540 #ifdef GRAAL
541 static void set_compilerclasspath(char *value) { _compiler_class_path->set_value(value); }
542 #endif
543 static void append_sysclasspath(const char *value) { _sun_boot_class_path->append_value(value); } 537 static void append_sysclasspath(const char *value) { _sun_boot_class_path->append_value(value); }
544 static void set_meta_index_path(char* meta_index_path, char* meta_index_dir) { 538 static void set_meta_index_path(char* meta_index_path, char* meta_index_dir) {
545 _meta_index_path = meta_index_path; 539 _meta_index_path = meta_index_path;
546 _meta_index_dir = meta_index_dir; 540 _meta_index_dir = meta_index_dir;
547 } 541 }
548 542
549 static char *get_java_home() { return _java_home->value(); } 543 static char *get_java_home() { return _java_home->value(); }
550 static char *get_dll_dir() { return _sun_boot_library_path->value(); } 544 static char *get_dll_dir() { return _sun_boot_library_path->value(); }
551 static char *get_endorsed_dir() { return _java_endorsed_dirs->value(); } 545 static char *get_endorsed_dir() { return _java_endorsed_dirs->value(); }
552 static char *get_sysclasspath() { return _sun_boot_class_path->value(); } 546 static char *get_sysclasspath() { return _sun_boot_class_path->value(); }
553 #ifdef GRAAL
554 static char *get_compilerclasspath() { return _compiler_class_path->value(); }
555 #endif
556 static char* get_meta_index_path() { return _meta_index_path; } 547 static char* get_meta_index_path() { return _meta_index_path; }
557 static char* get_meta_index_dir() { return _meta_index_dir; } 548 static char* get_meta_index_dir() { return _meta_index_dir; }
558 549
559 // Operation modi 550 // Operation modi
560 static Mode mode() { return _mode; } 551 static Mode mode() { return _mode; }