| Commit message (Expand) | Author | Age | Files | Lines |
* | Factory methods for function passes now return type FunctionPass *. | Brian Gaeke | 2003-08-14 | 2 | -2/+2 |
* | Fix FIXME by removing FIXME | Chris Lattner | 2003-08-13 | 1 | -1/+1 |
* | Implement instcombine optimizations: | Chris Lattner | 2003-08-13 | 1 | -1/+97 |
* | Generalize some of the add tests to allow for reassociation to take place | Chris Lattner | 2003-08-13 | 1 | -10/+130 |
* | Factory methods for FunctionPasses now return type FunctionPass *. | Brian Gaeke | 2003-08-13 | 1 | -1/+1 |
* | Assign arguments different ranks so they get grouped together | Chris Lattner | 2003-08-13 | 1 | -4/+10 |
* | Removing the pool allocator from the main CVS tree. | John Criswell | 2003-08-13 | 2 | -2963/+0 |
* | Implement InstCombine/2003-08-12-AllocaNonNull.ll | Chris Lattner | 2003-08-13 | 1 | -2/+4 |
* | Do not cannonicalize (X != 0) into (cast X to bool) | Chris Lattner | 2003-08-13 | 1 | -79/+68 |
* | Change cannonicalization rules: add X,X is represented as multiplies, multiplies | Chris Lattner | 2003-08-13 | 1 | -8/+24 |
* | Give std::map<BasicBlock *, BasicBlock *> the short name BBMap, because | Brian Gaeke | 2003-08-12 | 1 | -63/+27 |
* | Allow pulling logical operations through shifts. | Chris Lattner | 2003-08-12 | 1 | -16/+61 |
* | Fix bug: Reassociate/2003-08-12-InfiniteLoop.ll | Chris Lattner | 2003-08-12 | 1 | -5/+6 |
* | Assign finer grained ranks, make sure to reassociate top-level after reassoci... | Chris Lattner | 2003-08-12 | 1 | -7/+11 |
* | Simplify code | Chris Lattner | 2003-08-12 | 1 | -11/+8 |
* | Implement testcases InstCombine/or.ll:test16/test17 | Chris Lattner | 2003-08-12 | 1 | -0/+13 |
* | Bug fix: Some nodes pointed to by globals may not be marked incomplete and ne... | Sumant Kowshik | 2003-08-12 | 1 | -5/+18 |
* | Fix handling of 'free' if it has absolutely no prototype | Chris Lattner | 2003-08-11 | 1 | -0/+7 |
* | Fixed a segfault in gccld. | John Criswell | 2003-08-07 | 1 | -2/+4 |
* | Added code for pool allocating only the pool-allocatable data structures in t... | Sumant Kowshik | 2003-08-07 | 1 | -12/+46 |
* | Remove unnecessary use of NonCopyable | Chris Lattner | 2003-08-06 | 1 | -4/+3 |
* | Fixed minor bug in SafeToHoist and made some changes suggested by Chris. | Tanya Lattner | 2003-08-05 | 1 | -19/+10 |
* | Fixed LICM bug that hoists trapping instructions that are not guaranteed to e... | Tanya Lattner | 2003-08-05 | 1 | -5/+59 |
* | Minor changes: | Chris Lattner | 2003-08-05 | 1 | -52/+48 |
* | Major bug fixes including a memory leak and tracking some exceptional conditi... | Sumant Kowshik | 2003-08-05 | 1 | -83/+317 |
* | Fix bug: SimplifyCFG/2003-08-05-InvokeCrash.ll | Chris Lattner | 2003-08-05 | 1 | -1/+2 |
* | DEBUG got moved to Support/Debug.h | Chris Lattner | 2003-08-01 | 19 | -24/+38 |
* | Instcombine: (A >> c1) << c2 for signed integers | Chris Lattner | 2003-07-24 | 1 | -10/+12 |
* | Reorganization of code, no functional changes. | Chris Lattner | 2003-07-24 | 1 | -47/+48 |
* | Allow folding several instructions into casts, which can simplify a lot | Chris Lattner | 2003-07-24 | 1 | -7/+84 |
* | Minor cleanups | Chris Lattner | 2003-07-24 | 1 | -3/+3 |
* | Fix bug: FunctionResolve/2003-07-23-CPR-Reference.ll | Chris Lattner | 2003-07-23 | 1 | -6/+8 |
* | Add comments | Chris Lattner | 2003-07-23 | 1 | -0/+9 |
* | Remove explicit check for: not (not X) = X, it is already handled because xor... | Chris Lattner | 2003-07-23 | 1 | -10/+16 |
* | InstCombine: (X ^ C1) & C2 --> (X & C2) iff (C1&C2) == 0 | Chris Lattner | 2003-07-23 | 1 | -9/+11 |
* | - InstCombine: (X | C1) & C2 --> X & C2 iff C1 & C1 == 0 | Chris Lattner | 2003-07-23 | 1 | -10/+33 |
* | IC: (X & C1) | C2 --> (X | C2) & (C1|C2) | Chris Lattner | 2003-07-23 | 1 | -1/+26 |
* | IC: (X ^ C1) & C2 --> (X & C2) ^ (C1&C2) | Chris Lattner | 2003-07-23 | 1 | -4/+16 |
* | InstCombine: (X ^ 4) == 8 --> X == 12 | Chris Lattner | 2003-07-23 | 1 | -1/+6 |
* | IC: (X & 5) == 13 --> false | Chris Lattner | 2003-07-23 | 1 | -5/+25 |
* | Simplify code by using ConstantInt::getRawValue instead of checking to see | Chris Lattner | 2003-07-23 | 3 | -10/+3 |
* | Fix bug: TailDup/2003-07-22-InfiniteLoop.ll | Chris Lattner | 2003-07-23 | 1 | -0/+5 |
* | - InstCombine (cast (xor A, B) to bool) ==> (setne A, B) | Chris Lattner | 2003-07-22 | 1 | -5/+44 |
* | Added code that checks to see if a global variable is external before replacing | John Criswell | 2003-07-21 | 1 | -1/+1 |
* | Added check for inlinable function | Anand Shukla | 2003-07-18 | 1 | -1/+55 |
* | A pass to combine multiple backedges that go to same target | Anand Shukla | 2003-07-18 | 1 | -0/+227 |
* | Dinakar and I fixed a bug where we were trying to get the initializer of | John Criswell | 2003-07-17 | 1 | -1/+1 |
* | Trace loads and stores as they happen (stores were being | Vikram S. Adve | 2003-07-11 | 1 | -10/+17 |
* | Added functionality to instrmentation pass | Anand Shukla | 2003-07-10 | 1 | -99/+111 |
* | Merged in autoconf branch. This provides configuration via the autoconf | John Criswell | 2003-06-30 | 2 | -2/+2 |