| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Continue factoring computeOperandLatency. Use it for ARM hasHighOperandLatency. | Andrew Trick | 2012-06-07 | 2 | -24/+67 | |
| | | | | | llvm-svn: 158164 | |||||
| * | ARM getOperandLatency rewrite. | Andrew Trick | 2012-06-07 | 1 | -85/+112 | |
| | | | | | | | Match expectations of the new latency API. Cleanup and make the logic consistent. llvm-svn: 158163 | |||||
| * | ARM getOperandLatency should return -1 for unknown, consistent with API | Andrew Trick | 2012-06-07 | 1 | -1/+4 | |
| | | | | | llvm-svn: 158162 | |||||
| * | Fix ARM getInstrLatency logic to work with the current API. | Andrew Trick | 2012-06-07 | 1 | -13/+19 | |
| | | | | | llvm-svn: 158161 | |||||
| * | PR13046: we can't replace usage of SUB with CMP in the lowering phase. | Manman Ren | 2012-06-07 | 1 | -1/+2 | |
| | | | | | | | It will cause assertion failure later on. llvm-svn: 158160 | |||||
| * | Use a base register instead of an index register with the local dynamic model. | Rafael Espindola | 2012-06-07 | 1 | -0/+8 | |
| | | | | | | | Fixes pr13048. llvm-svn: 158158 | |||||
| * | X86: replace SUB with CMP if possible | Manman Ren | 2012-06-07 | 1 | -1/+14 | |
| | | | | | | | | | | | | | | | | | | This patch will optimize the following movq %rdi, %rax subq %rsi, %rax cmovsq %rsi, %rdi movq %rdi, %rax to cmpq %rsi, %rdi cmovsq %rsi, %rdi movq %rdi, %rax Perform this optimization if the actual result of SUB is not used. rdar: 11540023 llvm-svn: 158126 | |||||
| * | Revert r157755. | Manman Ren | 2012-06-06 | 2 | -41/+0 | |
| | | | | | | | | | The commit is intended to fix rdar://11540023. It is implemented as part of peephole optimization. We can actually implement this in the SelectionDAG lowering phase. llvm-svn: 158122 | |||||
| * | Round 2 of dead private variable removal. | Benjamin Kramer | 2012-06-06 | 8 | -26/+6 | |
| | | | | | | | | | LLVM is now -Wunused-private-field clean except for - lib/MC/MCDisassembler/Disassembler.h. Not sure why it keeps all those unaccessible fields. - gtest. llvm-svn: 158096 | |||||
| * | Remove unused private fields found by clang's new -Wunused-private-field. | Benjamin Kramer | 2012-06-06 | 10 | -19/+8 | |
| | | | | | | | | | There are some that I didn't remove this round because they looked like obvious stubs. There are dead variables in gtest too, they should be fixed upstream. llvm-svn: 158090 | |||||
| * | Add support for dynamic stack realignment in the presence of dynamic allocas on | Chad Rosier | 2012-06-06 | 3 | -14/+93 | |
| | | | | | | | | X86. rdar://11496434 llvm-svn: 158087 | |||||
| * | Correct decoder for T1 conditional B encoding | Richard Barton | 2012-06-06 | 1 | -2/+2 | |
| | | | | | llvm-svn: 158055 | |||||
| * | Mark several instructions SSE2 instead of SSE3 as they should be. | Craig Topper | 2012-06-06 | 2 | -9/+11 | |
| | | | | | llvm-svn: 158049 | |||||
| * | misched: API for minimum vs. expected latency. | Andrew Trick | 2012-06-05 | 3 | -19/+126 | |
| | | | | | | | | Minimum latency determines per-cycle scheduling groups. Expected latency determines critical path and cost. llvm-svn: 158021 | |||||
| * | Fix header file include order in NVPTX backend NV_CONTRIB | Yuan Lin | 2012-06-05 | 1 | -2/+2 | |
| | | | | | llvm-svn: 158013 | |||||
| * | PPC32 uses R2 as the TLS register. Fix the copy and paste. | Roman Divacky | 2012-06-05 | 1 | -3/+3 | |
| | | | | | llvm-svn: 158004 | |||||
| * | X86 itinerary properties. | Andrew Trick | 2012-06-05 | 2 | -2/+29 | |
| | | | | | llvm-svn: 157981 | |||||
| * | ARM itinerary properties. | Andrew Trick | 2012-06-05 | 3 | -22/+10 | |
| | | | | | llvm-svn: 157980 | |||||
| * | misched: Added MultiIssueItineraries. | Andrew Trick | 2012-06-05 | 5 | -15/+13 | |
| | | | | | | | | | This allows a subtarget to explicitly specify the issue width and other properties without providing pipeline stage details for every instruction. llvm-svn: 157979 | |||||
| * | whitespace | Andrew Trick | 2012-06-05 | 2 | -5/+2 | |
| | | | | | llvm-svn: 157976 | |||||
| * | Revert commit r157966 | Joel Jones | 2012-06-05 | 1 | -24/+0 | |
| | | | | | llvm-svn: 157972 | |||||
| * | This change handles a another case for generating the bic instruction | Joel Jones | 2012-06-04 | 1 | -0/+24 | |
| | | | | | | | | | | when a compile time constant is known. This occurs when implicitly zero extending function arguments from 16 bits to 32 bits. <rdar://problem/11481151> llvm-svn: 157966 | |||||
| * | Fix a bug in MipsTargetLowering::LowerLOAD. A shift-right-logical node is | Akira Hatanaka | 2012-06-04 | 1 | -1/+2 | |
| | | | | | | | inserted after the shift-left-logical node. llvm-svn: 157937 | |||||
| * | Implement local-exec TLS on PowerPC. | Roman Divacky | 2012-06-04 | 6 | -11/+69 | |
| | | | | | llvm-svn: 157935 | |||||
| * | MIPS TLS: use the model selected by TargetMachine::getTLSModel(). | Hans Wennborg | 2012-06-04 | 1 | -3/+4 | |
| | | | | | | | This was mostly done already in r156162, but I missed one place. llvm-svn: 157929 | |||||
| * | Better comments for TLS-related X86 MachineOperand flags. | Hans Wennborg | 2012-06-04 | 1 | -9/+18 | |
| | | | | | llvm-svn: 157920 | |||||
| * | Add intrinsic forms for FMA instructions to opcode folding tables. | Craig Topper | 2012-06-04 | 2 | -109/+141 | |
| | | | | | llvm-svn: 157917 | |||||
| * | Add VFMADDSUB and VFMSUBADD FMA instructions to folding tables. Also add 213 ↵ | Craig Topper | 2012-06-04 | 1 | -0/+34 | |
| | | | | | | | forms of scalar FMA instructions. llvm-svn: 157914 | |||||
| * | Fix a copy-and-paste duplication error in the PPC 440 and A2 schedules (no ↵ | Hal Finkel | 2012-06-04 | 2 | -42/+0 | |
| | | | | | | | functionality change). llvm-svn: 157912 | |||||
| * | Enable generating PPC pre-increment (r+imm) instructions by default. | Hal Finkel | 2012-06-04 | 1 | -5/+3 | |
| | | | | | | | | It seems that this no longer causes test suite failures on PPC64 (after r157159), and often gives a performance benefit, so it can be enabled by default. llvm-svn: 157911 | |||||
| * | Rename FMA3 feature flag to just FMA to match gcc so it can be added to clang. | Craig Topper | 2012-06-03 | 5 | -10/+10 | |
| | | | | | llvm-svn: 157903 | |||||
| * | Rename fma4 intrinsics to just fma since they are now used for both FMA4 and ↵ | Craig Topper | 2012-06-03 | 1 | -54/+54 | |
| | | | | | | | FMA3. Autoupgrade support coming in a separate commit. llvm-svn: 157898 | |||||
| * | Revert r157831 | Manman Ren | 2012-06-03 | 3 | -331/+0 | |
| | | | | | llvm-svn: 157896 | |||||
| * | Use sse_load_f32/64 for scalar FMA3 intrinsic patterns instead of 128-bit ↵ | Craig Topper | 2012-06-03 | 1 | -36/+30 | |
| | | | | | | | loads to match instruction behavior. llvm-svn: 157895 | |||||
| * | Add neverHasSideEffects and mayLoad to FMA3 instructions. | Craig Topper | 2012-06-03 | 1 | -0/+5 | |
| | | | | | llvm-svn: 157894 | |||||
| * | Fix typos found by http://github.com/lyda/misspell-check | Benjamin Kramer | 2012-06-02 | 15 | -22/+22 | |
| | | | | | llvm-svn: 157885 | |||||
| * | remove an unused variable. | Chris Lattner | 2012-06-02 | 1 | -1/+1 | |
| | | | | | llvm-svn: 157872 | |||||
| * | Remove code which is no longer needed in MipsAsmPrinter and MipsMCInstLower. | Akira Hatanaka | 2012-06-02 | 3 | -171/+0 | |
| | | | | | llvm-svn: 157867 | |||||
| * | Set operation actions for load/store nodes in the Mips backend. | Akira Hatanaka | 2012-06-02 | 1 | -0/+11 | |
| | | | | | llvm-svn: 157866 | |||||
| * | Add definitions of 32/64-bit unaligned load/store instructions for Mips. | Akira Hatanaka | 2012-06-02 | 2 | -27/+70 | |
| | | | | | llvm-svn: 157865 | |||||
| * | Define functions MipsTargetLowering::LowerLOAD and LowerSTORE which | Akira Hatanaka | 2012-06-02 | 2 | -0/+140 | |
| | | | | | | | custom-lower unaligned load and store nodes. llvm-svn: 157864 | |||||
| * | Define Mips specific unaligned load/store nodes. | Akira Hatanaka | 2012-06-02 | 3 | -1/+40 | |
| | | | | | llvm-svn: 157863 | |||||
| * | Expand unaligned i16 loads/stores for the Mips backend. | Akira Hatanaka | 2012-06-02 | 1 | -1/+0 | |
| | | | | | | | | | This is the first of a series of patches which make changes to the backend to emit unaligned load/store instructions (lwl,lwr,swl,swr) during instruction selection. llvm-svn: 157862 | |||||
| * | In MipsMCInstLower::LowerSymbolOperand, get offset from symbol if | Akira Hatanaka | 2012-06-02 | 1 | -2/+4 | |
| | | | | | | | the MachineOperand type has a valid offset. llvm-svn: 157861 | |||||
| * | Switch all register list clients to the new MC*Iterator interface. | Jakob Stoklund Olesen | 2012-06-01 | 3 | -11/+8 | |
| | | | | | | | | | | | | | | No functional change intended. Sorry for the churn. The iterator classes are supposed to help avoid giant commits like this one in the future. The TableGen-produced register lists are getting quite large, and it may be necessary to change the table representation. This makes it possible to do so without changing all clients (again). llvm-svn: 157854 | |||||
| * | [arm-fast-isel] Fix handling of the frameaddress intrinsic. If depth is 0 | Chad Rosier | 2012-06-01 | 1 | -1/+1 | |
| | | | | | | | then DestReg is undefined. llvm-svn: 157840 | |||||
| * | Switch some getAliasSet clients to MCRegAliasIterator. | Jakob Stoklund Olesen | 2012-06-01 | 3 | -19/+10 | |
| | | | | | | | | MCRegAliasIterator can optionally visit the register itself, allowing for simpler code. llvm-svn: 157837 | |||||
| * | X86: peephole optimization to remove cmp instruction | Manman Ren | 2012-06-01 | 3 | -0/+331 | |
| | | | | | | | | | | | | | | | | This patch will optimize the following: sub r1, r3 cmp r3, r1 or cmp r1, r3 bge L1 TO sub r1, r3 bge L1 or ble L1 If the branch instruction can use flag from "sub", then we can eliminate the "cmp" instruction. llvm-svn: 157831 | |||||
| * | ARM: properly handle alignment for struct byval. | Manman Ren | 2012-06-01 | 3 | -250/+275 | |
| | | | | | | | | | | Factor out the expansion code into a function. This change is to be enabled in clang. rdar://9877866 llvm-svn: 157830 | |||||
| * | Implement the local-dynamic TLS model for x86 (PR3985) | Hans Wennborg | 2012-06-01 | 11 | -17/+274 | |
| | | | | | | | | | | This implements codegen support for accesses to thread-local variables using the local-dynamic model, and adds a clean-up pass so that the base address for the TLS block can be re-used between local-dynamic access on an execution path. llvm-svn: 157818 | |||||

