Home
last modified time | relevance | path

Searched refs:BlockInstRange (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DStackLifetime.cpp42 return BlockInstRange.find(I->getParent()) != BlockInstRange.end(); in isReachable()
48 auto ItBB = BlockInstRange.find(BB); in isAliveAfter()
49 assert(ItBB != BlockInstRange.end() && "Unreachable is not expected"); in isAliveAfter()
133 BlockInstRange[BB] = std::make_pair(BBStart, Instructions.size()); in collectMarkers()
170 BlockInstRange[BB] = std::make_pair(BBStart, Instructions.size()); in collectMarkers()
249 std::tie(BBStart, BBEnd) = BlockInstRange[BB]; in calculateLiveIntervals()
303 auto BlockRange = BlockInstRange.find(BB)->getSecond(); in dumpBlockLiveness()
372 auto ItBB = SL.BlockInstRange.find(BB); in emitBasicBlockStartAnnot()
373 if (ItBB == SL.BlockInstRange.end()) in emitBasicBlockStartAnnot()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DStackLifetime.h102 DenseMap<const BasicBlock *, std::pair<unsigned, unsigned>> BlockInstRange; variable
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp639 DenseMap<const BasicBlock *, std::pair<unsigned, unsigned>> BlockInstRange; member in __anon1f4f44df0211::NewGVN
997 return BlockInstRange.lookup(P1.second).first < in sortPHIOps()
998 BlockInstRange.lookup(P2.second).first; in sortPHIOps()
2434 const auto &InstRange = BlockInstRange.lookup(To); in updateReachableEdge()
2976 BlockInstRange.clear(); in cleanupTables()
3387 const auto &CurrInstRange = BlockInstRange.lookup(CurrBlock); in iterateTouchedInstructions()
3459 BlockInstRange.insert({B, BlockRange}); in runGVN()
3471 const auto &InstRange = BlockInstRange.lookup(&F.getEntryBlock()); in runGVN()