aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/AliasSetTracker.cpp
AgeCommit message (Expand)AuthorFilesLines
2012-10-08Move TargetData to DataLayout.Micah Villmow1-1/+1
2012-09-12Release build: guard dump functions withManman Ren1-1/+1
2012-09-06Release build: guard dump functions with "ifndef NDEBUG"Manman Ren1-0/+2
2012-09-05Stop casting away const qualifier needlessly.Roman Divacky1-1/+1
2012-06-30Reduce use list thrashing by using DenseMap's find_as for maps with ValueHand...Benjamin Kramer1-3/+3
2012-02-10Have AliasSet::aliasesUnknownInst use pointer TBAA info when availableHal Finkel1-1/+3
2011-08-15Atomic load/store support in LICM.Eli Friedman1-4/+8
2011-07-27Minor simplification.Eli Friedman1-2/+2
2011-07-27Fix AliasSetTracker so that it doesn't make any assumptions about instruction...Eli Friedman1-51/+46
2011-04-09PR9604; try to deal with RAUW updates correctly in the AST. I'm not convincedEli Friedman1-0/+4
2010-12-10Update this code to handle PartialAlias as MayAlias.Dan Gohman1-1/+1
2010-11-11Don't forget the TBAA info, if available.Dan Gohman1-1/+6
2010-11-09Teach LICM and AliasSetTracker about AccessesArgumentsReadonly.Dan Gohman1-1/+1
2010-10-19Reapply r116831 and r116839, converting AliasAnalysis to useDan Gohman1-9/+9
2010-10-19Revert r116831 and r116839, which are breaking selfhost builds.Dan Gohman1-9/+9
2010-10-19Change AliasAnalysis and its clients to use uint64_t instead of unsignedDan Gohman1-9/+9
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson1-1/+3
2010-10-18Make the representation of AliasSets explicitly differentiateDan Gohman1-2/+2
2010-10-18Don't pass the raw invalid pointer used to represent conflictingDan Gohman1-3/+5
2010-10-18Make AliasSetTracker TBAA-aware, enabling TBAA-enabled LICM.Dan Gohman1-24/+49
2010-10-12Begin adding static dependence information to passes, which will allow us toOwen Anderson1-1/+4
2010-10-07Now with fewer extraneous semicolons!Owen Anderson1-1/+1
2010-08-30Don't print two "0x" prefixes. Use a raw_ostream overload instead of llvm::fo...Benjamin Kramer1-2/+1
2010-08-29two changes: 1) make AliasSet hold the list of call sites with anChris Lattner1-14/+20
2010-08-29when merging two alias sets, the result set is volatile if eitherChris Lattner1-0/+1
2010-08-29more cleanupChris Lattner1-8/+8
2010-08-29clean this upChris Lattner1-51/+53
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson1-1/+1
2010-08-06Revert r110396 to fix buildbots.Owen Anderson1-1/+1
2010-08-05Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson1-1/+1
2010-08-03Thread const correctness through a bunch of AliasAnalysis interfaces andDan Gohman1-1/+1
2010-07-28simplifyGabor Greif1-2/+1
2010-07-21Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson1-2/+2
2009-12-23Change dbgs() back to errs() as Chris requested.David Greene1-1/+1
2009-12-23Convert debug messages to use dbgs(). Generally this meansDavid Greene1-3/+4
2009-11-22Remove the AliasAnalysis::getMustAliases method, which is dead.Chris Lattner1-6/+0
2009-11-03remove unneeded checks of isFreeCallChris Lattner1-16/+0
2009-10-27Rename MallocFreeHelper as MemoryBuiltinsVictor Hernandez1-1/+1
2009-10-26Rename MallocHelper as MallocFreeHelper, since it now also identifies calls t...Victor Hernandez1-1/+1
2009-10-26Remove FreeInst.Victor Hernandez1-17/+16
2009-10-25Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky1-1/+0
2009-10-25Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky1-1/+1
2009-08-23eliminate the std::ostream form of WriteAsOperand and update clients.Chris Lattner1-7/+8
2009-07-31Fix some problems with ASTCallbackVH in its use as a DenseMap key.Dan Gohman1-4/+6
2009-07-30Use CallbackVH in AliasSetTracker to avoid getting stuck withDan Gohman1-4/+20
2009-07-25Make AliasAnalysis and related classes useDan Gohman1-5/+4
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin1-1/+1
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin1-1/+2
2009-03-30getEntryFor() may invalidate DenseMap iterator.Devang Patel1-0/+1
2009-03-09reimplement AliasSetTracker in terms of DenseMap instead of hash_map,Chris Lattner1-36/+52