src/share/vm/opto/callGenerator.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/opto/callGenerator.hpp	Tue Mar 25 14:56:09 2014
--- new/src/share/vm/opto/callGenerator.hpp	Tue Mar 25 14:56:09 2014

*** 82,91 **** --- 82,94 ---- // Replace the call with an inline version of the code virtual void do_late_inline() { ShouldNotReachHere(); } virtual CallStaticJavaNode* call_node() const { ShouldNotReachHere(); return NULL; } + virtual void set_unique_id(jlong id) { fatal("unique id only for late inlines"); }; + virtual jlong unique_id() const { fatal("unique id only for late inlines"); return 0; }; + // Note: It is possible for a CG to be both inline and virtual. // (The hashCode intrinsic does a vtable check and an inlined fast path.) // Utilities: const TypeFunc* tf() const;

src/share/vm/opto/callGenerator.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File