| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | 1. Adding missing immediate mode asm parser test cases. | Wesley Peck | 2010-11-13 | 1 | -2/+2 | |
| | | | | | | | 2. Fixing improper immediate mode reverse subtract. llvm-svn: 118948 | |||||
| * | Temporarily revert this. | Eric Christopher | 2010-11-12 | 1 | -5/+4 | |
| | | | | | llvm-svn: 118946 | |||||
| * | For pre-v6t2 targets, only select MOVi32imm if the immediate can be handled ↵ | Evan Cheng | 2010-11-12 | 3 | -15/+11 | |
| | | | | | | | with movi + orr. llvm-svn: 118945 | |||||
| * | Fixing improperly encoded reverse subtract instructions in MBlaze backend. | Wesley Peck | 2010-11-12 | 2 | -9/+8 | |
| | | | | | llvm-svn: 118943 | |||||
| * | Revert r118939 while I work out why it broke some buildbots. | Owen Anderson | 2010-11-12 | 1 | -65/+52 | |
| | | | | | llvm-svn: 118942 | |||||
| * | 1. Finishing MBlaze MC asm parser test cases | Wesley Peck | 2010-11-12 | 11 | -170/+222 | |
| | | | | | | | | | | | 2. Parsing .word directive in MBlaze asm parser 3. Fixing hack where memory instructions reversed order of last two parameters 4. Fixing many improperly encoded instructions 5. Support parsing special instructions (MFS,MTS,etc.) 6. Removing unused functions from inst printer llvm-svn: 118941 | |||||
| * | Remove DW_AT_start_scope support. It is incomplete and superseeded by ↵ | Devang Patel | 2010-11-12 | 2 | -40/+9 | |
| | | | | | | | location entries support. llvm-svn: 118940 | |||||
| * | Attemt to provide correct encodings for Thumb2 binary operators. | Owen Anderson | 2010-11-12 | 1 | -52/+65 | |
| | | | | | llvm-svn: 118939 | |||||
| * | Eliminate ARM::MOVi2pieces. Just use MOVi32imm and expand it to either ↵ | Evan Cheng | 2010-11-12 | 5 | -72/+34 | |
| | | | | | | | movi+orr or movw+movt depending on the subtarget. llvm-svn: 118938 | |||||
| * | Make this happen for ARM like x86. Don't entirely bail out when | Eric Christopher | 2010-11-12 | 1 | -4/+5 | |
| | | | | | | | | an address is in a different block, get it into a register and go from there. llvm-svn: 118936 | |||||
| * | Add conditional mvn instructions. | Evan Cheng | 2010-11-12 | 3 | -10/+67 | |
| | | | | | llvm-svn: 118935 | |||||
| * | Zap a copy/paste-o bit of dead code. | Jim Grosbach | 2010-11-12 | 1 | -2/+0 | |
| | | | | | llvm-svn: 118926 | |||||
| * | Refactor to parameterize some ARM load/store encoding patterns. Preparatory | Jim Grosbach | 2010-11-12 | 2 | -86/+24 | |
| | | | | | | | | to splitting the load/store pre/post indexed instructions into [r, r] and [r, imm] forms. llvm-svn: 118925 | |||||
| * | First stab at providing correct Thumb2 encodings, start with adc. | Owen Anderson | 2010-11-12 | 3 | -19/+122 | |
| | | | | | llvm-svn: 118924 | |||||
| * | Have GVN simplify instructions as it goes. For example, consider | Duncan Sands | 2010-11-12 | 1 | -18/+20 | |
| | | | | | | | | | | | | | | | | "%z = %x and %y". If GVN can prove that %y equals %x, then it turns this into "%z = %x and %x". With the new code, %z will be replaced with %x everywhere (and then deleted). Previously %z would be value numbered too, which is a waste of time. Also, while a clever value numbering algorithm would give %z the same value number as %x, our current one doesn't do so (at least I don't think it does). The new logic has an essentially equivalent effect to what you would get if %z was given the same value number as %x, i.e. it should make value numbering smarter. While there, get hold of target data once at the start rather than a gazillion times all over the place. llvm-svn: 118923 | |||||
| * | Add some missing isel predicates on def : pat patterns to avoid generating ↵ | Evan Cheng | 2010-11-12 | 3 | -64/+54 | |
| | | | | | | | VFP vmla / vmls (they cause stalls). Disabling them in isel is properly not a right solution, I'll look into a proper solution next. llvm-svn: 118922 | |||||
| * | Kill more unused stuff. | Jim Grosbach | 2010-11-12 | 1 | -43/+0 | |
| | | | | | llvm-svn: 118921 | |||||
| * | MCELF: Copy the symbol name only if we're going to modify it. | Benjamin Kramer | 2010-11-12 | 1 | -9/+8 | |
| | | | | | llvm-svn: 118920 | |||||
| * | Remove unused class. | Jim Grosbach | 2010-11-12 | 1 | -8/+0 | |
| | | | | | llvm-svn: 118919 | |||||
| * | When the definition of an address value is in a different block | Dan Gohman | 2010-11-12 | 1 | -5/+5 | |
| | | | | | | | | | from the user of the address, fall back to just using the address in a register instead of bailing out of fast-isel altogether. llvm-svn: 118917 | |||||
| * | accept lret as an alias for lretl, fixing the reopened part of PR8592 | Chris Lattner | 2010-11-12 | 2 | -2/+5 | |
| | | | | | llvm-svn: 118916 | |||||
| * | Remove what looks like dead code in the production of debug lines. | Rafael Espindola | 2010-11-12 | 1 | -45/+2 | |
| | | | | | | | | | | We only produce debug line information if we have seen a line directive, so this code is dead. Also, if we want to be bug by bug compatible with gas and sometimes produce "empty" .debug_line sections, this will match the content produced by gas. llvm-svn: 118914 | |||||
| * | typo (4th checkin for one fix) | Andrew Trick | 2010-11-12 | 1 | -1/+1 | |
| | | | | | llvm-svn: 118913 | |||||
| * | Fill in the default predication bits for ARM unconditional branch. | Jim Grosbach | 2010-11-12 | 1 | -0/+1 | |
| | | | | | llvm-svn: 118907 | |||||
| * | Encoding for ARM LDRSB instructions. | Jim Grosbach | 2010-11-12 | 1 | -7/+12 | |
| | | | | | llvm-svn: 118905 | |||||
| * | Fixes PR8287: SD scheduling time. The fix is a failsafe that prevents | Andrew Trick | 2010-11-12 | 1 | -13/+53 | |
| | | | | | | | | | | catastrophic compilation time in the event of unreasonable LLVM IR. Code quality is a separate issue--someone upstream needs to do a better job of reducing to llvm.memcpy. If the situation can be reproduced with any supported frontend, then it will be a separate bug. llvm-svn: 118904 | |||||
| * | implement PR8592: empirically "lretq" is a "lret" with a rex.w prefix. | Chris Lattner | 2010-11-12 | 1 | -0/+2 | |
| | | | | | llvm-svn: 118903 | |||||
| * | tidy up. | Chris Lattner | 2010-11-12 | 2 | -10/+7 | |
| | | | | | llvm-svn: 118896 | |||||
| * | gnu as support both % and @ before types, do the same. | Rafael Espindola | 2010-11-12 | 1 | -10/+4 | |
| | | | | | llvm-svn: 118893 | |||||
| * | Re-disable TBAA for now; it broke MultiSource/Applications/JM/lencod, | Dan Gohman | 2010-11-12 | 1 | -1/+1 | |
| | | | | | | | at least. llvm-svn: 118890 | |||||
| * | Fix memory access lowering on SPU, adding | Kalle Raiskila | 2010-11-12 | 4 | -115/+252 | |
| | | | | | | | | | | | | | support for the case where alignment<value size. These cases were silently miscompiled before this patch. Now they are overly verbose -especially storing is- and any front-end should still avoid misaligned memory accesses as much as possible. The bit juggling algorithm added here probably has some room for improvement still. llvm-svn: 118889 | |||||
| * | Fix up a few more spots of addrmode2 (or not) changes that were | Eric Christopher | 2010-11-12 | 1 | -6/+12 | |
| | | | | | | | | | missed. Update some comments accordingly. Fixes rdar://8652289 llvm-svn: 118888 | |||||
| * | Enable TBAA. | Dan Gohman | 2010-11-12 | 1 | -1/+1 | |
| | | | | | llvm-svn: 118884 | |||||
| * | Fix some style issues in PBQP. Patch by David Blaikie. | Lang Hames | 2010-11-12 | 1 | -20/+25 | |
| | | | | | llvm-svn: 118883 | |||||
| * | Enhance DSE to handle the case where a free call makes more than | Dan Gohman | 2010-11-12 | 1 | -12/+24 | |
| | | | | | | | | one store dead. This is especially noticeable in SingleSource/Benchmarks/Shootout/objinst. llvm-svn: 118875 | |||||
| * | Remove possibly useful info from comment, per Chris. | Dale Johannesen | 2010-11-12 | 1 | -1/+1 | |
| | | | | | llvm-svn: 118865 | |||||
| * | Enable mips32 mul instruction. Patch by Akira Hatanaka <ahatanaka@mips.com> | Bruno Cardoso Lopes | 2010-11-12 | 3 | -3/+6 | |
| | | | | | llvm-svn: 118864 | |||||
| * | Start of support for binary emit of 16-it Thumb instructions. | Jim Grosbach | 2010-11-11 | 2 | -7/+18 | |
| | | | | | llvm-svn: 118859 | |||||
| * | Fill out support for Thumb2 encodings of NEON instructions. | Owen Anderson | 2010-11-11 | 3 | -0/+21 | |
| | | | | | llvm-svn: 118854 | |||||
| * | The BRK instruction in the MicroBlaze is a branch-and-link. | Wesley Peck | 2010-11-11 | 1 | -2/+2 | |
| | | | | | llvm-svn: 118848 | |||||
| * | Doxygenify | Nick Lewycky | 2010-11-11 | 1 | -1/+1 | |
| | | | | | llvm-svn: 118846 | |||||
| * | Add helper functions for computing the Location of load, store, | Dan Gohman | 2010-11-11 | 7 | -66/+37 | |
| | | | | | | | and vaarg instructions. llvm-svn: 118845 | |||||
| * | Fix tblgen instruction errors exposed by MC asm parser tests | Wesley Peck | 2010-11-11 | 2 | -30/+29 | |
| | | | | | | | | Fix minimum 16-bit signed value error exposed by MC asm parser tests Add initial MC asm parser tests for the MBlaze backend llvm-svn: 118844 | |||||
| * | Add correct Thumb2 encodings for NEON vst[1,2,3,4] and vld[1,2,3,4]. | Owen Anderson | 2010-11-11 | 3 | -1/+22 | |
| | | | | | llvm-svn: 118843 | |||||
| * | Don't forget the TBAA info, if available. | Dan Gohman | 2010-11-11 | 1 | -1/+6 | |
| | | | | | llvm-svn: 118842 | |||||
| * | Factor out Instruction::isSafeToSpeculativelyExecute's code for | Dan Gohman | 2010-11-11 | 3 | -32/+59 | |
| | | | | | | | | | | | | | testing for dereferenceable pointers into a helper function, isDereferenceablePointer. Teach it how to reason about GEPs with simple non-zero indices. Also eliminate ArgumentPromtion's IsAlwaysValidPointer, which didn't check for weak externals or out of range gep indices. llvm-svn: 118840 | |||||
| * | Revert the accidental commit I made reverting the previous commit. | Eric Christopher | 2010-11-11 | 1 | -6/+7 | |
| | | | | | llvm-svn: 118835 | |||||
| * | Trailing whitespace. | Jim Grosbach | 2010-11-11 | 1 | -5/+5 | |
| | | | | | llvm-svn: 118831 | |||||
| * | ARM fixup encoding for direct call instructions (BL). | Jim Grosbach | 2010-11-11 | 1 | -8/+22 | |
| | | | | | llvm-svn: 118829 | |||||
| * | Revert this temporarily. | Eric Christopher | 2010-11-11 | 5 | -104/+31 | |
| | | | | | llvm-svn: 118827 | |||||

