| Commit message (Expand) | Author | Age | Files | Lines |
* | AMDGPU: Add convergent flag to INLINEASM instruction. | Wei Ding | 2016-06-22 | 1 | -0/+2 |
* | [SDAG] Remove FixedArgs parameter from CallLoweringInfo::setCallee | Krzysztof Parzyszek | 2016-06-22 | 1 | -3/+2 |
* | [SelectionDAG] Don't treat library calls specially if marked with nobuiltin. | Marcin Koscielnicki | 2016-06-17 | 1 | -2/+3 |
* | [SelectionDAG] Remove exit-on-error flag from test (PR27765) | Diana Picus | 2016-06-14 | 1 | -1/+3 |
* | Pass DebugLoc and SDLoc by const ref. | Benjamin Kramer | 2016-06-12 | 1 | -37/+34 |
* | [stack-protection] Add support for MSVC buffer security check | Etienne Bergeron | 2016-06-07 | 1 | -5/+34 |
* | SDAG: Use an Optional<> instead of a sigil value. NFC | Justin Bogner | 2016-05-26 | 1 | -6/+6 |
* | Fix some comment typos in SelectionDAGBuilder. NFC | Diana Picus | 2016-05-20 | 1 | -3/+3 |
* | Fix an assert in SelectionDAGBuilder when processing inline asm | Renato Golin | 2016-05-17 | 1 | -25/+28 |
* | SelectionDAG: Select min/max when both are used | Matt Arsenault | 2016-05-16 | 1 | -1/+9 |
* | getelementptr instruction, support index vector of EVT. | Igor Breger | 2016-05-01 | 1 | -1/+2 |
* | [PPC, SSP] Support PowerPC Linux stack protection. | Tim Shen | 2016-04-19 | 1 | -13/+11 |
* | [SSP, 2/2] Create llvm.stackguard() intrinsic and lower it to LOAD_STACK_GUARD | Tim Shen | 2016-04-19 | 1 | -45/+50 |
* | [CodeGen] Teach LLVM how to lower @llvm.{min,max}num to {MIN,MAX}NAN | David Majnemer | 2016-04-14 | 1 | -6/+16 |
* | AMDGPU: Implement canonicalize | Matt Arsenault | 2016-04-14 | 1 | -1/+3 |
* | Introduce an GCRelocateInst class [NFC] | Philip Reames | 2016-04-12 | 1 | -1/+1 |
* | [SSP] Remove llvm.stackprotectorcheck. | Tim Shen | 2016-04-08 | 1 | -13/+4 |
* | NFC: make AtomicOrdering an enum class | JF Bastien | 2016-04-06 | 1 | -1/+1 |
* | Lower @llvm.experimental.deoptimize as a noreturn call | Sanjoy Das | 2016-04-06 | 1 | -0/+12 |
* | Swift Calling Convention: swifterror target-independent change. | Manman Ren | 2016-04-05 | 1 | -3/+197 |
* | Swift Calling Convention: add swifterror attribute. | Manman Ren | 2016-04-01 | 1 | -0/+5 |
* | Don't use an i64 return type with webkit_jscc | Sanjoy Das | 2016-04-01 | 1 | -6/+7 |
* | Revert "Protect some assertions with NDEBUG rather than DEBUG()." | Justin Lebar | 2016-04-01 | 1 | -7/+6 |
* | Protect some assertions with NDEBUG rather than DEBUG(). | Justin Lebar | 2016-04-01 | 1 | -6/+7 |
* | Add support for no-jump-tables | Nirav Dave | 2016-03-29 | 1 | -2/+7 |
* | Swift Calling Convention: add swiftself attribute. | Manman Ren | 2016-03-29 | 1 | -0/+5 |
* | [Codegen] Decrease minimum jump table density. | Kyle Butt | 2016-03-29 | 1 | -4/+22 |
* | Add lowering support for llvm.experimental.deoptimize | Sanjoy Das | 2016-03-24 | 1 | -0/+4 |
* | Add a hasOperandBundlesOtherThan helper, and use it; NFC | Sanjoy Das | 2016-03-22 | 1 | -12/+6 |
* | Add "first class" lowering for deopt operand bundles | Sanjoy Das | 2016-03-22 | 1 | -4/+33 |
* | [SelectionDAG] Remove visitStatepoint; NFC | Sanjoy Das | 2016-03-17 | 1 | -1/+1 |
* | [SelectionDAG] Extract out populateCallLoweringInfo; NFC | Sanjoy Das | 2016-03-16 | 1 | -14/+17 |
* | [DAG] use isUndef() ; NFCI | Sanjay Patel | 2016-03-14 | 1 | -2/+2 |
* | SelectionDAG: Fix a crash on inline asm when output register supports multipl... | Tom Stellard | 2016-03-09 | 1 | -3/+7 |
* | Revert "[mips] Promote the result of SETCC nodes to GPR width." | Vasileios Kalintiris | 2016-03-01 | 1 | -11/+1 |
* | [NVPTX] Use different, convergent MIs for convergent calls. | Justin Lebar | 2016-03-01 | 1 | -3/+5 |
* | [mips] Promote the result of SETCC nodes to GPR width. | Vasileios Kalintiris | 2016-03-01 | 1 | -1/+11 |
* | Fix a bug in isVectorReductionOp() in SelectionDAGBuilder.cpp that may cause ... | Cong Hou | 2016-02-26 | 1 | -4/+4 |
* | Detecte vector reduction operations just before instruction selection. | Cong Hou | 2016-02-24 | 1 | -0/+130 |
* | NFC. Move isDereferenceable to Loads.h/cpp | Artur Pilipenko | 2016-02-24 | 1 | -0/+1 |
* | Remove uses of builtin comma operator. | Richard Trieu | 2016-02-18 | 1 | -18/+26 |
* | Revert r261070, it caused PR26652 / PR26653. | Nico Weber | 2016-02-17 | 1 | -126/+0 |
* | Detecte vector reduction operations just before instruction selection. | Cong Hou | 2016-02-17 | 1 | -0/+126 |
* | [CodeGen] Prefer "if (SDValue R = ...)" to "if (R.getNode())". NFCI. | Ahmed Bougacha | 2016-02-09 | 1 | -5/+2 |
* | [X86] Don't zero/sign-extend i1, i8, or i16 return values to 32 bits (PR22532) | Hans Wennborg | 2016-02-08 | 1 | -1/+1 |
* | SelectionDAG: Lower some range metadata to AssertZext | Matt Arsenault | 2016-02-08 | 1 | -3/+40 |
* | Rename TargetSelectionDAGInfo into SelectionDAGTargetInfo and move it to Code... | Benjamin Kramer | 2016-01-27 | 1 | -7/+7 |
* | Remove extra whitespace. NFC. | Junmo Park | 2016-01-23 | 1 | -4/+4 |
* | [opaque pointer types] [NFC] Add an explicit type argument to ConstantFoldLoa... | Eduard Burtescu | 2016-01-22 | 1 | -1/+1 |
* | [NFC] Replace several manual GEP loops with gep_type_iterator. | Eduard Burtescu | 2016-01-20 | 1 | -17/+7 |