From: Evan Cheng Date: Wed, 13 Dec 2006 01:57:55 +0000 (+0000) Subject: Expand f32 / f64 to i32 / i64 conversion to soft-fp library calls. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6af00d588c1b353d9d7a3dd8f58927056eccd6c1;p=oota-llvm.git Expand f32 / f64 to i32 / i64 conversion to soft-fp library calls. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32523 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 2079259a5fa..695e1970ff9 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -2860,8 +2860,29 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) { break; } break; - case Expand: - assert(0 && "Shouldn't need to expand other operators here!"); + case Expand: { + // Convert f32 / f64 to i32 / i64. + MVT::ValueType VT = Op.getValueType(); + const char *FnName = 0; + switch (Node->getOpcode()) { + case ISD::FP_TO_SINT: + if (Node->getOperand(0).getValueType() == MVT::f32) + FnName = (VT == MVT::i32) ? "__fixsfsi" : "__fixsfdi"; + else + FnName = (VT == MVT::i32) ? "__fixdfsi" : "__fixdfdi"; + break; + case ISD::FP_TO_UINT: + if (Node->getOperand(0).getValueType() == MVT::f32) + FnName = (VT == MVT::i32) ? "__fixunssfsi" : "__fixunssfdi"; + else + FnName = (VT == MVT::i32) ? "__fixunsdfsi" : "__fixunsdfdi"; + break; + default: assert(0 && "Unreachable!"); + } + SDOperand Dummy; + Result = ExpandLibCall(FnName, Node, Dummy); + break; + } case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));