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

src/share/vm/code/vtableStubs.cpp

Print this page

        

*** 109,119 **** } } } ! address VtableStubs::create_stub(bool is_vtable_stub, int vtable_index, Method* method) { assert(vtable_index >= 0, "must be positive"); VtableStub* s = ShareVtableStubs ? lookup(is_vtable_stub, vtable_index) : NULL; if (s == NULL) { if (is_vtable_stub) { --- 109,119 ---- } } } ! address VtableStubs::find_stub(bool is_vtable_stub, int vtable_index) { assert(vtable_index >= 0, "must be positive"); VtableStub* s = ShareVtableStubs ? lookup(is_vtable_stub, vtable_index) : NULL; if (s == NULL) { if (is_vtable_stub) {
src/share/vm/code/vtableStubs.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File