summaryrefslogtreecommitdiff
path: root/lib/Analysis/AliasAnalysisEvaluator.cpp
Commit message (Expand)AuthorAge
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Teach AliasAnalysisEvaluator about PartialAlias.Dan Gohman2010-12-10
* Reapply r116831 and r116839, converting AliasAnalysis to useDan Gohman2010-10-19
* Revert r116831 and r116839, which are breaking selfhost builds.Dan Gohman2010-10-19
* Change AliasAnalysis and its clients to use uint64_t instead of unsignedDan Gohman2010-10-19
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-19
* Consistently use AliasAnalysis::UnknownSize instead of hardcoding ~0u.Dan Gohman2010-10-19
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-12
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-06
* Revert r110396 to fix buildbots.Owen Anderson2010-08-06
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-05
* The trouble with testing for "ModRef" and "NoModRef" is thatDan Gohman2010-08-04
* The two-callsite form of AliasAnalysis::getModRefInfo is documentedDan Gohman2010-08-04
* simplifyGabor Greif2010-07-28
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-21
* Remove interprocedural-basic-aa and associated code. The AliasAnalysisDan Gohman2010-07-07
* Generalize AAEval so that it can be used both per-function andDan Gohman2010-06-28
* clean up algorithm and remove operand order assumptionsGabor Greif2010-04-08
* There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands2010-02-16
* Change dbgs() back to errs() as Chris requested.David Greene2009-12-23
* Convert debug messages to use dbgs(). Generally this meansDavid Greene2009-12-23
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-25
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-25
* Fix a missing newline, now that Value's operator<< doesn't add one of its own.Dan Gohman2009-08-26
* Use SetVector instead of std::set so that alias relations are tested andDan Gohman2009-08-26
* eliminate the std::ostream form of WriteAsOperand and update clients.Chris Lattner2009-08-23
* Make AliasAnalysis and related classes useDan Gohman2009-07-25
* More migration to raw_ostream, the water has dried up around the iostream hole.Daniel Dunbar2009-07-25
* simplify logic and get rid of the assumption that operand 0 is the calleeGabor Greif2009-03-24
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-04
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-13
* Make several variable declarations static.Dan Gohman2008-05-06
* Restore isCFGOnly property of various analysis passes.Devang Patel2008-03-20
* PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel2008-03-19
* Do not use virtual function to identify an analysis pass.Devang Patel2008-03-19
* Identify Analysis pass.Devang Patel2008-03-18
* Fix http://llvm.org/bugs/show_bug.cgi?id=2104 by ordering lexicographically w...Gabor Greif2008-02-28
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands2007-11-01
* Fix typo in comment.Nick Lewycky2007-05-06
* Drop 'const'Devang Patel2007-05-03
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-02
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-01
* Make classes in anonymous namespaces use VISIBILITY_HIDDEN to help reduceReid Spencer2007-02-05
* Removed more <iostream> includesBill Wendling2006-12-07
* Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling2006-12-07
* Remove the 'printname' argument to WriteAsOperand. It is always true, andChris Lattner2006-12-06
* Removed some of the iostream #includes. Moved towards converting to usingBill Wendling2006-11-28
* eliminate RegisterOpt. It does the same thing as RegisterPass.Chris Lattner2006-08-27