diff -r 0ae85ac7c8b0 -r 0a86564e5f61 hotspot/src/share/vm/classfile/classFileStream.hpp --- a/hotspot/src/share/vm/classfile/classFileStream.hpp Mon Jan 07 15:32:51 2013 -0500 +++ b/hotspot/src/share/vm/classfile/classFileStream.hpp Tue Jan 08 14:01:36 2013 -0500 @@ -133,6 +133,11 @@ _current += 2 * length; } + void skip_u4(int length, TRAPS); + void skip_u4_fast(int length) { + _current += 4 * length; + } + // Tells whether eos is reached bool at_eos() const { return _current == _buffer_end; } };