| Commit message (Expand) | Author | Age | Files | Lines |
* | Bug fix. Must also match ResNo when matching an operand with a user. | Evan Cheng | 2007-12-14 | 1 | -1/+1 |
* | Allow vector integer constants to be created with | Dan Gohman | 2007-12-12 | 1 | -9/+22 |
* | Pretty print shuffle mask operand. | Evan Cheng | 2007-12-11 | 1 | -0/+13 |
* | Duncan points out that the subtraction is unneeded since hte code | Chris Lattner | 2007-12-09 | 1 | -1/+1 |
* | Add support for splitting the operand of a return instruction. | Chris Lattner | 2007-12-09 | 3 | -53/+21 |
* | add many new cases to SplitResult. SplitResult now handles all the cases tha... | Chris Lattner | 2007-12-08 | 2 | -3/+178 |
* | Implement splitting support for store, allowing us to compile: | Chris Lattner | 2007-12-08 | 2 | -3/+27 |
* | implement vector splitting of load, undef, and binops. | Chris Lattner | 2007-12-08 | 2 | -4/+88 |
* | implement some methods. | Chris Lattner | 2007-12-08 | 2 | -2/+29 |
* | add scaffolding for splitting of vectors. | Chris Lattner | 2007-12-08 | 3 | -4/+138 |
* | reorganize header to separate into functional blocks. | Chris Lattner | 2007-12-08 | 1 | -47/+59 |
* | split scalarization out to its own file. | Chris Lattner | 2007-12-08 | 2 | -183/+202 |
* | Split expansion out into its own file. | Chris Lattner | 2007-12-08 | 2 | -1144/+1166 |
* | Split promotion support out to its own file. | Chris Lattner | 2007-12-08 | 2 | -472/+490 |
* | Rename LegalizeDAGTypes.cpp -> LegalizeTypes.cpp | Chris Lattner | 2007-12-08 | 1 | -1/+0 |
* | Split the class definition of DAGTypeLegalizer out into a header. | Chris Lattner | 2007-12-08 | 2 | -234/+256 |
* | Redo previous patch so optimization only done for i1. | Dale Johannesen | 2007-12-06 | 1 | -16/+4 |
* | third time around: instead of disabling this completely, | Chris Lattner | 2007-12-06 | 1 | -6/+13 |
* | Actually, disable this code for now. More analysis and improvements to | Chris Lattner | 2007-12-06 | 1 | -0/+6 |
* | implement a readme entry, compiling the code into: | Chris Lattner | 2007-12-06 | 1 | -19/+65 |
* | implement the rest of the functionality from SelectionDAGLegalize::ScalarizeV... | Chris Lattner | 2007-12-06 | 1 | -10/+24 |
* | Fix PR1842. | Dale Johannesen | 2007-12-06 | 1 | -4/+16 |
* | more scalarization | Chris Lattner | 2007-12-05 | 1 | -0/+30 |
* | scalarize vector binops | Chris Lattner | 2007-12-05 | 1 | -1/+24 |
* | Implement framework for scalarizing node results. This is sufficient | Chris Lattner | 2007-12-04 | 1 | -11/+80 |
* | start providing framework for scalarizing vectors. | Chris Lattner | 2007-12-04 | 1 | -4/+106 |
* | Rather than having special rules like "intrinsics cannot | Duncan Sands | 2007-12-03 | 1 | -21/+3 |
* | Add some convenience methods for querying attributes, and | Duncan Sands | 2007-11-28 | 1 | -12/+11 |
* | Support returning non-power-of-2 vectors to unblock some work | Nate Begeman | 2007-11-27 | 1 | -0/+7 |
* | Fix PR1146: parameter attributes are longer part of | Duncan Sands | 2007-11-27 | 1 | -12/+10 |
* | err, no really. | Chris Lattner | 2007-11-27 | 1 | -1/+1 |
* | don't depend on ADL. | Chris Lattner | 2007-11-27 | 1 | -1/+1 |
* | Don't lower srem/urem X%C to X-X/C*C unless the division is actually | Dan Gohman | 2007-11-26 | 1 | -14/+18 |
* | Implement expand support for MERGE_VALUEs that only produces one result. | Chris Lattner | 2007-11-24 | 1 | -0/+4 |
* | Implement support for custom legalization in DAGTypeLegalizer::ExpandOperand. | Chris Lattner | 2007-11-24 | 1 | -30/+43 |
* | Several changes: | Chris Lattner | 2007-11-24 | 3 | -45/+118 |
* | Fix a bug in which node A is replaced by node B, but later | Duncan Sands | 2007-11-21 | 1 | -7/+30 |
* | ExpandUnalignedLoad doesn't handle vectors right at all apparently. | Chris Lattner | 2007-11-19 | 1 | -8/+22 |
* | Implement vector expand support for shuffle_vector. This fixes PR1811. | Chris Lattner | 2007-11-19 | 1 | -0/+35 |
* | Implement splitting of UNDEF nodes. This is the first step towards fixing PR1811 | Chris Lattner | 2007-11-19 | 1 | -0/+4 |
* | Add support in SplitVectorOp for remainder operators. | Dan Gohman | 2007-11-19 | 1 | -1/+4 |
* | Add support for vectors to int <-> float casts. | Nate Begeman | 2007-11-17 | 1 | -1/+5 |
* | Implement necessary bits for flt_rounds gcc builtin. | Anton Korobeynikov | 2007-11-15 | 3 | -0/+19 |
* | Basic non-power-of-2 vector support | Nate Begeman | 2007-11-15 | 1 | -29/+37 |
* | This assertion was bogus. | Duncan Sands | 2007-11-15 | 1 | -3/+2 |
* | Unify CALLSEQ_{START,END}. They take 4 parameters: the chain, two stack | Bill Wendling | 2007-11-13 | 1 | -2/+23 |
* | Move MinAlign to MathExtras.h. | Duncan Sands | 2007-11-09 | 3 | -3/+1 |
* | Fix some load/store logic that would be wrong for | Duncan Sands | 2007-11-09 | 2 | -6/+10 |
* | Much improved pic jumptable codegen: | Evan Cheng | 2007-11-09 | 2 | -11/+14 |
* | Didn't mean to check these in. | Evan Cheng | 2007-11-09 | 2 | -14/+11 |