Home | History | Annotate | Download | only in Analysis

Lines Matching refs:bbi

102     for (const_pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
103 bbi != bbe; ++bbi ) {
104 if (ProcessedPreds.insert(*bbi).second) {
105 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(*bbi,BB);
117 for ( succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
118 bbi != bbe; ++bbi ) {
119 if (ProcessedSuccs.insert(*bbi).second) {
120 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(BB,*bbi);
139 for ( succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
140 bbi != bbe; ++bbi ) {
141 printDebugInfo(*bbi);
263 succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
272 for (;bbi != bbe; ++bbi) {
273 if (ProcessedSuccs.insert(*bbi).second) {
274 DI.outWeight += ReadOrAssert(PI->getEdge(BB,*bbi));
342 for ( succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
343 bbi != bbe; ++bbi ) {
344 recurseBasicBlock(*bbi);