< prev index next >

src/hotspot/share/ci/ciMethod.hpp

Print this page

        

*** 85,94 **** --- 85,95 ---- bool _uses_monitors; bool _balanced_monitors; bool _is_c1_compilable; bool _is_c2_compilable; + bool _can_be_parsed; bool _can_be_statically_bound; bool _has_reserved_stack_access; // Lazy fields, filled in on demand address _code;
*** 289,298 **** --- 290,300 ---- int resolve_vtable_index(ciKlass* caller, ciKlass* receiver); bool has_option(const char *option); bool has_option_value(const char* option, double& value); bool can_be_compiled(); + bool can_be_parsed() const { return _can_be_parsed; } bool can_be_osr_compiled(int entry_bci); void set_not_compilable(const char* reason = NULL); bool has_compiled_code(); void log_nmethod_identity(xmlStream* log); bool is_not_reached(int bci);
< prev index next >