comparison src/share/vm/opto/library_call.cpp @ 1748:3e8fbc61cee8

6978355: renaming for 6961697 Summary: This is the renaming part of 6961697 to keep the actual changes small for review. Reviewed-by: kvn, never
author twisti
date Wed, 25 Aug 2010 05:27:54 -0700
parents 4b29a725c43c
children 75588558f1bf
comparison
equal deleted inserted replaced
1747:53dbe853fb3a 1748:3e8fbc61cee8
4960 // observed, then there can be no objection to the trap. 4960 // observed, then there can be no objection to the trap.
4961 bool found_trap = false; 4961 bool found_trap = false;
4962 for (DUIterator_Fast jmax, j = not_ctl->fast_outs(jmax); j < jmax; j++) { 4962 for (DUIterator_Fast jmax, j = not_ctl->fast_outs(jmax); j < jmax; j++) {
4963 Node* obs = not_ctl->fast_out(j); 4963 Node* obs = not_ctl->fast_out(j);
4964 if (obs->in(0) == not_ctl && obs->is_Call() && 4964 if (obs->in(0) == not_ctl && obs->is_Call() &&
4965 (obs->as_Call()->entry_point() == 4965 (obs->as_Call()->entry_point() == SharedRuntime::uncommon_trap_blob()->entry_point())) {
4966 SharedRuntime::uncommon_trap_blob()->instructions_begin())) {
4967 found_trap = true; break; 4966 found_trap = true; break;
4968 } 4967 }
4969 } 4968 }
4970 if (found_trap) { 4969 if (found_trap) {
4971 ctl = iff->in(0); // This test feeds a harmless uncommon trap. 4970 ctl = iff->in(0); // This test feeds a harmless uncommon trap.