Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:idx2MBBMap

351     /// Idx2MBBMap - Sorted list of pairs of index of first instruction
353 SmallVector<IdxMBBPair, 8> idx2MBBMap;
506 /// Iterator over the idx2MBBMap (sorted pairs of slot index of basic block
513 return std::lower_bound(I, idx2MBBMap.end(), To);
519 return advanceMBBIndex(idx2MBBMap.begin(), Idx);
522 /// Returns an iterator for the begin of the idx2MBBMap.
524 return idx2MBBMap.begin();
527 /// Return an iterator for the end of the idx2MBBMap.
529 return idx2MBBMap.end();
541 (I == MBBIndexEnd() && !idx2MBBMap.empty())) ? std::prev(I) : I;
674 idx2MBBMap.push_back(IdxMBBPair(startIdx, mbb));
677 std::sort(idx2MBBMap.begin(), idx2MBBMap.end(), Idx2MBBCompare());