| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix a regression in my patch from last night that broke the llvmgcc4 build on | Chris Lattner | 2006-05-09 | 1 | -1/+1 |
* | Indent .data/.text in the .s file | Chris Lattner | 2006-05-09 | 1 | -5/+5 |
* | Add pseudo dependency to force a def&use operand to be scheduled last (unless | Evan Cheng | 2006-05-09 | 1 | -17/+108 |
* | Debugging info | Evan Cheng | 2006-05-09 | 1 | -3/+3 |
* | Remove a completed entry. | Evan Cheng | 2006-05-09 | 1 | -42/+0 |
* | PR 770 - permit coallescing of registers in subset register classes. | Evan Cheng | 2006-05-09 | 1 | -13/+25 |
* | Implement MASM sections correctly, without a "has masm sections flag" and a b... | Chris Lattner | 2006-05-09 | 2 | -28/+20 |
* | Oh yeah, there are two of these now, unify both. | Chris Lattner | 2006-05-09 | 1 | -22/+15 |
* | Setting SwitchToSectionDirective properly in the MASM backend permits a bunch | Chris Lattner | 2006-05-09 | 1 | -22/+15 |
* | MASM doesn't have one of these. | Chris Lattner | 2006-05-09 | 1 | -0/+1 |
* | Don't prefix section directives with a tab. Doing so causes blank lines to | Chris Lattner | 2006-05-09 | 1 | -1/+1 |
* | Make the masm codepath work like the normal code path. | Chris Lattner | 2006-05-09 | 1 | -2/+4 |
* | Preserve prior behavior | Chris Lattner | 2006-05-09 | 1 | -2/+1 |
* | The MASM asmprinter has been fixed, these hacks are no longer needed. | Chris Lattner | 2006-05-09 | 1 | -20/+2 |
* | Fix the MASM asmprinter's lies. It does not want to emit code to .text/.data | Chris Lattner | 2006-05-09 | 4 | -7/+17 |
* | Split SwitchSection into SwitchTo{Text|Data}Section methods. | Chris Lattner | 2006-05-09 | 9 | -86/+131 |
* | Some notes and thoughts to myself | Chris Lattner | 2006-05-09 | 1 | -7/+7 |
* | Patch to make some xforms preserve each other. Patch contributed by | Chris Lattner | 2006-05-09 | 5 | -2/+32 |
* | Move some methods out of line so that MutexGuard.h isn't needed in a public h... | Chris Lattner | 2006-05-08 | 3 | -9/+83 |
* | Another bad case I noticed | Chris Lattner | 2006-05-08 | 1 | -0/+37 |
* | add a note | Chris Lattner | 2006-05-08 | 1 | -0/+9 |
* | Make the case I just checked in stronger. Now we compile this: | Chris Lattner | 2006-05-08 | 1 | -5/+13 |
* | Implement and_sext.ll:test3, generating: | Chris Lattner | 2006-05-08 | 1 | -1/+8 |
* | Yet more readme updating | Nate Begeman | 2006-05-08 | 1 | -36/+22 |
* | Compile this: | Chris Lattner | 2006-05-08 | 1 | -0/+5 |
* | New note about something bad happening in target independent optimizers | Nate Begeman | 2006-05-08 | 1 | -2/+18 |
* | Proving once again that I am not as smart as the compiler | Nate Begeman | 2006-05-08 | 1 | -2/+1 |
* | Fold more shifts into inserts, and update the README | Nate Begeman | 2006-05-08 | 2 | -20/+34 |
* | Fold shifts with undef operands. | Chris Lattner | 2006-05-08 | 1 | -0/+7 |
* | When tracking demanded bits, if any bits from the sext of an SRA are demanded, | Chris Lattner | 2006-05-08 | 1 | -2/+8 |
* | Make emission of jump tables a bit less conservative; they are now required | Nate Begeman | 2006-05-08 | 1 | -4/+4 |
* | Fixing truncate. Previously we were emitting truncate from r16 to r8 as | Evan Cheng | 2006-05-08 | 7 | -25/+100 |
* | Update some stuff now that the new rlwimi code has gone in | Nate Begeman | 2006-05-08 | 2 | -70/+0 |
* | Fix PR772 | Nate Begeman | 2006-05-08 | 1 | -9/+9 |
* | Typo's | Evan Cheng | 2006-05-07 | 1 | -2/+2 |
* | Unlike Unix, Windows won't let a file be implicitly replaced via renaming wit... | Jeff Cohen | 2006-05-07 | 1 | -1/+1 |
* | New rlwimi implementation, which is superior to the old one. There are | Nate Begeman | 2006-05-07 | 1 | -86/+45 |
* | Use ComputeMaskedBits to determine # sign bits as a fallback. This allows us | Chris Lattner | 2006-05-06 | 1 | -2/+23 |
* | Add some more sign propagation cases | Chris Lattner | 2006-05-06 | 1 | -10/+77 |
* | Apply bug fix supplied by Greg Pettyjohn for a bug he found: '<invalid>' is ... | Jeff Cohen | 2006-05-06 | 2 | -2/+2 |
* | Simplify some code, add a couple minor missed folds | Chris Lattner | 2006-05-06 | 1 | -21/+16 |
* | constant fold sign_extend_inreg | Chris Lattner | 2006-05-06 | 1 | -1/+9 |
* | remove cases handled elsewhere | Chris Lattner | 2006-05-06 | 1 | -16/+2 |
* | Add some more simple sign bit propagation cases. | Chris Lattner | 2006-05-06 | 1 | -27/+67 |
* | Fix some loose ends in MASM support. | Jeff Cohen | 2006-05-06 | 3 | -65/+77 |
* | Use the new TargetLowering::ComputeNumSignBits method to eliminate | Chris Lattner | 2006-05-06 | 1 | -5/+5 |
* | Add some really really simple code for computing sign-bit propagation. | Chris Lattner | 2006-05-06 | 1 | -0/+95 |
* | When inserting casts, be careful of where we put them. We cannot insert | Chris Lattner | 2006-05-06 | 1 | -9/+12 |
* | Move some code around. | Chris Lattner | 2006-05-06 | 1 | -124/+140 |
* | Teach the X86 backend about non-i32 inline asm register classes. | Chris Lattner | 2006-05-06 | 1 | -5/+25 |