Searched refs:CompilerOracle (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.hpp31 // CompilerOracle is an interface for turning on and off compilation
34 class CompilerOracle : AllStatic { class in inherits:AllStatic
H A DcompilerOracle.cpp281 bool CompilerOracle::has_option_string(methodHandle method, const char* option) {
287 bool CompilerOracle::should_exclude(methodHandle method, bool& quietly) {
303 bool CompilerOracle::should_inline(methodHandle method) {
308 bool CompilerOracle::should_not_inline(methodHandle method) {
313 bool CompilerOracle::should_print(methodHandle method) {
318 bool CompilerOracle::should_log(methodHandle method) {
325 bool CompilerOracle::should_break_at(methodHandle method) {
347 tty->print_cr(" CompileCommand and the CompilerOracle allows simple control over");
443 void CompilerOracle::parse_from_line(char* line) {
474 tty->print_cr("CompilerOracle
[all...]
H A DcompileBroker.cpp1369 if (CompilerOracle::should_exclude(method, quietly)) {
1379 method->set_not_compilable(CompLevel_all, !quietly, "excluded by CompilerOracle");
1731 if (should_log && !CompilerOracle::should_log(method)) {
2008 } else if( CompilerOracle::should_break_at(method) ) { // break when compiling
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp898 return CompilerOracle::should_exclude(mh, ignore);
909 return CompilerOracle::should_inline(mh);
920 return CompilerOracle::should_not_inline(mh);
931 return CompilerOracle::should_print(mh);
943 return CompilerOracle::should_break_at(mh);
953 return CompilerOracle::has_option_string(mh, option);
/openjdk7/hotspot/src/share/vm/runtime/
H A Djava.cpp133 (PrintMethodData || CompilerOracle::should_print(mh))) {
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp889 || CompilerOracle::should_print(_method)
890 || CompilerOracle::has_option_string(_method, "PrintNMethods");

Completed in 42 milliseconds