diff src/share/vm/classfile/classFileStream.hpp @ 7462:ade95d680b42

8004728: Add hotspot support for parameter reflection Summary: Add hotspot support for parameter reflection Reviewed-by: acorn, jrose, coleenp Contributed-by: eric.mccorkle@oracle.com
author coleenp
date Tue, 08 Jan 2013 14:01:36 -0500
parents 1d1603768966
children de6a9e811145
line wrap: on
line diff
--- a/src/share/vm/classfile/classFileStream.hpp	Mon Jan 07 15:32:51 2013 -0500
+++ b/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; }
 };