hotspot/src/share/vm/runtime/stubCodeGenerator.hpp
changeset 6176 4d9030fe341f
parent 5547 f4b087cbb361
child 7397 5b173b4ca846
equal deleted inserted replaced
6175:86dbf3cacacc 6176:4d9030fe341f
    77   int         index() const                      { return _index; }
    77   int         index() const                      { return _index; }
    78   address     begin() const                      { return _begin; }
    78   address     begin() const                      { return _begin; }
    79   address     end() const                        { return _end; }
    79   address     end() const                        { return _end; }
    80   int         size_in_bytes() const              { return _end - _begin; }
    80   int         size_in_bytes() const              { return _end - _begin; }
    81   bool        contains(address pc) const         { return _begin <= pc && pc < _end; }
    81   bool        contains(address pc) const         { return _begin <= pc && pc < _end; }
    82   void        print();
    82   void        print_on(outputStream* st) const;
       
    83   void        print() const                      { print_on(tty); }
    83 };
    84 };
    84 
    85 
    85 // The base class for all stub-generating code generators.
    86 // The base class for all stub-generating code generators.
    86 // Provides utility functions.
    87 // Provides utility functions.
    87 
    88