summaryrefslogtreecommitdiff
path: root/lib/Analysis/BasicAliasAnalysis.cpp
Commit message (Expand)AuthorAge
* Remove a couple of redundant copies of SmallVector::operator==.Benjamin Kramer2014-04-18
* [C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper2014-04-15
* PR15967 Fix in basicaa for faulty returning no alias.Arnold Schwaighofer2014-03-26
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-05
* [Modules] Move GetElementPtrTypeIterator into the IR library. As itsChandler Carruth2014-03-04
* Rename a few more DataLayout variables from TD to DL.Rafael Espindola2014-02-21
* Rename some member variables from TD to DL.Rafael Espindola2014-02-18
* Fix known typosAlp Toker2014-01-24
* BasicAA: We need to check both access sizes when comparing a gep and anArnold Schwaighofer2014-01-16
* [PM] Split DominatorTree into a concrete analysis result object whichChandler Carruth2014-01-13
* [cleanup] Move the Dominators.h and Verifier.h headers into the IRChandler Carruth2014-01-13
* Re-sort all of the includes with ./utils/sort_includes.py so thatChandler Carruth2014-01-07
* BasicAA: Use reachabilty instead of dominance for checking value equality in phiArnold Schwaighofer2014-01-03
* BasicAA: Fix value equality and phi cyclesArnold Schwaighofer2014-01-02
* Use correct size for address space in BasicAA.Matt Arsenault2013-11-16
* Revert r193251 : Use address-taken to disambiguate global variable and indire...Shuxin Yang2013-10-27
* Use address-taken to disambiguate global variable and indirect memops.Shuxin Yang2013-10-23
* Use type helper functionsMatt Arsenault2013-09-27
* Remove trailing spaces.Jakub Staszak2013-08-24
* Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper2013-07-14
* Make BasicAliasAnalysis recognize the fact a noalias argument cannot alias an...Michael Kuperstein2013-05-28
* Revert r176408 and r176407 to address PR15540.Nadav Rotem2013-04-09
* BasicAA: Only query twice if the result of the more general query was MayAliasArnold Schwaighofer2013-03-26
* add getUnderlyingObjectSize()Nuno Lopes2013-03-02
* Fix a problem in alias analysis. It is about the misinterpretation of "Object".Shuxin Yang2013-02-28
* Actually update the CMake and Makefile builds correctly, and update theChandler Carruth2013-01-02
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Optimistically analyse Phi cyclesArnold Schwaighofer2012-12-10
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Phi speculation improvement for BasicAAHal Finkel2012-11-17
* Don't infer whether a value is captured in the current function from theRichard Osborne2012-11-05
* Apply the patch from PR14160. I failed to construct a testcase for this, butDuncan Sands2012-11-04
* Revert the majority of the next patch in the address space series:Chandler Carruth2012-11-01
* Resubmit the changes to llvm core to update the functions to support differen...Micah Villmow2012-10-15
* Revert 165732 for further review.Micah Villmow2012-10-11
* Add in the first iteration of support for llvm/clang/lldb to allow variable p...Micah Villmow2012-10-11
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* GCC doesn't understand that OrigAliasResult having a value is correlated withDuncan Sands2012-09-19
* BasicAA: Recognize cyclic NoAlias phisArnold Schwaighofer2012-09-06
* BasicAA: GEPs of NoAlias'ing base ptr with equivalent indices are NoAliasArnold Schwaighofer2012-09-06
* Switch BasicAliasAnalysis' cache to SmallDenseMap.Benjamin Kramer2012-09-05
* Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer2012-08-29
* refactor the MemoryBuiltin analysis:Nuno Lopes2012-06-21
* Duncan pointed out that if the alignment isn't explicitly specified, it defau...Eli Friedman2012-02-27
* Teach BasicAA about the LLVM IR rules that allow reading past the end of an o...Eli Friedman2012-02-27
* Move isKnownNonNull from private implementation detail of BasicAA to a publicNick Lewycky2012-02-25
* Remove a comment about an alternative approach that wouldn'tDan Gohman2012-02-17
* Refactor code to use new attribute getters on CallSite for NoCapture and ByVal.Nick Lewycky2011-11-20
* Remove the old atomic instrinsics. autoupgrade functionality is included wit...Eli Friedman2011-10-06
* PR10628: Fix getModRefInfo so it queries the underlying alias() implementatio...Eli Friedman2011-09-28