mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-23 17:32:49 +00:00
Allow targets to define custom expanders for FP_TO_*INT
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22548 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1618bebcf6
commit
80a3e94653
@ -2772,12 +2772,30 @@ void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
|
||||
// These operators cannot be expanded directly, emit them as calls to
|
||||
// library functions.
|
||||
case ISD::FP_TO_SINT:
|
||||
if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
|
||||
SDOperand Op = DAG.getNode(ISD::FP_TO_SINT, VT,
|
||||
LegalizeOp(Node->getOperand(0)));
|
||||
// Now that the custom expander is done, expand the result, which is still
|
||||
// VT.
|
||||
ExpandOp(TLI.LowerOperation(Op, DAG), Lo, Hi);
|
||||
break;
|
||||
}
|
||||
|
||||
if (Node->getOperand(0).getValueType() == MVT::f32)
|
||||
Lo = ExpandLibCall("__fixsfdi", Node, Hi);
|
||||
else
|
||||
Lo = ExpandLibCall("__fixdfdi", Node, Hi);
|
||||
break;
|
||||
case ISD::FP_TO_UINT:
|
||||
if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
|
||||
SDOperand Op = DAG.getNode(ISD::FP_TO_UINT, VT,
|
||||
LegalizeOp(Node->getOperand(0)));
|
||||
// Now that the custom expander is done, expand the result, which is still
|
||||
// VT.
|
||||
ExpandOp(TLI.LowerOperation(Op, DAG), Lo, Hi);
|
||||
break;
|
||||
}
|
||||
|
||||
if (Node->getOperand(0).getValueType() == MVT::f32)
|
||||
Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user