aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
AgeCommit message (Expand)Author
2007-04-11Teach the codegen to turn [aez]ext (setcc) -> selectcc of 1/0, which oftenChris Lattner
2007-04-11Codegen integer abs more efficiently using the trick from the PPC CWG. ThisChris Lattner
2007-04-021. Insert custom lowering hooks for ISD::ROTR and ISD::ROTL.Scott Michel
2007-03-30Fix incorrect combination of different loads. Reenable zext-over-truncateDale Johannesen
2007-03-29Disable load width reduction xform of variant (zext (truncate load x)) forEvan Cheng
2007-03-26SIGN_EXTEND_INREG requires one extra operand, a ValueType node.Evan Cheng
2007-03-24Adjust offset to compensate for big endian machines.Evan Cheng
2007-03-23Make sure SEXTLOAD of the specific type is supported on the target.Evan Cheng
2007-03-23Also replace uses of SRL if that's also folded during ReduceLoadWidth().Evan Cheng
2007-03-23A couple of bug fixes for reducing load width xform:Evan Cheng
2007-03-22More opportunities to reduce load size.Evan Cheng
2007-03-21fold (truncate (srl (load x), c)) -> (smaller load (x+c/vt bits))Evan Cheng
2007-03-07Avoid combining indexed load further.Evan Cheng
2007-03-04fold away addc nodes when we know there cannot be a carry-out.Chris Lattner
2007-03-04generalizeChris Lattner
2007-03-04canonicalize constants to the RHS of addc/adde. If nothing uses the carry ou...Chris Lattner
2007-02-26Fold (sext (truncate x)) more aggressively, by avoiding creation of aChris Lattner
2007-02-08Move SimplifySetCC to TargetLowering and allow it to be shared with legalizer.Evan Cheng
2007-01-20Fix for PR1108: type of insert_vector_elt index operand is PtrVT, not MVT::i32.Evan Cheng
2007-01-19Remove this xform:Evan Cheng
2007-01-16Fix PR1114 and CodeGen/Generic/2007-01-15-LoadSelectCycle.ll by beingChris Lattner
2007-01-16add options to view the dags before the first or second pass of dag combine.Chris Lattner
2007-01-08Implement some trivial FP foldings when -enable-unsafe-fp-math is specified.Chris Lattner
2006-12-19Eliminate static ctors from StatisticsChris Lattner
2006-12-16Cannot combine an indexed load / store any further.Evan Cheng
2006-12-15This code was usurping the sextload expand in teh legalizer. Just makeJim Laskey
2006-12-12make this code more aggressive about turning store fpimm into store int imm.Chris Lattner
2006-12-11Don't convert store double C, Ptr to store long C, Ptr if i64 is not a legal ...Evan Cheng
2006-12-11Move something that should be in the dag combiner from the legalizer to theNate Begeman
2006-12-07Fix CodeGen/PowerPC/2006-12-07-SelectCrash.ll on PPC64Chris Lattner
2006-12-07Removing even more <iostream> includes.Bill Wendling
2006-12-06Detemplatize the Statistic class. The only type it is instantiated withChris Lattner
2006-11-27For better or worse, load from i1 is assumed to be zero extended. Do notChris Lattner
2006-11-20Fix PR1011 and CodeGen/Generic/2006-11-20-DAGCombineCrash.llChris Lattner
2006-11-16Fix an incorrectly inverted condition.Evan Cheng
2006-11-11disallow preinc of a frameindex. This is not profitable and causes 2-addrChris Lattner
2006-11-11reduce indentation by using early exits. No functionality change.Chris Lattner
2006-11-11move big chunks of code out-of-line, no functionality change.Chris Lattner
2006-11-10Fix a dag combiner bug exposed by my recent instcombine patch. This fixesChris Lattner
2006-11-10When forming a pre-indexed store, make sure ptr isn't the same or is a pred o...Evan Cheng
2006-11-09Don't attempt expensive pre-/post- indexed dag combine if target does not sup...Evan Cheng
2006-11-09Rename ISD::MemOpAddrMode to ISD::MemIndexedModeEvan Cheng
2006-11-09getPostIndexedAddressParts change: passes in load/store instead of its loaded...Evan Cheng
2006-11-08Match more post-indexed ops.Evan Cheng
2006-11-08Remove redundant <cmath>.Jim Laskey
2006-11-08- When performing pre-/post- indexed load/store transformation, do not worryEvan Cheng
2006-11-08Fixed a minor bug preventing some pre-indexed load / store transformation.Evan Cheng
2006-11-08Fix a obscure post-indexed load / store dag combine bug.Evan Cheng
2006-11-07Add post-indexed load / store transformations.Evan Cheng
2006-11-06Add comment.Evan Cheng