hotspot/src/share/vm/code/exceptionHandlerTable.cpp
changeset 5403 6b0dd9c75dde
parent 1 489c9b5090e2
child 5547 f4b087cbb361
equal deleted inserted replaced
5402:c51fd0c1d005 5403:6b0dd9c75dde
   219 
   219 
   220 void ImplicitExceptionTable::verify(nmethod *nm) const {
   220 void ImplicitExceptionTable::verify(nmethod *nm) const {
   221   for (uint i = 0; i < len(); i++) {
   221   for (uint i = 0; i < len(); i++) {
   222      if ((*adr(i) > (unsigned int)nm->code_size()) ||
   222      if ((*adr(i) > (unsigned int)nm->code_size()) ||
   223          (*(adr(i)+1) > (unsigned int)nm->code_size()))
   223          (*(adr(i)+1) > (unsigned int)nm->code_size()))
   224        fatal1("Invalid offset in ImplicitExceptionTable at %lx", _data);
   224        fatal(err_msg("Invalid offset in ImplicitExceptionTable at " PTR_FORMAT, _data));
   225   }
   225   }
   226 }
   226 }