Home
last modified time | relevance | path

Searched refs:LiveInBlocks (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DSSAUpdaterBulk.cpp95 SmallPtrSetImpl<BasicBlock *> &LiveInBlocks, in ComputeLiveInBlocks() argument
110 if (!LiveInBlocks.insert(BB).second) in ComputeLiveInBlocks()
151 SmallPtrSet<BasicBlock *, 32> LiveInBlocks; in RewriteAllUses() local
152 ComputeLiveInBlocks(UsingBlocks, DefBlocks, LiveInBlocks, PredCache); in RewriteAllUses()
154 IDF.setLiveInBlocks(LiveInBlocks); in RewriteAllUses()
H A DPromoteMemoryToRegister.cpp303 SmallPtrSetImpl<BasicBlock *> &LiveInBlocks);
628 SmallPtrSet<BasicBlock *, 32> LiveInBlocks; in run() local
629 ComputeLiveInBlocks(AI, Info, DefBlocks, LiveInBlocks); in run()
635 IDF.setLiveInBlocks(LiveInBlocks); in run()
797 SmallPtrSetImpl<BasicBlock *> &LiveInBlocks) { in ComputeLiveInBlocks() argument
846 if (!LiveInBlocks.insert(BB).second) in ComputeLiveInBlocks()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DIteratedDominanceFrontier.h72 LiveInBlocks = &Blocks; in setLiveInBlocks()
79 LiveInBlocks = nullptr; in resetLiveInBlocks()
95 const SmallPtrSetImpl<BasicBlock *> *LiveInBlocks; variable
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DIteratedDominanceFrontier.cpp81 if (useLiveIn && !LiveInBlocks->count(SuccBB)) in calculate()