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