mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
R600: Consider bitcast when folding const_address node.
Patch by: Vincent Lejeune Reviewed-by: Tom Stellard <thomas.stellard@amd.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174098 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
44ddc36254
commit
cacbcb0f2c
@ -318,6 +318,9 @@ bool AMDGPUDAGToDAGISel::FoldOperands(unsigned Opcode,
|
||||
}
|
||||
}
|
||||
break;
|
||||
case ISD::BITCAST:
|
||||
Ops[OperandIdx[i] - 1] = Operand.getOperand(0);
|
||||
return true;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -991,6 +991,14 @@ SDValue R600TargetLowering::PerformDAGCombine(SDNode *N,
|
||||
return Arg->getOperand(Element);
|
||||
}
|
||||
}
|
||||
if (Arg.getOpcode() == ISD::BITCAST &&
|
||||
Arg.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
|
||||
if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
|
||||
unsigned Element = Const->getZExtValue();
|
||||
return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), N->getVTList(),
|
||||
Arg->getOperand(0).getOperand(Element));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return SDValue();
|
||||
|
Loading…
x
Reference in New Issue
Block a user