src/share/vm/compiler/compilerOracle.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/compiler/compilerOracle.hpp	Fri Oct  2 15:58:56 2015
--- new/src/share/vm/compiler/compilerOracle.hpp	Fri Oct  2 15:58:56 2015

*** 44,54 **** --- 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, bool& quietly); + 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