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

  /external/llvm/include/llvm/CodeGen/
SlotIndexes.h 352 /// Idx2MBBMap - Sorted list of pairs of index of first instruction
354 SmallVector<IdxMBBPair, 8> idx2MBBMap;
510 std::lower_bound(idx2MBBMap.begin(), idx2MBBMap.end(), index);
513 ((I != idx2MBBMap.end() && I->first > index) ||
514 (I == idx2MBBMap.end() && idx2MBBMap.size()>0)) ? (I-1): I;
516 assert(J != idx2MBBMap.end() && J->first <= index &&
525 std::lower_bound(idx2MBBMap.begin(), idx2MBBMap.end(), start)
    [all...]
  /external/llvm/lib/CodeGen/
SlotIndexes.cpp 36 idx2MBBMap.clear();
51 // FIXME: This can be simplified. The mi2iMap_, Idx2MBBMap, etc. should
58 assert(idx2MBBMap.empty() &&
67 idx2MBBMap.reserve(mf->size());
99 idx2MBBMap.push_back(IdxMBBPair(blockStartIndex, mbb));
102 // Sort the Idx2MBBMap
103 std::sort(idx2MBBMap.begin(), idx2MBBMap.end(), Idx2MBBCompare());

Completed in 471 milliseconds