Age | Commit message (Expand) | Author |
2009-12-18 | Increase opportunities to optimize (brcond (srl (and c1), c2)). | Evan Cheng |
2009-12-17 | Revert this dag combine change: | Evan Cheng |
2009-12-15 | Make 91378 more conservative. | Evan Cheng |
2009-12-15 | Fold (zext (and x, cst)) -> (and (zext x), cst). | Evan Cheng |
2009-12-15 | Propagate zest through logical shift. | Evan Cheng |
2009-12-14 | Fix integer cast code to handle vector types. | Dan Gohman |
2009-12-11 | Implement vector widening, splitting, and scalarizing for SIGN_EXTEND_INREG. | Dan Gohman |
2009-12-09 | Move isConsecutiveLoad to SelectionDAG. It's not target dependent and it's pr... | Evan Cheng |
2009-12-09 | Refactor InferAlignment out of DAGCombine. | Evan Cheng |
2009-12-03 | Don't pull vector sext through both hands of a logical operation, since doing... | Nate Begeman |
2009-12-03 | Don't call getValueType() on a null SDValue | Jakob Stoklund Olesen |
2009-11-17 | Remove the optimizations that convert BRCOND and BR_CC into | Dan Gohman |
2009-11-09 | Remove an unneeded #include. | Dan Gohman |
2009-10-31 | When discarding SrcValue information, discard all of it so that code | Dan Gohman |
2009-10-28 | Don't call SDNode::isPredecessorOf when it isn't necessary. If the load's | Dan Gohman |
2009-10-25 | Remove includes of Support/Compiler.h that are no longer needed after the | Nick Lewycky |
2009-10-25 | Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. | Nick Lewycky |
2009-10-20 | Fix invalid for vector types fneg(bitconvert(x)) => bitconvert(x ^ sign) | Anton Korobeynikov |
2009-10-12 | More heuristics for Combiner-AA. Still catches all important cases, but | Nate Begeman |
2009-09-25 | Fix combiner-aa issue with bases which are different, but can alias. | Nate Begeman |
2009-09-23 | Use getStoreSize() instead of getStoreSizeInBits()/8. | Dan Gohman |
2009-09-23 | Rename several variables from EVT to more descriptive names, now that EVT | Dan Gohman |
2009-09-15 | Substantially speed up combiner-aa in the following ways: | Nate Begeman |
2009-09-10 | Don't swap the operands of a subtraction when trying to create a | Bob Wilson |
2009-09-06 | Remove some unused variables and methods warned about by | Duncan Sands |
2009-08-23 | remove a few DOUTs here and there. | Chris Lattner |
2009-08-23 | Add check for completeness. Note that this doesn't actually have any | Eli Friedman |
2009-08-19 | PR4737: Fix a nasty bug in load narrowing with non-power-of-two types. | Eli Friedman |
2009-08-12 | Add contexts to some of the MVT APIs. No functionality change yet, just the ... | Owen Anderson |
2009-08-11 | Split EVT into MVT and EVT, the former representing _just_ a primitive type, ... | Owen Anderson |
2009-08-10 | Fix a bug in the DAGCombiner's handling of multiple linked | Dan Gohman |
2009-08-10 | Fix a bug where DAGCombine was producing an illegal ConstantFP | Dan Gohman |
2009-08-10 | Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ... | Owen Anderson |
2009-08-10 | Make this comment more closely reflect the code. | Dan Gohman |
2009-08-08 | Don't build illegal ops in DAGCombiner::SimplifyBinOpWithSameOpcodeHands(). | Jakob Stoklund Olesen |
2009-08-06 | Fix a few places in DAGCombiner that were creating all-ones-bits | Dan Gohman |
2009-08-02 | Avoid forming a SELECT_CC in a type that the target doesn't | Dan Gohman |
2009-07-29 | Move types back to the 2.5 API. | Owen Anderson |
2009-07-28 | Change ConstantArray to 2.5 API. | Owen Anderson |
2009-07-24 | Add support for promoting SETCC operations. | Jakob Stoklund Olesen |
2009-07-21 | Fix a dagga combiner bug: avoid creating illegal constant. | Evan Cheng |
2009-07-15 | Move a few more convenience factory functions from Constant to LLVMContext. | Owen Anderson |
2009-07-14 | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin |
2009-07-11 | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin |
2009-07-11 | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Torok Edwin |
2009-07-09 | Thread LLVMContext through MVT and related parts of SDISel. | Owen Anderson |
2009-07-08 | dag combine sext(setcc) -> vsetcc before legalize. To make this safe, | Chris Lattner |
2009-06-05 | Adapt the x86 build_vector dagcombine to the current state of the legalizer. | Nate Begeman |
2009-06-04 | Don't do the X * 0.0 -> 0.0 transformation in instcombine, because | Dan Gohman |
2009-06-02 | Revert 72707 and 72709, for the moment. | Dale Johannesen |