Searched refs:bbi (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Analysis/
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 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 DProfileInfoLoaderPass.cpp117 for (succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
118 bbi != bbe; ++bbi) {
119 recurseBasicBlock(*bbi);
121 for (const_pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
122 bbi != bbe; ++bbi) {
123 recurseBasicBlock(*bbi);
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...]
/external/llvm/lib/Target/PTX/
H A DPTXFPRoundingModePass.cpp69 for (MachineFunction::iterator bbi = MF.begin(), bbe = MF.end(); bbi != bbe;
70 ++bbi) {
71 MachineBasicBlock &MBB = *bbi;

Completed in 81 milliseconds