mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-21 11:38:35 +00:00
Use ADDC if it is valid at any smaller size. Do it right this time
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57248 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5c9cc1392c
commit
1ad0c8201b
@ -6445,14 +6445,17 @@ void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
|
||||
unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
|
||||
bool hasCarry = false;
|
||||
if (NVT == MVT::i64)
|
||||
hasCarry |= TLI.isOperationLegal(OpV, MVT::i32)
|
||||
hasCarry |= TLI.isOperationLegal(OpV, MVT::i64)
|
||||
| TLI.isOperationLegal(OpV, MVT::i32)
|
||||
| TLI.isOperationLegal(OpV, MVT::i16)
|
||||
| TLI.isOperationLegal(OpV, MVT::i8);
|
||||
if (NVT == MVT::i32)
|
||||
hasCarry |= TLI.isOperationLegal(OpV, MVT::i16)
|
||||
hasCarry |= TLI.isOperationLegal(OpV, MVT::i32)
|
||||
| TLI.isOperationLegal(OpV, MVT::i16)
|
||||
| TLI.isOperationLegal(OpV, MVT::i8);
|
||||
if (NVT == MVT::i16)
|
||||
hasCarry |= TLI.isOperationLegal(OpV, MVT::i8);
|
||||
hasCarry |= TLI.isOperationLegal(OpV, MVT::i16)
|
||||
| TLI.isOperationLegal(OpV, MVT::i8);
|
||||
|
||||
if(hasCarry) {
|
||||
if (Node->getOpcode() == ISD::ADD) {
|
||||
|
Loading…
Reference in New Issue
Block a user