Age | Commit message (Expand) | Author | Files | Lines |
2014-11-19 | AliasSet: Simplify mergeSetIn | David Majnemer | 1 | -4/+3 |
2014-11-19 | AliasSetTracker: UnknownInsts should contribute to the refcount | David Majnemer | 1 | -15/+26 |
2014-11-03 | Use AA in LoadCombine | Hal Finkel | 1 | -1/+6 |
2014-07-24 | AA metadata refactoring (introduce AAMDNodes) | Hal Finkel | 1 | -41/+57 |
2014-04-15 | [C++11] More 'nullptr' conversion. In some cases just using a boolean check i... | Craig Topper | 1 | -9/+9 |
2014-03-05 | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 1 | -2/+2 |
2014-03-04 | [Modules] Move InstIterator out of the Support library, where it had no | Chandler Carruth | 1 | -1/+1 |
2014-01-09 | Put the functionality for printing a value to a raw_ostream as an | Chandler Carruth | 1 | -3/+2 |
2014-01-07 | Move the LLVM IR asm writer header files into the IR directory, as they | Chandler Carruth | 1 | -1/+1 |
2013-09-12 | In AliasSetTracker, do not change the alias set to "mod/ref" when adding | Krzysztof Parzyszek | 1 | -2/+0 |
2013-01-02 | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 1 | -5/+5 |
2012-12-03 | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 1 | -3/+3 |
2012-10-08 | Move TargetData to DataLayout. | Micah Villmow | 1 | -1/+1 |
2012-09-12 | Release build: guard dump functions with | Manman Ren | 1 | -1/+1 |
2012-09-06 | Release build: guard dump functions with "ifndef NDEBUG" | Manman Ren | 1 | -0/+2 |
2012-09-05 | Stop casting away const qualifier needlessly. | Roman Divacky | 1 | -1/+1 |
2012-06-30 | Reduce use list thrashing by using DenseMap's find_as for maps with ValueHand... | Benjamin Kramer | 1 | -3/+3 |
2012-02-10 | Have AliasSet::aliasesUnknownInst use pointer TBAA info when available | Hal Finkel | 1 | -1/+3 |
2011-08-15 | Atomic load/store support in LICM. | Eli Friedman | 1 | -4/+8 |
2011-07-27 | Minor simplification. | Eli Friedman | 1 | -2/+2 |
2011-07-27 | Fix AliasSetTracker so that it doesn't make any assumptions about instruction... | Eli Friedman | 1 | -51/+46 |
2011-04-09 | PR9604; try to deal with RAUW updates correctly in the AST. I'm not convinced | Eli Friedman | 1 | -0/+4 |
2010-12-10 | Update this code to handle PartialAlias as MayAlias. | Dan Gohman | 1 | -1/+1 |
2010-11-11 | Don't forget the TBAA info, if available. | Dan Gohman | 1 | -1/+6 |
2010-11-09 | Teach LICM and AliasSetTracker about AccessesArgumentsReadonly. | Dan Gohman | 1 | -1/+1 |
2010-10-19 | Reapply r116831 and r116839, converting AliasAnalysis to use | Dan Gohman | 1 | -9/+9 |
2010-10-19 | Revert r116831 and r116839, which are breaking selfhost builds. | Dan Gohman | 1 | -9/+9 |
2010-10-19 | Change AliasAnalysis and its clients to use uint64_t instead of unsigned | Dan Gohman | 1 | -9/+9 |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 1 | -1/+3 |
2010-10-18 | Make the representation of AliasSets explicitly differentiate | Dan Gohman | 1 | -2/+2 |
2010-10-18 | Don't pass the raw invalid pointer used to represent conflicting | Dan Gohman | 1 | -3/+5 |
2010-10-18 | Make AliasSetTracker TBAA-aware, enabling TBAA-enabled LICM. | Dan Gohman | 1 | -24/+49 |
2010-10-12 | Begin adding static dependence information to passes, which will allow us to | Owen Anderson | 1 | -1/+4 |
2010-10-07 | Now with fewer extraneous semicolons! | Owen Anderson | 1 | -1/+1 |
2010-08-30 | Don't print two "0x" prefixes. Use a raw_ostream overload instead of llvm::fo... | Benjamin Kramer | 1 | -2/+1 |
2010-08-29 | two changes: 1) make AliasSet hold the list of call sites with an | Chris Lattner | 1 | -14/+20 |
2010-08-29 | when merging two alias sets, the result set is volatile if either | Chris Lattner | 1 | -0/+1 |
2010-08-29 | more cleanup | Chris Lattner | 1 | -8/+8 |
2010-08-29 | clean this up | Chris Lattner | 1 | -51/+53 |
2010-08-06 | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 1 | -1/+1 |
2010-08-06 | Revert r110396 to fix buildbots. | Owen Anderson | 1 | -1/+1 |
2010-08-05 | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 1 | -1/+1 |
2010-08-03 | Thread const correctness through a bunch of AliasAnalysis interfaces and | Dan Gohman | 1 | -1/+1 |
2010-07-28 | simplify | Gabor Greif | 1 | -2/+1 |
2010-07-21 | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson | 1 | -2/+2 |
2009-12-23 | Change dbgs() back to errs() as Chris requested. | David Greene | 1 | -1/+1 |
2009-12-23 | Convert debug messages to use dbgs(). Generally this means | David Greene | 1 | -3/+4 |
2009-11-22 | Remove the AliasAnalysis::getMustAliases method, which is dead. | Chris Lattner | 1 | -6/+0 |
2009-11-03 | remove unneeded checks of isFreeCall | Chris Lattner | 1 | -16/+0 |
2009-10-27 | Rename MallocFreeHelper as MemoryBuiltins | Victor Hernandez | 1 | -1/+1 |