src/share/vm/compiler/compilerOracle.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/compiler/compilerOracle.hpp

src/share/vm/compiler/compilerOracle.hpp

Print this page
rev 9030 : 8137167: JEP165: Compiler Control: Implementation task
Summary:
Reviewed-by:

*** 44,54 **** // Reads from file and adds to lists static void parse_from_file(); // Tells whether we to exclude compilation of method ! static bool should_exclude(methodHandle method, bool& quietly); // Tells whether we want to inline this method static bool should_inline(methodHandle method); // Tells whether we want to disallow inlining of this method --- 44,55 ---- // Reads from file and adds to lists static void parse_from_file(); // Tells whether we to exclude compilation of method ! static bool should_exclude(methodHandle method); ! static bool should_exclude_quietly() { return _quiet; } // Tells whether we want to inline this method static bool should_inline(methodHandle method); // Tells whether we want to disallow inlining of this method
*** 69,78 **** --- 70,82 ---- // Check if method has option and value set. If yes, overwrite value and return true, // otherwise leave value unchanged and return false. template<typename T> static bool has_option_value(methodHandle method, const char* option, T& value); + // Fast check if there is any option available that compile control needs to know about + static bool has_any_option(); + // Reads from string instead of file static void parse_from_string(const char* command_string, void (*parser)(char*)); static void parse_from_line(char* line); static void parse_compile_only(char * line);
src/share/vm/compiler/compilerOracle.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File