Age | Commit message (Expand) | Author | Files | Lines |
2014-07-15 | Revert r212572 "improve BasicAA CS-CS queries", it causes PR20303. | Nick Lewycky | 1 | -31/+9 |
2014-07-08 | Improve BasicAA CS-CS queries | Hal Finkel | 1 | -9/+31 |
2014-04-15 | [C++11] More 'nullptr' conversion. In some cases just using a boolean check i... | Craig Topper | 1 | -1/+1 |
2014-03-11 | IR: add a second ordering operand to cmpxhg for failure | Tim Northover | 1 | -1/+1 |
2014-03-05 | [C++11] Make this interface accept const Use pointers and use override | Chandler Carruth | 1 | -2/+2 |
2014-03-05 | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 1 | -3/+3 |
2014-02-25 | Make DataLayout a plain object, not a pass. | Rafael Espindola | 1 | -1/+2 |
2014-02-18 | Rename some member variables from TD to DL. | Rafael Espindola | 1 | -4/+4 |
2014-01-13 | [cleanup] Move the Dominators.h and Verifier.h headers into the IR | Chandler Carruth | 1 | -1/+1 |
2014-01-07 | Re-sort all of the includes with ./utils/sort_includes.py so that | Chandler Carruth | 1 | -1/+1 |
2013-07-27 | Reimplement isPotentiallyReachable to make nocapture deduction much stronger. | Nick Lewycky | 1 | -22/+3 |
2013-07-18 | Give 'hasPath' a longer but clearer name 'isPotentiallyReachable'. Also expand | Nick Lewycky | 1 | -5/+7 |
2013-07-07 | Eliminate trivial redundant loads across nocapture+readonly calls to uncaptured | Nick Lewycky | 1 | -4/+11 |
2013-05-28 | Make BasicAliasAnalysis recognize the fact a noalias argument cannot alias an... | Michael Kuperstein | 1 | -0/+9 |
2013-01-31 | Move isKnownNonNull out of AliasAnalysis.h and into ValueTracking.cpp since | Dan Gohman | 1 | -16/+0 |
2013-01-04 | Memory Dependence Analysis: fix a miscompile that uses DT to approxmiate the | Manman Ren | 1 | -4/+34 |
2013-01-02 | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 1 | -7/+7 |
2012-12-19 | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling | 1 | -1/+1 |
2012-12-03 | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 1 | -4/+4 |
2012-10-09 | Use the attribute enums to query if a parameter has an attribute. | Bill Wendling | 1 | -1/+1 |
2012-10-08 | Move TargetData to DataLayout. | Micah Villmow | 1 | -3/+3 |
2012-10-04 | Use method to query for NoAlias attribute. | Bill Wendling | 1 | -1/+1 |
2012-08-29 | Make MemoryBuiltins aware of TargetLibraryInfo. | Benjamin Kramer | 1 | -0/+2 |
2012-05-14 | Move the capture analysis from MemoryDependencyAnalysis to a more general place | Chad Rosier | 1 | -0/+83 |
2012-02-25 | Move isKnownNonNull from private implementation detail of BasicAA to a public | Nick Lewycky | 1 | -0/+16 |
2011-09-26 | Enhance alias analysis for atomic instructions a bit. Upgrade a couple alias... | Eli Friedman | 1 | -0/+40 |
2011-08-15 | Misc analysis passes that need to be aware of atomic load/store. | Eli Friedman | 1 | -4/+4 |
2011-07-18 | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 1 | -1/+1 |
2011-04-27 | When analyzing functions known to only access argument pointees, | Dan Gohman | 1 | -9/+28 |
2011-01-03 | Stub out a new updating interface to AliasAnalysis, allowing stateful analyse... | Owen Anderson | 1 | -0/+6 |
2010-12-16 | Make memcpyopt TBAA-aware. | Dan Gohman | 1 | -4/+10 |
2010-11-30 | getLocationForDest should work for memset as well. | Chris Lattner | 1 | -1/+1 |
2010-11-21 | add "getLocation" method to AliasAnalysis for getting the source and | Chris Lattner | 1 | -0/+23 |
2010-11-11 | Add helper functions for computing the Location of load, store, | Dan Gohman | 1 | -12/+21 |
2010-11-10 | Add a doesAccessArgPointees helper function, and update code to use | Dan Gohman | 1 | -22/+24 |
2010-11-10 | Make ModRefBehavior a lattice. Use this to clean up AliasAnalysis | Dan Gohman | 1 | -1/+1 |
2010-11-09 | Teach AliasAnalysis about AccessesArgumentsReadonly. | Dan Gohman | 1 | -6/+8 |
2010-11-08 | Extend the AliasAnalysis::pointsToConstantMemory interface to allow it | Dan Gohman | 1 | -2/+3 |
2010-11-08 | Delete getIntrinsicModRefBehavior. Clients can just use the normal | Dan Gohman | 1 | -7/+0 |
2010-10-25 | Update comments; BasicAA is no longer necessarily the end of the chain. | Dan Gohman | 1 | -3/+3 |
2010-10-25 | Reintroduce these asserts, now that BasicAA is a normal AliasAnalysis pass. | Dan Gohman | 1 | -6/+3 |
2010-10-19 | Move NoAA out of BasicAliasAnalysis.cpp into its own file, now that | Dan Gohman | 1 | -6/+0 |
2010-10-19 | Reapply r116831 and r116839, converting AliasAnalysis to use | Dan Gohman | 1 | -1/+1 |
2010-10-19 | Revert r116831 and r116839, which are breaking selfhost builds. | Dan Gohman | 1 | -1/+1 |
2010-10-19 | Change AliasAnalysis and its clients to use uint64_t instead of unsigned | Dan Gohman | 1 | -1/+1 |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 1 | -1/+1 |
2010-10-19 | Consistently use AliasAnalysis::UnknownSize instead of hardcoding ~0u. | Dan Gohman | 1 | -1/+1 |
2010-10-13 | Analysis groups need to initialize their default implementations. | Owen Anderson | 1 | -1/+1 |
2010-10-07 | Now with fewer extraneous semicolons! | Owen Anderson | 1 | -1/+1 |
2010-10-06 | Hide analysis group registration behind a macro, just like pass registration. | Owen Anderson | 1 | -1/+1 |