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

src/share/vm/opto/callGenerator.hpp

Print this page

        

*** 41,57 **** xxxunusedxxx }; private: ciMethod* _method; // The method being called. protected: ! CallGenerator(ciMethod* method) : _method(method) {} public: // Accessors ciMethod* method() const { return _method; } // is_inline: At least some code implementing the method is copied here. virtual bool is_inline() const { return false; } // is_intrinsic: There's a method-specific way of generating the inline code. virtual bool is_intrinsic() const { return false; } --- 41,61 ---- xxxunusedxxx }; private: ciMethod* _method; // The method being called. + bool _override_symbolic_info; protected: ! CallGenerator(ciMethod* method) : _method(method), _override_symbolic_info(false) {} public: // Accessors ciMethod* method() const { return _method; } + void set_override_symbolic_info(bool x) { _override_symbolic_info = x; } + bool override_symbolic_info() const { return _override_symbolic_info; } + // is_inline: At least some code implementing the method is copied here. virtual bool is_inline() const { return false; } // is_intrinsic: There's a method-specific way of generating the inline code. virtual bool is_intrinsic() const { return false; }
src/share/vm/opto/callGenerator.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File