src/share/vm/shark/sharkCodeBuffer.hpp

Print this page
rev 3810 : [mq]: shark.patch

*** 79,88 **** --- 79,95 ---- int offset = masm()->offset(); masm()->store_oop(object); 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 { masm()->align(BytesPerWord); int offset = masm()->offset();