Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 1 | //===- AliasAnalysis.cpp - Generic Alias Analysis Interface Implementation -==// |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements the generic AliasAnalysis interface which is used as the |
| 11 | // common interface used by all clients and implementations of alias analysis. |
| 12 | // |
| 13 | // This file also implements the default version of the AliasAnalysis interface |
| 14 | // that is to be used when no other implementation is specified. This does some |
| 15 | // simple tests that detect obvious cases: two different global pointers cannot |
| 16 | // alias, a global cannot alias a malloc, two different mallocs cannot alias, |
| 17 | // etc. |
| 18 | // |
| 19 | // This alias analysis implementation really isn't very good for anything, but |
| 20 | // it is very fast, and makes a nice clean default implementation. Because it |
| 21 | // handles lots of little corner cases, other, more complex, alias analysis |
| 22 | // implementations may choose to rely on this pass to resolve these simple and |
| 23 | // easy cases. |
| 24 | // |
| 25 | //===----------------------------------------------------------------------===// |
| 26 | |
Chris Lattner | d501c13 | 2003-02-26 19:41:54 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/AliasAnalysis.h" |
Reid Spencer | 6df60a9 | 2006-06-07 20:00:19 +0000 | [diff] [blame] | 28 | #include "llvm/Pass.h" |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 29 | #include "llvm/BasicBlock.h" |
Duncan Sands | dff6710 | 2007-12-01 07:51:45 +0000 | [diff] [blame] | 30 | #include "llvm/Function.h" |
Owen Anderson | cd89525 | 2009-02-03 06:27:22 +0000 | [diff] [blame] | 31 | #include "llvm/IntrinsicInst.h" |
Misha Brukman | 47b14a4 | 2004-07-29 17:30:56 +0000 | [diff] [blame] | 32 | #include "llvm/Instructions.h" |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 33 | #include "llvm/LLVMContext.h" |
Chris Lattner | 5b3a455 | 2005-03-17 15:38:16 +0000 | [diff] [blame] | 34 | #include "llvm/Type.h" |
Chris Lattner | 14ac877 | 2003-02-26 19:26:51 +0000 | [diff] [blame] | 35 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 992860c | 2004-03-15 04:07:29 +0000 | [diff] [blame] | 36 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 37 | |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 38 | // Register the AliasAnalysis interface, providing a nice name to refer to. |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 39 | INITIALIZE_ANALYSIS_GROUP(AliasAnalysis, "Alias Analysis", NoAA) |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 40 | char AliasAnalysis::ID = 0; |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 41 | |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 42 | //===----------------------------------------------------------------------===// |
| 43 | // Default chaining methods |
| 44 | //===----------------------------------------------------------------------===// |
| 45 | |
| 46 | AliasAnalysis::AliasResult |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 47 | AliasAnalysis::alias(const Location &LocA, const Location &LocB) { |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 48 | assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!"); |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 49 | return AA->alias(LocA, LocB); |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 50 | } |
| 51 | |
Dan Gohman | a25e5db | 2010-11-08 16:45:26 +0000 | [diff] [blame] | 52 | bool AliasAnalysis::pointsToConstantMemory(const Location &Loc, |
| 53 | bool OrLocal) { |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 54 | assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!"); |
Dan Gohman | a25e5db | 2010-11-08 16:45:26 +0000 | [diff] [blame] | 55 | return AA->pointsToConstantMemory(Loc, OrLocal); |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 56 | } |
| 57 | |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 58 | void AliasAnalysis::deleteValue(Value *V) { |
| 59 | assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!"); |
| 60 | AA->deleteValue(V); |
| 61 | } |
| 62 | |
| 63 | void AliasAnalysis::copyValue(Value *From, Value *To) { |
| 64 | assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!"); |
| 65 | AA->copyValue(From, To); |
| 66 | } |
| 67 | |
Owen Anderson | ab6acc6 | 2011-01-03 21:38:41 +0000 | [diff] [blame] | 68 | void AliasAnalysis::addEscapingUse(Use &U) { |
| 69 | assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!"); |
| 70 | AA->addEscapingUse(U); |
| 71 | } |
| 72 | |
| 73 | |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 74 | AliasAnalysis::ModRefResult |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 75 | AliasAnalysis::getModRefInfo(ImmutableCallSite CS, |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 76 | const Location &Loc) { |
Dan Gohman | 852dda4 | 2010-10-25 16:28:57 +0000 | [diff] [blame] | 77 | assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!"); |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 78 | |
| 79 | ModRefBehavior MRB = getModRefBehavior(CS); |
| 80 | if (MRB == DoesNotAccessMemory) |
| 81 | return NoModRef; |
| 82 | |
| 83 | ModRefResult Mask = ModRef; |
Dan Gohman | c07661c | 2010-11-09 20:06:55 +0000 | [diff] [blame] | 84 | if (onlyReadsMemory(MRB)) |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 85 | Mask = Ref; |
Dan Gohman | c07661c | 2010-11-09 20:06:55 +0000 | [diff] [blame] | 86 | |
Dan Gohman | 68a6056 | 2010-11-10 18:17:28 +0000 | [diff] [blame] | 87 | if (onlyAccessesArgPointees(MRB)) { |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 88 | bool doesAlias = false; |
Dan Gohman | bddc1ca | 2011-04-27 18:39:03 +0000 | [diff] [blame] | 89 | if (doesAccessArgPointees(MRB)) { |
| 90 | MDNode *CSTag = CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa); |
Dan Gohman | 68a6056 | 2010-11-10 18:17:28 +0000 | [diff] [blame] | 91 | for (ImmutableCallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end(); |
Dan Gohman | bddc1ca | 2011-04-27 18:39:03 +0000 | [diff] [blame] | 92 | AI != AE; ++AI) { |
| 93 | const Value *Arg = *AI; |
| 94 | if (!Arg->getType()->isPointerTy()) |
| 95 | continue; |
| 96 | Location CSLoc(Arg, UnknownSize, CSTag); |
| 97 | if (!isNoAlias(CSLoc, Loc)) { |
Dan Gohman | 68a6056 | 2010-11-10 18:17:28 +0000 | [diff] [blame] | 98 | doesAlias = true; |
| 99 | break; |
| 100 | } |
Dan Gohman | bddc1ca | 2011-04-27 18:39:03 +0000 | [diff] [blame] | 101 | } |
| 102 | } |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 103 | if (!doesAlias) |
| 104 | return NoModRef; |
| 105 | } |
| 106 | |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 107 | // If Loc is a constant memory location, the call definitely could not |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 108 | // modify the memory location. |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 109 | if ((Mask & Mod) && pointsToConstantMemory(Loc)) |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 110 | Mask = ModRefResult(Mask & ~Mod); |
| 111 | |
Dan Gohman | e46a388 | 2010-10-25 16:29:52 +0000 | [diff] [blame] | 112 | // If this is the end of the chain, don't forward. |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 113 | if (!AA) return Mask; |
| 114 | |
| 115 | // Otherwise, fall back to the next AA in the chain. But we can merge |
| 116 | // in any mask we've managed to compute. |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 117 | return ModRefResult(AA->getModRefInfo(CS, Loc) & Mask); |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | AliasAnalysis::ModRefResult |
Dan Gohman | 79fca6f | 2010-08-03 21:48:53 +0000 | [diff] [blame] | 121 | AliasAnalysis::getModRefInfo(ImmutableCallSite CS1, ImmutableCallSite CS2) { |
Dan Gohman | 852dda4 | 2010-10-25 16:28:57 +0000 | [diff] [blame] | 122 | assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!"); |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 123 | |
| 124 | // If CS1 or CS2 are readnone, they don't interact. |
| 125 | ModRefBehavior CS1B = getModRefBehavior(CS1); |
| 126 | if (CS1B == DoesNotAccessMemory) return NoModRef; |
| 127 | |
| 128 | ModRefBehavior CS2B = getModRefBehavior(CS2); |
| 129 | if (CS2B == DoesNotAccessMemory) return NoModRef; |
| 130 | |
| 131 | // If they both only read from memory, there is no dependence. |
Dan Gohman | c07661c | 2010-11-09 20:06:55 +0000 | [diff] [blame] | 132 | if (onlyReadsMemory(CS1B) && onlyReadsMemory(CS2B)) |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 133 | return NoModRef; |
| 134 | |
| 135 | AliasAnalysis::ModRefResult Mask = ModRef; |
| 136 | |
| 137 | // If CS1 only reads memory, the only dependence on CS2 can be |
| 138 | // from CS1 reading memory written by CS2. |
Dan Gohman | c07661c | 2010-11-09 20:06:55 +0000 | [diff] [blame] | 139 | if (onlyReadsMemory(CS1B)) |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 140 | Mask = ModRefResult(Mask & Ref); |
| 141 | |
| 142 | // If CS2 only access memory through arguments, accumulate the mod/ref |
| 143 | // information from CS1's references to the memory referenced by |
| 144 | // CS2's arguments. |
Dan Gohman | 68a6056 | 2010-11-10 18:17:28 +0000 | [diff] [blame] | 145 | if (onlyAccessesArgPointees(CS2B)) { |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 146 | AliasAnalysis::ModRefResult R = NoModRef; |
Dan Gohman | bddc1ca | 2011-04-27 18:39:03 +0000 | [diff] [blame] | 147 | if (doesAccessArgPointees(CS2B)) { |
| 148 | MDNode *CS2Tag = CS2.getInstruction()->getMetadata(LLVMContext::MD_tbaa); |
Dan Gohman | 68a6056 | 2010-11-10 18:17:28 +0000 | [diff] [blame] | 149 | for (ImmutableCallSite::arg_iterator |
| 150 | I = CS2.arg_begin(), E = CS2.arg_end(); I != E; ++I) { |
Dan Gohman | bddc1ca | 2011-04-27 18:39:03 +0000 | [diff] [blame] | 151 | const Value *Arg = *I; |
| 152 | if (!Arg->getType()->isPointerTy()) |
| 153 | continue; |
| 154 | Location CS2Loc(Arg, UnknownSize, CS2Tag); |
| 155 | R = ModRefResult((R | getModRefInfo(CS1, CS2Loc)) & Mask); |
Dan Gohman | 68a6056 | 2010-11-10 18:17:28 +0000 | [diff] [blame] | 156 | if (R == Mask) |
| 157 | break; |
| 158 | } |
Dan Gohman | bddc1ca | 2011-04-27 18:39:03 +0000 | [diff] [blame] | 159 | } |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 160 | return R; |
| 161 | } |
| 162 | |
| 163 | // If CS1 only accesses memory through arguments, check if CS2 references |
| 164 | // any of the memory referenced by CS1's arguments. If not, return NoModRef. |
Dan Gohman | 68a6056 | 2010-11-10 18:17:28 +0000 | [diff] [blame] | 165 | if (onlyAccessesArgPointees(CS1B)) { |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 166 | AliasAnalysis::ModRefResult R = NoModRef; |
Dan Gohman | bddc1ca | 2011-04-27 18:39:03 +0000 | [diff] [blame] | 167 | if (doesAccessArgPointees(CS1B)) { |
| 168 | MDNode *CS1Tag = CS1.getInstruction()->getMetadata(LLVMContext::MD_tbaa); |
Dan Gohman | 68a6056 | 2010-11-10 18:17:28 +0000 | [diff] [blame] | 169 | for (ImmutableCallSite::arg_iterator |
Dan Gohman | bddc1ca | 2011-04-27 18:39:03 +0000 | [diff] [blame] | 170 | I = CS1.arg_begin(), E = CS1.arg_end(); I != E; ++I) { |
| 171 | const Value *Arg = *I; |
| 172 | if (!Arg->getType()->isPointerTy()) |
| 173 | continue; |
| 174 | Location CS1Loc(Arg, UnknownSize, CS1Tag); |
| 175 | if (getModRefInfo(CS2, CS1Loc) != NoModRef) { |
Dan Gohman | 68a6056 | 2010-11-10 18:17:28 +0000 | [diff] [blame] | 176 | R = Mask; |
| 177 | break; |
| 178 | } |
Dan Gohman | bddc1ca | 2011-04-27 18:39:03 +0000 | [diff] [blame] | 179 | } |
| 180 | } |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 181 | if (R == NoModRef) |
| 182 | return R; |
| 183 | } |
| 184 | |
Dan Gohman | e46a388 | 2010-10-25 16:29:52 +0000 | [diff] [blame] | 185 | // If this is the end of the chain, don't forward. |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 186 | if (!AA) return Mask; |
| 187 | |
| 188 | // Otherwise, fall back to the next AA in the chain. But we can merge |
| 189 | // in any mask we've managed to compute. |
| 190 | return ModRefResult(AA->getModRefInfo(CS1, CS2) & Mask); |
| 191 | } |
| 192 | |
| 193 | AliasAnalysis::ModRefBehavior |
| 194 | AliasAnalysis::getModRefBehavior(ImmutableCallSite CS) { |
Dan Gohman | 852dda4 | 2010-10-25 16:28:57 +0000 | [diff] [blame] | 195 | assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!"); |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 196 | |
| 197 | ModRefBehavior Min = UnknownModRefBehavior; |
| 198 | |
| 199 | // Call back into the alias analysis with the other form of getModRefBehavior |
| 200 | // to see if it can give a better response. |
| 201 | if (const Function *F = CS.getCalledFunction()) |
| 202 | Min = getModRefBehavior(F); |
| 203 | |
Dan Gohman | e46a388 | 2010-10-25 16:29:52 +0000 | [diff] [blame] | 204 | // If this is the end of the chain, don't forward. |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 205 | if (!AA) return Min; |
| 206 | |
| 207 | // Otherwise, fall back to the next AA in the chain. But we can merge |
| 208 | // in any result we've managed to compute. |
Dan Gohman | 42c31a7 | 2010-11-10 01:02:18 +0000 | [diff] [blame] | 209 | return ModRefBehavior(AA->getModRefBehavior(CS) & Min); |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | AliasAnalysis::ModRefBehavior |
| 213 | AliasAnalysis::getModRefBehavior(const Function *F) { |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 214 | assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!"); |
Dan Gohman | 6ce9d8b | 2010-08-06 01:25:49 +0000 | [diff] [blame] | 215 | return AA->getModRefBehavior(F); |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 216 | } |
| 217 | |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 218 | //===----------------------------------------------------------------------===// |
| 219 | // AliasAnalysis non-virtual helper method implementation |
| 220 | //===----------------------------------------------------------------------===// |
| 221 | |
Dan Gohman | 6d8eb15 | 2010-11-11 21:50:19 +0000 | [diff] [blame] | 222 | AliasAnalysis::Location AliasAnalysis::getLocation(const LoadInst *LI) { |
| 223 | return Location(LI->getPointerOperand(), |
| 224 | getTypeStoreSize(LI->getType()), |
| 225 | LI->getMetadata(LLVMContext::MD_tbaa)); |
| 226 | } |
| 227 | |
| 228 | AliasAnalysis::Location AliasAnalysis::getLocation(const StoreInst *SI) { |
| 229 | return Location(SI->getPointerOperand(), |
| 230 | getTypeStoreSize(SI->getValueOperand()->getType()), |
| 231 | SI->getMetadata(LLVMContext::MD_tbaa)); |
| 232 | } |
| 233 | |
| 234 | AliasAnalysis::Location AliasAnalysis::getLocation(const VAArgInst *VI) { |
| 235 | return Location(VI->getPointerOperand(), |
| 236 | UnknownSize, |
| 237 | VI->getMetadata(LLVMContext::MD_tbaa)); |
| 238 | } |
| 239 | |
Chris Lattner | e90c5cb | 2010-11-21 07:51:27 +0000 | [diff] [blame] | 240 | |
| 241 | AliasAnalysis::Location |
| 242 | AliasAnalysis::getLocationForSource(const MemTransferInst *MTI) { |
| 243 | uint64_t Size = UnknownSize; |
| 244 | if (ConstantInt *C = dyn_cast<ConstantInt>(MTI->getLength())) |
| 245 | Size = C->getValue().getZExtValue(); |
| 246 | |
Dan Gohman | 387f28a | 2010-12-16 02:51:19 +0000 | [diff] [blame] | 247 | // memcpy/memmove can have TBAA tags. For memcpy, they apply |
| 248 | // to both the source and the destination. |
| 249 | MDNode *TBAATag = MTI->getMetadata(LLVMContext::MD_tbaa); |
| 250 | |
| 251 | return Location(MTI->getRawSource(), Size, TBAATag); |
Chris Lattner | e90c5cb | 2010-11-21 07:51:27 +0000 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | AliasAnalysis::Location |
Chris Lattner | 9dc9e81 | 2010-11-30 01:48:20 +0000 | [diff] [blame] | 255 | AliasAnalysis::getLocationForDest(const MemIntrinsic *MTI) { |
Chris Lattner | e90c5cb | 2010-11-21 07:51:27 +0000 | [diff] [blame] | 256 | uint64_t Size = UnknownSize; |
| 257 | if (ConstantInt *C = dyn_cast<ConstantInt>(MTI->getLength())) |
| 258 | Size = C->getValue().getZExtValue(); |
Dan Gohman | 387f28a | 2010-12-16 02:51:19 +0000 | [diff] [blame] | 259 | |
| 260 | // memcpy/memmove can have TBAA tags. For memcpy, they apply |
| 261 | // to both the source and the destination. |
| 262 | MDNode *TBAATag = MTI->getMetadata(LLVMContext::MD_tbaa); |
Chris Lattner | e90c5cb | 2010-11-21 07:51:27 +0000 | [diff] [blame] | 263 | |
Dan Gohman | 387f28a | 2010-12-16 02:51:19 +0000 | [diff] [blame] | 264 | return Location(MTI->getRawDest(), Size, TBAATag); |
Chris Lattner | e90c5cb | 2010-11-21 07:51:27 +0000 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | |
| 268 | |
Chris Lattner | 14ac877 | 2003-02-26 19:26:51 +0000 | [diff] [blame] | 269 | AliasAnalysis::ModRefResult |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 270 | AliasAnalysis::getModRefInfo(const LoadInst *L, const Location &Loc) { |
Dan Gohman | b9db52d | 2010-08-06 18:11:28 +0000 | [diff] [blame] | 271 | // Be conservative in the face of volatile. |
| 272 | if (L->isVolatile()) |
| 273 | return ModRef; |
| 274 | |
Dan Gohman | 14a498a | 2010-08-03 17:27:43 +0000 | [diff] [blame] | 275 | // If the load address doesn't alias the given address, it doesn't read |
| 276 | // or write the specified memory. |
Dan Gohman | 6d8eb15 | 2010-11-11 21:50:19 +0000 | [diff] [blame] | 277 | if (!alias(getLocation(L), Loc)) |
Dan Gohman | 14a498a | 2010-08-03 17:27:43 +0000 | [diff] [blame] | 278 | return NoModRef; |
| 279 | |
Dan Gohman | 14a498a | 2010-08-03 17:27:43 +0000 | [diff] [blame] | 280 | // Otherwise, a load just reads. |
| 281 | return Ref; |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Chris Lattner | 14ac877 | 2003-02-26 19:26:51 +0000 | [diff] [blame] | 284 | AliasAnalysis::ModRefResult |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 285 | AliasAnalysis::getModRefInfo(const StoreInst *S, const Location &Loc) { |
Dan Gohman | b9db52d | 2010-08-06 18:11:28 +0000 | [diff] [blame] | 286 | // Be conservative in the face of volatile. |
| 287 | if (S->isVolatile()) |
| 288 | return ModRef; |
| 289 | |
Dan Gohman | 9b8639c | 2010-08-06 18:10:45 +0000 | [diff] [blame] | 290 | // If the store address cannot alias the pointer in question, then the |
| 291 | // specified memory cannot be modified by the store. |
Dan Gohman | 6d8eb15 | 2010-11-11 21:50:19 +0000 | [diff] [blame] | 292 | if (!alias(getLocation(S), Loc)) |
Chris Lattner | f4d904d | 2004-01-30 22:16:42 +0000 | [diff] [blame] | 293 | return NoModRef; |
| 294 | |
| 295 | // If the pointer is a pointer to constant memory, then it could not have been |
| 296 | // modified by this store. |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 297 | if (pointsToConstantMemory(Loc)) |
Dan Gohman | 14a498a | 2010-08-03 17:27:43 +0000 | [diff] [blame] | 298 | return NoModRef; |
| 299 | |
| 300 | // Otherwise, a store just writes. |
| 301 | return Mod; |
Chris Lattner | 14ac877 | 2003-02-26 19:26:51 +0000 | [diff] [blame] | 302 | } |
| 303 | |
Dan Gohman | e26a7b5 | 2010-08-06 18:24:38 +0000 | [diff] [blame] | 304 | AliasAnalysis::ModRefResult |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 305 | AliasAnalysis::getModRefInfo(const VAArgInst *V, const Location &Loc) { |
Dan Gohman | e26a7b5 | 2010-08-06 18:24:38 +0000 | [diff] [blame] | 306 | // If the va_arg address cannot alias the pointer in question, then the |
| 307 | // specified memory cannot be accessed by the va_arg. |
Dan Gohman | 6d8eb15 | 2010-11-11 21:50:19 +0000 | [diff] [blame] | 308 | if (!alias(getLocation(V), Loc)) |
Dan Gohman | e26a7b5 | 2010-08-06 18:24:38 +0000 | [diff] [blame] | 309 | return NoModRef; |
| 310 | |
| 311 | // If the pointer is a pointer to constant memory, then it could not have been |
| 312 | // modified by this va_arg. |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 313 | if (pointsToConstantMemory(Loc)) |
Dan Gohman | e26a7b5 | 2010-08-06 18:24:38 +0000 | [diff] [blame] | 314 | return NoModRef; |
| 315 | |
| 316 | // Otherwise, a va_arg reads and writes. |
| 317 | return ModRef; |
| 318 | } |
| 319 | |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 320 | // AliasAnalysis destructor: DO NOT move this to the header file for |
| 321 | // AliasAnalysis or else clients of the AliasAnalysis class may not depend on |
| 322 | // the AliasAnalysis.o file in the current .a file, causing alias analysis |
| 323 | // support to not be included in the tool correctly! |
| 324 | // |
| 325 | AliasAnalysis::~AliasAnalysis() {} |
| 326 | |
Dan Gohman | 5a56bf6 | 2008-05-30 00:02:02 +0000 | [diff] [blame] | 327 | /// InitializeAliasAnalysis - Subclasses must call this method to initialize the |
Chris Lattner | 14ac877 | 2003-02-26 19:26:51 +0000 | [diff] [blame] | 328 | /// AliasAnalysis interface before any other methods are called. |
| 329 | /// |
| 330 | void AliasAnalysis::InitializeAliasAnalysis(Pass *P) { |
Dan Gohman | fc2a3ed | 2009-07-25 00:48:42 +0000 | [diff] [blame] | 331 | TD = P->getAnalysisIfAvailable<TargetData>(); |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 332 | AA = &P->getAnalysis<AliasAnalysis>(); |
Chris Lattner | 14ac877 | 2003-02-26 19:26:51 +0000 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | // getAnalysisUsage - All alias analysis implementations should invoke this |
Dan Gohman | fc2a3ed | 2009-07-25 00:48:42 +0000 | [diff] [blame] | 336 | // directly (using AliasAnalysis::getAnalysisUsage(AU)). |
Chris Lattner | 14ac877 | 2003-02-26 19:26:51 +0000 | [diff] [blame] | 337 | void AliasAnalysis::getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | 5a24d70 | 2004-05-23 21:15:48 +0000 | [diff] [blame] | 338 | AU.addRequired<AliasAnalysis>(); // All AA's chain |
Chris Lattner | 14ac877 | 2003-02-26 19:26:51 +0000 | [diff] [blame] | 339 | } |
| 340 | |
Dan Gohman | fc2a3ed | 2009-07-25 00:48:42 +0000 | [diff] [blame] | 341 | /// getTypeStoreSize - Return the TargetData store size for the given type, |
| 342 | /// if known, or a conservative value otherwise. |
| 343 | /// |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame^] | 344 | uint64_t AliasAnalysis::getTypeStoreSize(Type *Ty) { |
Dan Gohman | f3a925d | 2010-10-19 17:06:23 +0000 | [diff] [blame] | 345 | return TD ? TD->getTypeStoreSize(Ty) : UnknownSize; |
Dan Gohman | fc2a3ed | 2009-07-25 00:48:42 +0000 | [diff] [blame] | 346 | } |
| 347 | |
Chris Lattner | f9355f6 | 2002-08-22 22:46:39 +0000 | [diff] [blame] | 348 | /// canBasicBlockModify - Return true if it is possible for execution of the |
| 349 | /// specified basic block to modify the value pointed to by Ptr. |
| 350 | /// |
Chris Lattner | 14ac877 | 2003-02-26 19:26:51 +0000 | [diff] [blame] | 351 | bool AliasAnalysis::canBasicBlockModify(const BasicBlock &BB, |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 352 | const Location &Loc) { |
| 353 | return canInstructionRangeModify(BB.front(), BB.back(), Loc); |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 354 | } |
| 355 | |
Chris Lattner | f9355f6 | 2002-08-22 22:46:39 +0000 | [diff] [blame] | 356 | /// canInstructionRangeModify - Return true if it is possible for the execution |
| 357 | /// of the specified instructions to modify the value pointed to by Ptr. The |
| 358 | /// instructions to consider are all of the instructions in the range of [I1,I2] |
| 359 | /// INCLUSIVE. I1 and I2 must be in the same basic block. |
| 360 | /// |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 361 | bool AliasAnalysis::canInstructionRangeModify(const Instruction &I1, |
| 362 | const Instruction &I2, |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 363 | const Location &Loc) { |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 364 | assert(I1.getParent() == I2.getParent() && |
| 365 | "Instructions not in same basic block!"); |
Dan Gohman | 79fca6f | 2010-08-03 21:48:53 +0000 | [diff] [blame] | 366 | BasicBlock::const_iterator I = &I1; |
| 367 | BasicBlock::const_iterator E = &I2; |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 368 | ++E; // Convert from inclusive to exclusive range. |
| 369 | |
Chris Lattner | 14ac877 | 2003-02-26 19:26:51 +0000 | [diff] [blame] | 370 | for (; I != E; ++I) // Check every instruction in range |
Dan Gohman | b2143b6 | 2010-09-14 21:25:10 +0000 | [diff] [blame] | 371 | if (getModRefInfo(I, Loc) & Mod) |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 372 | return true; |
Chris Lattner | 53ad0ed | 2002-08-22 18:25:32 +0000 | [diff] [blame] | 373 | return false; |
| 374 | } |
| 375 | |
Dan Gohman | a5f81bb | 2009-02-03 01:28:32 +0000 | [diff] [blame] | 376 | /// isNoAliasCall - Return true if this pointer is returned by a noalias |
| 377 | /// function. |
| 378 | bool llvm::isNoAliasCall(const Value *V) { |
| 379 | if (isa<CallInst>(V) || isa<InvokeInst>(V)) |
Dan Gohman | 79fca6f | 2010-08-03 21:48:53 +0000 | [diff] [blame] | 380 | return ImmutableCallSite(cast<Instruction>(V)) |
Dan Gohman | a5f81bb | 2009-02-03 01:28:32 +0000 | [diff] [blame] | 381 | .paramHasAttr(0, Attribute::NoAlias); |
| 382 | return false; |
| 383 | } |
| 384 | |
| 385 | /// isIdentifiedObject - Return true if this pointer refers to a distinct and |
| 386 | /// identifiable object. This returns true for: |
Dan Gohman | 5753a4a | 2009-08-27 17:52:56 +0000 | [diff] [blame] | 387 | /// Global Variables and Functions (but not Global Aliases) |
Dan Gohman | a5f81bb | 2009-02-03 01:28:32 +0000 | [diff] [blame] | 388 | /// Allocas and Mallocs |
Dan Gohman | 9e86f43 | 2010-07-07 14:27:09 +0000 | [diff] [blame] | 389 | /// ByVal and NoAlias Arguments |
| 390 | /// NoAlias returns |
Dan Gohman | a5f81bb | 2009-02-03 01:28:32 +0000 | [diff] [blame] | 391 | /// |
Dan Gohman | 9e86f43 | 2010-07-07 14:27:09 +0000 | [diff] [blame] | 392 | bool llvm::isIdentifiedObject(const Value *V) { |
Dan Gohman | 6be2bd5 | 2010-06-29 00:50:39 +0000 | [diff] [blame] | 393 | if (isa<AllocaInst>(V)) |
Dan Gohman | 5753a4a | 2009-08-27 17:52:56 +0000 | [diff] [blame] | 394 | return true; |
| 395 | if (isa<GlobalValue>(V) && !isa<GlobalAlias>(V)) |
Dan Gohman | a5f81bb | 2009-02-03 01:28:32 +0000 | [diff] [blame] | 396 | return true; |
Dan Gohman | 9e86f43 | 2010-07-07 14:27:09 +0000 | [diff] [blame] | 397 | if (isNoAliasCall(V)) |
| 398 | return true; |
| 399 | if (const Argument *A = dyn_cast<Argument>(V)) |
| 400 | return A->hasNoAliasAttr() || A->hasByValAttr(); |
Dan Gohman | a5f81bb | 2009-02-03 01:28:32 +0000 | [diff] [blame] | 401 | return false; |
| 402 | } |