summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Commit message (Expand)AuthorAgeFilesLines
* Move some Legalize functionality over to the DAGCombiner where it belongs.Nate Begeman2005-10-131-131/+0
* This function is now deadChris Lattner2005-10-101-110/+0
* Enable Nate's excellent DAG combiner work by default. This allows theChris Lattner2005-10-101-542/+14
* (X & Y) & C == 0 if either X&C or Y&C are zeroChris Lattner2005-10-091-2/+6
* remove debugging codeChris Lattner2005-10-071-5/+1
* implement CodeGen/PowerPC/div-2.ll:test2-4 by propagating zero bits throughChris Lattner2005-10-071-1/+23
* fix indentationChris Lattner2005-10-071-57/+57
* Turn sdivs into udivs when we can prove the sign bits are clear. ThisChris Lattner2005-10-071-0/+11
* Let the combiner handle more casesNate Begeman2005-10-051-1/+4
* implement visitBR_CC so that PowerPC/inverted-bool-compares.ll passesChris Lattner2005-10-051-0/+3
* fix some pastosChris Lattner2005-10-051-2/+2
* Add a new HandleNode class, which is used to handle (haha) cases in theChris Lattner2005-10-051-6/+5
* Add FP versions of the binary operators, keeping the int and fp worlds seperate.Chris Lattner2005-09-281-21/+40
* Turn (X^C1) == C2 into X == C1^C2 iff X&~C1 = 0 (and move a function)Chris Lattner2005-09-231-72/+86
* Fix a problem duraid encountered on itanium where this folding:Chris Lattner2005-09-091-2/+6
* Fix a crash viewing dags that have target nodes in themChris Lattner2005-09-091-1/+2
* Last round of 2-node folds from SD.cpp. Will move on to 3 node ops suchNate Begeman2005-09-091-2/+4
* Move yet more folds over to the dag combiner from sd.cppNate Begeman2005-09-081-2/+9
* Another round of dag combiner changes. This fixes some missing XOR foldsNate Begeman2005-09-071-4/+4
* Fix a bug nate ran into with replacealluseswith. In the recursive cse case,Chris Lattner2005-09-071-15/+45
* Fix a checking failure in gsChris Lattner2005-09-031-1/+1
* Make sure to auto-cse nullary opsChris Lattner2005-09-021-3/+9
* Fix some buggy logic where we would try to remove nodes with two operandsChris Lattner2005-09-021-34/+56
* Add support for ANY_EXTEND and add a few minor folds for itChris Lattner2005-09-021-1/+11
* Fix some code in the current node combining code, spotted when it was movedNate Begeman2005-09-011-11/+3
* Fix VC++ precedence warningsJeff Cohen2005-08-311-2/+2
* Sigh, not my day. Fix typo.Nate Begeman2005-08-311-1/+1
* Fix a mistake in my previous patch pointed out by sabre; the AssertZextNate Begeman2005-08-311-2/+3
* Remove some unnecessary casts, and add the AssertZext case toNate Begeman2005-08-311-2/+3
* Allow physregs to occur in the dag with multiple types. Though I don't liket...Chris Lattner2005-08-301-12/+8
* Remove a bogus piece of my AssertSext/AssertZext patch. oops.Nate Begeman2005-08-301-2/+0
* Add support for AssertSext and AssertZext, folding other extensions withNate Begeman2005-08-301-4/+19
* Add a new API for NateChris Lattner2005-08-291-0/+27
* Fix a bug in ReplaceAllUsesWithChris Lattner2005-08-281-1/+1
* Checking types here is not safe, because multiple types can map to the sameChris Lattner2005-08-261-3/+0
* Revampt ReplaceAllUsesWith to be more efficient and easier to use.Chris Lattner2005-08-261-5/+53
* Change ConstantPoolSDNode to actually hold the Constant itself instead ofChris Lattner2005-08-261-12/+11
* Fix a huge annoyance: SelectNodeTo took types before the opcode unlikeChris Lattner2005-08-261-19/+17
* Fix a nasty bug from a previous patch of mineChris Lattner2005-08-261-1/+1
* New fold for SELECT_CCNate Begeman2005-08-251-1/+19
* Don't auto-cse nodes that return flagsChris Lattner2005-08-251-17/+38
* simplify the code a bit using isOperationLegalChris Lattner2005-08-251-4/+3
* ADd support for TargetConstantPool nodesChris Lattner2005-08-251-1/+14
* add a new TargetFrameIndex nodeChris Lattner2005-08-251-1/+13
* add a methodChris Lattner2005-08-241-0/+6
* Add ReplaceAllUsesWith that can take a vector of replacement values.Chris Lattner2005-08-241-15/+90
* teach selection dag mask tracking about the fact that select_cc operates likeChris Lattner2005-08-241-1/+10
* Teach SelectionDAG how to simplify a few more setcc-equivalent select_ccNate Begeman2005-08-241-6/+21
* Fix optimization of select_cc seteq X, 0, 1, 0 -> srl (ctlz X), log2 X sizeNate Begeman2005-08-241-3/+3
* Teach the SelectionDAG how to transform select_cc eq, X, 0, 1, 0 intoNate Begeman2005-08-231-0/+17
OpenPOWER on IntegriCloud