summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG
AgeCommit message (Expand)AuthorFilesLines
2012-10-17Teach DAG combine to fold (extract_subvec (concat v1, ..) i) to v_iMichael Liao1-2/+17
2012-10-17Add a really faster pre-RA scheduler (-pre-RA-sched=linearize). It doesn't useEvan Cheng3-3/+160
2012-10-16Teach DAG combine to fold (trunc (fptoXi x)) to (fptoXi x)Michael Liao1-0/+46
2012-10-15Freeze the reserved registers as soon as isel is complete.Jakob Stoklund Olesen1-0/+5
2012-10-15Resubmit the changes to llvm core to update the functions to support differen...Micah Villmow1-1/+4
2012-10-12Fix big-endian codegen bug in DAGTypeLegalizer::ExpandRes_BITCASTUlrich Weigand1-0/+4
2012-10-12Legalizer optimize a pair of div / mod to a call to divrem libcall if they areEvan Cheng1-0/+2
2012-10-11Revert 165732 for further review.Micah Villmow1-4/+1
2012-10-11Add in the first iteration of support for llvm/clang/lldb to allow variable p...Micah Villmow1-1/+4
2012-10-11Follow the same routine to add target float expansion hookMichael Liao1-26/+24
2012-10-10Add in support for expansion of all of the comparison operations to the absol...Micah Villmow1-17/+62
2012-10-10Add alternative support for FP_ROUND from v2f32 to v2f64Michael Liao2-4/+8
2012-10-10Issue description:Stepan Dyatkovskiy1-2/+3
2012-10-09Use the attribute enums to query if a parameter has an attribute.Bill Wendling1-6/+6
2012-10-09Add in the first step of the multiple pointer support. This adds in support t...Micah Villmow1-6/+7
2012-10-09Create enums for the different attributes.Bill Wendling3-20/+24
2012-10-08Refactor the AddrMode class out of TLI to its own header file.Nadav Rotem1-1/+1
2012-10-08misched: remove forceUnitLatencies. Defaults are handled by the default Sched...Andrew Trick1-0/+6
2012-10-08Move TargetData to DataLayout.Micah Villmow16-65/+65
2012-10-05Remove unused but set variable flagged by GCC.Benjamin Kramer1-4/+0
2012-10-05Simplify code, don't or a bool with an uint64_t.Benjamin Kramer1-2/+2
2012-10-04When merging connsecutive stores, use vectors to store the constant zero.Nadav Rotem1-34/+57
2012-10-03Update to use the predicate methods to query if an attribute exists.Bill Wendling1-17/+17
2012-10-03Fix a cycle in the DAG. In this code we replace multiple loads with a single ...Nadav Rotem1-7/+19
2012-10-03A DAGCombine optimization for mergeing consecutive stores to memory. The opti...Nadav Rotem1-0/+395
2012-10-03Revert 165051-165049 while looking into the foreach.m failure inEric Christopher1-16/+11
2012-10-02Remove the SavePoint infrastructure from fast isel, replaceEric Christopher1-11/+16
2012-10-02Fix PR13991: legalizing an overflowing multiplication operation is harder thanDuncan Sands1-7/+15
2012-09-30Use dyn_cast instead of isa and cast.Jakub Staszak1-10/+8
2012-09-30Revert r164910 because it causes failures to several phase2 builds.Nadav Rotem1-254/+0
2012-09-30A DAGCombine optimization for merging consecutive stores. This optimization i...Nadav Rotem1-0/+254
2012-09-29Speculatively revert commit 164885 (nadav) in the hope of ressurecting a pile ofDuncan Sands1-252/+0
2012-09-29Tidy up to match coding standards. Remove 'else' after 'return' and moving op...Craig Topper1-27/+24
2012-09-29Replace a couple if/elses around similar calls with conditional operators on ...Craig Topper1-17/+6
2012-09-29A DAGCombine optimization for merging consecutive stores. This optimization i...Nadav Rotem1-0/+252
2012-09-27Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru4-35/+35
2012-09-27Fix a typo 'iff' => 'if'Sylvestre Ledru4-35/+35
2012-09-26Remove the `hasFnAttr' method from Function.Bill Wendling2-4/+4
2012-09-26Generate an error message instead of asserting or segfaulting when we have aBill Wendling1-19/+29
2012-09-26Generate an error message instead of asserting or segfaulting when we have aBill Wendling1-29/+41
2012-09-25TargetLowering interface to set/get minimum block entries for jump tables.Sebastian Pop2-2/+4
2012-09-20Fix 80-col violations.Nadav Rotem1-13/+19
2012-09-19Add predicates for queries on whether an attribute exists.Bill Wendling1-7/+6
2012-09-18Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...Craig Topper1-2/+2
2012-09-18Fix some funky indentation.Evan Cheng1-18/+17
2012-09-17Fix PR13859Michael Liao1-6/+7
2012-09-16Fix bad comment. No functional change.Craig Topper1-1/+1
2012-09-13Fix both the test for zero and what we do if we have a zero forEric Christopher1-1/+4
2012-09-13Reformat, remove a couple unused variables and move some variablesEric Christopher1-8/+8
2012-09-13Enhance type legalization on bitcast from vector to integerMichael Liao1-5/+34