| Commit message (Expand) | Author | Age | Files | Lines |
| * | Implement hasComputableLoopEvolution for Add, Mul, and Trunc operators, | Dan Gohman | 2010-08-13 | 1 | -0/+18 |
| * | Make LoopPass::getContainedPass return a LoopPass* instead of a Pass* | Dan Gohman | 2010-08-11 | 1 | -3/+3 |
| * | Rename and reorder the arguments to isImpliedCond, for consistency and clarity. | Dan Gohman | 2010-08-10 | 1 | -3/+4 |
| * | Add missing argument. CreateCompositeTypeEx() users, please verify. | Devang Patel | 2010-08-10 | 1 | -1/+2 |
| * | Refactor. | Devang Patel | 2010-08-09 | 1 | -0/+11 |
| * | Remove assignPassManager's default arguments. It's really | Dan Gohman | 2010-08-07 | 1 | -1/+1 |
| * | Tidy up PMStack. Add a bunch of consts, use std::vector instead of | Dan Gohman | 2010-08-07 | 1 | -0/+1 |
| * | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 2010-08-06 | 11 | -20/+19 |
| * | Implement a proper getModRefInfo for va_arg. | Dan Gohman | 2010-08-06 | 1 | -4/+1 |
| * | Add a comment. | Dan Gohman | 2010-08-06 | 1 | -1/+2 |
| * | Revert r110396 to fix buildbots. | Owen Anderson | 2010-08-06 | 11 | -19/+20 |
| * | Make AA private, since subclasses shouldn't (aren't don't) access it directly. | Dan Gohman | 2010-08-05 | 1 | -0/+3 |
| * | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 2010-08-05 | 11 | -20/+19 |
| * | Delete obsolete comments. | Dan Gohman | 2010-08-04 | 1 | -6/+0 |
| * | Add a missing function. | Edwin Török | 2010-08-04 | 1 | -0/+1 |
| * | Remove PointerAccessInfo, which nothing was using. | Dan Gohman | 2010-08-03 | 1 | -17/+2 |
| * | Thread const correctness through a bunch of AliasAnalysis interfaces and | Dan Gohman | 2010-08-03 | 3 | -30/+39 |
| * | Update some comments. | Dan Gohman | 2010-08-03 | 1 | -6/+6 |
| * | Introduce a symbolic constant for ~0u for use with AliasAnalysis. | Dan Gohman | 2010-08-03 | 1 | -1/+6 |
| * | Add a convenient form of AliasAnalysis::alias for the case where the sizes | Dan Gohman | 2010-08-03 | 1 | -0/+5 |
| * | Make SCEVUnknown a CallbackVH, so that it can be notified directly | Dan Gohman | 2010-08-02 | 2 | -8/+23 |
| * | Sketch up a preliminary Type-Based Alias Analysis implementation. | Dan Gohman | 2010-08-02 | 1 | -0/+7 |
| * | Add explicit constructors. Patch by Renato Golin. | Devang Patel | 2010-08-02 | 1 | -0/+11 |
| * | LibCallAliasAnalysis uses multiple inheritance, so it needs to implement | Nick Lewycky | 2010-07-30 | 1 | -0/+10 |
| * | Speculatively revert r109705 since it seems to be causing some build bot | Eric Christopher | 2010-07-29 | 2 | -23/+3 |
| * | Factor out some of the code for updating old SCEVUnknown values, and | Dan Gohman | 2010-07-29 | 2 | -3/+23 |
| * | Add some extra friend declarations to fix a gcc-4.0 compile error. | Dan Gohman | 2010-07-28 | 2 | -0/+3 |
| * | Add a comment. | Dan Gohman | 2010-07-28 | 1 | -0/+2 |
| * | RegionInfo: Add getMaxRegionExit() | Tobias Grosser | 2010-07-27 | 1 | -0/+6 |
| * | Add function to query RegionInfo about loops. | Tobias Grosser | 2010-07-27 | 1 | -10/+33 |
| * | Use AssertingVH for InsertedValues and InsertedPostIncValues, to verify | Dan Gohman | 2010-07-27 | 1 | -3/+8 |
| * | Add an initial implementation of LazyValueInfo updating for JumpThreading. D... | Owen Anderson | 2010-07-26 | 1 | -0/+4 |
| * | Eliminate getCanonicalInductionVariableIncrement's last user and | Dan Gohman | 2010-07-23 | 1 | -6/+0 |
| * | Add new RegionInfo pass. | Tobias Grosser | 2010-07-22 | 4 | -0/+976 |
| * | Disallow null as a named metadata operand. | Dan Gohman | 2010-07-21 | 1 | -2/+1 |
| * | Implement loop splitting analysis. | Jakob Stoklund Olesen | 2010-07-20 | 1 | -0/+6 |
| * | Make getOrInsertCanonicalInductionVariable guarantee that its | Dan Gohman | 2010-07-20 | 1 | -1/+2 |
| * | Correct line info for declarations/definitions. Radar 8063111. | Stuart Hastings | 2010-07-19 | 1 | -5/+13 |
| * | Switched to array_pod_sort as per Chris's suggestion. | Lang Hames | 2010-07-17 | 1 | -1/+2 |
| * | LoopSplitter - intended to split live intervals over loop boundaries. | Lang Hames | 2010-07-17 | 1 | -3/+6 |
| * | Add dump() to DominanceFrontier | Tobias Grosser | 2010-07-16 | 1 | -0/+3 |
| * | 80-columns | Eric Christopher | 2010-07-13 | 3 | -6/+8 |
| * | Remove tab characters and 80-col. | Eric Christopher | 2010-07-12 | 1 | -3/+3 |
| * | fix clang selfhost issue (shadowing) | Gabor Greif | 2010-07-09 | 1 | -3/+3 |
| * | refactor type expressions and cache operator*'s result | Gabor Greif | 2010-07-09 | 1 | -9/+12 |
| * | two more cases of reuse result of operator*, found by inspection | Gabor Greif | 2010-07-09 | 1 | -5/+8 |
| * | another case of reuse result of operator*, it is expensive to recompute | Gabor Greif | 2010-07-09 | 1 | -4/+6 |
| * | reuse result of operator*, it is expensive to recompute | Gabor Greif | 2010-07-09 | 1 | -3/+5 |
| * | Reverting r107918 and r107919. Radar 8063111. | Stuart Hastings | 2010-07-08 | 1 | -13/+5 |
| * | Fix decl/def debug info for template functions. Radar 8063111. | Stuart Hastings | 2010-07-08 | 1 | -5/+13 |