aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
AgeCommit message (Expand)Author
2010-09-21propagate MachinePointerInfo through various uses of the oldChris Lattner
2010-09-21continue MachinePointerInfo'izing, eliminating use of one of the oldChris Lattner
2010-09-21don't implicitly drop the offset of a machinememoperand when legalizing atomics.Chris Lattner
2010-07-2380-col.Eric Christopher
2010-07-11Fix va_arg for doubles. With this patch VAARG nodes always contain theRafael Espindola
2010-07-07Move getExtLoad() and (some) getLoad() DebugLoc argument after EVT argument f...Evan Cheng
2010-06-18Change UpdateNodeOperands' operand and return value from SDValue toDan Gohman
2010-06-03Implement expansion in type legalization for add/sub with overflow. TheEli Friedman
2010-05-15Fix uint64->{float, double} conversion to do rounding correctly in 32-bit.Dale Johannesen
2010-04-19More 80 col violation.Evan Cheng
2010-04-17Another 80 col violation.Evan Cheng
2010-04-1680 col.Evan Cheng
2010-04-1680 col.Evan Cheng
2010-04-15More 80 violations.Evan Cheng
2010-03-23Revert 99335. getTypeToExpandTo's iterative behavior is actuallyDan Gohman
2010-03-23Remove getTypeToExpandTo, since it isn't adding much valueDan Gohman
2010-03-14Make default expansion for FP16 <-> FP32 nodes into libcallsAnton Korobeynikov
2010-03-02Fix several places to handle vector operands properly.Dan Gohman
2010-02-15Add non-temporal flags and remove an assumption of default arguments.David Greene
2010-01-05Change errs() to dbgs().David Greene
2009-12-28Remove dead variable.Bill Wendling
2009-12-07Truncate the arguments of llvm.frameaddress / llvm.returnaddress intrinsics f...Anton Korobeynikov
2009-12-04Add note about a subtle bug in this code. Does not effect the mainDuncan Sands
2009-12-03Fix ExpandShiftWithUnknownAmountBit, which was completely bogus.Duncan Sands
2009-09-23Use getStoreSize() instead of getStoreSizeInBits()/8.Dan Gohman
2009-09-23Rename several variables from EVT to more descriptive names, now that EVTDan Gohman
2009-08-12Add contexts to some of the MVT APIs. No functionality change yet, just the ...Owen Anderson
2009-08-11Split EVT into MVT and EVT, the former representing _just_ a primitive type, ...Owen Anderson
2009-08-10Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ...Owen Anderson
2009-07-25Convert a few more things to use raw_ostream.Dan Gohman
2009-07-24Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson
2009-07-24Add support for promoting SETCC operations.Jakob Stoklund Olesen
2009-07-16Move the ConstantInt uniquing table into LLVMContextImpl. This exposed a num...Owen Anderson
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin
2009-07-11Use CreateStackStoreLoad helper in more places.Eli Friedman
2009-07-09Make EXTRACT_VECTOR_ELT a bit more flexible in terms of the returned Eli Friedman
2009-07-08Remove trailing whitespace. Reorder some methodsDuncan Sands
2009-06-05Allow libcalls for i16 sdiv/udiv/rem operations.Sanjiv Gupta
2009-06-04Fix FP_TO_UINT->i32 on ppc32 -mcpu=g5. This wasDale Johannesen
2009-06-02Revert 72707 and 72709, for the moment.Dale Johannesen
2009-06-01Make the implicit inputs and outputs of target-independentDale Johannesen
2009-05-31Rename CustomLowerResults to CustomLowerNode, sinceDuncan Sands
2009-04-20Revise my previous change 68996 as suggested by Duncan.Bob Wilson
2009-04-18Don't try to make BUILD_VECTOR operands have the sameDuncan Sands
2009-04-13Change SelectionDAG type legalization to allow BUILD_VECTOR operands to beBob Wilson
2009-04-09Remove the obsolete SelectionDAG::getNodeValueTypes and simplifyDan Gohman
2009-03-31Fully general expansion of integer shift of any size.Evan Cheng
2009-03-18Added missing support for widening when splitting an unary op (PR3683)Mon P Wang