HomeSort by relevance Sort by last modified time
    Searched refs:idx2MBBMap (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
SlotIndexes.cpp 36 idx2MBBMap.clear();
51 // FIXME: This can be simplified. The mi2iMap_, Idx2MBBMap, etc. should
58 assert(idx2MBBMap.empty() &&
68 idx2MBBMap.reserve(mf->size());
102 idx2MBBMap.push_back(IdxMBBPair(blockStartIndex, mbb));
105 // Sort the Idx2MBBMap
106 std::sort(idx2MBBMap.begin(), idx2MBBMap.end(), Idx2MBBCompare());
  /external/llvm/include/llvm/CodeGen/
SlotIndexes.h 368 /// Idx2MBBMap - Sorted list of pairs of index of first instruction
370 SmallVector<IdxMBBPair, 8> idx2MBBMap;
530 std::lower_bound(idx2MBBMap.begin(), idx2MBBMap.end(), index);
533 ((I != idx2MBBMap.end() && I->first > index) ||
534 (I == idx2MBBMap.end() && idx2MBBMap.size()>0)) ? (I-1): I;
536 assert(J != idx2MBBMap.end() && J->first <= index &&
545 std::lower_bound(idx2MBBMap.begin(), idx2MBBMap.end(), start)
    [all...]

Completed in 53 milliseconds