src/share/vm/code/vtableStubs.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/code/vtableStubs.cpp	Mon Apr 29 18:21:14 2013
--- new/src/share/vm/code/vtableStubs.cpp	Mon Apr 29 18:21:12 2013

*** 58,68 **** --- 58,68 ---- const int chunk_factor = 32; if (_chunk == NULL || _chunk + real_size > _chunk_end) { const int bytes = chunk_factor * real_size + pd_code_alignment(); BufferBlob* blob = BufferBlob::create("vtable chunks", bytes); if (blob == NULL) { ! vm_exit_out_of_memory(bytes, OOM_MALLOC_ERROR, "CodeCache: no room for vtable chunks"); } _chunk = blob->content_begin(); _chunk_end = _chunk + bytes; Forte::register_stub("vtable stub", _chunk, _chunk_end); // Notify JVMTI about this stub. The event will be recorded by the enclosing

src/share/vm/code/vtableStubs.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File