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;
588 std::lower_bound(idx2MBBMap.begin(), idx2MBBMap.end(), index);
591 ((I != idx2MBBMap.end() && I->first > index) ||
592 (I == idx2MBBMap.end() && idx2MBBMap.size()>0)) ? (I-1): I;
594 assert(J != idx2MBBMap.end() && J->first <= index &&
603 std::lower_bound(idx2MBBMap.begin(), idx2MBBMap.end(), start);
606 while (itr != idx2MBBMap.end()) {
623 std::lower_bound(idx2MBBMap.begin(), idx2MBBMap.end(), start);
625 if (itr == idx2MBBMap.end()) {
738 idx2MBBMap.push_back(IdxMBBPair(startIdx, mbb));
741 std::sort(idx2MBBMap.begin(), idx2MBBMap.end(), Idx2MBBCompare());