It turns out most of the thumb2 instructions are not allowed to touch SP. The semanti...
[llvm/avr.git] / lib / Analysis / LiveValues.cpp
blob2bbe98aa5c2492733835b4063c0d9908d48497d8
1 //===- LiveValues.cpp - Liveness information for LLVM IR Values. ----------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the implementation for the LLVM IR Value liveness
11 // analysis pass.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/Analysis/LiveValues.h"
16 #include "llvm/Analysis/Dominators.h"
17 #include "llvm/Analysis/LoopInfo.h"
18 using namespace llvm;
20 FunctionPass *llvm::createLiveValuesPass() { return new LiveValues(); }
22 char LiveValues::ID = 0;
23 static RegisterPass<LiveValues>
24 X("live-values", "Value Liveness Analysis", false, true);
26 LiveValues::LiveValues() : FunctionPass(&ID) {}
28 void LiveValues::getAnalysisUsage(AnalysisUsage &AU) const {
29 AU.addRequired<DominatorTree>();
30 AU.addRequired<LoopInfo>();
31 AU.setPreservesAll();
34 bool LiveValues::runOnFunction(Function &F) {
35 DT = &getAnalysis<DominatorTree>();
36 LI = &getAnalysis<LoopInfo>();
38 // This pass' values are computed lazily, so there's nothing to do here.
40 return false;
43 void LiveValues::releaseMemory() {
44 Memos.clear();
47 /// isUsedInBlock - Test if the given value is used in the given block.
48 ///
49 bool LiveValues::isUsedInBlock(const Value *V, const BasicBlock *BB) {
50 Memo &M = getMemo(V);
51 return M.Used.count(BB);
54 /// isLiveThroughBlock - Test if the given value is known to be
55 /// live-through the given block, meaning that the block is properly
56 /// dominated by the value's definition, and there exists a block
57 /// reachable from it that contains a use. This uses a conservative
58 /// approximation that errs on the side of returning false.
59 ///
60 bool LiveValues::isLiveThroughBlock(const Value *V,
61 const BasicBlock *BB) {
62 Memo &M = getMemo(V);
63 return M.LiveThrough.count(BB);
66 /// isKilledInBlock - Test if the given value is known to be killed in
67 /// the given block, meaning that the block contains a use of the value,
68 /// and no blocks reachable from the block contain a use. This uses a
69 /// conservative approximation that errs on the side of returning false.
70 ///
71 bool LiveValues::isKilledInBlock(const Value *V, const BasicBlock *BB) {
72 Memo &M = getMemo(V);
73 return M.Killed.count(BB);
76 /// getMemo - Retrieve an existing Memo for the given value if one
77 /// is available, otherwise compute a new one.
78 ///
79 LiveValues::Memo &LiveValues::getMemo(const Value *V) {
80 DenseMap<const Value *, Memo>::iterator I = Memos.find(V);
81 if (I != Memos.end())
82 return I->second;
83 return compute(V);
86 /// getImmediateDominator - A handy utility for the specific DominatorTree
87 /// query that we need here.
88 ///
89 static const BasicBlock *getImmediateDominator(const BasicBlock *BB,
90 const DominatorTree *DT) {
91 DomTreeNode *Node = DT->getNode(const_cast<BasicBlock *>(BB))->getIDom();
92 return Node ? Node->getBlock() : 0;
95 /// compute - Compute a new Memo for the given value.
96 ///
97 LiveValues::Memo &LiveValues::compute(const Value *V) {
98 Memo &M = Memos[V];
100 // Determine the block containing the definition.
101 const BasicBlock *DefBB;
102 // Instructions define values with meaningful live ranges.
103 if (const Instruction *I = dyn_cast<Instruction>(V))
104 DefBB = I->getParent();
105 // Arguments can be analyzed as values defined in the entry block.
106 else if (const Argument *A = dyn_cast<Argument>(V))
107 DefBB = &A->getParent()->getEntryBlock();
108 // Constants and other things aren't meaningful here, so just
109 // return having computed an empty Memo so that we don't come
110 // here again. The assumption here is that client code won't
111 // be asking about such values very often.
112 else
113 return M;
115 // Determine if the value is defined inside a loop. This is used
116 // to track whether the value is ever used outside the loop, so
117 // it'll be set to null if the value is either not defined in a
118 // loop or used outside the loop in which it is defined.
119 const Loop *L = LI->getLoopFor(DefBB);
121 // Track whether the value is used anywhere outside of the block
122 // in which it is defined.
123 bool LiveOutOfDefBB = false;
125 // Examine each use of the value.
126 for (Value::use_const_iterator I = V->use_begin(), E = V->use_end();
127 I != E; ++I) {
128 const User *U = *I;
129 const BasicBlock *UseBB = cast<Instruction>(U)->getParent();
131 // Note the block in which this use occurs.
132 M.Used.insert(UseBB);
134 // If the use block doesn't have successors, the value can be
135 // considered killed.
136 if (succ_begin(UseBB) == succ_end(UseBB))
137 M.Killed.insert(UseBB);
139 // Observe whether the value is used outside of the loop in which
140 // it is defined. Switch to an enclosing loop if necessary.
141 for (; L; L = L->getParentLoop())
142 if (L->contains(UseBB))
143 break;
145 // Search for live-through blocks.
146 const BasicBlock *BB;
147 if (const PHINode *PHI = dyn_cast<PHINode>(U)) {
148 // For PHI nodes, start the search at the incoming block paired with the
149 // incoming value, which must be dominated by the definition.
150 unsigned Num = PHI->getIncomingValueNumForOperand(I.getOperandNo());
151 BB = PHI->getIncomingBlock(Num);
153 // A PHI-node use means the value is live-out of it's defining block
154 // even if that block also contains the only use.
155 LiveOutOfDefBB = true;
156 } else {
157 // Otherwise just start the search at the use.
158 BB = UseBB;
160 // Note if the use is outside the defining block.
161 LiveOutOfDefBB |= UseBB != DefBB;
164 // Climb the immediate dominator tree from the use to the definition
165 // and mark all intermediate blocks as live-through.
166 for (; BB != DefBB; BB = getImmediateDominator(BB, DT)) {
167 if (BB != UseBB && !M.LiveThrough.insert(BB))
168 break;
172 // If the value is defined inside a loop and is not live outside
173 // the loop, then each exit block of the loop in which the value
174 // is used is a kill block.
175 if (L) {
176 SmallVector<BasicBlock *, 4> ExitingBlocks;
177 L->getExitingBlocks(ExitingBlocks);
178 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
179 const BasicBlock *ExitingBlock = ExitingBlocks[i];
180 if (M.Used.count(ExitingBlock))
181 M.Killed.insert(ExitingBlock);
185 // If the value was never used outside the the block in which it was
186 // defined, it's killed in that block.
187 if (!LiveOutOfDefBB)
188 M.Killed.insert(DefBB);
190 return M;