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

src/share/vm/code/vtableStubs.cpp

Print this page

        

*** 61,71 **** // There is a dependency on the name of the blob in src/share/vm/prims/jvmtiCodeBlobEvents.cpp // If changing the name, update the other file accordingly. BufferBlob* blob = BufferBlob::create("vtable chunks", bytes); if (blob == NULL) { ! CompileBroker::handle_full_code_cache(); return NULL; } _chunk = blob->content_begin(); _chunk_end = _chunk + bytes; Forte::register_stub("vtable stub", _chunk, _chunk_end); --- 61,71 ---- // There is a dependency on the name of the blob in src/share/vm/prims/jvmtiCodeBlobEvents.cpp // If changing the name, update the other file accordingly. BufferBlob* blob = BufferBlob::create("vtable chunks", bytes); if (blob == NULL) { ! CompileBroker::handle_full_code_cache(CodeBlobType::NonMethod); return NULL; } _chunk = blob->content_begin(); _chunk_end = _chunk + bytes; Forte::register_stub("vtable stub", _chunk, _chunk_end);
src/share/vm/code/vtableStubs.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File