src/share/vm/runtime/stubCodeGenerator.hpp

changeset 2036
126ea7725993
parent 1907
c18cbe5936b8
child 2314
f95d63e2154a
equal deleted inserted replaced
2035:a64438a2b7e8 2036:126ea7725993
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

mercurial