コード例 #1
0
ファイル: vtableStubs.cpp プロジェクト: BaHbKaTX/openjdk
void VtableStub::print_on(outputStream* st) const {
  st->print("vtable stub (index = %d, receiver_location = %d, code = [" INTPTR_FORMAT ", " INTPTR_FORMAT "[)",
             index(), receiver_location(), code_begin(), code_end());
}
コード例 #2
0
void VtableStub::print() {
  tty->print("vtable stub (index = %d, receiver_location = %d, code = [" INTPTR_FORMAT ", " INTPTR_FORMAT "[)",
	     index(), receiver_location(), code_begin(), code_end());
}