| Commit message (Expand) | Author | Age | Files | Lines |
| * | Implement a bunch more TargetSelectionDAGInfo infrastructure. | Dan Gohman | 2010-05-11 | 1 | -17/+0 |
| * | Remove the TargetLowering::getSubtarget() virtual function, which | Dan Gohman | 2010-05-11 | 1 | -1/+1 |
| * | Get rid of the EdgeMapping map. Instead, just check for BasicBlock | Dan Gohman | 2010-05-01 | 1 | -7/+5 |
| * | Promoting 16-bit cmp / test aren't free. Don't do it. | Evan Cheng | 2010-04-26 | 1 | -3/+2 |
| * | - Move TargetLowering::EmitTargetCodeForFrameDebugValue to TargetInstrInfo an... | Evan Cheng | 2010-04-26 | 1 | -5/+0 |
| * | Stop abusing EmitInstrWithCustomInserter for target-dependent | Dale Johannesen | 2010-04-25 | 1 | -0/+5 |
| * | Fix X86ISD::CMP i16 to i32 promotion. | Evan Cheng | 2010-04-23 | 1 | -2/+3 |
| * | Move HandlePHINodesInSuccessorBlocks functions out of SelectionDAGISel | Dan Gohman | 2010-04-22 | 1 | -2/+4 |
| * | isel (i32 anyext i16) as insert_subreg when 16-bit ops are being promoted. | Evan Cheng | 2010-04-21 | 1 | -0/+2 |
| * | Use const qualifiers with TargetLowering. This eliminates several | Dan Gohman | 2010-04-17 | 1 | -72/+76 |
| * | Move per-function state out of TargetLowering subclasses and into | Dan Gohman | 2010-04-17 | 1 | -11/+0 |
| * | More work to allow dag combiner to promote 16-bit ops to 32-bit. | Evan Cheng | 2010-04-17 | 1 | -1/+11 |
| * | Eliminate an unnecessary SelectionDAG dependency in getOptimalMemOpType. | Dan Gohman | 2010-04-16 | 1 | -3/+3 |
| * | Adding support for dag combiner to promote operations for profit. This requir... | Evan Cheng | 2010-04-16 | 1 | -0/+2 |
| * | Add const qualifiers to CodeGen's use of LLVM IR constructs. | Dan Gohman | 2010-04-15 | 1 | -1/+1 |
| * | Factor out EH landing pad code into a separate function, and constify | Dan Gohman | 2010-04-14 | 1 | -2/+2 |
| * | Avoid using f64 to lower memcpy from constant string. It's cheaper to use i32... | Evan Cheng | 2010-04-08 | 1 | -5/+7 |
| * | unthread MMI from FastISel | Chris Lattner | 2010-04-05 | 1 | -2/+1 |
| * | fastisel doesn't need DwarfWriter, remove some tendricles. | Chris Lattner | 2010-04-05 | 1 | -3/+2 |
| * | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang | 2010-04-04 | 1 | -2/+3 |
| * | Correctly lower memset / memcpy of undef. It should be a nop. PR6767. | Evan Cheng | 2010-04-02 | 1 | -9/+13 |
| * | Revert r100191 since it breaks objc in clang | Mon P Wang | 2010-04-02 | 1 | -3/+2 |
| * | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang | 2010-04-02 | 1 | -2/+3 |
| * | Revert r100143. | Eric Christopher | 2010-04-01 | 1 | -3/+0 |
| * | Add comments about DstAlign and SrcAlign. | Evan Cheng | 2010-04-01 | 1 | -3/+6 |
| * | - Avoid using floating point stores to implement memset unless the value is z... | Evan Cheng | 2010-04-01 | 1 | -1/+1 |
| * | Fix sdisel memcpy, memset, memmove lowering: | Evan Cheng | 2010-04-01 | 1 | -2/+2 |
| * | Revert Mon Ping's change 99928, since it broke all the llvm-gcc buildbots. | Bob Wilson | 2010-03-30 | 1 | -3/+2 |
| * | Added support for address spaces and added a isVolatile field to memcpy, memm... | Mon P Wang | 2010-03-30 | 1 | -2/+3 |
| * | Reapply Kevin's change 94440, now that Chris has fixed the limitation on | Bob Wilson | 2010-03-25 | 1 | -0/+3 |
| * | Speculatively revert this to see if it fixes buildbot failures. | Bob Wilson | 2010-03-24 | 1 | -3/+0 |
| * | Added the Advanced Encryption Standard (AES) Instructions. | Kevin Enderby | 2010-03-24 | 1 | -0/+3 |
| * | Avoid sibcall optimization if either caller or callee is using sret semantics. | Evan Cheng | 2010-03-15 | 1 | -0/+2 |
| * | Remove getWidenVectorType, which is no longer used. | Dan Gohman | 2010-03-11 | 1 | -7/+0 |
| * | Lower dynamic stack allocation on mingw32 to separate instruction. | Anton Korobeynikov | 2010-03-06 | 1 | -1/+12 |
| * | X86InstrInfoSSE.td declares PINSRW as having type v8i16, | Chris Lattner | 2010-02-23 | 1 | -1/+1 |
| * | Cleanup stdcall / fastcall name mangling. | Anton Korobeynikov | 2010-02-12 | 1 | -1/+0 |
| * | Revert 95130. | Evan Cheng | 2010-02-02 | 1 | -2/+2 |
| * | Pass callsite return type to TargetLowering::LowerCall and use that to check ... | Evan Cheng | 2010-02-02 | 1 | -2/+2 |
| * | Perform trivial tail call optimization for callees with "C" ABI. These are done | Evan Cheng | 2010-01-27 | 1 | -1/+2 |
| * | Eliminate target hook IsEligibleForTailCallOptimization. | Evan Cheng | 2010-01-27 | 1 | -15/+10 |
| * | Delete dead code. | Evan Cheng | 2010-01-26 | 1 | -5/+0 |
| * | Code refactoring, no functionality change. | Evan Cheng | 2010-01-26 | 1 | -0/+5 |
| * | Move getJTISymbol from MachineJumpTableInfo to MachineFunction, | Chris Lattner | 2010-01-26 | 1 | -1/+7 |
| * | implement X86 @GOTOFF jump table entries with the new EK_Custom32 | Chris Lattner | 2010-01-26 | 1 | -3/+8 |
| * | in 32-bit pic mode for targets with a GOT, x86 emits jump table | Chris Lattner | 2010-01-25 | 1 | -0/+2 |
| * | Improved widening loads by adding support for wider loads if | Mon P Wang | 2010-01-24 | 1 | -0/+6 |
| * | Use sbb x, x to materialize carry bit in a GPR. The result is all one's or al... | Evan Cheng | 2009-12-15 | 1 | -0/+4 |
| * | Optimize splat of a scalar load into a shuffle of a vector load when it's leg... | Evan Cheng | 2009-12-09 | 1 | -1/+3 |
| * | x86 vector shuffle cleanup/fixes: | Nate Begeman | 2009-11-07 | 1 | -1/+1 |