aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
AgeCommit message (Expand)Author
2008-03-11Correctly propagate thread-local flag from aliasee to alias. This fixes PR2137Anton Korobeynikov
2008-03-11compile: double test() {}Chris Lattner
2008-03-08Teach SD some vector identities, allowing us to compile vec_set-9 into:Chris Lattner
2008-03-08Implement x86 support for @llvm.prefetch. It corresponds to prefetcht{0|1|2} ...Evan Cheng
2008-03-0680 col violation.Evan Cheng
2008-03-06Constant fold SIGN_EXTEND_INREG with ashr not lshr.Evan Cheng
2008-03-05Generalize FP constant shrinking optimization to apply to any vtChris Lattner
2008-03-04Rename isOperand() to isOperandOf() (and other similar methods). It always co...Evan Cheng
2008-03-03More APInt-ification.Dan Gohman
2008-02-29More APInt-ification.Dan Gohman
2008-02-27Convert the last remaining users of the non-APInt form ofDan Gohman
2008-02-26Rename PrintableName to Name.Bill Wendling
2008-02-26Change "Name" to "AsmName" in the target register info. Gee, a refactoring toolBill Wendling
2008-02-26Avoid aborting on invalid shift counts.Dan Gohman
2008-02-25Convert MaskedValueIsZero and all its users to use APInt. Also addDan Gohman
2008-02-21Better names as per Evan's requestAndrew Lenharth
2008-02-21Atomic op support. If any gcc test uses __sync builtins, it might start fail...Andrew Lenharth
2008-02-20LegalizeTypes support for scalarizing a vector storeDuncan Sands
2008-02-20Use APInt::intersects.Dan Gohman
2008-02-20Update gcc 4.3 warnings fix patch with recent head changesAnton Korobeynikov
2008-02-20Fix an incredibly subtle bug exposed by Ted's change to APInt profiling.Chris Lattner
2008-02-18- When DAG combiner is folding a bit convert into a BUILD_VECTOR, it should c...Evan Cheng
2008-02-16llvm.memory.barrier, and impl for x86 and alphaAndrew Lenharth
2008-02-14Fix a miscompilation from Dan's recent apintification.Chris Lattner
2008-02-13Allow the APInt form of ComputeMaskedBits to operate on i128 types.Dan Gohman
2008-02-13Avoid setting bits that aren't demanded.Dan Gohman
2008-02-13Simplify some logic in ComputeMaskedBits. And change ComputeMaskedBitsDan Gohman
2008-02-13Convert SelectionDAG::ComputeMaskedBits to use APInt instead of uint64_t.Dan Gohman
2008-02-11Added "Profile" method to APFloat for use with FoldingSet.Ted Kremenek
2008-02-10Rename MRegisterInfo to TargetRegisterInfo.Dan Gohman
2008-02-10Add truncate and AssertZext result expansion.Duncan Sands
2008-02-08Change ConstantSDNode to store an APInt instead of a uint64_t, andDan Gohman
2008-02-08Avoid needlessly casting away const qualifiers.Dan Gohman
2008-02-07Follow Chris' suggestion; change the PseudoSourceValue accessorsDan Gohman
2008-02-06Re-apply the memory operand changes, with a fix for the staticDan Gohman
2008-02-05Fix PR1975: dag isel emitter produces patterns that isel wrong flag result.Evan Cheng
2008-02-04Typo.Evan Cheng
2008-02-03Change the 'global modification' APIs in SelectionDAG to take a newChris Lattner
2008-02-03Generalize the SDOperand->SDOperand form of Chris Lattner
2008-02-02SDIsel processes llvm.dbg.declare by recording the variable debug information...Evan Cheng
2008-01-31Revert 46556 and 46585. Dan please fix the PseudoSourceValue problem and re-c...Evan Cheng
2008-01-31Add an extra operand to LABEL nodes which distinguishes between debug, EH, or...Evan Cheng
2008-01-31Rename ISD::FLT_ROUNDS to ISD::FLT_ROUNDS_ to avoid conflictingDan Gohman
2008-01-31Create a new class, MemOperand, for describing memory referencesDan Gohman
2008-01-30Factor the addressing mode and the load/store VT out of LoadSDNodeDan Gohman
2008-01-29Use empty() instead of comparing size() with zero.Dan Gohman
2008-01-26don't bother making x&-1 only to simplify it in dag combine. This commonly o...Chris Lattner
2008-01-22Simplify SelectionDAG::getNode so that a big switch stmt is not #ifndef Chris Lattner
2008-01-21Move DAG-changing code out of #ifndef NDEBUG.Dale Johannesen
2008-01-17* Introduce a new SelectionDAG::getIntPtrConstant methodChris Lattner