Searched defs:bbi (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Analysis/
H A DProfileEstimatorPass.cpp131 for ( pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
132 bbi != bbe; ++bbi ) {
134 Edge edge = getEdge(*bbi,BB);
136 if (ProcessedPreds.insert(*bbi).second) {
142 if (BBisHeader && BBLoop->contains(*bbi)) {
263 succ_iterator bbi = succ_begin(BB), bbe = succ_end(BB); local
266 if (bbi == bbe) {
271 for ( ; bbi != bbe; ++bbi ) {
[all...]
H A DProfileVerifierPass.cpp101 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);
262 succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB); local
[all...]
H A DProfileInfo.cpp514 const_pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB); local
515 if (bbi==bbe) {
519 for (;bbi != bbe; ++bbi) {
520 if (pred_visited.insert(*bbi)) {
521 Edge e = getEdge(*bbi,BB);
586 const_pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB); local
587 if (bbi == bbe) {
590 for( ; bbi != bbe; ++bbi ) {
[all...]

Completed in 156 milliseconds