< prev index next >

src/hotspot/share/code/codeBlob.hpp

Print this page
rev 47445 : 8171853: Remove Shark compiler

*** 123,133 **** virtual bool is_compiled() const { return false; } inline bool is_compiled_by_c1() const { return _type == compiler_c1; }; inline bool is_compiled_by_c2() const { return _type == compiler_c2; }; inline bool is_compiled_by_jvmci() const { return _type == compiler_jvmci; }; - inline bool is_compiled_by_shark() const { return _type == compiler_shark; }; const char* compiler_name() const; // Casting nmethod* as_nmethod_or_null() { return is_nmethod() ? (nmethod*) this : NULL; } nmethod* as_nmethod() { assert(is_nmethod(), "must be nmethod"); return (nmethod*) this; } --- 123,132 ----
< prev index next >