From: Daniel Berlin Date: Sun, 7 Feb 2016 01:52:19 +0000 (+0000) Subject: Compute live-in for MemorySSA X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b51a2957dc26f39ef64cc3baf59f29aec8f2a5e;p=platform%2Fupstream%2Fllvm.git Compute live-in for MemorySSA llvm-svn: 260014 --- diff --git a/llvm/lib/Transforms/Utils/MemorySSA.cpp b/llvm/lib/Transforms/Utils/MemorySSA.cpp index 81c8737..9f72a97 100644 --- a/llvm/lib/Transforms/Utils/MemorySSA.cpp +++ b/llvm/lib/Transforms/Utils/MemorySSA.cpp @@ -249,10 +249,11 @@ MemorySSAWalker *MemorySSA::buildMemorySSA(AliasAnalysis *AA, // could just look up the memory access for every possible instruction in the // stream. SmallPtrSet DefiningBlocks; - + SmallPtrSet DefUseBlocks; // Go through each block, figure out where defs occur, and chain together all // the accesses. for (BasicBlock &B : F) { + bool InsertIntoDefUse = false; bool InsertIntoDef = false; AccessListType *Accesses = nullptr; for (Instruction &I : B) { @@ -261,17 +262,56 @@ MemorySSAWalker *MemorySSA::buildMemorySSA(AliasAnalysis *AA, continue; if (isa(MA)) InsertIntoDef = true; + else if (isa(MA)) + InsertIntoDefUse = true; + if (!Accesses) Accesses = getOrCreateAccessList(&B); Accesses->push_back(MA); } if (InsertIntoDef) DefiningBlocks.insert(&B); + if (InsertIntoDefUse) + DefUseBlocks.insert(&B); + } + + // Compute live-in. + // Live in is normally defined as "all the blocks on the path from each def to + // each of it's uses". + // MemoryDef's are implicit uses of previous state, so they are also uses. + // This means we don't really have def-only instructions. The only + // MemoryDef's that are not really uses are those that are of the LiveOnEntry + // variable (because LiveOnEntry can reach anywhere, and every def is a + // must-kill of LiveOnEntry). + // In theory, you could precisely compute live-in by using alias-analysis to + // disambiguate defs and uses to see which really pair up with which. + // In practice, this would be really expensive and difficult. So we simply + // assume all defs are also uses that need to be kept live. + // Because of this, the end result of this live-in computation will be "the + // entire set of basic blocks that reach any use". + + SmallPtrSet LiveInBlocks; + SmallVector LiveInBlockWorklist(DefUseBlocks.begin(), + DefUseBlocks.end()); + // Now that we have a set of blocks where a value is live-in, recursively add + // predecessors until we find the full region the value is live. + while (!LiveInBlockWorklist.empty()) { + BasicBlock *BB = LiveInBlockWorklist.pop_back_val(); + + // The block really is live in here, insert it into the set. If already in + // the set, then it has already been processed. + if (!LiveInBlocks.insert(BB).second) + continue; + + // Since the value is live into BB, it is either defined in a predecessor or + // live into it to. + LiveInBlockWorklist.append(pred_begin(BB), pred_end(BB)); } // Determine where our MemoryPhi's should go IDFCalculator IDFs(*DT); IDFs.setDefiningBlocks(DefiningBlocks); + IDFs.setLiveInBlocks(LiveInBlocks); SmallVector IDFBlocks; IDFs.calculate(IDFBlocks);