--- old/src/share/vm/shark/sharkCodeBuffer.hpp 2012-11-21 18:11:06.775699247 +0100 +++ new/src/share/vm/shark/sharkCodeBuffer.hpp 2012-11-21 18:11:06.577699480 +0100 @@ -81,6 +81,13 @@ return offset; } + int inline_Metadata(Metadata* metadata) const { + masm()->align(BytesPerWord); + int offset = masm()->offset(); + masm()->store_Metadata(metadata); + return offset; + } + // Inline a block of non-oop data into the buffer and return its offset. public: int inline_data(void *src, size_t size) const {