comparison src/share/vm/code/vtableStubs.hpp @ 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 c18cbe5936b8
children f95d63e2154a
comparison
equal deleted inserted replaced
1680:a64438a2b7e8 1681:126ea7725993
84 bool is_itable_stub() { return !_is_vtable_stub; } 84 bool is_itable_stub() { return !_is_vtable_stub; }
85 bool is_vtable_stub() { return _is_vtable_stub; } 85 bool is_vtable_stub() { return _is_vtable_stub; }
86 bool is_abstract_method_error(address epc) { return epc == code_begin()+_ame_offset; } 86 bool is_abstract_method_error(address epc) { return epc == code_begin()+_ame_offset; }
87 bool is_null_pointer_exception(address epc) { return epc == code_begin()+_npe_offset; } 87 bool is_null_pointer_exception(address epc) { return epc == code_begin()+_npe_offset; }
88 88
89 void print(); 89 void print_on(outputStream* st) const;
90 void print() const { print_on(tty); }
91
90 }; 92 };
91 93
92 94
93 // VtableStubs creates the code stubs for compiled calls through vtables. 95 // VtableStubs creates the code stubs for compiled calls through vtables.
94 // There is one stub per (vtable index, args_size) pair, and the stubs are 96 // There is one stub per (vtable index, args_size) pair, and the stubs are