| Commit message (Expand) | Author | Age | Files | Lines |
* | add a note about overflow idiom recognition. | Chris Lattner | 2010-12-15 | 1 | -1/+19 |
* | Generalize an assert. | Rafael Espindola | 2010-12-15 | 1 | -1/+2 |
* | add a shift/imul missed optimization | Chris Lattner | 2010-12-15 | 1 | -0/+45 |
* | add a note about a SPEC hack that gcc mainline does. | Chris Lattner | 2010-12-15 | 1 | -0/+23 |
* | take care of some todos, transforming [us]mul_lohi into | Chris Lattner | 2010-12-15 | 1 | -2/+46 |
* | when transforming a MULHS into a wider MUL, there is no need to SRA the | Chris Lattner | 2010-12-15 | 1 | -1/+1 |
* | make qsort predicate more conformant by returning 0 for equal values. | Chris Lattner | 2010-12-15 | 1 | -1/+5 |
* | Reapply r121808 now that the missing patterns have been supplied. | Bill Wendling | 2010-12-15 | 1 | -16/+21 |
* | Add some missing patterns now that tLDRB and tLDRH are split into reg and | Bill Wendling | 2010-12-15 | 1 | -2/+12 |
* | Fix PR8790, another instance where unreachable code can cause instruction sim... | Owen Anderson | 2010-12-15 | 1 | -1/+6 |
* | Cleanup trailing whitespace. | Owen Anderson | 2010-12-15 | 1 | -27/+27 |
* | Revert r121808 until I can fix the build. | Bill Wendling | 2010-12-15 | 1 | -21/+16 |
* | thumb adr fixup needs alignment just like the t2 version. | Jim Grosbach | 2010-12-14 | 1 | -1/+2 |
* | Comments and cleaning. | Bill Wendling | 2010-12-14 | 1 | -6/+4 |
* | Make the ISel selections for LDR/STR the same as before the LDRr/LDRi split. In | Bill Wendling | 2010-12-14 | 1 | -16/+21 |
* | Simplify RegAllocGreedy's use of register aliases. | Jakob Stoklund Olesen | 2010-12-14 | 1 | -17/+4 |
* | Simplify CCState's use of register aliases. | Jakob Stoklund Olesen | 2010-12-14 | 1 | -5/+3 |
* | Simplify AggressiveAntiDepBreaker's use of register aliases. | Jakob Stoklund Olesen | 2010-12-14 | 1 | -31/+14 |
* | Simplyfy RegAllocBasic by using getOverlaps instead of getAliasSet. | Jakob Stoklund Olesen | 2010-12-14 | 1 | -14/+4 |
* | Add support for MC-ized encoding of tLEApcrel and tLEApcrelJT. rdar://8755755 | Jim Grosbach | 2010-12-14 | 6 | -21/+50 |
* | Fix comment. | Bill Wendling | 2010-12-14 | 1 | -1/+1 |
* | Multiclassify the LDR/STR encoding patterns. The only functionality difference | Bill Wendling | 2010-12-14 | 1 | -69/+69 |
* | Fix a minor bug in two-address pass. It was missing a commute opportunity. | Evan Cheng | 2010-12-14 | 1 | -1/+2 |
* | trailing whitespace | Jim Grosbach | 2010-12-14 | 1 | -4/+4 |
* | Move debugging code entirely within DEBUG(). Silences an unused variable | Matt Beaumont-Gay | 2010-12-14 | 1 | -8/+8 |
* | Refactor a bit for legibility. | Jim Grosbach | 2010-12-14 | 1 | -28/+27 |
* | trailing whitespace. | Jim Grosbach | 2010-12-14 | 1 | -4/+4 |
* | Make sure to propagate the predicate operands for LEApcrel to ADR. | Jim Grosbach | 2010-12-14 | 1 | -4/+4 |
* | Fix a small bug (typo?) in the fixup for Thumb1 CBZ/CBNZ instructions. | Owen Anderson | 2010-12-14 | 1 | -1/+1 |
* | Add LiveIntervalUnion print methods, RegAllocGreedy::trySplit debug spew. | Jakob Stoklund Olesen | 2010-12-14 | 3 | -5/+52 |
* | Use TRI::printReg instead of AbstractRegisterDescription when printing | Jakob Stoklund Olesen | 2010-12-14 | 3 | -34/+13 |
* | Add TargetRegisterInfo::printReg() to pretty-print registers. | Jakob Stoklund Olesen | 2010-12-14 | 1 | -0/+8 |
* | ARM Fixups relative to thumb functions need to have the low bit of the value | Jim Grosbach | 2010-12-14 | 2 | -0/+14 |
* | Q.seenAllInterferences() must be called after Q.collectInterferingVRegs(). | Jakob Stoklund Olesen | 2010-12-14 | 1 | -2/+4 |
* | MC/ARM: Fix-up fixup offset for fixup_arm_branch target specific fixup. | Daniel Dunbar | 2010-12-14 | 1 | -1/+1 |
* | Trailing whitespace | Jim Grosbach | 2010-12-14 | 1 | -6/+6 |
* | Use the integer scheduling intrinsic for integer loads and stores. | Bill Wendling | 2010-12-14 | 1 | -6/+6 |
* | - Insert new instructions before DomBlock's terminator, | Chris Lattner | 2010-12-14 | 1 | -7/+16 |
* | fix two significant issues with FoldTwoEntryPHINode: | Chris Lattner | 2010-12-14 | 1 | -1/+11 |
* | remove the instsimplify logic I added in r121754. It is apparently | Chris Lattner | 2010-12-14 | 1 | -11/+1 |
* | clean up logic, convert std::set to SmallPtrSet, handle the case | Chris Lattner | 2010-12-14 | 1 | -56/+61 |
* | tidy up a bit, move DEBUG down to when we commit to doing the transform so we | Chris Lattner | 2010-12-14 | 1 | -7/+5 |
* | use SimplifyInstruction instead of reimplementing part of it. | Chris Lattner | 2010-12-14 | 1 | -10/+7 |
* | simplify GetIfCondition by using getSinglePredecessor. | Chris Lattner | 2010-12-14 | 1 | -28/+24 |
* | use AddPredecessorToBlock in 3 places instead of a manual loop. | Chris Lattner | 2010-12-14 | 1 | -18/+6 |
* | make FoldTwoEntryPHINode use instsimplify a bit, make | Chris Lattner | 2010-12-14 | 1 | -12/+21 |
* | remove the dead (and terrible) llvm::RemoveSuccessor function. | Chris Lattner | 2010-12-14 | 1 | -46/+0 |
* | improve DEBUG's a bit, switch to eraseFromParent() to simplify | Chris Lattner | 2010-12-14 | 1 | -26/+28 |
* | reapply my recent change that disables a piece of the switch formation | Chris Lattner | 2010-12-14 | 1 | -5/+13 |
* | The tLDR et al instructions were emitting either a reg/reg or reg/imm | Bill Wendling | 2010-12-14 | 10 | -224/+340 |