| Commit message (Expand) | Author | Age | Files | Lines |
* | Move the SplatByte helper to APInt and generalize it a bit. | Benjamin Kramer | 2013-02-20 | 1 | -16/+4 |
* | LegalizeDAG.cpp doesn't need DenseMap. | Jakub Staszak | 2013-02-16 | 1 | -1/+0 |
* | enable SDISel sincos optimization for GNU environments | Paul Redmond | 2013-02-15 | 1 | -1/+16 |
* | Teach SDISel to combine fsin / fcos into a fsincos node if the following | Evan Cheng | 2013-01-29 | 1 | -9/+130 |
* | Make APFloat constructor require explicit semantics. | Tim Northover | 2013-01-22 | 1 | -1/+2 |
* | Refactor to expose RTLIB calls to targets. | Tim Northover | 2013-01-09 | 1 | -21/+1 |
* | Add fp128 rtlib function names to LLVM | Tim Northover | 2013-01-08 | 1 | -18/+38 |
* | Sink a function that refers to the SelectionDAG into that library in the | Chandler Carruth | 2013-01-08 | 1 | -0/+21 |
* | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -5/+5 |
* | Change TargetLowering::RegisterTypeForVT to contain MVTs, instead of | Patrik Hagglund | 2012-12-19 | 1 | -2/+2 |
* | Change TargetLowering::getTypeToPromoteTo to take and return MVTs, | Patrik Hagglund | 2012-12-19 | 1 | -7/+7 |
* | Change TargetLowering::getCondCodeAction to take an MVT, instead of | Patrik Hagglund | 2012-12-19 | 1 | -2/+2 |
* | Change TargetLowering::getTruncStoreAction to take MVTs, instead of EVTs. | Patrik Hagglund | 2012-12-19 | 1 | -1/+2 |
* | Change TargetLowering::getLoadExtAction to take an MVT, instead of | Patrik Hagglund | 2012-12-14 | 1 | -1/+1 |
* | Revert EVT->MVT changes, r169836-169851, due to buildbot failures. | Patrik Hagglund | 2012-12-11 | 1 | -13/+12 |
* | Change TargetLowering::RegisterTypeForVT to contain MVTs, instead of | Patrik Hagglund | 2012-12-11 | 1 | -2/+2 |
* | Change TargetLowering::getTypeToPromoteTo to take and return MVTs, | Patrik Hagglund | 2012-12-11 | 1 | -6/+6 |
* | Change TargetLowering::getCondCodeAction to take an MVT, instead of | Patrik Hagglund | 2012-12-11 | 1 | -2/+2 |
* | Change TargetLowering::getTruncStoreAction to take MVTs, instead of EVTs. | Patrik Hagglund | 2012-12-11 | 1 | -1/+2 |
* | Change TargetLowering::getLoadExtAction to take an MVT, instead of EVT. | Patrik Hagglund | 2012-12-11 | 1 | -1/+1 |
* | LegalizeDAG: Allow type promotion of scalar loads | Tom Stellard | 2012-12-10 | 1 | -3/+2 |
* | LegalizeDAG: Allow type promotion for scalar stores | Tom Stellard | 2012-12-10 | 1 | -3/+4 |
* | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -11/+11 |
* | Back out r166591, not sure why this made it through since I cancelled the com... | Micah Villmow | 2012-10-24 | 1 | -1/+1 |
* | Delete a directory that wasn't supposed to be checked in yet. | Micah Villmow | 2012-10-24 | 1 | -1/+1 |
* | 1. Remove noreturn attribute from __builtin_debugtrap(). | Shuxin Yang | 2012-10-19 | 1 | -2/+2 |
* | This patch is to fix radar://8426430. It is about llvm support of __builtin_d... | Shuxin Yang | 2012-10-19 | 1 | -0/+13 |
* | Legalizer optimize a pair of div / mod to a call to divrem libcall if they are | Evan Cheng | 2012-10-12 | 1 | -0/+2 |
* | Add in support for expansion of all of the comparison operations to the absol... | Micah Villmow | 2012-10-10 | 1 | -17/+62 |
* | Move TargetData to DataLayout. | Micah Villmow | 2012-10-08 | 1 | -9/+9 |
* | Fix some funky indentation. | Evan Cheng | 2012-09-18 | 1 | -18/+17 |
* | Fix bug 13532. | Akira Hatanaka | 2012-08-28 | 1 | -1/+1 |
* | Fix the legalization of ExtLoad on ARM. ExpandUnalignedLoad did not properly | Nadav Rotem | 2012-08-09 | 1 | -3/+4 |
* | Rename many of the Tmp1, Tmp2, Tmp3 variables to names such as Chain, Value, ... | Nadav Rotem | 2012-07-11 | 1 | -100/+104 |
* | Remove unused variable. | Benjamin Kramer | 2012-07-11 | 1 | -2/+0 |
* | Refactor the DAG Legalizer by extracting the legalization of | Nadav Rotem | 2012-07-11 | 1 | -422/+434 |
* | Move lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo.cpp and | Bill Wendling | 2012-06-28 | 1 | -5/+5 |
* | Emit a single _udivmodsi4 libcall instead of two separate _udivsi3 and | Evan Cheng | 2012-06-21 | 1 | -5/+7 |
* | Fix a bug in the code which custom-lowers truncating stores in LegalizeDAG. | Akira Hatanaka | 2012-06-02 | 1 | -2/+3 |
* | Change interface for TargetLowering::LowerCallTo and TargetLowering::LowerCall | Justin Holewinski | 2012-05-25 | 1 | -13/+25 |
* | Fix use of an unitialized value in the LegalizeOps expansion for ISD::SUB. N... | Owen Anderson | 2012-05-21 | 1 | -1/+1 |
* | When legalising shifts, do not pre-build a list of operands which | Peter Collingbourne | 2012-05-20 | 1 | -10/+14 |
* | Register DAGUpdateListeners with SelectionDAG. | Jakob Stoklund Olesen | 2012-04-20 | 1 | -7/+8 |
* | Make the code slightly more palatable. | Evan Cheng | 2012-04-10 | 1 | -1/+5 |
* | Fix a long standing tail call optimization bug. When a libcall is emitted | Evan Cheng | 2012-04-10 | 1 | -7/+8 |
* | f16 FREM can now be legalized by promoting to f32 | Pete Cooper | 2012-04-04 | 1 | -0/+1 |
* | Add the ability to promote legal integer VAARGs. This is required for the PPC... | Hal Finkel | 2012-03-24 | 1 | -1/+33 |
* | f16 FDIV can now be legalized by promoting to f32 | Pete Cooper | 2012-03-19 | 1 | -1/+2 |
* | Make it possible for a target to mark FSUB as Expand. This requires providin... | Owen Anderson | 2012-03-06 | 1 | -0/+10 |
* | Re-commit r151623 with fix. Only issue special no-return calls if it's a dire... | Evan Cheng | 2012-02-28 | 1 | -6/+7 |