hotspot/src/share/vm/code/vtableStubs.cpp
changeset 27420 04e6f914cce1
parent 26919 361b4b4c92c0
child 33105 294e48b4f704
equal deleted inserted replaced
27419:a934f24b4dcf 27420:04e6f914cce1
    61 
    61 
    62    // There is a dependency on the name of the blob in src/share/vm/prims/jvmtiCodeBlobEvents.cpp
    62    // There is a dependency on the name of the blob in src/share/vm/prims/jvmtiCodeBlobEvents.cpp
    63    // If changing the name, update the other file accordingly.
    63    // If changing the name, update the other file accordingly.
    64     BufferBlob* blob = BufferBlob::create("vtable chunks", bytes);
    64     BufferBlob* blob = BufferBlob::create("vtable chunks", bytes);
    65     if (blob == NULL) {
    65     if (blob == NULL) {
    66       CompileBroker::handle_full_code_cache(CodeBlobType::NonNMethod);
       
    67       return NULL;
    66       return NULL;
    68     }
    67     }
    69     _chunk = blob->content_begin();
    68     _chunk = blob->content_begin();
    70     _chunk_end = _chunk + bytes;
    69     _chunk_end = _chunk + bytes;
    71     Forte::register_stub("vtable stub", _chunk, _chunk_end);
    70     Forte::register_stub("vtable stub", _chunk, _chunk_end);