Home | History | Annotate | Download | only in Analysis

Lines Matching refs:bbi

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