comparison src/share/vm/runtime/arguments.hpp @ 20458:0d78074d2444

8058092: Test vm/mlvm/meth/stress/compiler/deoptimize. Assert in src/share/vm/classfile/systemDictionary.cpp: MH intrinsic invariant Summary: Throw exception if unable to compile an MH intrinsic Reviewed-by: kvn
author iveresov
date Wed, 10 Sep 2014 19:08:17 -0700
parents 76af788b6c16
children 327c00d0f091
comparison
equal deleted inserted replaced
20457:631667807de7 20458:0d78074d2444
599 static char* get_ext_dirs() { return _java_ext_dirs->value(); } 599 static char* get_ext_dirs() { return _java_ext_dirs->value(); }
600 static char* get_appclasspath() { return _java_class_path->value(); } 600 static char* get_appclasspath() { return _java_class_path->value(); }
601 static void fix_appclasspath(); 601 static void fix_appclasspath();
602 602
603 // Operation modi 603 // Operation modi
604 static Mode mode() { return _mode; } 604 static Mode mode() { return _mode; }
605 static bool is_interpreter_only() { return mode() == _int; }
606
605 607
606 // Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid. 608 // Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid.
607 static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen); 609 static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen);
608 }; 610 };
609 611