Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DStackLifetime.cpp47 return BlockInstRange.find(I->getParent()) != BlockInstRange.end(); in isReachable()
53 auto ItBB = BlockInstRange.find(BB); in isAliveAfter()
54 assert(ItBB != BlockInstRange.end() && "Unreachable is not expected"); in isAliveAfter()
139 BlockInstRange[BB] = std::make_pair(BBStart, Instructions.size()); in collectMarkers()
176 BlockInstRange[BB] = std::make_pair(BBStart, Instructions.size()); in collectMarkers()
238 std::tie(BBStart, BBEnd) = BlockInstRange[BB]; in calculateLiveIntervals()
294 auto BlockRange = BlockInstRange.find(BB)->getSecond(); in dumpBlockLiveness()
363 auto ItBB = SL.BlockInstRange.find(BB); in emitBasicBlockStartAnnot()
364 if (ItBB == SL.BlockInstRange.end()) in emitBasicBlockStartAnnot()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DStackLifetime.h103 DenseMap<const BasicBlock *, std::pair<unsigned, unsigned>> BlockInstRange; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp640 DenseMap<const BasicBlock *, std::pair<unsigned, unsigned>> BlockInstRange; member in __anon0afe5c7c0211::NewGVN
998 return BlockInstRange.lookup(P1.second).first < in sortPHIOps()
999 BlockInstRange.lookup(P2.second).first; in sortPHIOps()
2404 const auto &InstRange = BlockInstRange.lookup(To); in updateReachableEdge()
2947 BlockInstRange.clear(); in cleanupTables()
3357 const auto &CurrInstRange = BlockInstRange.lookup(CurrBlock); in iterateTouchedInstructions()
3429 BlockInstRange.insert({B, BlockRange}); in runGVN()
3441 const auto &InstRange = BlockInstRange.lookup(&F.getEntryBlock()); in runGVN()