hotspot/src/share/vm/opto/callGenerator.hpp

Print this page

        

@@ -63,10 +63,12 @@
   virtual bool      is_deferred() const         { return false; }
   // is_predicted: Uses an explicit check against a predicted type.
   virtual bool      is_predicted() const        { return false; }
   // is_trap: Does not return to the caller.  (E.g., uncommon trap.)
   virtual bool      is_trap() const             { return false; }
+  // is_low_priority: Should try inlining as normal method first.
+  virtual bool      is_low_priority() const     { return false; }
 
   // is_late_inline: supports conversion of call into an inline
   virtual bool      is_late_inline() const      { return false; }
   // same but for method handle calls
   virtual bool      is_mh_late_inline() const   { return false; }