comparison src/share/vm/code/nmethod.cpp @ 1250:3f5b7efb9642

6920293: OptimizeStringConcat causing core dumps Reviewed-by: kvn, twisti
author never
date Fri, 05 Feb 2010 11:07:40 -0800
parents 87684f1a88b5
children f70b0d9ab095
comparison
equal deleted inserted replaced
1212:c028504fdaa6 1250: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