diff options
author | Cameron McInally <cameron.mcinally@nyu.edu> | 2018-11-05 15:59:49 +0000 |
---|---|---|
committer | Cameron McInally <cameron.mcinally@nyu.edu> | 2018-11-05 15:59:49 +0000 |
commit | 9757d5d6c19d2679f73be637a90edf8da092e1e2 (patch) | |
tree | 08bea493e1e0617300eecbef9b2f05c01eff9fad /llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | |
parent | 7ca744488fa4c8e2b7d0fc88c63840d7f9000f54 (diff) | |
download | bcm5719-llvm-9757d5d6c19d2679f73be637a90edf8da092e1e2.tar.gz bcm5719-llvm-9757d5d6c19d2679f73be637a90edf8da092e1e2.zip |
[FPEnv] Add constrained CEIL/FLOOR/ROUND/TRUNC intrinsics
Differential Revision: https://reviews.llvm.org/D53411
llvm-svn: 346141
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp index bfc00ea28ef..17f05c3ba97 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp @@ -308,6 +308,10 @@ SDValue VectorLegalizer::LegalizeOp(SDValue Op) { case ISD::STRICT_FNEARBYINT: case ISD::STRICT_FMAXNUM: case ISD::STRICT_FMINNUM: + case ISD::STRICT_FCEIL: + case ISD::STRICT_FFLOOR: + case ISD::STRICT_FROUND: + case ISD::STRICT_FTRUNC: // These pseudo-ops get legalized as if they were their non-strict // equivalent. For instance, if ISD::FSQRT is legal then ISD::STRICT_FSQRT // is also legal, but if ISD::FSQRT requires expansion then so does @@ -758,6 +762,10 @@ SDValue VectorLegalizer::Expand(SDValue Op) { case ISD::STRICT_FNEARBYINT: case ISD::STRICT_FMAXNUM: case ISD::STRICT_FMINNUM: + case ISD::STRICT_FCEIL: + case ISD::STRICT_FFLOOR: + case ISD::STRICT_FROUND: + case ISD::STRICT_FTRUNC: return ExpandStrictFPOp(Op); default: return DAG.UnrollVectorOp(Op.getNode()); |