| Commit message (Expand) | Author | Age | Files | Lines |
| * | [PM/AA] Put the 'final' keyword in the correct place. And actually | Chandler Carruth | 2015-07-22 | 1 | -1/+1 |
| * | [PM/AA] Replace the only use of the AliasAnalysis::deleteValue API (in | Chandler Carruth | 2015-07-22 | 1 | -35/+58 |
| * | [PM/AA] Remove the addEscapingUse update API that won't be easy to | Chandler Carruth | 2015-07-18 | 1 | -11/+0 |
| * | [PM/AA] Disable the core unsafe aspect of GlobalsModRef in the face of | Chandler Carruth | 2015-07-17 | 1 | -6/+33 |
| * | [PM/AA] Fix *numerous* serious bugs in GlobalsModRef found by | Chandler Carruth | 2015-07-15 | 1 | -22/+31 |
| * | [PM/AA] Cleanup some loops to be range-based. NFC. | Chandler Carruth | 2015-07-15 | 1 | -20/+19 |
| * | [PM/AA] Reformat GlobalsModRef so that subsequent patches I make here | Chandler Carruth | 2015-07-14 | 1 | -155/+160 |
| * | [PM/AA] Completely remove the AliasAnalysis::copyValue interface. | Chandler Carruth | 2015-07-11 | 1 | -5/+0 |
| * | Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC) | Alexander Kornienko | 2015-06-23 | 1 | -1/+1 |
| * | [PM/AA] Hoist the AliasResult enum out of the AliasAnalysis class. | Chandler Carruth | 2015-06-22 | 1 | -2/+2 |
| * | Fixed/added namespace ending comments using clang-tidy. NFC | Alexander Kornienko | 2015-06-19 | 1 | -1/+1 |
| * | [PM/AA] Remove the Location typedef from the AliasAnalysis class now | Chandler Carruth | 2015-06-17 | 1 | -7/+6 |
| * | [CallSite] Make construction from Value* (or Instruction*) explicit. | Benjamin Kramer | 2015-04-10 | 1 | -1/+1 |
| * | DataLayout is mandatory, update the API to reflect it with references. | Mehdi Amini | 2015-03-10 | 1 | -4/+6 |
| * | Make DataLayout Non-Optional in the Module | Mehdi Amini | 2015-03-04 | 1 | -1/+1 |
| * | Use a range loop. | Rafael Espindola | 2014-05-08 | 1 | -4/+2 |
| * | SCC: Change clients to use const, NFC | Duncan P. N. Exon Smith | 2014-04-25 | 1 | -1/+1 |
| * | [C++] Use 'nullptr'. | Craig Topper | 2014-04-24 | 1 | -5/+5 |
| * | [Modules] Fix potential ODR violations by sinking the DEBUG_TYPE | Chandler Carruth | 2014-04-22 | 1 | -1/+2 |
| * | [C++11] Add range based accessors for the Use-Def chain of a Value. | Chandler Carruth | 2014-03-09 | 1 | -14/+13 |
| * | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 2014-03-05 | 1 | -11/+11 |
| * | [Modules] Move InstIterator out of the Support library, where it had no | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
| * | GlobalsModRef: Unify and clean up duplicated pointer analysis code. | Benjamin Kramer | 2014-02-10 | 1 | -21/+12 |
| * | cleanup: scc_iterator consumers should use isAtEnd | Duncan P. N. Exon Smith | 2014-02-04 | 1 | -2/+1 |
| * | [PM] Split the CallGraph out from the ModulePass which creates the | Chandler Carruth | 2013-11-26 | 1 | -5/+9 |
| * | Merge CallGraph and BasicCallGraph. | Rafael Espindola | 2013-10-31 | 1 | -1/+1 |
| * | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -5/+5 |
| * | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -8/+8 |
| * | Make MemoryBuiltins aware of TargetLibraryInfo. | Benjamin Kramer | 2012-08-29 | 1 | -3/+3 |
| * | refactor the MemoryBuiltin analysis: | Nuno Lopes | 2012-06-21 | 1 | -14/+6 |
| * | Handle intrinsics in GlobalsModRef. Fixes pr12351. | Rafael Espindola | 2012-03-28 | 1 | -0/+6 |
| * | Fix a ton of comment typos found by codespell. Patch by | Chris Lattner | 2011-04-15 | 1 | -1/+1 |
| * | Use the new addEscapingValue callback to update GlobalsModRef when GVN adds P... | Owen Anderson | 2011-01-03 | 1 | -0/+11 |
| * | Move Value::getUnderlyingObject to be a standalone | Dan Gohman | 2010-12-15 | 1 | -4/+5 |
| * | Make ModRefBehavior a lattice. Use this to clean up AliasAnalysis | Dan Gohman | 2010-11-10 | 1 | -12/+17 |
| * | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -1/+3 |
| * | Begin adding static dependence information to passes, which will allow us to | Owen Anderson | 2010-10-12 | 1 | -1/+5 |
| * | Now with fewer extraneous semicolons! | Owen Anderson | 2010-10-07 | 1 | -1/+1 |
| * | Remove the experimental AliasAnalysis::getDependency interface, which | Dan Gohman | 2010-09-14 | 1 | -11/+11 |
| * | Now that PassInfo and Pass::ID have been separated, move the rest of the pass... | Owen Anderson | 2010-08-23 | 1 | -3/+3 |
| * | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 2010-08-06 | 1 | -3/+3 |
| * | Revert r110396 to fix buildbots. | Owen Anderson | 2010-08-06 | 1 | -3/+3 |
| * | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 2010-08-05 | 1 | -3/+3 |
| * | Remove PointerAccessInfo, which nothing was using. | Dan Gohman | 2010-08-03 | 1 | -7/+5 |
| * | Thread const correctness through a bunch of AliasAnalysis interfaces and | Dan Gohman | 2010-08-03 | 1 | -30/+35 |
| * | Speculatively revert r108813, in an attempt to get the self-host buildbots wo... | Owen Anderson | 2010-07-20 | 1 | -1/+1 |
| * | Reapply r108794, a fix for the failing test from last time. | Owen Anderson | 2010-07-20 | 1 | -1/+1 |
| * | Revert r108794, "Separate PassInfo into two classes: a constructor-free | Daniel Dunbar | 2010-07-20 | 1 | -1/+1 |
| * | Separate PassInfo into two classes: a constructor-free superclass (StaticPass... | Owen Anderson | 2010-07-20 | 1 | -1/+1 |
| * | cache result of operator* | Gabor Greif | 2010-07-09 | 1 | -2/+3 |