src/share/vm/code/nmethod.cpp

changeset 1685
3f5b7efb9642
parent 1641
87684f1a88b5
child 1688
f70b0d9ab095
equal deleted inserted replaced
1647:c028504fdaa6 1685:3f5b7efb9642
2008 method()->print_codes(); 2008 method()->print_codes();
2009 print_code(); 2009 print_code();
2010 print_pcs(); 2010 print_pcs();
2011 } 2011 }
2012 #endif 2012 #endif
2013 guarantee(cont_offset != 0, "unhandled implicit exception in compiled code"); 2013 if (cont_offset == 0) {
2014 // Let the normal error handling report the exception
2015 return NULL;
2016 }
2014 return instructions_begin() + cont_offset; 2017 return instructions_begin() + cont_offset;
2015 } 2018 }
2016 2019
2017 2020
2018 2021

mercurial