| Commit message (Expand) | Author | Age | Files | Lines |
* | Allow load from constant on SPU. | Kalle Raiskila | 2011-03-04 | 1 | -1/+6 |
* | Null initialize a few variables flagged by | Ted Kremenek | 2011-01-23 | 1 | -1/+1 |
* | Rename TargetFrameInfo into TargetFrameLowering. Also, put couple of FIXMEs a... | Anton Korobeynikov | 2011-01-10 | 1 | -6/+6 |
* | Various bits of framework needed for precise machine-level selection | Andrew Trick | 2010-12-24 | 1 | -8/+0 |
* | Dont' feed ILA two inputs - it takes just one. | Kalle Raiskila | 2010-12-09 | 1 | -1/+1 |
* | Add missing i128 case. | Kalle Raiskila | 2010-11-29 | 1 | -0/+3 |
* | Renaming ISD::BIT_CONVERT to ISD::BITCAST to better reflect the LLVM IR concept. | Wesley Peck | 2010-11-23 | 1 | -42/+42 |
* | Add the missing cases to the type->registerclass conversion function. | Kalle Raiskila | 2010-10-07 | 1 | -0/+14 |
* | Zap some redundant 'ori $?, $?, 0' from SPU. | Kalle Raiskila | 2010-10-01 | 1 | -65/+5 |
* | it's more elegant to put the "getConstantPool" and | Chris Lattner | 2010-09-21 | 1 | -1/+1 |
* | Change SPU register re-interpretations from OR to COPY_TO_REGCLASS instruction. | Kalle Raiskila | 2010-09-16 | 1 | -14/+50 |
* | zap dead code. | Chris Lattner | 2010-09-04 | 1 | -7/+1 |
* | Zap dead code. | Benjamin Kramer | 2010-09-03 | 1 | -7/+0 |
* | zap dead code | Chris Lattner | 2010-08-25 | 1 | -34/+0 |
* | Make SPU backend handle insertelement and | Kalle Raiskila | 2010-08-04 | 1 | -1/+2 |
* | Remove initialized but otherwise unused variables. | Duncan Sands | 2010-06-29 | 1 | -1/+0 |
* | Handle loading from/storing to undef pointers on SPU by inserting a | Kalle Raiskila | 2010-06-09 | 1 | -1/+3 |
* | Fix handling of 'load' nodes. | Kalle Raiskila | 2010-06-01 | 1 | -8/+2 |
* | "on the rare occasion the SPU BE produces illegal assembly - it tries to emit... | Chris Lattner | 2010-05-04 | 1 | -2/+10 |
* | Use cast instead of dyn_cast when assuming success. | Dan Gohman | 2010-04-17 | 1 | -6/+6 |
* | Use const qualifiers with TargetLowering. This eliminates several | Dan Gohman | 2010-04-17 | 1 | -5/+3 |
* | Add const qualifiers to CodeGen's use of LLVM IR constructs. | Dan Gohman | 2010-04-15 | 1 | -2/+2 |
* | Use twines to simplify calls to report_fatal_error. For code size and readabi... | Benjamin Kramer | 2010-04-08 | 1 | -10/+4 |
* | rename llvm::llvm_report_error -> llvm::report_fatal_error | Chris Lattner | 2010-04-07 | 1 | -6/+6 |
* | Make isInt?? and isUint?? template specializations of the generic versions. This | Benjamin Kramer | 2010-03-29 | 1 | -2/+2 |
* | Remove a bunch of integer width predicate functions in favor of MathExtras. | Benjamin Kramer | 2010-03-29 | 1 | -5/+5 |
* | Sink InstructionSelect() out of each target into SDISel, and rename it | Chris Lattner | 2010-03-02 | 1 | -14/+0 |
* | reapply my cellspu changes with a fix to not break the old isel. | Chris Lattner | 2010-02-23 | 1 | -42/+73 |
* | Revert 96854, 96852, and 96849, unbreaking test/CodeGen/CellSPU/i64ops.ll. | Dan Gohman | 2010-02-23 | 1 | -71/+42 |
* | fix hte last cellspu failure. | Chris Lattner | 2010-02-23 | 1 | -11/+12 |
* | hack around more crimes in instruction selection. | Chris Lattner | 2010-02-23 | 1 | -16/+26 |
* | the cell backend is making all sorts of unsafe and incorrect assumptions | Chris Lattner | 2010-02-23 | 1 | -26/+44 |
* | Remove an assumption of default arguments. This is in anticipation of a | David Greene | 2010-02-15 | 1 | -1/+1 |
* | Change SelectCode's argument from SDValue to SDNode *, to make it more | Dan Gohman | 2010-01-05 | 1 | -86/+85 |
* | Remove uninteresting and confusing debug output. | Dan Gohman | 2009-11-05 | 1 | -2/+0 |
* | Rename getTargetNode to getMachineNode, for consistency with the | Dan Gohman | 2009-09-25 | 1 | -98/+99 |
* | - Remove SelectSEXTi128 from SPUISelDAGToDAG.cpp, evidently, this is redundant | Scott Michel | 2009-08-24 | 1 | -59/+0 |
* | 128-bit sign extension and vector shift cleanups, contributed by Ken Werner | Scott Michel | 2009-08-24 | 1 | -0/+59 |
* | eliminate uses of cerr() | Chris Lattner | 2009-08-23 | 1 | -3/+3 |
* | Add contexts to some of the MVT APIs. No functionality change yet, just the ... | Owen Anderson | 2009-08-12 | 1 | -6/+11 |
* | Split EVT into MVT and EVT, the former representing _just_ a primitive type, ... | Owen Anderson | 2009-08-11 | 1 | -86/+86 |
* | Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ... | Owen Anderson | 2009-08-10 | 1 | -119/+119 |
* | Reapply r77654 with a fix: MachineFunctionPass's getAnalysisUsage | Dan Gohman | 2009-07-31 | 1 | -2/+2 |
* | Revert r77654, it appears to be causing llvm-gcc bootstrap failures, and many | Daniel Dunbar | 2009-07-31 | 1 | -2/+2 |
* | Manage MachineFunctions with an analysis Pass instead of the Annotable | Dan Gohman | 2009-07-31 | 1 | -2/+2 |
* | Return ConstantVector to 2.5 API. | Owen Anderson | 2009-07-28 | 1 | -1/+1 |
* | Move a few more convenience factory functions from Constant to LLVMContext. | Owen Anderson | 2009-07-15 | 1 | -1/+2 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -1/+1 |
* | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -1/+1 |
* | Implement changes from Chris's feedback. | Torok Edwin | 2009-07-08 | 1 | -18/+18 |