hotspot/src/share/vm/code/vtableStubs.cpp
changeset 6176 4d9030fe341f
parent 5924 dc9d04930c82
child 6418 6671edbd230e
equal deleted inserted replaced
6175:86dbf3cacacc 6176:4d9030fe341f
    65   align_chunk();
    65   align_chunk();
    66  return res;
    66  return res;
    67 }
    67 }
    68 
    68 
    69 
    69 
    70 void VtableStub::print() {
    70 void VtableStub::print_on(outputStream* st) const {
    71   tty->print("vtable stub (index = %d, receiver_location = %d, code = [" INTPTR_FORMAT ", " INTPTR_FORMAT "[)",
    71   st->print("vtable stub (index = %d, receiver_location = %d, code = [" INTPTR_FORMAT ", " INTPTR_FORMAT "[)",
    72              index(), receiver_location(), code_begin(), code_end());
    72              index(), receiver_location(), code_begin(), code_end());
    73 }
    73 }
    74 
    74 
    75 
    75 
    76 // -----------------------------------------------------------------------------------------
    76 // -----------------------------------------------------------------------------------------