| Commit message (Expand) | Author | Age | Files | Lines |
* | Make getModRefInfo(Instruction *) not crash on certain types of instructions | Daniel Berlin | 2015-04-28 | 1 | -10/+13 |
* | Add new getModRefInfo API to determine whether an Instruction and a call modi... | Daniel Berlin | 2015-04-13 | 1 | -0/+17 |
* | Make getModRefInfo with a default location not crash. | Daniel Berlin | 2015-04-13 | 1 | -9/+12 |
* | DataLayout is mandatory, update the API to reflect it with references. | Mehdi Amini | 2015-03-10 | 1 | -2/+3 |
* | Make DataLayout Non-Optional in the Module | Mehdi Amini | 2015-03-04 | 1 | -3/+2 |
* | [PM] Separate the TargetLibraryInfo object from the immutable pass. | Chandler Carruth | 2015-01-15 | 1 | -1/+2 |
* | [PM] Move TargetLibraryInfo into the Analysis library. | Chandler Carruth | 2015-01-15 | 1 | -1/+1 |
* | Sink store based on alias analysis | Elena Demikhovsky | 2014-12-15 | 1 | -10/+11 |
* | Reformat partially, where I touched for whitespace changes. | NAKAMURA Takumi | 2014-10-28 | 1 | -3/+2 |
* | Untabify and whitespace cleanups. | NAKAMURA Takumi | 2014-10-28 | 1 | -9/+8 |
* | Make AAMDNodes ctor and operator bool (!!!) explicit, mop up bugs and weirdne... | Benjamin Kramer | 2014-10-04 | 1 | -1/+1 |
* | AA metadata refactoring (introduce AAMDNodes) | Hal Finkel | 2014-07-24 | 1 | -18/+30 |
* | Match semantics of PointerMayBeCapturedBefore to its name by default | Hal Finkel | 2014-07-21 | 1 | -1/+2 |
* | Move the CapturesBefore tracker from AA into CaptureTracking | Hal Finkel | 2014-07-21 | 1 | -50/+2 |
* | Move isIdentifiedFunctionLocal from BasicAA to AA | Hal Finkel | 2014-07-21 | 1 | -0/+11 |
* | Improve BasicAA CS-CS queries (redux) | Hal Finkel | 2014-07-17 | 1 | -13/+40 |
* | Revert r212572 "improve BasicAA CS-CS queries", it causes PR20303. | Nick Lewycky | 2014-07-15 | 1 | -31/+9 |
* | Improve BasicAA CS-CS queries | Hal Finkel | 2014-07-08 | 1 | -9/+31 |
* | [C++11] More 'nullptr' conversion. In some cases just using a boolean check i... | Craig Topper | 2014-04-15 | 1 | -1/+1 |
* | IR: add a second ordering operand to cmpxhg for failure | Tim Northover | 2014-03-11 | 1 | -1/+1 |
* | [C++11] Make this interface accept const Use pointers and use override | Chandler Carruth | 2014-03-05 | 1 | -2/+2 |
* | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 2014-03-05 | 1 | -3/+3 |
* | Make DataLayout a plain object, not a pass. | Rafael Espindola | 2014-02-25 | 1 | -1/+2 |
* | Rename some member variables from TD to DL. | Rafael Espindola | 2014-02-18 | 1 | -4/+4 |
* | [cleanup] Move the Dominators.h and Verifier.h headers into the IR | Chandler Carruth | 2014-01-13 | 1 | -1/+1 |
* | Re-sort all of the includes with ./utils/sort_includes.py so that | Chandler Carruth | 2014-01-07 | 1 | -1/+1 |
* | Reimplement isPotentiallyReachable to make nocapture deduction much stronger. | Nick Lewycky | 2013-07-27 | 1 | -22/+3 |
* | Give 'hasPath' a longer but clearer name 'isPotentiallyReachable'. Also expand | Nick Lewycky | 2013-07-18 | 1 | -5/+7 |
* | Eliminate trivial redundant loads across nocapture+readonly calls to uncaptured | Nick Lewycky | 2013-07-07 | 1 | -4/+11 |
* | Make BasicAliasAnalysis recognize the fact a noalias argument cannot alias an... | Michael Kuperstein | 2013-05-28 | 1 | -0/+9 |
* | Move isKnownNonNull out of AliasAnalysis.h and into ValueTracking.cpp since | Dan Gohman | 2013-01-31 | 1 | -16/+0 |
* | Memory Dependence Analysis: fix a miscompile that uses DT to approxmiate the | Manman Ren | 2013-01-04 | 1 | -4/+34 |
* | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -7/+7 |
* | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling | 2012-12-19 | 1 | -1/+1 |
* | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -4/+4 |
* | Use the attribute enums to query if a parameter has an attribute. | Bill Wendling | 2012-10-09 | 1 | -1/+1 |
* | Move TargetData to DataLayout. | Micah Villmow | 2012-10-08 | 1 | -3/+3 |
* | Use method to query for NoAlias attribute. | Bill Wendling | 2012-10-04 | 1 | -1/+1 |
* | Make MemoryBuiltins aware of TargetLibraryInfo. | Benjamin Kramer | 2012-08-29 | 1 | -0/+2 |
* | Move the capture analysis from MemoryDependencyAnalysis to a more general place | Chad Rosier | 2012-05-14 | 1 | -0/+83 |
* | Move isKnownNonNull from private implementation detail of BasicAA to a public | Nick Lewycky | 2012-02-25 | 1 | -0/+16 |
* | Enhance alias analysis for atomic instructions a bit. Upgrade a couple alias... | Eli Friedman | 2011-09-26 | 1 | -0/+40 |
* | Misc analysis passes that need to be aware of atomic load/store. | Eli Friedman | 2011-08-15 | 1 | -4/+4 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -1/+1 |
* | When analyzing functions known to only access argument pointees, | Dan Gohman | 2011-04-27 | 1 | -9/+28 |
* | Stub out a new updating interface to AliasAnalysis, allowing stateful analyse... | Owen Anderson | 2011-01-03 | 1 | -0/+6 |
* | Make memcpyopt TBAA-aware. | Dan Gohman | 2010-12-16 | 1 | -4/+10 |
* | getLocationForDest should work for memset as well. | Chris Lattner | 2010-11-30 | 1 | -1/+1 |
* | add "getLocation" method to AliasAnalysis for getting the source and | Chris Lattner | 2010-11-21 | 1 | -0/+23 |
* | Add helper functions for computing the Location of load, store, | Dan Gohman | 2010-11-11 | 1 | -12/+21 |