| Commit message (Expand) | Author | Age | Files | Lines |
* | regenerate | Chris Lattner | 2005-11-06 | 1 | -785/+793 |
* | Allow globals to have an alignment specified. Switch to using isPowerOf2_32 | Chris Lattner | 2005-11-06 | 1 | -13/+25 |
* | allow functions and modules to have an explicit alignment | Chris Lattner | 2005-11-06 | 1 | -0/+7 |
* | regenerate | Chris Lattner | 2005-11-06 | 1 | -820/+775 |
* | factor optional alignment | Chris Lattner | 2005-11-06 | 1 | -34/+23 |
* | ask for 16-byte aligned jmpbufs. This should unbreak C++ on IA64 (and | Duraid Madina | 2005-11-06 | 1 | -1/+2 |
* | enumerate non-standard argument encoding cases, such as alignment info for | Chris Lattner | 2005-11-05 | 1 | -10/+34 |
* | rearrange some info about the instruction encoding | Chris Lattner | 2005-11-05 | 1 | -105/+123 |
* | Write/read allocation instruction alignment info to .bc files. | Chris Lattner | 2005-11-05 | 2 | -8/+21 |
* | new testcase | Chris Lattner | 2005-11-05 | 1 | -0/+17 |
* | add an accessor | Chris Lattner | 2005-11-05 | 1 | -0/+4 |
* | verify that alignments are always a power of 2 | Chris Lattner | 2005-11-05 | 1 | -0/+2 |
* | regenerate | Chris Lattner | 2005-11-05 | 1 | -164/+176 |
* | Verify that alignment amounts are a power of 2 | Chris Lattner | 2005-11-05 | 1 | -0/+12 |
* | fix printing the alignment directive | Chris Lattner | 2005-11-05 | 1 | -1/+1 |
* | Add support alignment of allocation instructions. | Nate Begeman | 2005-11-05 | 13 | -3294/+2680 |
* | add a case Nate sent me | Chris Lattner | 2005-11-05 | 1 | -0/+23 |
* | Implement Transforms/TailCallElim/return-undef.ll, a trivial case | Chris Lattner | 2005-11-05 | 1 | -0/+1 |
* | New testcase | Chris Lattner | 2005-11-05 | 1 | -0/+8 |
* | Turn sdiv into udiv if both operands have a clear sign bit. This occurs | Chris Lattner | 2005-11-05 | 1 | -0/+19 |
* | Turn srem -> urem when neither input has their sign bit set. This triggers | Chris Lattner | 2005-11-05 | 1 | -1/+19 |
* | Fix logic bug in finding retry slot in tally. | Jim Laskey | 2005-11-05 | 1 | -15/+33 |
* | Fix a warning | Jim Laskey | 2005-11-04 | 1 | -0/+1 |
* | oops, forgot to load GP for indirect calls, though the old code now commented | Duraid Madina | 2005-11-04 | 1 | -4/+21 |
* | kill redundant SP/GP/RP save/restores across calls | Duraid Madina | 2005-11-04 | 1 | -2/+3 |
* | add support for loading bools | Duraid Madina | 2005-11-04 | 1 | -1/+7 |
* | Scheduling now uses itinerary data. | Jim Laskey | 2005-11-04 | 1 | -166/+201 |
* | <cassert> no longer required to make VC++ happy. | Jeff Cohen | 2005-11-04 | 1 | -2/+0 |
* | change NULL to 0, unbreaks the ppc target when building on ia64 | Duraid Madina | 2005-11-04 | 1 | -2/+2 |
* | fun with predicates! (add TRUNC i64->i1, AND i1 i1, fix XOR i1 i1) | Duraid Madina | 2005-11-04 | 1 | -41/+97 |
* | 1. Remove ranges from itinerary data. | Jim Laskey | 2005-11-03 | 2 | -29/+18 |
* | Fix mac os spelling | Chris Lattner | 2005-11-03 | 1 | -4/+4 |
* | Add more bison versions, thanks to Vladimir | Chris Lattner | 2005-11-03 | 1 | -1/+1 |
* | Per bug 655, give people more options in case 1.35 doesn't build on their | Chris Lattner | 2005-11-03 | 1 | -1/+1 |
* | add pattern to load constant 0 into a predicate reg | Duraid Madina | 2005-11-03 | 1 | -0/+2 |
* | add a hack that fixes: | Chris Lattner | 2005-11-03 | 1 | -1/+4 |
* | Reject integer literals that are out of range for their type. | Chris Lattner | 2005-11-03 | 1 | -1/+19 |
* | Fix a bug that prevented this pattern from matching | Chris Lattner | 2005-11-03 | 1 | -1/+1 |
* | Fix a crash that Andrew noticed, and add a pair of braces to unfconfuse | Nate Begeman | 2005-11-02 | 1 | -5/+5 |
* | make this 64 bit clean, fixed test30 of /Regression/Transforms/InstCombine/ad... | Andrew Lenharth | 2005-11-02 | 1 | -1/+1 |
* | This is missed by InstCombine, patch comming | Andrew Lenharth | 2005-11-02 | 1 | -0/+7 |
* | Fix a QOI issue noticed by Markus F.X.J. Oberhumer. | Chris Lattner | 2005-11-02 | 2 | -0/+2 |
* | "fix" support for FP constants (this code asserts in the scheduler, | Duraid Madina | 2005-11-02 | 1 | -2/+4 |
* | add F0 and F1 to the FP register class | Duraid Madina | 2005-11-02 | 1 | -3/+19 |
* | This works now | Chris Lattner | 2005-11-02 | 1 | -2/+1 |
* | Add support for immediates directly in the pattern, this allows itanium to | Chris Lattner | 2005-11-02 | 2 | -3/+33 |
* | Keep VC++ happy. | Jeff Cohen | 2005-11-02 | 1 | -0/+1 |
* | add support for SELECT to TargetSelectionDAG.td, add support for | Duraid Madina | 2005-11-02 | 2 | -31/+43 |
* | add support for loading FP constants +0.0 and +1.0 to the dag isel, | Duraid Madina | 2005-11-02 | 2 | -3/+8 |
* | Fix a source of undefined behavior when dealing with 64-bit types. This | Chris Lattner | 2005-11-02 | 1 | -1/+1 |