| Commit message (Expand) | Author | Age | Files | Lines |
| * | Propagate debug loc info for MULHS. | Bill Wendling | 2009-01-30 | 1 | -2/+2 |
| * | Propagate debug loc info for SREM and UREM. | Bill Wendling | 2009-01-30 | 1 | -10/+12 |
| * | Propagate debug loc info for UDIV. | Bill Wendling | 2009-01-30 | 1 | -6/+7 |
| * | Propagate debug loc info for SDIV. | Bill Wendling | 2009-01-30 | 1 | -12/+21 |
| * | Forgot to propagate debug loc info here. | Bill Wendling | 2009-01-30 | 1 | -2/+4 |
| * | Propagate debug loc info for MUL. | Bill Wendling | 2009-01-30 | 1 | -16/+21 |
| * | Propagate debug loc info in SUB. | Bill Wendling | 2009-01-30 | 1 | -7/+8 |
| * | Propagate debug loc info in ADDC and ADDE. | Bill Wendling | 2009-01-30 | 1 | -11/+13 |
| * | Propagate debug loc info in DAG combine's "ADD". | Bill Wendling | 2009-01-30 | 1 | -20/+18 |
| * | - Propagate debug loc info in combineSelectAndUse(). | Bill Wendling | 2009-01-30 | 1 | -16/+23 |
| * | Propagate debug info when building SelectionDAG. | Dale Johannesen | 2009-01-30 | 1 | -399/+519 |
| * | Propagate debug location info for the token factor. | Bill Wendling | 2009-01-30 | 1 | -5/+5 |
| * | Add DebugLoc propagation to some of the methods in DAG combiner. | Bill Wendling | 2009-01-30 | 1 | -27/+34 |
| * | Explicitly add PseudoSourceValue information when lowering | Dan Gohman | 2009-01-29 | 1 | -10/+11 |
| * | Make a few things const, fix some comments, and simplify | Dan Gohman | 2009-01-29 | 1 | -16/+8 |
| * | Fix two typos that Duncan spotted in a comment. | Dan Gohman | 2009-01-29 | 1 | -1/+1 |
| * | In the case of an extractelement on an insertelement value, | Dan Gohman | 2009-01-29 | 1 | -1/+5 |
| * | Revert r63273. This was already implemented by Dale. There's no need for my | Bill Wendling | 2009-01-29 | 1 | -72/+101 |
| * | - Add DebugLoc to getTargetNode(). | Bill Wendling | 2009-01-29 | 1 | -101/+72 |
| * | Make x86's BT instruction matching more thorough, and add some | Dan Gohman | 2009-01-29 | 2 | -20/+73 |
| * | Add DebugLoc-sensitive versions of many node creation | Dale Johannesen | 2009-01-29 | 1 | -0/+458 |
| * | Add DebugLoc to the getNode() methods. | Bill Wendling | 2009-01-28 | 1 | -41/+134 |
| * | Add DebugLoc-aware constructors for SDNode derived | Dale Johannesen | 2009-01-28 | 1 | -0/+23 |
| * | Fixed extract element when the result needs to be promoted and the input wide... | Mon P Wang | 2009-01-28 | 1 | -0/+2 |
| * | Make isOperationLegal do what its name suggests, and introduce a | Dan Gohman | 2009-01-28 | 5 | -55/+62 |
| * | Formatting. | Duncan Sands | 2009-01-28 | 1 | -8/+5 |
| * | Rename getAnalysisToUpdate to getAnalysisIfAvailable. | Duncan Sands | 2009-01-28 | 1 | -2/+2 |
| * | Use ValueType::bitsLT to simplify some code. | Dan Gohman | 2009-01-28 | 2 | -2/+2 |
| * | Use ZERO_EXTEND instead of ANY_EXTEND when promoting | Dan Gohman | 2009-01-28 | 2 | -2/+2 |
| * | Add an assertion to the form of SelectionDAG::getConstant that takes | Dan Gohman | 2009-01-27 | 3 | -7/+13 |
| * | Delete redundant return statements. | Dan Gohman | 2009-01-27 | 1 | -7/+0 |
| * | Fix PR3393, which amounts to a bug in the expensive | Duncan Sands | 2009-01-26 | 2 | -16/+37 |
| * | During bittest switch lowering emit shift in the test block, which should (th... | Anton Korobeynikov | 2009-01-26 | 1 | -11/+9 |
| * | Take the next steps in making SDUse more consistent with LLVM Use, and | Dan Gohman | 2009-01-26 | 3 | -82/+65 |
| * | Eliminate the loop that searches through each of the operands | Dan Gohman | 2009-01-25 | 1 | -195/+178 |
| * | Whitespace tidiments. | Dan Gohman | 2009-01-25 | 1 | -2/+1 |
| * | Move the N->use_empty() assert from DeleteNode to | Dan Gohman | 2009-01-25 | 1 | -3/+2 |
| * | Fix an indent and a typo. | Nate Begeman | 2009-01-24 | 1 | -1/+1 |
| * | Fold x-0 to x in unsafe-fp-math mode. This comes up in the | Dan Gohman | 2009-01-23 | 2 | -9/+19 |
| * | Fix a minor bug in DAGCombiner's folding of SELECT. Folding "select C, 0, 1" | Bob Wilson | 2009-01-22 | 1 | -3/+5 |
| * | Don't create ISD::FNEG nodes after legalize if they aren't legal. | Dan Gohman | 2009-01-22 | 2 | -8/+30 |
| * | Add SelectionDAG::getNOT method to construct bitwise NOT operations, | Bob Wilson | 2009-01-22 | 4 | -26/+38 |
| * | Eliminate a couple of fields from TargetRegisterClass: SubRegClasses and Supe... | Evan Cheng | 2009-01-22 | 2 | -36/+5 |
| * | fix a typo | Chris Lattner | 2009-01-22 | 1 | -1/+1 |
| * | Simplify ReduceLoadWidth's logic: it doesn't need several different | Dan Gohman | 2009-01-21 | 1 | -19/+10 |
| * | Cleanup whitespace and comments, and tweak some | Duncan Sands | 2009-01-21 | 5 | -58/+53 |
| * | CellSPU: | Scott Michel | 2009-01-21 | 1 | -0/+4 |
| * | Allow targets to legalize operations (with illegal operands) that produces mu... | Sanjiv Gupta | 2009-01-21 | 5 | -68/+85 |
| * | Use "SINT_TO_FP" instead of "UINT_TO_FP" when getting the exponent. This was | Bill Wendling | 2009-01-20 | 1 | -12/+13 |
| * | Change TargetInstrInfo::isMoveInstr to return source and destination sub-regi... | Evan Cheng | 2009-01-20 | 1 | -2/+2 |