| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | For APInt::z/sext(width), if width == BitWidth, just return *this. | Zhou Sheng | 2007-03-12 | 1 | -0/+4 |
* | Add an APInt version of SimplifyDemandedBits. | Reid Spencer | 2007-03-12 | 1 | -1/+524 |
* | Add an APInt version of ShrinkDemandedConstant. | Reid Spencer | 2007-03-12 | 1 | -0/+24 |
* | Avoid to assert on "(KnownZero & KnownOne) == 0". | Zhou Sheng | 2007-03-12 | 1 | -1/+1 |
* | In function ComputeMaskedBits(): | Zhou Sheng | 2007-03-12 | 1 | -6/+6 |
* | Add getSignBit() and operator<<= into APInt for convenience. | Zhou Sheng | 2007-03-11 | 1 | -0/+23 |
* | Add value ranges. Currently inefficient in both execution time and | Nick Lewycky | 2007-03-10 | 1 | -219/+397 |
* | Use range tests in LowerSwitch, where possible | Anton Korobeynikov | 2007-03-10 | 2 | -31/+164 |
* | Add getter methods for the extremes of a ConstantRange. | Nick Lewycky | 2007-03-10 | 2 | -0/+84 |
* | Adding more arithmetic operators to MMX. This is an almost exact copy of | Bill Wendling | 2007-03-10 | 4 | -15/+94 |
* | Remove dead comments. | Devang Patel | 2007-03-09 | 1 | -3/+0 |
* | Avoid recursion. Use iterative algorithm for RenamePass(). | Devang Patel | 2007-03-09 | 1 | -4/+31 |
* | Increment iterator now because IVUseShouldUsePostIncValue may remove | Devang Patel | 2007-03-09 | 1 | -2/+6 |
* | Regenerate. | Reid Spencer | 2007-03-09 | 2 | -2/+2 |
* | Minor stuff. | Evan Cheng | 2007-03-09 | 1 | -0/+4 |
* | Add comments about LSR / ARM. | Evan Cheng | 2007-03-09 | 1 | -0/+4 |
* | Unfinished work and ideas related to register scavenger. | Evan Cheng | 2007-03-09 | 1 | -0/+14 |
* | For PR1245: | Reid Spencer | 2007-03-09 | 1 | -1/+1 |
* | apply comments from review of last patch | Dale Johannesen | 2007-03-09 | 1 | -2/+2 |
* | Add some observations from CoreGraphics benchmark. Remove register | Dale Johannesen | 2007-03-09 | 1 | -47/+47 |
* | Unbreak mingw32 build | Anton Korobeynikov | 2007-03-09 | 1 | -0/+8 |
* | If a virtual register is already marked alive in this block, that means it is | Evan Cheng | 2007-03-09 | 1 | -1/+6 |
* | Print preds / succs BB numbers. | Evan Cheng | 2007-03-09 | 1 | -2/+2 |
* | Avoid variable shadowing. | Evan Cheng | 2007-03-09 | 1 | -2/+2 |
* | Don't use std::hex. | Bill Wendling | 2007-03-08 | 1 | -1/+1 |
* | Don't use a cast. It causes an error on some platforms. | Bill Wendling | 2007-03-08 | 1 | -1/+1 |
* | Test inline asm modifier 'c'. | Evan Cheng | 2007-03-08 | 1 | -11/+15 |
* | Implement inline asm modifier c. | Evan Cheng | 2007-03-08 | 1 | -0/+3 |
* | upgrade this testcase, add test for fp immediate to memory operand. | Chris Lattner | 2007-03-08 | 1 | -6/+13 |
* | implement support for floating point constants used as inline asm memory oper... | Chris Lattner | 2007-03-08 | 1 | -2/+7 |
* | Add MMX arithmetic testcase. | Bill Wendling | 2007-03-08 | 1 | -0/+35 |
* | Added "padd*" support for MMX. Added MMX move stuff to X86InstrInfo so that | Bill Wendling | 2007-03-08 | 6 | -10/+94 |
* | Fix a typo. | Evan Cheng | 2007-03-08 | 1 | -1/+1 |
* | Fix test case. | Evan Cheng | 2007-03-08 | 2 | -17/+22 |
* | Speed Up Pass Manager. | Devang Patel | 2007-03-08 | 1 | -15/+16 |
* | Fix a bug in function ComputeMaskedBits(). | Zhou Sheng | 2007-03-08 | 1 | -2/+2 |
* | Putting more constants which do not contain relocations into .literal{4|8|16} | Evan Cheng | 2007-03-08 | 3 | -16/+21 |
* | make this fail even in non-assert builds. | Chris Lattner | 2007-03-08 | 1 | -2/+4 |
* | This appears correct, enable it so we can see perf changes on testers | Chris Lattner | 2007-03-08 | 1 | -1/+1 |
* | Second half of PR1226. This is currently still disabled, until I have a chan... | Chris Lattner | 2007-03-08 | 1 | -9/+67 |
* | Fix a bug in APIntified ComputeMaskedBits(). | Zhou Sheng | 2007-03-08 | 1 | -8/+4 |
* | Change register allocation order to Dale's suggestion. | Evan Cheng | 2007-03-08 | 1 | -14/+18 |
* | Bug fix. Not advancing the register scavenger iterator correctly. | Evan Cheng | 2007-03-08 | 1 | -8/+21 |
* | For PR1205: | Reid Spencer | 2007-03-08 | 1 | -0/+10 |
* | For PR1205: | Reid Spencer | 2007-03-08 | 1 | -1/+206 |
* | For Darwin, put constant data into .const, .const_data, .literal{4|8|16} | Evan Cheng | 2007-03-08 | 4 | -4/+53 |
* | Put constant data to .const, .const_data, .literal{4|8|16} sections. | Evan Cheng | 2007-03-08 | 2 | -2/+25 |
* | Add ReadOnlySection directive. | Evan Cheng | 2007-03-08 | 2 | -1/+10 |
* | Added ContainsRelocations() to check if a constant might only be resolvable a... | Evan Cheng | 2007-03-08 | 2 | -0/+15 |
* | Only safe to use a call-clobbered or spilled callee-saved register as scratch... | Evan Cheng | 2007-03-07 | 1 | -2/+8 |