aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG
AgeCommit message (Expand)Author
2008-02-21Atomic op support. If any gcc test uses __sync builtins, it might start fail...Andrew Lenharth
2008-02-21Add support for matching mem operands. This fixes PR1133, patch byChris Lattner
2008-02-21Fix a (harmless) but where vregs were added to the used reg lists for Chris Lattner
2008-02-20assert is more effective reminder then FIXME tag for unimplemented features.Devang Patel
2008-02-20LegalizeTypes support for scalarizing a vector storeDuncan Sands
2008-02-20Convert Legalize to use the APInt form of ComputeMaskedBits.Dan Gohman
2008-02-20Add explicit keywords.Dan Gohman
2008-02-20Convert DAGCombiner to use the APInt form of ComputeMaskedBits.Dan Gohman
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-19Add GetResultInst. First step for multiple return value support.Devang Patel
2008-02-18- When DAG combiner is folding a bit convert into a BUILD_VECTOR, it should c...Evan Cheng
2008-02-16I cannot find a libgcc function for this builtin. Therefor expanding it to a...Andrew Lenharth
2008-02-16Teach LegalizeTypes how to expand the operands ofDuncan Sands
2008-02-16llvm.memory.barrier, and impl for x86 and alphaAndrew Lenharth
2008-02-16Rename CountMemOperands to ComputeMemOperandsEnd to reflect whatDan Gohman
2008-02-16Revert 47177, which was incorrect.Dan Gohman
2008-02-15Make tblgen a little smarter about constants smaller than i32. Currently,Scott Michel
2008-02-15Skip over the defs and start at the uses when looking for operandsDan Gohman
2008-02-15Use the TargetInstrDescr to determine the number of operandsDan Gohman
2008-02-15Teach LegalizeTypes how to promote the flagsDuncan Sands
2008-02-15Use StoreSDNode::getValue instead of calling getOperand directlyDan Gohman
2008-02-14Fix a miscompilation from Dan's recent apintification.Chris Lattner
2008-02-14In TargetLowering::LowerCallTo, don't assert thatDuncan Sands
2008-02-14Change how FP immediates are handled. Nate Begeman
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-13Teach LegalizeTypes how to expand and promote CTLZ,Duncan Sands
2008-02-13In SDISel, for targets that support FORMAL_ARGUMENTS nodes, lower thisChris Lattner
2008-02-13teach dag combiner how to eliminate MERGE_VALUES nodes.Chris Lattner
2008-02-13Support legalizing insert_vector_elt on targets where the elementNate Begeman
2008-02-13Convert SelectionDAG::ComputeMaskedBits to use APInt instead of uint64_t.Dan Gohman
2008-02-12Generalize getCopyFromParts and getCopyToParts toDuncan Sands
2008-02-11Generalize the handling of call and return arguments,Duncan Sands
2008-02-11From Chris' review: use isa instead of explicitly using classof.Dan Gohman
2008-02-11From Chris' review: minor corrections in comments.Dan Gohman
2008-02-11From Chris' review: use cast instead of dyn_cast with an assert.Dan Gohman
2008-02-11Added "Profile" method to APFloat for use with FoldingSet.Ted Kremenek
2008-02-11Add a isBigEndian method to complement isLittleEndian.Duncan Sands
2008-02-10Rename MRegisterInfo to TargetRegisterInfo.Dan Gohman
2008-02-10Add truncate and AssertZext result expansion.Duncan Sands
2008-02-10Return "(c1 + c2)" instead of yet another ADD node (which made this aBill Wendling
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