comparison src/share/vm/code/vtableStubs.cpp @ 1681:126ea7725993

6953477: Increase portability and flexibility of building Hotspot Summary: A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail. Reviewed-by: phh, never, coleenp, dholmes
author bobv
date Tue, 03 Aug 2010 08:13:38 -0400
parents 2a47bd84841f
children 3e8fbc61cee8
comparison
equal deleted inserted replaced
1680:a64438a2b7e8 1681:126ea7725993
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 // -----------------------------------------------------------------------------------------