Lines Matching defs:ec
274 ExceptionCache* ec = exception_cache();
275 while (ec != NULL) {
276 if (ec->match_exception_with_space(exception)) {
277 return ec;
279 ec = ec->next();
381 void nmethod::remove_from_exception_cache(ExceptionCache* ec) {
385 // find the previous and next entry of ec
386 while (curr != ec) {
391 // now: curr == ec
408 ExceptionCache* ec = exception_cache();
409 while (ec != NULL) {
411 if ((ret_val = ec->match(exception,pc)) != NULL) {
414 ec = ec->next();
1399 ExceptionCache* ec = exception_cache();
1401 while(ec != NULL) {
1402 ExceptionCache* next = ec->next();
1403 delete ec;
1404 ec = next;
1614 ExceptionCache* ec = exception_cache();
1615 while (ec != NULL) {
1616 oop* ex_addr = (oop*)ec->exception_type_addr();
1618 ExceptionCache* next_ec = ec->next();
1621 remove_from_exception_cache(ec);
1623 ec = next_ec;
1729 ExceptionCache* ec = exception_cache();
1730 while(ec != NULL) {
1731 f->do_oop((oop*)ec->exception_type_addr());
1732 ec = ec->next();