Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 1 | //===-- LegalizeVectorOps.cpp - Implement SelectionDAG::LegalizeVectors ---===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the SelectionDAG::LegalizeVectors method. |
| 11 | // |
| 12 | // The vector legalizer looks for vector operations which might need to be |
Eli Friedman | 509150f | 2009-05-27 07:58:35 +0000 | [diff] [blame] | 13 | // scalarized and legalizes them. This is a separate step from Legalize because |
| 14 | // scalarizing can introduce illegal types. For example, suppose we have an |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 15 | // ISD::SDIV of type v2i64 on x86-32. The type is legal (for example, addition |
| 16 | // on a v2i64 is legal), but ISD::SDIV isn't legal, so we have to unroll the |
| 17 | // operation, which introduces nodes with the illegal type i64 which must be |
| 18 | // expanded. Similarly, suppose we have an ISD::SRA of type v16i8 on PowerPC; |
| 19 | // the operation must be unrolled, which introduces nodes with the illegal |
| 20 | // type i8 which must be promoted. |
| 21 | // |
| 22 | // This does not legalize vector manipulations like ISD::BUILD_VECTOR, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 23 | // or operations that happen to take a vector which are custom-lowered; |
| 24 | // the legalization for such operations never produces nodes |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 25 | // with illegal types, so it's okay to put off legalizing them until |
| 26 | // SelectionDAG::Legalize runs. |
| 27 | // |
| 28 | //===----------------------------------------------------------------------===// |
| 29 | |
| 30 | #include "llvm/CodeGen/SelectionDAG.h" |
| 31 | #include "llvm/Target/TargetLowering.h" |
| 32 | using namespace llvm; |
| 33 | |
| 34 | namespace { |
| 35 | class VectorLegalizer { |
| 36 | SelectionDAG& DAG; |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 37 | const TargetLowering &TLI; |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 38 | bool Changed; // Keep track of whether anything changed |
| 39 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 40 | /// For nodes that are of legal width, and that have more than one use, this |
| 41 | /// map indicates what regularized operand to use. This allows us to avoid |
| 42 | /// legalizing the same thing more than once. |
Preston Gurd | ea387fc | 2013-01-25 15:18:54 +0000 | [diff] [blame] | 43 | SmallDenseMap<SDValue, SDValue, 64> LegalizedNodes; |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 44 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 45 | /// \brief Adds a node to the translation cache. |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 46 | void AddLegalizedOperand(SDValue From, SDValue To) { |
| 47 | LegalizedNodes.insert(std::make_pair(From, To)); |
| 48 | // If someone requests legalization of the new node, return itself. |
| 49 | if (From != To) |
| 50 | LegalizedNodes.insert(std::make_pair(To, To)); |
| 51 | } |
| 52 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 53 | /// \brief Legalizes the given node. |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 54 | SDValue LegalizeOp(SDValue Op); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 55 | |
| 56 | /// \brief Assuming the node is legal, "legalize" the results. |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 57 | SDValue TranslateLegalizeResults(SDValue Op, SDValue Result); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 58 | |
| 59 | /// \brief Implements unrolling a VSETCC. |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 60 | SDValue UnrollVSETCC(SDValue Op); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 61 | |
| 62 | /// \brief Implement expand-based legalization of vector operations. |
| 63 | /// |
| 64 | /// This is just a high-level routine to dispatch to specific code paths for |
| 65 | /// operations to legalize them. |
| 66 | SDValue Expand(SDValue Op); |
| 67 | |
| 68 | /// \brief Implements expansion for FNEG; falls back to UnrollVectorOp if |
| 69 | /// FSUB isn't legal. |
| 70 | /// |
| 71 | /// Implements expansion for UINT_TO_FLOAT; falls back to UnrollVectorOp if |
| 72 | /// SINT_TO_FLOAT and SHR on vectors isn't legal. |
Nadav Rotem | 06cc324 | 2011-03-19 13:09:10 +0000 | [diff] [blame] | 73 | SDValue ExpandUINT_TO_FLOAT(SDValue Op); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 74 | |
| 75 | /// \brief Implement expansion for SIGN_EXTEND_INREG using SRL and SRA. |
Nadav Rotem | 66de2af | 2013-01-11 22:57:48 +0000 | [diff] [blame] | 76 | SDValue ExpandSEXTINREG(SDValue Op); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 77 | |
| 78 | /// \brief Implement expansion for ANY_EXTEND_VECTOR_INREG. |
| 79 | /// |
| 80 | /// Shuffles the low lanes of the operand into place and bitcasts to the proper |
| 81 | /// type. The contents of the bits in the extended part of each element are |
| 82 | /// undef. |
| 83 | SDValue ExpandANY_EXTEND_VECTOR_INREG(SDValue Op); |
| 84 | |
| 85 | /// \brief Implement expansion for SIGN_EXTEND_VECTOR_INREG. |
| 86 | /// |
| 87 | /// Shuffles the low lanes of the operand into place, bitcasts to the proper |
| 88 | /// type, then shifts left and arithmetic shifts right to introduce a sign |
| 89 | /// extension. |
| 90 | SDValue ExpandSIGN_EXTEND_VECTOR_INREG(SDValue Op); |
| 91 | |
| 92 | /// \brief Implement expansion for ZERO_EXTEND_VECTOR_INREG. |
| 93 | /// |
| 94 | /// Shuffles the low lanes of the operand into place and blends zeros into |
| 95 | /// the remaining lanes, finally bitcasting to the proper type. |
| 96 | SDValue ExpandZERO_EXTEND_VECTOR_INREG(SDValue Op); |
| 97 | |
| 98 | /// \brief Expand bswap of vectors into a shuffle if legal. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 99 | SDValue ExpandBSWAP(SDValue Op); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 100 | |
| 101 | /// \brief Implement vselect in terms of XOR, AND, OR when blend is not |
| 102 | /// supported by the target. |
Nadav Rotem | aec5861 | 2011-09-13 19:17:42 +0000 | [diff] [blame] | 103 | SDValue ExpandVSELECT(SDValue Op); |
Nadav Rotem | e757f00 | 2012-08-30 19:17:29 +0000 | [diff] [blame] | 104 | SDValue ExpandSELECT(SDValue Op); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 105 | SDValue ExpandLoad(SDValue Op); |
| 106 | SDValue ExpandStore(SDValue Op); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 107 | SDValue ExpandFNEG(SDValue Op); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 108 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 109 | /// \brief Implements vector promotion. |
| 110 | /// |
| 111 | /// This is essentially just bitcasting the operands to a different type and |
| 112 | /// bitcasting the result back to the original type. |
| 113 | SDValue Promote(SDValue Op); |
| 114 | |
| 115 | /// \brief Implements [SU]INT_TO_FP vector promotion. |
| 116 | /// |
| 117 | /// This is a [zs]ext of the input operand to the next size up. |
| 118 | SDValue PromoteINT_TO_FP(SDValue Op); |
| 119 | |
| 120 | /// \brief Implements FP_TO_[SU]INT vector promotion of the result type. |
| 121 | /// |
| 122 | /// It is promoted to the next size up integer type. The result is then |
| 123 | /// truncated back to the original type. |
| 124 | SDValue PromoteFP_TO_INT(SDValue Op, bool isSigned); |
| 125 | |
| 126 | public: |
| 127 | /// \brief Begin legalizer the vector operations in the DAG. |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 128 | bool Run(); |
| 129 | VectorLegalizer(SelectionDAG& dag) : |
| 130 | DAG(dag), TLI(dag.getTargetLoweringInfo()), Changed(false) {} |
| 131 | }; |
| 132 | |
| 133 | bool VectorLegalizer::Run() { |
Nadav Rotem | d99a5a3 | 2013-02-22 23:33:30 +0000 | [diff] [blame] | 134 | // Before we start legalizing vector nodes, check if there are any vectors. |
| 135 | bool HasVectors = false; |
| 136 | for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(), |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 137 | E = std::prev(DAG.allnodes_end()); I != std::next(E); ++I) { |
Nadav Rotem | d99a5a3 | 2013-02-22 23:33:30 +0000 | [diff] [blame] | 138 | // Check if the values of the nodes contain vectors. We don't need to check |
| 139 | // the operands because we are going to check their values at some point. |
| 140 | for (SDNode::value_iterator J = I->value_begin(), E = I->value_end(); |
| 141 | J != E; ++J) |
| 142 | HasVectors |= J->isVector(); |
| 143 | |
| 144 | // If we found a vector node we can start the legalization. |
| 145 | if (HasVectors) |
| 146 | break; |
| 147 | } |
| 148 | |
| 149 | // If this basic block has no vectors then no need to legalize vectors. |
| 150 | if (!HasVectors) |
| 151 | return false; |
| 152 | |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 153 | // The legalize process is inherently a bottom-up recursive process (users |
| 154 | // legalize their uses before themselves). Given infinite stack space, we |
| 155 | // could just start legalizing on the root and traverse the whole graph. In |
| 156 | // practice however, this causes us to run out of stack space on large basic |
| 157 | // blocks. To avoid this problem, compute an ordering of the nodes where each |
| 158 | // node is only legalized after all of its operands are legalized. |
| 159 | DAG.AssignTopologicalOrder(); |
| 160 | for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(), |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 161 | E = std::prev(DAG.allnodes_end()); I != std::next(E); ++I) |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 162 | LegalizeOp(SDValue(I, 0)); |
| 163 | |
| 164 | // Finally, it's possible the root changed. Get the new root. |
| 165 | SDValue OldRoot = DAG.getRoot(); |
| 166 | assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?"); |
| 167 | DAG.setRoot(LegalizedNodes[OldRoot]); |
| 168 | |
| 169 | LegalizedNodes.clear(); |
| 170 | |
| 171 | // Remove dead nodes now. |
| 172 | DAG.RemoveDeadNodes(); |
| 173 | |
| 174 | return Changed; |
| 175 | } |
| 176 | |
| 177 | SDValue VectorLegalizer::TranslateLegalizeResults(SDValue Op, SDValue Result) { |
| 178 | // Generic legalization: just pass the operand through. |
| 179 | for (unsigned i = 0, e = Op.getNode()->getNumValues(); i != e; ++i) |
| 180 | AddLegalizedOperand(Op.getValue(i), Result.getValue(i)); |
| 181 | return Result.getValue(Op.getResNo()); |
| 182 | } |
| 183 | |
| 184 | SDValue VectorLegalizer::LegalizeOp(SDValue Op) { |
| 185 | // Note that LegalizeOp may be reentered even from single-use nodes, which |
| 186 | // means that we always must cache transformed nodes. |
| 187 | DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op); |
| 188 | if (I != LegalizedNodes.end()) return I->second; |
| 189 | |
| 190 | SDNode* Node = Op.getNode(); |
| 191 | |
| 192 | // Legalize the operands |
| 193 | SmallVector<SDValue, 8> Ops; |
| 194 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) |
| 195 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
| 196 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 197 | SDValue Result = SDValue(DAG.UpdateNodeOperands(Op.getNode(), Ops), 0); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 198 | |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 199 | if (Op.getOpcode() == ISD::LOAD) { |
| 200 | LoadSDNode *LD = cast<LoadSDNode>(Op.getNode()); |
| 201 | ISD::LoadExtType ExtType = LD->getExtensionType(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 202 | if (LD->getMemoryVT().isVector() && ExtType != ISD::NON_EXTLOAD) |
| 203 | switch (TLI.getLoadExtAction(LD->getExtensionType(), LD->getMemoryVT())) { |
| 204 | default: llvm_unreachable("This action is not supported yet!"); |
| 205 | case TargetLowering::Legal: |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 206 | return TranslateLegalizeResults(Op, Result); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 207 | case TargetLowering::Custom: |
| 208 | if (SDValue Lowered = TLI.LowerOperation(Result, DAG)) { |
| 209 | Changed = true; |
| 210 | if (Lowered->getNumValues() != Op->getNumValues()) { |
| 211 | // This expanded to something other than the load. Assume the |
| 212 | // lowering code took care of any chain values, and just handle the |
| 213 | // returned value. |
| 214 | assert(Result.getValue(1).use_empty() && |
| 215 | "There are still live users of the old chain!"); |
| 216 | return LegalizeOp(Lowered); |
| 217 | } else { |
| 218 | return TranslateLegalizeResults(Op, Lowered); |
| 219 | } |
| 220 | } |
| 221 | case TargetLowering::Expand: |
| 222 | Changed = true; |
| 223 | return LegalizeOp(ExpandLoad(Op)); |
| 224 | } |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 225 | } else if (Op.getOpcode() == ISD::STORE) { |
| 226 | StoreSDNode *ST = cast<StoreSDNode>(Op.getNode()); |
| 227 | EVT StVT = ST->getMemoryVT(); |
Patrik Hagglund | 88ef514 | 2012-12-19 08:28:51 +0000 | [diff] [blame] | 228 | MVT ValVT = ST->getValue().getSimpleValueType(); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 229 | if (StVT.isVector() && ST->isTruncatingStore()) |
Patrik Hagglund | 88ef514 | 2012-12-19 08:28:51 +0000 | [diff] [blame] | 230 | switch (TLI.getTruncStoreAction(ValVT, StVT.getSimpleVT())) { |
Craig Topper | 5e25ee8 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 231 | default: llvm_unreachable("This action is not supported yet!"); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 232 | case TargetLowering::Legal: |
| 233 | return TranslateLegalizeResults(Op, Result); |
| 234 | case TargetLowering::Custom: |
| 235 | Changed = true; |
Tom Stellard | d00968a | 2013-08-21 22:42:58 +0000 | [diff] [blame] | 236 | return TranslateLegalizeResults(Op, TLI.LowerOperation(Result, DAG)); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 237 | case TargetLowering::Expand: |
| 238 | Changed = true; |
| 239 | return LegalizeOp(ExpandStore(Op)); |
| 240 | } |
| 241 | } |
| 242 | |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 243 | bool HasVectorValue = false; |
| 244 | for (SDNode::value_iterator J = Node->value_begin(), E = Node->value_end(); |
| 245 | J != E; |
| 246 | ++J) |
| 247 | HasVectorValue |= J->isVector(); |
| 248 | if (!HasVectorValue) |
| 249 | return TranslateLegalizeResults(Op, Result); |
| 250 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 251 | EVT QueryType; |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 252 | switch (Op.getOpcode()) { |
| 253 | default: |
| 254 | return TranslateLegalizeResults(Op, Result); |
| 255 | case ISD::ADD: |
| 256 | case ISD::SUB: |
| 257 | case ISD::MUL: |
| 258 | case ISD::SDIV: |
| 259 | case ISD::UDIV: |
| 260 | case ISD::SREM: |
| 261 | case ISD::UREM: |
| 262 | case ISD::FADD: |
| 263 | case ISD::FSUB: |
| 264 | case ISD::FMUL: |
| 265 | case ISD::FDIV: |
| 266 | case ISD::FREM: |
| 267 | case ISD::AND: |
| 268 | case ISD::OR: |
| 269 | case ISD::XOR: |
| 270 | case ISD::SHL: |
| 271 | case ISD::SRA: |
| 272 | case ISD::SRL: |
| 273 | case ISD::ROTL: |
| 274 | case ISD::ROTR: |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 275 | case ISD::BSWAP: |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 276 | case ISD::CTLZ: |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 277 | case ISD::CTTZ: |
| 278 | case ISD::CTLZ_ZERO_UNDEF: |
| 279 | case ISD::CTTZ_ZERO_UNDEF: |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 280 | case ISD::CTPOP: |
| 281 | case ISD::SELECT: |
Nadav Rotem | aec5861 | 2011-09-13 19:17:42 +0000 | [diff] [blame] | 282 | case ISD::VSELECT: |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 283 | case ISD::SELECT_CC: |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 284 | case ISD::SETCC: |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 285 | case ISD::ZERO_EXTEND: |
| 286 | case ISD::ANY_EXTEND: |
| 287 | case ISD::TRUNCATE: |
| 288 | case ISD::SIGN_EXTEND: |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 289 | case ISD::FP_TO_SINT: |
| 290 | case ISD::FP_TO_UINT: |
| 291 | case ISD::FNEG: |
| 292 | case ISD::FABS: |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 293 | case ISD::FMINNUM: |
| 294 | case ISD::FMAXNUM: |
Hal Finkel | 66d1fa6 | 2013-08-19 23:35:46 +0000 | [diff] [blame] | 295 | case ISD::FCOPYSIGN: |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 296 | case ISD::FSQRT: |
| 297 | case ISD::FSIN: |
| 298 | case ISD::FCOS: |
| 299 | case ISD::FPOWI: |
| 300 | case ISD::FPOW: |
| 301 | case ISD::FLOG: |
| 302 | case ISD::FLOG2: |
| 303 | case ISD::FLOG10: |
| 304 | case ISD::FEXP: |
| 305 | case ISD::FEXP2: |
| 306 | case ISD::FCEIL: |
| 307 | case ISD::FTRUNC: |
| 308 | case ISD::FRINT: |
| 309 | case ISD::FNEARBYINT: |
Hal Finkel | 41418d1 | 2013-08-07 22:49:12 +0000 | [diff] [blame] | 310 | case ISD::FROUND: |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 311 | case ISD::FFLOOR: |
Eli Friedman | 846ce8e | 2012-11-15 22:44:27 +0000 | [diff] [blame] | 312 | case ISD::FP_ROUND: |
Eli Friedman | 43147af | 2012-11-17 01:52:46 +0000 | [diff] [blame] | 313 | case ISD::FP_EXTEND: |
Craig Topper | 6b1e1d8 | 2012-08-30 07:34:22 +0000 | [diff] [blame] | 314 | case ISD::FMA: |
Nadav Rotem | d0f3ef8 | 2011-07-14 11:11:14 +0000 | [diff] [blame] | 315 | case ISD::SIGN_EXTEND_INREG: |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 316 | case ISD::ANY_EXTEND_VECTOR_INREG: |
| 317 | case ISD::SIGN_EXTEND_VECTOR_INREG: |
| 318 | case ISD::ZERO_EXTEND_VECTOR_INREG: |
Eli Friedman | 556929a | 2009-06-06 03:27:50 +0000 | [diff] [blame] | 319 | QueryType = Node->getValueType(0); |
| 320 | break; |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 321 | case ISD::FP_ROUND_INREG: |
| 322 | QueryType = cast<VTSDNode>(Node->getOperand(1))->getVT(); |
| 323 | break; |
Eli Friedman | 556929a | 2009-06-06 03:27:50 +0000 | [diff] [blame] | 324 | case ISD::SINT_TO_FP: |
| 325 | case ISD::UINT_TO_FP: |
| 326 | QueryType = Node->getOperand(0).getValueType(); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 327 | break; |
| 328 | } |
| 329 | |
Eli Friedman | 556929a | 2009-06-06 03:27:50 +0000 | [diff] [blame] | 330 | switch (TLI.getOperationAction(Node->getOpcode(), QueryType)) { |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 331 | case TargetLowering::Promote: |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 332 | Result = Promote(Op); |
| 333 | Changed = true; |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 334 | break; |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 335 | case TargetLowering::Legal: |
| 336 | break; |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 337 | case TargetLowering::Custom: { |
| 338 | SDValue Tmp1 = TLI.LowerOperation(Op, DAG); |
| 339 | if (Tmp1.getNode()) { |
| 340 | Result = Tmp1; |
| 341 | break; |
| 342 | } |
| 343 | // FALL THROUGH |
| 344 | } |
| 345 | case TargetLowering::Expand: |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 346 | Result = Expand(Op); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | // Make sure that the generated code is itself legal. |
| 350 | if (Result != Op) { |
| 351 | Result = LegalizeOp(Result); |
| 352 | Changed = true; |
| 353 | } |
| 354 | |
| 355 | // Note that LegalizeOp may be reentered even from single-use nodes, which |
| 356 | // means that we always must cache transformed nodes. |
| 357 | AddLegalizedOperand(Op, Result); |
| 358 | return Result; |
| 359 | } |
| 360 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 361 | SDValue VectorLegalizer::Promote(SDValue Op) { |
| 362 | // For a few operations there is a specific concept for promotion based on |
| 363 | // the operand's type. |
| 364 | switch (Op.getOpcode()) { |
| 365 | case ISD::SINT_TO_FP: |
| 366 | case ISD::UINT_TO_FP: |
| 367 | // "Promote" the operation by extending the operand. |
| 368 | return PromoteINT_TO_FP(Op); |
| 369 | case ISD::FP_TO_UINT: |
| 370 | case ISD::FP_TO_SINT: |
| 371 | // Promote the operation by extending the operand. |
| 372 | return PromoteFP_TO_INT(Op, Op->getOpcode() == ISD::FP_TO_SINT); |
| 373 | } |
| 374 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 375 | // There are currently two cases of vector promotion: |
| 376 | // 1) Bitcasting a vector of integers to a different type to a vector of the |
| 377 | // same overall length. For example, x86 promotes ISD::AND on v2i32 to v1i64. |
| 378 | // 2) Extending a vector of floats to a vector of the same number oflarger |
| 379 | // floats. For example, AArch64 promotes ISD::FADD on v4f16 to v4f32. |
Patrik Hagglund | 319bb39 | 2012-12-19 11:21:04 +0000 | [diff] [blame] | 380 | MVT VT = Op.getSimpleValueType(); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 381 | assert(Op.getNode()->getNumValues() == 1 && |
| 382 | "Can't promote a vector with multiple results!"); |
Patrik Hagglund | 319bb39 | 2012-12-19 11:21:04 +0000 | [diff] [blame] | 383 | MVT NVT = TLI.getTypeToPromoteTo(Op.getOpcode(), VT); |
Benjamin Kramer | e4fae84 | 2013-05-28 16:31:26 +0000 | [diff] [blame] | 384 | SDLoc dl(Op); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 385 | SmallVector<SDValue, 4> Operands(Op.getNumOperands()); |
| 386 | |
| 387 | for (unsigned j = 0; j != Op.getNumOperands(); ++j) { |
| 388 | if (Op.getOperand(j).getValueType().isVector()) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 389 | if (Op.getOperand(j) |
| 390 | .getValueType() |
| 391 | .getVectorElementType() |
| 392 | .isFloatingPoint()) |
| 393 | Operands[j] = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op.getOperand(j)); |
| 394 | else |
| 395 | Operands[j] = DAG.getNode(ISD::BITCAST, dl, NVT, Op.getOperand(j)); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 396 | else |
| 397 | Operands[j] = Op.getOperand(j); |
| 398 | } |
| 399 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 400 | Op = DAG.getNode(Op.getOpcode(), dl, NVT, Operands); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 401 | if (VT.isFloatingPoint() || |
| 402 | (VT.isVector() && VT.getVectorElementType().isFloatingPoint())) |
| 403 | return DAG.getNode(ISD::FP_ROUND, dl, VT, Op, DAG.getIntPtrConstant(0)); |
| 404 | else |
| 405 | return DAG.getNode(ISD::BITCAST, dl, VT, Op); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 406 | } |
| 407 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 408 | SDValue VectorLegalizer::PromoteINT_TO_FP(SDValue Op) { |
Jim Grosbach | 926dc16 | 2012-06-28 21:03:44 +0000 | [diff] [blame] | 409 | // INT_TO_FP operations may require the input operand be promoted even |
| 410 | // when the type is otherwise legal. |
| 411 | EVT VT = Op.getOperand(0).getValueType(); |
| 412 | assert(Op.getNode()->getNumValues() == 1 && |
| 413 | "Can't promote a vector with multiple results!"); |
| 414 | |
| 415 | // Normal getTypeToPromoteTo() doesn't work here, as that will promote |
| 416 | // by widening the vector w/ the same element width and twice the number |
| 417 | // of elements. We want the other way around, the same number of elements, |
| 418 | // each twice the width. |
| 419 | // |
| 420 | // Increase the bitwidth of the element to the next pow-of-two |
| 421 | // (which is greater than 8 bits). |
Jim Grosbach | 926dc16 | 2012-06-28 21:03:44 +0000 | [diff] [blame] | 422 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 423 | EVT NVT = VT.widenIntegerVectorElementType(*DAG.getContext()); |
| 424 | assert(NVT.isSimple() && "Promoting to a non-simple vector type!"); |
Benjamin Kramer | e4fae84 | 2013-05-28 16:31:26 +0000 | [diff] [blame] | 425 | SDLoc dl(Op); |
Jim Grosbach | 926dc16 | 2012-06-28 21:03:44 +0000 | [diff] [blame] | 426 | SmallVector<SDValue, 4> Operands(Op.getNumOperands()); |
| 427 | |
| 428 | unsigned Opc = Op.getOpcode() == ISD::UINT_TO_FP ? ISD::ZERO_EXTEND : |
| 429 | ISD::SIGN_EXTEND; |
| 430 | for (unsigned j = 0; j != Op.getNumOperands(); ++j) { |
| 431 | if (Op.getOperand(j).getValueType().isVector()) |
| 432 | Operands[j] = DAG.getNode(Opc, dl, NVT, Op.getOperand(j)); |
| 433 | else |
| 434 | Operands[j] = Op.getOperand(j); |
| 435 | } |
| 436 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 437 | return DAG.getNode(Op.getOpcode(), dl, Op.getValueType(), Operands); |
Jim Grosbach | 926dc16 | 2012-06-28 21:03:44 +0000 | [diff] [blame] | 438 | } |
| 439 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 440 | // For FP_TO_INT we promote the result type to a vector type with wider |
| 441 | // elements and then truncate the result. This is different from the default |
| 442 | // PromoteVector which uses bitcast to promote thus assumning that the |
| 443 | // promoted vector type has the same overall size. |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 444 | SDValue VectorLegalizer::PromoteFP_TO_INT(SDValue Op, bool isSigned) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 445 | assert(Op.getNode()->getNumValues() == 1 && |
| 446 | "Can't promote a vector with multiple results!"); |
| 447 | EVT VT = Op.getValueType(); |
| 448 | |
| 449 | EVT NewVT; |
| 450 | unsigned NewOpc; |
| 451 | while (1) { |
| 452 | NewVT = VT.widenIntegerVectorElementType(*DAG.getContext()); |
| 453 | assert(NewVT.isSimple() && "Promoting to a non-simple vector type!"); |
| 454 | if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewVT)) { |
| 455 | NewOpc = ISD::FP_TO_SINT; |
| 456 | break; |
| 457 | } |
| 458 | if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewVT)) { |
| 459 | NewOpc = ISD::FP_TO_UINT; |
| 460 | break; |
| 461 | } |
| 462 | } |
| 463 | |
| 464 | SDLoc loc(Op); |
| 465 | SDValue promoted = DAG.getNode(NewOpc, SDLoc(Op), NewVT, Op.getOperand(0)); |
| 466 | return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT, promoted); |
| 467 | } |
| 468 | |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 469 | |
| 470 | SDValue VectorLegalizer::ExpandLoad(SDValue Op) { |
Benjamin Kramer | e4fae84 | 2013-05-28 16:31:26 +0000 | [diff] [blame] | 471 | SDLoc dl(Op); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 472 | LoadSDNode *LD = cast<LoadSDNode>(Op.getNode()); |
| 473 | SDValue Chain = LD->getChain(); |
| 474 | SDValue BasePTR = LD->getBasePtr(); |
| 475 | EVT SrcVT = LD->getMemoryVT(); |
Nadav Rotem | fbf19ef | 2011-10-18 22:32:43 +0000 | [diff] [blame] | 476 | ISD::LoadExtType ExtType = LD->getExtensionType(); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 477 | |
Michael Liao | eedff35 | 2013-02-20 18:04:21 +0000 | [diff] [blame] | 478 | SmallVector<SDValue, 8> Vals; |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 479 | SmallVector<SDValue, 8> LoadChains; |
| 480 | unsigned NumElem = SrcVT.getVectorNumElements(); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 481 | |
Michael Liao | eedff35 | 2013-02-20 18:04:21 +0000 | [diff] [blame] | 482 | EVT SrcEltVT = SrcVT.getScalarType(); |
| 483 | EVT DstEltVT = Op.getNode()->getValueType(0).getScalarType(); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 484 | |
Michael Liao | eedff35 | 2013-02-20 18:04:21 +0000 | [diff] [blame] | 485 | if (SrcVT.getVectorNumElements() > 1 && !SrcEltVT.isByteSized()) { |
| 486 | // When elements in a vector is not byte-addressable, we cannot directly |
| 487 | // load each element by advancing pointer, which could only address bytes. |
| 488 | // Instead, we load all significant words, mask bits off, and concatenate |
| 489 | // them to form each element. Finally, they are extended to destination |
| 490 | // scalar type to build the destination vector. |
| 491 | EVT WideVT = TLI.getPointerTy(); |
Nadav Rotem | fbf19ef | 2011-10-18 22:32:43 +0000 | [diff] [blame] | 492 | |
Michael Liao | eedff35 | 2013-02-20 18:04:21 +0000 | [diff] [blame] | 493 | assert(WideVT.isRound() && |
| 494 | "Could not handle the sophisticated case when the widest integer is" |
| 495 | " not power of 2."); |
| 496 | assert(WideVT.bitsGE(SrcEltVT) && |
| 497 | "Type is not legalized?"); |
| 498 | |
| 499 | unsigned WideBytes = WideVT.getStoreSize(); |
| 500 | unsigned Offset = 0; |
| 501 | unsigned RemainingBytes = SrcVT.getStoreSize(); |
| 502 | SmallVector<SDValue, 8> LoadVals; |
| 503 | |
| 504 | while (RemainingBytes > 0) { |
| 505 | SDValue ScalarLoad; |
| 506 | unsigned LoadBytes = WideBytes; |
| 507 | |
| 508 | if (RemainingBytes >= LoadBytes) { |
| 509 | ScalarLoad = DAG.getLoad(WideVT, dl, Chain, BasePTR, |
| 510 | LD->getPointerInfo().getWithOffset(Offset), |
| 511 | LD->isVolatile(), LD->isNonTemporal(), |
Richard Sandiford | 66589dc | 2013-10-28 11:17:59 +0000 | [diff] [blame] | 512 | LD->isInvariant(), LD->getAlignment(), |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 513 | LD->getAAInfo()); |
Michael Liao | eedff35 | 2013-02-20 18:04:21 +0000 | [diff] [blame] | 514 | } else { |
| 515 | EVT LoadVT = WideVT; |
| 516 | while (RemainingBytes < LoadBytes) { |
| 517 | LoadBytes >>= 1; // Reduce the load size by half. |
| 518 | LoadVT = EVT::getIntegerVT(*DAG.getContext(), LoadBytes << 3); |
| 519 | } |
| 520 | ScalarLoad = DAG.getExtLoad(ISD::EXTLOAD, dl, WideVT, Chain, BasePTR, |
| 521 | LD->getPointerInfo().getWithOffset(Offset), |
| 522 | LoadVT, LD->isVolatile(), |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 523 | LD->isNonTemporal(), LD->isInvariant(), |
| 524 | LD->getAlignment(), LD->getAAInfo()); |
Michael Liao | eedff35 | 2013-02-20 18:04:21 +0000 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | RemainingBytes -= LoadBytes; |
| 528 | Offset += LoadBytes; |
| 529 | BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR, |
Tom Stellard | edd08f7 | 2013-08-26 15:06:10 +0000 | [diff] [blame] | 530 | DAG.getConstant(LoadBytes, BasePTR.getValueType())); |
Michael Liao | eedff35 | 2013-02-20 18:04:21 +0000 | [diff] [blame] | 531 | |
| 532 | LoadVals.push_back(ScalarLoad.getValue(0)); |
| 533 | LoadChains.push_back(ScalarLoad.getValue(1)); |
| 534 | } |
| 535 | |
| 536 | // Extract bits, pack and extend/trunc them into destination type. |
| 537 | unsigned SrcEltBits = SrcEltVT.getSizeInBits(); |
| 538 | SDValue SrcEltBitMask = DAG.getConstant((1U << SrcEltBits) - 1, WideVT); |
| 539 | |
| 540 | unsigned BitOffset = 0; |
| 541 | unsigned WideIdx = 0; |
| 542 | unsigned WideBits = WideVT.getSizeInBits(); |
| 543 | |
| 544 | for (unsigned Idx = 0; Idx != NumElem; ++Idx) { |
| 545 | SDValue Lo, Hi, ShAmt; |
| 546 | |
| 547 | if (BitOffset < WideBits) { |
| 548 | ShAmt = DAG.getConstant(BitOffset, TLI.getShiftAmountTy(WideVT)); |
| 549 | Lo = DAG.getNode(ISD::SRL, dl, WideVT, LoadVals[WideIdx], ShAmt); |
| 550 | Lo = DAG.getNode(ISD::AND, dl, WideVT, Lo, SrcEltBitMask); |
| 551 | } |
| 552 | |
| 553 | BitOffset += SrcEltBits; |
| 554 | if (BitOffset >= WideBits) { |
| 555 | WideIdx++; |
| 556 | Offset -= WideBits; |
| 557 | if (Offset > 0) { |
| 558 | ShAmt = DAG.getConstant(SrcEltBits - Offset, |
| 559 | TLI.getShiftAmountTy(WideVT)); |
| 560 | Hi = DAG.getNode(ISD::SHL, dl, WideVT, LoadVals[WideIdx], ShAmt); |
| 561 | Hi = DAG.getNode(ISD::AND, dl, WideVT, Hi, SrcEltBitMask); |
| 562 | } |
| 563 | } |
| 564 | |
| 565 | if (Hi.getNode()) |
| 566 | Lo = DAG.getNode(ISD::OR, dl, WideVT, Lo, Hi); |
| 567 | |
| 568 | switch (ExtType) { |
| 569 | default: llvm_unreachable("Unknown extended-load op!"); |
| 570 | case ISD::EXTLOAD: |
| 571 | Lo = DAG.getAnyExtOrTrunc(Lo, dl, DstEltVT); |
| 572 | break; |
| 573 | case ISD::ZEXTLOAD: |
| 574 | Lo = DAG.getZExtOrTrunc(Lo, dl, DstEltVT); |
| 575 | break; |
| 576 | case ISD::SEXTLOAD: |
| 577 | ShAmt = DAG.getConstant(WideBits - SrcEltBits, |
| 578 | TLI.getShiftAmountTy(WideVT)); |
| 579 | Lo = DAG.getNode(ISD::SHL, dl, WideVT, Lo, ShAmt); |
| 580 | Lo = DAG.getNode(ISD::SRA, dl, WideVT, Lo, ShAmt); |
| 581 | Lo = DAG.getSExtOrTrunc(Lo, dl, DstEltVT); |
| 582 | break; |
| 583 | } |
| 584 | Vals.push_back(Lo); |
| 585 | } |
| 586 | } else { |
| 587 | unsigned Stride = SrcVT.getScalarType().getSizeInBits()/8; |
| 588 | |
| 589 | for (unsigned Idx=0; Idx<NumElem; Idx++) { |
| 590 | SDValue ScalarLoad = DAG.getExtLoad(ExtType, dl, |
| 591 | Op.getNode()->getValueType(0).getScalarType(), |
| 592 | Chain, BasePTR, LD->getPointerInfo().getWithOffset(Idx * Stride), |
| 593 | SrcVT.getScalarType(), |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 594 | LD->isVolatile(), LD->isNonTemporal(), LD->isInvariant(), |
| 595 | LD->getAlignment(), LD->getAAInfo()); |
Michael Liao | eedff35 | 2013-02-20 18:04:21 +0000 | [diff] [blame] | 596 | |
| 597 | BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR, |
Tom Stellard | edd08f7 | 2013-08-26 15:06:10 +0000 | [diff] [blame] | 598 | DAG.getConstant(Stride, BasePTR.getValueType())); |
Michael Liao | eedff35 | 2013-02-20 18:04:21 +0000 | [diff] [blame] | 599 | |
| 600 | Vals.push_back(ScalarLoad.getValue(0)); |
| 601 | LoadChains.push_back(ScalarLoad.getValue(1)); |
| 602 | } |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 603 | } |
Nadav Rotem | fbf19ef | 2011-10-18 22:32:43 +0000 | [diff] [blame] | 604 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 605 | SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 606 | SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl, |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 607 | Op.getNode()->getValueType(0), Vals); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 608 | |
| 609 | AddLegalizedOperand(Op.getValue(0), Value); |
| 610 | AddLegalizedOperand(Op.getValue(1), NewChain); |
| 611 | |
| 612 | return (Op.getResNo() ? NewChain : Value); |
| 613 | } |
| 614 | |
| 615 | SDValue VectorLegalizer::ExpandStore(SDValue Op) { |
Benjamin Kramer | e4fae84 | 2013-05-28 16:31:26 +0000 | [diff] [blame] | 616 | SDLoc dl(Op); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 617 | StoreSDNode *ST = cast<StoreSDNode>(Op.getNode()); |
| 618 | SDValue Chain = ST->getChain(); |
| 619 | SDValue BasePTR = ST->getBasePtr(); |
| 620 | SDValue Value = ST->getValue(); |
| 621 | EVT StVT = ST->getMemoryVT(); |
| 622 | |
| 623 | unsigned Alignment = ST->getAlignment(); |
| 624 | bool isVolatile = ST->isVolatile(); |
| 625 | bool isNonTemporal = ST->isNonTemporal(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 626 | AAMDNodes AAInfo = ST->getAAInfo(); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 627 | |
| 628 | unsigned NumElem = StVT.getVectorNumElements(); |
| 629 | // The type of the data we want to save |
| 630 | EVT RegVT = Value.getValueType(); |
| 631 | EVT RegSclVT = RegVT.getScalarType(); |
| 632 | // The type of data as saved in memory. |
| 633 | EVT MemSclVT = StVT.getScalarType(); |
| 634 | |
| 635 | // Cast floats into integers |
| 636 | unsigned ScalarSize = MemSclVT.getSizeInBits(); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 637 | |
| 638 | // Round odd types to the next pow of two. |
| 639 | if (!isPowerOf2_32(ScalarSize)) |
| 640 | ScalarSize = NextPowerOf2(ScalarSize); |
| 641 | |
| 642 | // Store Stride in bytes |
| 643 | unsigned Stride = ScalarSize/8; |
| 644 | // Extract each of the elements from the original vector |
| 645 | // and save them into memory individually. |
| 646 | SmallVector<SDValue, 8> Stores; |
| 647 | for (unsigned Idx = 0; Idx < NumElem; Idx++) { |
| 648 | SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Tom Stellard | 425b76c | 2013-08-05 22:22:01 +0000 | [diff] [blame] | 649 | RegSclVT, Value, DAG.getConstant(Idx, TLI.getVectorIdxTy())); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 650 | |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 651 | // This scalar TruncStore may be illegal, but we legalize it later. |
| 652 | SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR, |
| 653 | ST->getPointerInfo().getWithOffset(Idx*Stride), MemSclVT, |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 654 | isVolatile, isNonTemporal, Alignment, AAInfo); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 655 | |
Nadav Rotem | fbf19ef | 2011-10-18 22:32:43 +0000 | [diff] [blame] | 656 | BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR, |
Tom Stellard | edd08f7 | 2013-08-26 15:06:10 +0000 | [diff] [blame] | 657 | DAG.getConstant(Stride, BasePTR.getValueType())); |
Nadav Rotem | fbf19ef | 2011-10-18 22:32:43 +0000 | [diff] [blame] | 658 | |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 659 | Stores.push_back(Store); |
| 660 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 661 | SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); |
Nadav Rotem | e9b58d0 | 2011-10-15 07:41:10 +0000 | [diff] [blame] | 662 | AddLegalizedOperand(Op, TF); |
| 663 | return TF; |
| 664 | } |
| 665 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 666 | SDValue VectorLegalizer::Expand(SDValue Op) { |
| 667 | switch (Op->getOpcode()) { |
| 668 | case ISD::SIGN_EXTEND_INREG: |
| 669 | return ExpandSEXTINREG(Op); |
| 670 | case ISD::ANY_EXTEND_VECTOR_INREG: |
| 671 | return ExpandANY_EXTEND_VECTOR_INREG(Op); |
| 672 | case ISD::SIGN_EXTEND_VECTOR_INREG: |
| 673 | return ExpandSIGN_EXTEND_VECTOR_INREG(Op); |
| 674 | case ISD::ZERO_EXTEND_VECTOR_INREG: |
| 675 | return ExpandZERO_EXTEND_VECTOR_INREG(Op); |
| 676 | case ISD::BSWAP: |
| 677 | return ExpandBSWAP(Op); |
| 678 | case ISD::VSELECT: |
| 679 | return ExpandVSELECT(Op); |
| 680 | case ISD::SELECT: |
| 681 | return ExpandSELECT(Op); |
| 682 | case ISD::UINT_TO_FP: |
| 683 | return ExpandUINT_TO_FLOAT(Op); |
| 684 | case ISD::FNEG: |
| 685 | return ExpandFNEG(Op); |
| 686 | case ISD::SETCC: |
| 687 | return UnrollVSETCC(Op); |
| 688 | default: |
| 689 | return DAG.UnrollVectorOp(Op.getNode()); |
| 690 | } |
| 691 | } |
| 692 | |
Nadav Rotem | e757f00 | 2012-08-30 19:17:29 +0000 | [diff] [blame] | 693 | SDValue VectorLegalizer::ExpandSELECT(SDValue Op) { |
| 694 | // Lower a select instruction where the condition is a scalar and the |
| 695 | // operands are vectors. Lower this select to VSELECT and implement it |
Stephen Lin | 155615d | 2013-07-08 00:37:03 +0000 | [diff] [blame] | 696 | // using XOR AND OR. The selector bit is broadcasted. |
Nadav Rotem | e757f00 | 2012-08-30 19:17:29 +0000 | [diff] [blame] | 697 | EVT VT = Op.getValueType(); |
Benjamin Kramer | e4fae84 | 2013-05-28 16:31:26 +0000 | [diff] [blame] | 698 | SDLoc DL(Op); |
Nadav Rotem | e757f00 | 2012-08-30 19:17:29 +0000 | [diff] [blame] | 699 | |
| 700 | SDValue Mask = Op.getOperand(0); |
| 701 | SDValue Op1 = Op.getOperand(1); |
| 702 | SDValue Op2 = Op.getOperand(2); |
| 703 | |
| 704 | assert(VT.isVector() && !Mask.getValueType().isVector() |
| 705 | && Op1.getValueType() == Op2.getValueType() && "Invalid type"); |
| 706 | |
| 707 | unsigned NumElem = VT.getVectorNumElements(); |
| 708 | |
| 709 | // If we can't even use the basic vector operations of |
| 710 | // AND,OR,XOR, we will have to scalarize the op. |
| 711 | // Notice that the operation may be 'promoted' which means that it is |
| 712 | // 'bitcasted' to another type which is handled. |
| 713 | // Also, we need to be able to construct a splat vector using BUILD_VECTOR. |
| 714 | if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand || |
| 715 | TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand || |
| 716 | TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand || |
| 717 | TLI.getOperationAction(ISD::BUILD_VECTOR, VT) == TargetLowering::Expand) |
| 718 | return DAG.UnrollVectorOp(Op.getNode()); |
| 719 | |
| 720 | // Generate a mask operand. |
Matt Arsenault | c6c0850 | 2013-09-10 00:41:56 +0000 | [diff] [blame] | 721 | EVT MaskTy = VT.changeVectorElementTypeToInteger(); |
Nadav Rotem | e757f00 | 2012-08-30 19:17:29 +0000 | [diff] [blame] | 722 | |
| 723 | // What is the size of each element in the vector mask. |
| 724 | EVT BitTy = MaskTy.getScalarType(); |
| 725 | |
Matt Arsenault | b05e477 | 2013-06-14 22:04:37 +0000 | [diff] [blame] | 726 | Mask = DAG.getSelect(DL, BitTy, Mask, |
Nadav Rotem | f55ef64 | 2012-09-02 08:20:07 +0000 | [diff] [blame] | 727 | DAG.getConstant(APInt::getAllOnesValue(BitTy.getSizeInBits()), BitTy), |
Nadav Rotem | ee77da6 | 2012-09-02 12:21:50 +0000 | [diff] [blame] | 728 | DAG.getConstant(0, BitTy)); |
Nadav Rotem | e757f00 | 2012-08-30 19:17:29 +0000 | [diff] [blame] | 729 | |
| 730 | // Broadcast the mask so that the entire vector is all-one or all zero. |
| 731 | SmallVector<SDValue, 8> Ops(NumElem, Mask); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 732 | Mask = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskTy, Ops); |
Nadav Rotem | e757f00 | 2012-08-30 19:17:29 +0000 | [diff] [blame] | 733 | |
| 734 | // Bitcast the operands to be the same type as the mask. |
| 735 | // This is needed when we select between FP types because |
| 736 | // the mask is a vector of integers. |
| 737 | Op1 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op1); |
| 738 | Op2 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op2); |
| 739 | |
| 740 | SDValue AllOnes = DAG.getConstant( |
| 741 | APInt::getAllOnesValue(BitTy.getSizeInBits()), MaskTy); |
| 742 | SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes); |
| 743 | |
| 744 | Op1 = DAG.getNode(ISD::AND, DL, MaskTy, Op1, Mask); |
| 745 | Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask); |
| 746 | SDValue Val = DAG.getNode(ISD::OR, DL, MaskTy, Op1, Op2); |
| 747 | return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val); |
| 748 | } |
| 749 | |
Nadav Rotem | 66de2af | 2013-01-11 22:57:48 +0000 | [diff] [blame] | 750 | SDValue VectorLegalizer::ExpandSEXTINREG(SDValue Op) { |
| 751 | EVT VT = Op.getValueType(); |
| 752 | |
Benjamin Kramer | 4dc4783 | 2013-01-12 19:06:44 +0000 | [diff] [blame] | 753 | // Make sure that the SRA and SHL instructions are available. |
Nadav Rotem | 66de2af | 2013-01-11 22:57:48 +0000 | [diff] [blame] | 754 | if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Expand || |
Benjamin Kramer | 4dc4783 | 2013-01-12 19:06:44 +0000 | [diff] [blame] | 755 | TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Expand) |
Nadav Rotem | 66de2af | 2013-01-11 22:57:48 +0000 | [diff] [blame] | 756 | return DAG.UnrollVectorOp(Op.getNode()); |
| 757 | |
Benjamin Kramer | e4fae84 | 2013-05-28 16:31:26 +0000 | [diff] [blame] | 758 | SDLoc DL(Op); |
Nadav Rotem | 66de2af | 2013-01-11 22:57:48 +0000 | [diff] [blame] | 759 | EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT(); |
| 760 | |
| 761 | unsigned BW = VT.getScalarType().getSizeInBits(); |
| 762 | unsigned OrigBW = OrigTy.getScalarType().getSizeInBits(); |
| 763 | SDValue ShiftSz = DAG.getConstant(BW - OrigBW, VT); |
| 764 | |
| 765 | Op = Op.getOperand(0); |
Benjamin Kramer | 4dc4783 | 2013-01-12 19:06:44 +0000 | [diff] [blame] | 766 | Op = DAG.getNode(ISD::SHL, DL, VT, Op, ShiftSz); |
Nadav Rotem | 66de2af | 2013-01-11 22:57:48 +0000 | [diff] [blame] | 767 | return DAG.getNode(ISD::SRA, DL, VT, Op, ShiftSz); |
| 768 | } |
| 769 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 770 | // Generically expand a vector anyext in register to a shuffle of the relevant |
| 771 | // lanes into the appropriate locations, with other lanes left undef. |
| 772 | SDValue VectorLegalizer::ExpandANY_EXTEND_VECTOR_INREG(SDValue Op) { |
| 773 | SDLoc DL(Op); |
| 774 | EVT VT = Op.getValueType(); |
| 775 | int NumElements = VT.getVectorNumElements(); |
| 776 | SDValue Src = Op.getOperand(0); |
| 777 | EVT SrcVT = Src.getValueType(); |
| 778 | int NumSrcElements = SrcVT.getVectorNumElements(); |
| 779 | |
| 780 | // Build a base mask of undef shuffles. |
| 781 | SmallVector<int, 16> ShuffleMask; |
| 782 | ShuffleMask.resize(NumSrcElements, -1); |
| 783 | |
| 784 | // Place the extended lanes into the correct locations. |
| 785 | int ExtLaneScale = NumSrcElements / NumElements; |
| 786 | int EndianOffset = TLI.isBigEndian() ? ExtLaneScale - 1 : 0; |
| 787 | for (int i = 0; i < NumElements; ++i) |
| 788 | ShuffleMask[i * ExtLaneScale + EndianOffset] = i; |
| 789 | |
| 790 | return DAG.getNode( |
| 791 | ISD::BITCAST, DL, VT, |
| 792 | DAG.getVectorShuffle(SrcVT, DL, Src, DAG.getUNDEF(SrcVT), ShuffleMask)); |
| 793 | } |
| 794 | |
| 795 | SDValue VectorLegalizer::ExpandSIGN_EXTEND_VECTOR_INREG(SDValue Op) { |
| 796 | SDLoc DL(Op); |
| 797 | EVT VT = Op.getValueType(); |
| 798 | SDValue Src = Op.getOperand(0); |
| 799 | EVT SrcVT = Src.getValueType(); |
| 800 | |
| 801 | // First build an any-extend node which can be legalized above when we |
| 802 | // recurse through it. |
| 803 | Op = DAG.getAnyExtendVectorInReg(Src, DL, VT); |
| 804 | |
| 805 | // Now we need sign extend. Do this by shifting the elements. Even if these |
| 806 | // aren't legal operations, they have a better chance of being legalized |
| 807 | // without full scalarization than the sign extension does. |
| 808 | unsigned EltWidth = VT.getVectorElementType().getSizeInBits(); |
| 809 | unsigned SrcEltWidth = SrcVT.getVectorElementType().getSizeInBits(); |
| 810 | SDValue ShiftAmount = DAG.getConstant(EltWidth - SrcEltWidth, VT); |
| 811 | return DAG.getNode(ISD::SRA, DL, VT, |
| 812 | DAG.getNode(ISD::SHL, DL, VT, Op, ShiftAmount), |
| 813 | ShiftAmount); |
| 814 | } |
| 815 | |
| 816 | // Generically expand a vector zext in register to a shuffle of the relevant |
| 817 | // lanes into the appropriate locations, a blend of zero into the high bits, |
| 818 | // and a bitcast to the wider element type. |
| 819 | SDValue VectorLegalizer::ExpandZERO_EXTEND_VECTOR_INREG(SDValue Op) { |
| 820 | SDLoc DL(Op); |
| 821 | EVT VT = Op.getValueType(); |
| 822 | int NumElements = VT.getVectorNumElements(); |
| 823 | SDValue Src = Op.getOperand(0); |
| 824 | EVT SrcVT = Src.getValueType(); |
| 825 | int NumSrcElements = SrcVT.getVectorNumElements(); |
| 826 | |
| 827 | // Build up a zero vector to blend into this one. |
| 828 | EVT SrcScalarVT = SrcVT.getScalarType(); |
| 829 | SDValue ScalarZero = DAG.getTargetConstant(0, SrcScalarVT); |
| 830 | SmallVector<SDValue, 4> BuildVectorOperands(NumSrcElements, ScalarZero); |
| 831 | SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, DL, SrcVT, BuildVectorOperands); |
| 832 | |
| 833 | // Shuffle the incoming lanes into the correct position, and pull all other |
| 834 | // lanes from the zero vector. |
| 835 | SmallVector<int, 16> ShuffleMask; |
| 836 | ShuffleMask.reserve(NumSrcElements); |
| 837 | for (int i = 0; i < NumSrcElements; ++i) |
| 838 | ShuffleMask.push_back(i); |
| 839 | |
| 840 | int ExtLaneScale = NumSrcElements / NumElements; |
| 841 | int EndianOffset = TLI.isBigEndian() ? ExtLaneScale - 1 : 0; |
| 842 | for (int i = 0; i < NumElements; ++i) |
| 843 | ShuffleMask[i * ExtLaneScale + EndianOffset] = NumSrcElements + i; |
| 844 | |
| 845 | return DAG.getNode(ISD::BITCAST, DL, VT, |
| 846 | DAG.getVectorShuffle(SrcVT, DL, Zero, Src, ShuffleMask)); |
| 847 | } |
| 848 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 849 | SDValue VectorLegalizer::ExpandBSWAP(SDValue Op) { |
| 850 | EVT VT = Op.getValueType(); |
| 851 | |
| 852 | // Generate a byte wise shuffle mask for the BSWAP. |
| 853 | SmallVector<int, 16> ShuffleMask; |
| 854 | int ScalarSizeInBytes = VT.getScalarSizeInBits() / 8; |
| 855 | for (int I = 0, E = VT.getVectorNumElements(); I != E; ++I) |
| 856 | for (int J = ScalarSizeInBytes - 1; J >= 0; --J) |
| 857 | ShuffleMask.push_back((I * ScalarSizeInBytes) + J); |
| 858 | |
| 859 | EVT ByteVT = EVT::getVectorVT(*DAG.getContext(), MVT::i8, ShuffleMask.size()); |
| 860 | |
| 861 | // Only emit a shuffle if the mask is legal. |
| 862 | if (!TLI.isShuffleMaskLegal(ShuffleMask, ByteVT)) |
| 863 | return DAG.UnrollVectorOp(Op.getNode()); |
| 864 | |
| 865 | SDLoc DL(Op); |
| 866 | Op = DAG.getNode(ISD::BITCAST, DL, ByteVT, Op.getOperand(0)); |
| 867 | Op = DAG.getVectorShuffle(ByteVT, DL, Op, DAG.getUNDEF(ByteVT), |
| 868 | ShuffleMask.data()); |
| 869 | return DAG.getNode(ISD::BITCAST, DL, VT, Op); |
| 870 | } |
| 871 | |
Nadav Rotem | aec5861 | 2011-09-13 19:17:42 +0000 | [diff] [blame] | 872 | SDValue VectorLegalizer::ExpandVSELECT(SDValue Op) { |
| 873 | // Implement VSELECT in terms of XOR, AND, OR |
| 874 | // on platforms which do not support blend natively. |
Benjamin Kramer | e4fae84 | 2013-05-28 16:31:26 +0000 | [diff] [blame] | 875 | SDLoc DL(Op); |
Nadav Rotem | aec5861 | 2011-09-13 19:17:42 +0000 | [diff] [blame] | 876 | |
| 877 | SDValue Mask = Op.getOperand(0); |
| 878 | SDValue Op1 = Op.getOperand(1); |
| 879 | SDValue Op2 = Op.getOperand(2); |
| 880 | |
Matt Arsenault | 798925b | 2013-05-07 20:24:18 +0000 | [diff] [blame] | 881 | EVT VT = Mask.getValueType(); |
| 882 | |
Nadav Rotem | aec5861 | 2011-09-13 19:17:42 +0000 | [diff] [blame] | 883 | // If we can't even use the basic vector operations of |
| 884 | // AND,OR,XOR, we will have to scalarize the op. |
Nadav Rotem | 815af82 | 2011-10-19 20:43:16 +0000 | [diff] [blame] | 885 | // Notice that the operation may be 'promoted' which means that it is |
| 886 | // 'bitcasted' to another type which is handled. |
Pete Cooper | d906017 | 2012-09-01 22:27:48 +0000 | [diff] [blame] | 887 | // This operation also isn't safe with AND, OR, XOR when the boolean |
| 888 | // type is 0/1 as we need an all ones vector constant to mask with. |
| 889 | // FIXME: Sign extend 1 to all ones if thats legal on the target. |
Nadav Rotem | 815af82 | 2011-10-19 20:43:16 +0000 | [diff] [blame] | 890 | if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand || |
| 891 | TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand || |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 892 | TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand || |
| 893 | TLI.getBooleanContents(Op1.getValueType()) != |
| 894 | TargetLowering::ZeroOrNegativeOneBooleanContent) |
Nadav Rotem | 815af82 | 2011-10-19 20:43:16 +0000 | [diff] [blame] | 895 | return DAG.UnrollVectorOp(Op.getNode()); |
Nadav Rotem | aec5861 | 2011-09-13 19:17:42 +0000 | [diff] [blame] | 896 | |
Matt Arsenault | 798925b | 2013-05-07 20:24:18 +0000 | [diff] [blame] | 897 | // If the mask and the type are different sizes, unroll the vector op. This |
| 898 | // can occur when getSetCCResultType returns something that is different in |
| 899 | // size from the operand types. For example, v4i8 = select v4i32, v4i8, v4i8. |
| 900 | if (VT.getSizeInBits() != Op1.getValueType().getSizeInBits()) |
| 901 | return DAG.UnrollVectorOp(Op.getNode()); |
| 902 | |
Nadav Rotem | aec5861 | 2011-09-13 19:17:42 +0000 | [diff] [blame] | 903 | // Bitcast the operands to be the same type as the mask. |
| 904 | // This is needed when we select between FP types because |
| 905 | // the mask is a vector of integers. |
| 906 | Op1 = DAG.getNode(ISD::BITCAST, DL, VT, Op1); |
| 907 | Op2 = DAG.getNode(ISD::BITCAST, DL, VT, Op2); |
| 908 | |
| 909 | SDValue AllOnes = DAG.getConstant( |
| 910 | APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()), VT); |
| 911 | SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes); |
| 912 | |
| 913 | Op1 = DAG.getNode(ISD::AND, DL, VT, Op1, Mask); |
| 914 | Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask); |
Nadav Rotem | 3ab32ea | 2012-04-15 15:08:09 +0000 | [diff] [blame] | 915 | SDValue Val = DAG.getNode(ISD::OR, DL, VT, Op1, Op2); |
| 916 | return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val); |
Nadav Rotem | aec5861 | 2011-09-13 19:17:42 +0000 | [diff] [blame] | 917 | } |
| 918 | |
Nadav Rotem | 06cc324 | 2011-03-19 13:09:10 +0000 | [diff] [blame] | 919 | SDValue VectorLegalizer::ExpandUINT_TO_FLOAT(SDValue Op) { |
Nadav Rotem | 06cc324 | 2011-03-19 13:09:10 +0000 | [diff] [blame] | 920 | EVT VT = Op.getOperand(0).getValueType(); |
Benjamin Kramer | e4fae84 | 2013-05-28 16:31:26 +0000 | [diff] [blame] | 921 | SDLoc DL(Op); |
Nadav Rotem | 06cc324 | 2011-03-19 13:09:10 +0000 | [diff] [blame] | 922 | |
| 923 | // Make sure that the SINT_TO_FP and SRL instructions are available. |
Nadav Rotem | 815af82 | 2011-10-19 20:43:16 +0000 | [diff] [blame] | 924 | if (TLI.getOperationAction(ISD::SINT_TO_FP, VT) == TargetLowering::Expand || |
| 925 | TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Expand) |
| 926 | return DAG.UnrollVectorOp(Op.getNode()); |
Nadav Rotem | 06cc324 | 2011-03-19 13:09:10 +0000 | [diff] [blame] | 927 | |
| 928 | EVT SVT = VT.getScalarType(); |
| 929 | assert((SVT.getSizeInBits() == 64 || SVT.getSizeInBits() == 32) && |
| 930 | "Elements in vector-UINT_TO_FP must be 32 or 64 bits wide"); |
| 931 | |
| 932 | unsigned BW = SVT.getSizeInBits(); |
| 933 | SDValue HalfWord = DAG.getConstant(BW/2, VT); |
| 934 | |
| 935 | // Constants to clear the upper part of the word. |
| 936 | // Notice that we can also use SHL+SHR, but using a constant is slightly |
| 937 | // faster on x86. |
| 938 | uint64_t HWMask = (SVT.getSizeInBits()==64)?0x00000000FFFFFFFF:0x0000FFFF; |
| 939 | SDValue HalfWordMask = DAG.getConstant(HWMask, VT); |
| 940 | |
| 941 | // Two to the power of half-word-size. |
| 942 | SDValue TWOHW = DAG.getConstantFP((1<<(BW/2)), Op.getValueType()); |
| 943 | |
| 944 | // Clear upper part of LO, lower HI |
| 945 | SDValue HI = DAG.getNode(ISD::SRL, DL, VT, Op.getOperand(0), HalfWord); |
| 946 | SDValue LO = DAG.getNode(ISD::AND, DL, VT, Op.getOperand(0), HalfWordMask); |
| 947 | |
| 948 | // Convert hi and lo to floats |
| 949 | // Convert the hi part back to the upper values |
| 950 | SDValue fHI = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), HI); |
| 951 | fHI = DAG.getNode(ISD::FMUL, DL, Op.getValueType(), fHI, TWOHW); |
| 952 | SDValue fLO = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), LO); |
| 953 | |
| 954 | // Add the two halves |
| 955 | return DAG.getNode(ISD::FADD, DL, Op.getValueType(), fHI, fLO); |
| 956 | } |
| 957 | |
| 958 | |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 959 | SDValue VectorLegalizer::ExpandFNEG(SDValue Op) { |
| 960 | if (TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) { |
| 961 | SDValue Zero = DAG.getConstantFP(-0.0, Op.getValueType()); |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 962 | return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(), |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 963 | Zero, Op.getOperand(0)); |
| 964 | } |
Mon P Wang | cd6e725 | 2009-11-30 02:42:02 +0000 | [diff] [blame] | 965 | return DAG.UnrollVectorOp(Op.getNode()); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 966 | } |
| 967 | |
| 968 | SDValue VectorLegalizer::UnrollVSETCC(SDValue Op) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 969 | EVT VT = Op.getValueType(); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 970 | unsigned NumElems = VT.getVectorNumElements(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 971 | EVT EltVT = VT.getVectorElementType(); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 972 | SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1), CC = Op.getOperand(2); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 973 | EVT TmpEltVT = LHS.getValueType().getVectorElementType(); |
Benjamin Kramer | e4fae84 | 2013-05-28 16:31:26 +0000 | [diff] [blame] | 974 | SDLoc dl(Op); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 975 | SmallVector<SDValue, 8> Ops(NumElems); |
| 976 | for (unsigned i = 0; i < NumElems; ++i) { |
| 977 | SDValue LHSElem = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, LHS, |
Tom Stellard | 425b76c | 2013-08-05 22:22:01 +0000 | [diff] [blame] | 978 | DAG.getConstant(i, TLI.getVectorIdxTy())); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 979 | SDValue RHSElem = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, RHS, |
Tom Stellard | 425b76c | 2013-08-05 22:22:01 +0000 | [diff] [blame] | 980 | DAG.getConstant(i, TLI.getVectorIdxTy())); |
Matt Arsenault | 225ed70 | 2013-05-18 00:21:46 +0000 | [diff] [blame] | 981 | Ops[i] = DAG.getNode(ISD::SETCC, dl, |
| 982 | TLI.getSetCCResultType(*DAG.getContext(), TmpEltVT), |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 983 | LHSElem, RHSElem, CC); |
Matt Arsenault | b05e477 | 2013-06-14 22:04:37 +0000 | [diff] [blame] | 984 | Ops[i] = DAG.getSelect(dl, EltVT, Ops[i], |
| 985 | DAG.getConstant(APInt::getAllOnesValue |
| 986 | (EltVT.getSizeInBits()), EltVT), |
| 987 | DAG.getConstant(0, EltVT)); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 988 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 989 | return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops); |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 990 | } |
| 991 | |
Eli Friedman | 5c22c80 | 2009-05-23 12:35:30 +0000 | [diff] [blame] | 992 | } |
| 993 | |
| 994 | bool SelectionDAG::LegalizeVectors() { |
| 995 | return VectorLegalizer(*this).Run(); |
| 996 | } |