Age | Commit message (Expand) | Author |
2006-08-21 | Fix PR861 | Chris Lattner |
2006-08-14 | eliminate use of getNode that takes vector of valuetypes. | Chris Lattner |
2006-08-08 | Start eliminating temporary vectors used to create DAG nodes. Instead, pass | Chris Lattner |
2006-08-08 | Eliminate some malloc traffic by allocating vectors on the stack. Change some | Chris Lattner |
2006-08-04 | Make SelectionDAG::RemoveDeadNodes iterative instead of recursive, which | Chris Lattner |
2006-07-26 | Fix a case where LegalizeAllNodesNotLeadingTo could take exponential time. | Chris Lattner |
2006-07-11 | Ensure that dump calls that are associated with asserts are removed from | Jim Laskey |
2006-07-11 | Fix CodeGen/Alpha/2006-07-03-ASMFormalLowering.ll and PR818. | Chris Lattner |
2006-06-28 | Mark these two classes as hidden, shrinking libllbmgcc.dylib by 25K | Chris Lattner |
2006-05-26 | Change RET node to include signness information of the return values. e.g. | Evan Cheng |
2006-05-24 | Patches to make the LLVM sources more -pedantic clean. Patch provided | Chris Lattner |
2006-05-17 | When we legalize target nodes, do not use getNode to create a new node, | Chris Lattner |
2006-05-17 | Add an assertion, avoid some unneeded work for each call. No functionality | Chris Lattner |
2006-05-16 | Add a new ISD::CALL node, make the default impl of TargetLowering::LowerCallTo | Chris Lattner |
2006-05-16 | Legalize FORMAL_ARGUMENTS nodes correctly, we don't want to legalize them once | Chris Lattner |
2006-05-13 | Merge identical code. | Chris Lattner |
2006-05-09 | Fix PR773 | Nate Begeman |
2006-05-03 | Refactor TargetMachine, pushing handling of TargetData into the target-specif... | Owen Anderson |
2006-04-22 | JumpTable support! What this represents is working asm and jit support for | Nate Begeman |
2006-04-19 | Simplify some code | Chris Lattner |
2006-04-17 | Fix handling of calls in functions that use vectors. This fixes a crash on | Chris Lattner |
2006-04-17 | Codegen insertelement with constant insertion points as scalar_to_vector | Chris Lattner |
2006-04-16 | Add support for promoting stores from one legal type to another, allowing us | Chris Lattner |
2006-04-14 | Make this assertion better | Chris Lattner |
2006-04-12 | Promote vector AND, OR, and XOR | Evan Cheng |
2006-04-12 | Vector type promotion for ISD::LOAD and ISD::SELECT | Evan Cheng |
2006-04-12 | Implement support for the formal_arguments node. To get this, targets should... | Chris Lattner |
2006-04-11 | Only get Tmp2 for cases where number of operands is > 1. Fixed return void. | Evan Cheng |
2006-04-11 | add some todos | Chris Lattner |
2006-04-11 | Add basic support for legalizing returns of vectors | Chris Lattner |
2006-04-10 | Missing break | Evan Cheng |
2006-04-08 | Add code generator support for VSELECT | Chris Lattner |
2006-04-08 | Canonicalize vvector_shuffle(x,x) -> vvector_shuffle(x,undef) to enable patterns | Chris Lattner |
2006-04-08 | add a sanity check: LegalizeOp should return a value that is the same type | Chris Lattner |
2006-04-08 | INSERT_VECTOR_ELT lowering bug: | Evan Cheng |
2006-04-05 | Exapnd a VECTOR_SHUFFLE to a BUILD_VECTOR if target asks for it to be expanded | Evan Cheng |
2006-04-04 | * Add supprot for SCALAR_TO_VECTOR operations where the input needs to be | Chris Lattner |
2006-04-02 | Implement promotion for EXTRACT_VECTOR_ELT, allowing v16i8 multiplies to work... | Chris Lattner |
2006-04-02 | Implement the Expand action for binary vector operations to break the binop | Chris Lattner |
2006-04-02 | Add a new -view-legalize-dags command line option | Chris Lattner |
2006-03-31 | Do not endian swap split vector loads. This fixes UnitTests/Vector/sumarray-... | Chris Lattner |
2006-03-31 | Do not endian swap the operands to a store if the operands came from a vector. | Chris Lattner |
2006-03-31 | Implement PromoteOp for VEXTRACT_VECTOR_ELT. Thsi fixes | Chris Lattner |
2006-03-31 | Scalarized vector stores need not be legal, e.g. if the vector element type | Chris Lattner |
2006-03-31 | Significantly improve handling of vectors that are live across basic blocks, | Chris Lattner |
2006-03-31 | Expand INSERT_VECTOR_ELT to store vec, sp; store elt, sp+k; vec = load sp; | Evan Cheng |
2006-03-28 | Teach Legalize how to pack VVECTOR_SHUFFLE nodes into VECTOR_SHUFFLE nodes. | Chris Lattner |
2006-03-28 | Tblgen doesn't like multiple SDNode<> definitions that map to the sameenum va... | Chris Lattner |
2006-03-27 | Fix legalization of intrinsics with chain and result values | Chris Lattner |
2006-03-26 | Allow targets to custom lower their own intrinsics if desired. | Chris Lattner |