| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | whitespace cleanups, make the MipsAsmPrinter::doInitialization | Chris Lattner | 2009-07-21 | 1 | -14/+8 |
* | fix Sparc, SystemZ, and MSP430 to not override AsmPrinter::doInitialization. | Chris Lattner | 2009-07-21 | 3 | -22/+0 |
* | convert this test to filecheck format, which is faster and avoids false match... | Chris Lattner | 2009-07-21 | 1 | -4/+16 |
* | Rename LessPrivateGlobalPrefix -> LinkerPrivateGlobalPrefix to match the | Chris Lattner | 2009-07-21 | 9 | -15/+17 |
* | Move StringRef comparison operators out of class. | Daniel Dunbar | 2009-07-21 | 1 | -16/+38 |
* | fix indentation | Chris Lattner | 2009-07-21 | 1 | -16/+16 |
* | remove an unneeded override. | Chris Lattner | 2009-07-21 | 1 | -5/+0 |
* | more random whitespace cleanup, eliminate #define, avoid copying | Chris Lattner | 2009-07-21 | 3 | -67/+59 |
* | add a testcase for the pic16 section handling stuff. | Chris Lattner | 2009-07-21 | 1 | -0/+15 |
* | some simple whitespace cleanup, avoid copying vectors for no reason | Chris Lattner | 2009-07-21 | 1 | -31/+24 |
* | Add StringRef::{substr, startswith}. | Daniel Dunbar | 2009-07-21 | 2 | -1/+39 |
* | Another rewriter bug exposed by recent coalescer changes. ReuseInfo::GetRegFo... | Evan Cheng | 2009-07-21 | 2 | -23/+5411 |
* | Add missing include. | Daniel Dunbar | 2009-07-21 | 1 | -0/+1 |
* | Switch this API to StringRef. | Daniel Dunbar | 2009-07-21 | 2 | -5/+6 |
* | Simplify / normalize some uses of Value::getName. | Daniel Dunbar | 2009-07-21 | 5 | -7/+7 |
* | Add StringRef class, with fixes. | Daniel Dunbar | 2009-07-21 | 2 | -0/+186 |
* | unbreak unit-tests on gcc-4.4. | Edwin Török | 2009-07-21 | 1 | -0/+1 |
* | Remove some unused code. | Daniel Dunbar | 2009-07-21 | 1 | -3/+0 |
* | Support adding relocations for data sections, handling the cases where | Bruno Cardoso Lopes | 2009-07-21 | 4 | -25/+60 |
* | remove a very large testcase for now. | Chris Lattner | 2009-07-21 | 1 | -2891/+0 |
* | Add jumps with 8-bit relocation for assembler / disassembler. Patch by Sean C... | Evan Cheng | 2009-07-21 | 1 | -0/+24 |
* | Fix a dagga combiner bug: avoid creating illegal constant. | Evan Cheng | 2009-07-21 | 2 | -9/+41 |
* | Move a bit more state over to the LLVMContext. | Owen Anderson | 2009-07-21 | 6 | -56/+49 |
* | Add the following functions: | Bill Wendling | 2009-07-21 | 1 | -0/+12 |
* | Add a testcase for PR2831. | Dan Gohman | 2009-07-21 | 1 | -0/+35 |
* | Add a testcase for PR4569, which is now fixed. | Dan Gohman | 2009-07-21 | 1 | -0/+24 |
* | Add an svn:ignore. | Dan Gohman | 2009-07-21 | 0 | -0/+0 |
* | Make the range calculations for addrecs to be more conservative, | Dan Gohman | 2009-07-21 | 1 | -3/+9 |
* | Whitespace cleanups. | Dan Gohman | 2009-07-21 | 1 | -3/+3 |
* | Minor code simplification. | Dan Gohman | 2009-07-21 | 1 | -1/+1 |
* | Fix ARM isle code that optimize multiply by constants which are power-of-2 +/... | Evan Cheng | 2009-07-21 | 3 | -16/+61 |
* | Cross RC coalescing is now on by default. | Evan Cheng | 2009-07-21 | 2 | -5/+5 |
* | revert 76503 while I figure out what's going on | Dale Johannesen | 2009-07-21 | 1 | -2/+5 |
* | Add a comment to clarify why there isn't any code in this spot. | Dan Gohman | 2009-07-20 | 1 | -0/+2 |
* | Remove the code that tried to evaluate whether (A pred B) is known | Dan Gohman | 2009-07-20 | 1 | -42/+0 |
* | Make sure a global matching asm 'i' constraint gets its | Dale Johannesen | 2009-07-20 | 1 | -5/+2 |
* | Move stripping of bitcasts in inline asm arguments | Dale Johannesen | 2009-07-20 | 2 | -12/+7 |
* | Minor code simplification. | Dan Gohman | 2009-07-20 | 1 | -1/+1 |
* | Documentation for the new non-overflow and exact keywords. | Dan Gohman | 2009-07-20 | 1 | -11/+26 |
* | The upper argument of ConstantRange is exclusive, not inclusive. | Dan Gohman | 2009-07-20 | 2 | -1/+30 |
* | clean up some formatting, indent by 2 instead of 4. | Chris Lattner | 2009-07-20 | 1 | -19/+9 |
* | CMP and TST define CPSR, not use it. | David Goodwin | 2009-07-20 | 1 | -1/+1 |
* | Re-apply 75490, 75806 and 76177 with fixes and tests. Efficiency comes | David Greene | 2009-07-20 | 7 | -17/+3078 |
* | Forgot this test earlier. | Evan Cheng | 2009-07-20 | 1 | -0/+1323 |
* | Simplify the code in DarwinTargetAsmInfo::emitUsedDirectiveFor so that humans... | Bill Wendling | 2009-07-20 | 2 | -17/+16 |
* | Pass in the unfortunately named "LessPrivatePrefix" for the | Bill Wendling | 2009-07-20 | 5 | -5/+10 |
* | Assembly and Bitcode support for unsigned/signed overflow flags and | Dan Gohman | 2009-07-20 | 12 | -4/+387 |
* | Use TII->findCommutedOpIndices to find the commute operands (rather than gues... | Evan Cheng | 2009-07-20 | 2 | -4/+19 |
* | Change the casting of linkage types into a map. This makes this much more robust | Bill Wendling | 2009-07-20 | 1 | -3/+88 |
* | Clarify that OverflowingBinaryOperator is not used for SDiv, even though | Dan Gohman | 2009-07-20 | 1 | -1/+2 |