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 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 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, 23 // or operations that happen to take a vector which are custom-lowered; 24 // the legalization for such operations never produces nodes 25 // with illegal types, so it's okay to put off legalizing them until 26 // SelectionDAG::Legalize runs. 27 // 28 //===----------------------------------------------------------------------===// 29 30 #include "llvm/ADT/APInt.h" 31 #include "llvm/ADT/DenseMap.h" 32 #include "llvm/ADT/SmallVector.h" 33 #include "llvm/CodeGen/ISDOpcodes.h" 34 #include "llvm/CodeGen/MachineMemOperand.h" 35 #include "llvm/CodeGen/MachineValueType.h" 36 #include "llvm/CodeGen/SelectionDAG.h" 37 #include "llvm/CodeGen/SelectionDAGNodes.h" 38 #include "llvm/CodeGen/TargetLowering.h" 39 #include "llvm/CodeGen/ValueTypes.h" 40 #include "llvm/IR/DataLayout.h" 41 #include "llvm/Support/Casting.h" 42 #include "llvm/Support/Compiler.h" 43 #include "llvm/Support/ErrorHandling.h" 44 #include "llvm/Support/MathExtras.h" 45 #include <cassert> 46 #include <cstdint> 47 #include <iterator> 48 #include <utility> 49 50 using namespace llvm; 51 52 #define DEBUG_TYPE "legalizevectorops" 53 54 namespace { 55 56 class VectorLegalizer { 57 SelectionDAG& DAG; 58 const TargetLowering &TLI; 59 bool Changed = false; // Keep track of whether anything changed 60 61 /// For nodes that are of legal width, and that have more than one use, this 62 /// map indicates what regularized operand to use. This allows us to avoid 63 /// legalizing the same thing more than once. 64 SmallDenseMap<SDValue, SDValue, 64> LegalizedNodes; 65 66 /// \brief Adds a node to the translation cache. 67 void AddLegalizedOperand(SDValue From, SDValue To) { 68 LegalizedNodes.insert(std::make_pair(From, To)); 69 // If someone requests legalization of the new node, return itself. 70 if (From != To) 71 LegalizedNodes.insert(std::make_pair(To, To)); 72 } 73 74 /// \brief Legalizes the given node. 75 SDValue LegalizeOp(SDValue Op); 76 77 /// \brief Assuming the node is legal, "legalize" the results. 78 SDValue TranslateLegalizeResults(SDValue Op, SDValue Result); 79 80 /// \brief Implements unrolling a VSETCC. 81 SDValue UnrollVSETCC(SDValue Op); 82 83 /// \brief Implement expand-based legalization of vector operations. 84 /// 85 /// This is just a high-level routine to dispatch to specific code paths for 86 /// operations to legalize them. 87 SDValue Expand(SDValue Op); 88 89 /// \brief Implements expansion for FNEG; falls back to UnrollVectorOp if 90 /// FSUB isn't legal. 91 /// 92 /// Implements expansion for UINT_TO_FLOAT; falls back to UnrollVectorOp if 93 /// SINT_TO_FLOAT and SHR on vectors isn't legal. 94 SDValue ExpandUINT_TO_FLOAT(SDValue Op); 95 96 /// \brief Implement expansion for SIGN_EXTEND_INREG using SRL and SRA. 97 SDValue ExpandSEXTINREG(SDValue Op); 98 99 /// \brief Implement expansion for ANY_EXTEND_VECTOR_INREG. 100 /// 101 /// Shuffles the low lanes of the operand into place and bitcasts to the proper 102 /// type. The contents of the bits in the extended part of each element are 103 /// undef. 104 SDValue ExpandANY_EXTEND_VECTOR_INREG(SDValue Op); 105 106 /// \brief Implement expansion for SIGN_EXTEND_VECTOR_INREG. 107 /// 108 /// Shuffles the low lanes of the operand into place, bitcasts to the proper 109 /// type, then shifts left and arithmetic shifts right to introduce a sign 110 /// extension. 111 SDValue ExpandSIGN_EXTEND_VECTOR_INREG(SDValue Op); 112 113 /// \brief Implement expansion for ZERO_EXTEND_VECTOR_INREG. 114 /// 115 /// Shuffles the low lanes of the operand into place and blends zeros into 116 /// the remaining lanes, finally bitcasting to the proper type. 117 SDValue ExpandZERO_EXTEND_VECTOR_INREG(SDValue Op); 118 119 /// \brief Expand bswap of vectors into a shuffle if legal. 120 SDValue ExpandBSWAP(SDValue Op); 121 122 /// \brief Implement vselect in terms of XOR, AND, OR when blend is not 123 /// supported by the target. 124 SDValue ExpandVSELECT(SDValue Op); 125 SDValue ExpandSELECT(SDValue Op); 126 SDValue ExpandLoad(SDValue Op); 127 SDValue ExpandStore(SDValue Op); 128 SDValue ExpandFNEG(SDValue Op); 129 SDValue ExpandFSUB(SDValue Op); 130 SDValue ExpandBITREVERSE(SDValue Op); 131 SDValue ExpandCTLZ(SDValue Op); 132 SDValue ExpandCTTZ_ZERO_UNDEF(SDValue Op); 133 134 /// \brief Implements vector promotion. 135 /// 136 /// This is essentially just bitcasting the operands to a different type and 137 /// bitcasting the result back to the original type. 138 SDValue Promote(SDValue Op); 139 140 /// \brief Implements [SU]INT_TO_FP vector promotion. 141 /// 142 /// This is a [zs]ext of the input operand to the next size up. 143 SDValue PromoteINT_TO_FP(SDValue Op); 144 145 /// \brief Implements FP_TO_[SU]INT vector promotion of the result type. 146 /// 147 /// It is promoted to the next size up integer type. The result is then 148 /// truncated back to the original type. 149 SDValue PromoteFP_TO_INT(SDValue Op, bool isSigned); 150 151 public: 152 VectorLegalizer(SelectionDAG& dag) : 153 DAG(dag), TLI(dag.getTargetLoweringInfo()) {} 154 155 /// \brief Begin legalizer the vector operations in the DAG. 156 bool Run(); 157 }; 158 159 } // end anonymous namespace 160 161 bool VectorLegalizer::Run() { 162 // Before we start legalizing vector nodes, check if there are any vectors. 163 bool HasVectors = false; 164 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(), 165 E = std::prev(DAG.allnodes_end()); I != std::next(E); ++I) { 166 // Check if the values of the nodes contain vectors. We don't need to check 167 // the operands because we are going to check their values at some point. 168 for (SDNode::value_iterator J = I->value_begin(), E = I->value_end(); 169 J != E; ++J) 170 HasVectors |= J->isVector(); 171 172 // If we found a vector node we can start the legalization. 173 if (HasVectors) 174 break; 175 } 176 177 // If this basic block has no vectors then no need to legalize vectors. 178 if (!HasVectors) 179 return false; 180 181 // The legalize process is inherently a bottom-up recursive process (users 182 // legalize their uses before themselves). Given infinite stack space, we 183 // could just start legalizing on the root and traverse the whole graph. In 184 // practice however, this causes us to run out of stack space on large basic 185 // blocks. To avoid this problem, compute an ordering of the nodes where each 186 // node is only legalized after all of its operands are legalized. 187 DAG.AssignTopologicalOrder(); 188 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(), 189 E = std::prev(DAG.allnodes_end()); I != std::next(E); ++I) 190 LegalizeOp(SDValue(&*I, 0)); 191 192 // Finally, it's possible the root changed. Get the new root. 193 SDValue OldRoot = DAG.getRoot(); 194 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?"); 195 DAG.setRoot(LegalizedNodes[OldRoot]); 196 197 LegalizedNodes.clear(); 198 199 // Remove dead nodes now. 200 DAG.RemoveDeadNodes(); 201 202 return Changed; 203 } 204 205 SDValue VectorLegalizer::TranslateLegalizeResults(SDValue Op, SDValue Result) { 206 // Generic legalization: just pass the operand through. 207 for (unsigned i = 0, e = Op.getNode()->getNumValues(); i != e; ++i) 208 AddLegalizedOperand(Op.getValue(i), Result.getValue(i)); 209 return Result.getValue(Op.getResNo()); 210 } 211 212 SDValue VectorLegalizer::LegalizeOp(SDValue Op) { 213 // Note that LegalizeOp may be reentered even from single-use nodes, which 214 // means that we always must cache transformed nodes. 215 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op); 216 if (I != LegalizedNodes.end()) return I->second; 217 218 SDNode* Node = Op.getNode(); 219 220 // Legalize the operands 221 SmallVector<SDValue, 8> Ops; 222 for (const SDValue &Op : Node->op_values()) 223 Ops.push_back(LegalizeOp(Op)); 224 225 SDValue Result = SDValue(DAG.UpdateNodeOperands(Op.getNode(), Ops), 0); 226 227 bool HasVectorValue = false; 228 if (Op.getOpcode() == ISD::LOAD) { 229 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode()); 230 ISD::LoadExtType ExtType = LD->getExtensionType(); 231 if (LD->getMemoryVT().isVector() && ExtType != ISD::NON_EXTLOAD) { 232 DEBUG(dbgs() << "\nLegalizing extending vector load: "; Node->dump(&DAG)); 233 switch (TLI.getLoadExtAction(LD->getExtensionType(), LD->getValueType(0), 234 LD->getMemoryVT())) { 235 default: llvm_unreachable("This action is not supported yet!"); 236 case TargetLowering::Legal: 237 return TranslateLegalizeResults(Op, Result); 238 case TargetLowering::Custom: 239 if (SDValue Lowered = TLI.LowerOperation(Result, DAG)) { 240 if (Lowered == Result) 241 return TranslateLegalizeResults(Op, Lowered); 242 Changed = true; 243 if (Lowered->getNumValues() != Op->getNumValues()) { 244 // This expanded to something other than the load. Assume the 245 // lowering code took care of any chain values, and just handle the 246 // returned value. 247 assert(Result.getValue(1).use_empty() && 248 "There are still live users of the old chain!"); 249 return LegalizeOp(Lowered); 250 } 251 return TranslateLegalizeResults(Op, Lowered); 252 } 253 LLVM_FALLTHROUGH; 254 case TargetLowering::Expand: 255 Changed = true; 256 return LegalizeOp(ExpandLoad(Op)); 257 } 258 } 259 } else if (Op.getOpcode() == ISD::STORE) { 260 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode()); 261 EVT StVT = ST->getMemoryVT(); 262 MVT ValVT = ST->getValue().getSimpleValueType(); 263 if (StVT.isVector() && ST->isTruncatingStore()) { 264 DEBUG(dbgs() << "\nLegalizing truncating vector store: "; 265 Node->dump(&DAG)); 266 switch (TLI.getTruncStoreAction(ValVT, StVT)) { 267 default: llvm_unreachable("This action is not supported yet!"); 268 case TargetLowering::Legal: 269 return TranslateLegalizeResults(Op, Result); 270 case TargetLowering::Custom: { 271 SDValue Lowered = TLI.LowerOperation(Result, DAG); 272 Changed = Lowered != Result; 273 return TranslateLegalizeResults(Op, Lowered); 274 } 275 case TargetLowering::Expand: 276 Changed = true; 277 return LegalizeOp(ExpandStore(Op)); 278 } 279 } 280 } else if (Op.getOpcode() == ISD::MSCATTER || Op.getOpcode() == ISD::MSTORE) 281 HasVectorValue = true; 282 283 for (SDNode::value_iterator J = Node->value_begin(), E = Node->value_end(); 284 J != E; 285 ++J) 286 HasVectorValue |= J->isVector(); 287 if (!HasVectorValue) 288 return TranslateLegalizeResults(Op, Result); 289 290 EVT QueryType; 291 switch (Op.getOpcode()) { 292 default: 293 return TranslateLegalizeResults(Op, Result); 294 case ISD::ADD: 295 case ISD::SUB: 296 case ISD::MUL: 297 case ISD::SDIV: 298 case ISD::UDIV: 299 case ISD::SREM: 300 case ISD::UREM: 301 case ISD::SDIVREM: 302 case ISD::UDIVREM: 303 case ISD::FADD: 304 case ISD::FSUB: 305 case ISD::FMUL: 306 case ISD::FDIV: 307 case ISD::FREM: 308 case ISD::AND: 309 case ISD::OR: 310 case ISD::XOR: 311 case ISD::SHL: 312 case ISD::SRA: 313 case ISD::SRL: 314 case ISD::ROTL: 315 case ISD::ROTR: 316 case ISD::BSWAP: 317 case ISD::BITREVERSE: 318 case ISD::CTLZ: 319 case ISD::CTTZ: 320 case ISD::CTLZ_ZERO_UNDEF: 321 case ISD::CTTZ_ZERO_UNDEF: 322 case ISD::CTPOP: 323 case ISD::SELECT: 324 case ISD::VSELECT: 325 case ISD::SELECT_CC: 326 case ISD::SETCC: 327 case ISD::ZERO_EXTEND: 328 case ISD::ANY_EXTEND: 329 case ISD::TRUNCATE: 330 case ISD::SIGN_EXTEND: 331 case ISD::FP_TO_SINT: 332 case ISD::FP_TO_UINT: 333 case ISD::FNEG: 334 case ISD::FABS: 335 case ISD::FMINNUM: 336 case ISD::FMAXNUM: 337 case ISD::FMINNAN: 338 case ISD::FMAXNAN: 339 case ISD::FCOPYSIGN: 340 case ISD::FSQRT: 341 case ISD::FSIN: 342 case ISD::FCOS: 343 case ISD::FPOWI: 344 case ISD::FPOW: 345 case ISD::FLOG: 346 case ISD::FLOG2: 347 case ISD::FLOG10: 348 case ISD::FEXP: 349 case ISD::FEXP2: 350 case ISD::FCEIL: 351 case ISD::FTRUNC: 352 case ISD::FRINT: 353 case ISD::FNEARBYINT: 354 case ISD::FROUND: 355 case ISD::FFLOOR: 356 case ISD::FP_ROUND: 357 case ISD::FP_EXTEND: 358 case ISD::FMA: 359 case ISD::SIGN_EXTEND_INREG: 360 case ISD::ANY_EXTEND_VECTOR_INREG: 361 case ISD::SIGN_EXTEND_VECTOR_INREG: 362 case ISD::ZERO_EXTEND_VECTOR_INREG: 363 case ISD::SMIN: 364 case ISD::SMAX: 365 case ISD::UMIN: 366 case ISD::UMAX: 367 case ISD::SMUL_LOHI: 368 case ISD::UMUL_LOHI: 369 QueryType = Node->getValueType(0); 370 break; 371 case ISD::FP_ROUND_INREG: 372 QueryType = cast<VTSDNode>(Node->getOperand(1))->getVT(); 373 break; 374 case ISD::SINT_TO_FP: 375 case ISD::UINT_TO_FP: 376 QueryType = Node->getOperand(0).getValueType(); 377 break; 378 case ISD::MSCATTER: 379 QueryType = cast<MaskedScatterSDNode>(Node)->getValue().getValueType(); 380 break; 381 case ISD::MSTORE: 382 QueryType = cast<MaskedStoreSDNode>(Node)->getValue().getValueType(); 383 break; 384 } 385 386 DEBUG(dbgs() << "\nLegalizing vector op: "; Node->dump(&DAG)); 387 388 switch (TLI.getOperationAction(Node->getOpcode(), QueryType)) { 389 default: llvm_unreachable("This action is not supported yet!"); 390 case TargetLowering::Promote: 391 Result = Promote(Op); 392 Changed = true; 393 break; 394 case TargetLowering::Legal: 395 DEBUG(dbgs() << "Legal node: nothing to do\n"); 396 break; 397 case TargetLowering::Custom: { 398 DEBUG(dbgs() << "Trying custom legalization\n"); 399 if (SDValue Tmp1 = TLI.LowerOperation(Op, DAG)) { 400 DEBUG(dbgs() << "Successfully custom legalized node\n"); 401 Result = Tmp1; 402 break; 403 } 404 DEBUG(dbgs() << "Could not custom legalize node\n"); 405 LLVM_FALLTHROUGH; 406 } 407 case TargetLowering::Expand: 408 Result = Expand(Op); 409 } 410 411 // Make sure that the generated code is itself legal. 412 if (Result != Op) { 413 Result = LegalizeOp(Result); 414 Changed = true; 415 } 416 417 // Note that LegalizeOp may be reentered even from single-use nodes, which 418 // means that we always must cache transformed nodes. 419 AddLegalizedOperand(Op, Result); 420 return Result; 421 } 422 423 SDValue VectorLegalizer::Promote(SDValue Op) { 424 // For a few operations there is a specific concept for promotion based on 425 // the operand's type. 426 switch (Op.getOpcode()) { 427 case ISD::SINT_TO_FP: 428 case ISD::UINT_TO_FP: 429 // "Promote" the operation by extending the operand. 430 return PromoteINT_TO_FP(Op); 431 case ISD::FP_TO_UINT: 432 case ISD::FP_TO_SINT: 433 // Promote the operation by extending the operand. 434 return PromoteFP_TO_INT(Op, Op->getOpcode() == ISD::FP_TO_SINT); 435 } 436 437 // There are currently two cases of vector promotion: 438 // 1) Bitcasting a vector of integers to a different type to a vector of the 439 // same overall length. For example, x86 promotes ISD::AND v2i32 to v1i64. 440 // 2) Extending a vector of floats to a vector of the same number of larger 441 // floats. For example, AArch64 promotes ISD::FADD on v4f16 to v4f32. 442 MVT VT = Op.getSimpleValueType(); 443 assert(Op.getNode()->getNumValues() == 1 && 444 "Can't promote a vector with multiple results!"); 445 MVT NVT = TLI.getTypeToPromoteTo(Op.getOpcode(), VT); 446 SDLoc dl(Op); 447 SmallVector<SDValue, 4> Operands(Op.getNumOperands()); 448 449 for (unsigned j = 0; j != Op.getNumOperands(); ++j) { 450 if (Op.getOperand(j).getValueType().isVector()) 451 if (Op.getOperand(j) 452 .getValueType() 453 .getVectorElementType() 454 .isFloatingPoint() && 455 NVT.isVector() && NVT.getVectorElementType().isFloatingPoint()) 456 Operands[j] = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op.getOperand(j)); 457 else 458 Operands[j] = DAG.getNode(ISD::BITCAST, dl, NVT, Op.getOperand(j)); 459 else 460 Operands[j] = Op.getOperand(j); 461 } 462 463 Op = DAG.getNode(Op.getOpcode(), dl, NVT, Operands, Op.getNode()->getFlags()); 464 if ((VT.isFloatingPoint() && NVT.isFloatingPoint()) || 465 (VT.isVector() && VT.getVectorElementType().isFloatingPoint() && 466 NVT.isVector() && NVT.getVectorElementType().isFloatingPoint())) 467 return DAG.getNode(ISD::FP_ROUND, dl, VT, Op, DAG.getIntPtrConstant(0, dl)); 468 else 469 return DAG.getNode(ISD::BITCAST, dl, VT, Op); 470 } 471 472 SDValue VectorLegalizer::PromoteINT_TO_FP(SDValue Op) { 473 // INT_TO_FP operations may require the input operand be promoted even 474 // when the type is otherwise legal. 475 EVT VT = Op.getOperand(0).getValueType(); 476 assert(Op.getNode()->getNumValues() == 1 && 477 "Can't promote a vector with multiple results!"); 478 479 // Normal getTypeToPromoteTo() doesn't work here, as that will promote 480 // by widening the vector w/ the same element width and twice the number 481 // of elements. We want the other way around, the same number of elements, 482 // each twice the width. 483 // 484 // Increase the bitwidth of the element to the next pow-of-two 485 // (which is greater than 8 bits). 486 487 EVT NVT = VT.widenIntegerVectorElementType(*DAG.getContext()); 488 assert(NVT.isSimple() && "Promoting to a non-simple vector type!"); 489 SDLoc dl(Op); 490 SmallVector<SDValue, 4> Operands(Op.getNumOperands()); 491 492 unsigned Opc = Op.getOpcode() == ISD::UINT_TO_FP ? ISD::ZERO_EXTEND : 493 ISD::SIGN_EXTEND; 494 for (unsigned j = 0; j != Op.getNumOperands(); ++j) { 495 if (Op.getOperand(j).getValueType().isVector()) 496 Operands[j] = DAG.getNode(Opc, dl, NVT, Op.getOperand(j)); 497 else 498 Operands[j] = Op.getOperand(j); 499 } 500 501 return DAG.getNode(Op.getOpcode(), dl, Op.getValueType(), Operands); 502 } 503 504 // For FP_TO_INT we promote the result type to a vector type with wider 505 // elements and then truncate the result. This is different from the default 506 // PromoteVector which uses bitcast to promote thus assumning that the 507 // promoted vector type has the same overall size. 508 SDValue VectorLegalizer::PromoteFP_TO_INT(SDValue Op, bool isSigned) { 509 assert(Op.getNode()->getNumValues() == 1 && 510 "Can't promote a vector with multiple results!"); 511 EVT VT = Op.getValueType(); 512 513 EVT NewVT = VT; 514 unsigned NewOpc; 515 while (true) { 516 NewVT = NewVT.widenIntegerVectorElementType(*DAG.getContext()); 517 assert(NewVT.isSimple() && "Promoting to a non-simple vector type!"); 518 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewVT)) { 519 NewOpc = ISD::FP_TO_SINT; 520 break; 521 } 522 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewVT)) { 523 NewOpc = ISD::FP_TO_UINT; 524 break; 525 } 526 } 527 528 SDLoc dl(Op); 529 SDValue Promoted = DAG.getNode(NewOpc, dl, NewVT, Op.getOperand(0)); 530 531 // Assert that the converted value fits in the original type. If it doesn't 532 // (eg: because the value being converted is too big), then the result of the 533 // original operation was undefined anyway, so the assert is still correct. 534 Promoted = DAG.getNode(Op->getOpcode() == ISD::FP_TO_UINT ? ISD::AssertZext 535 : ISD::AssertSext, 536 dl, NewVT, Promoted, 537 DAG.getValueType(VT.getScalarType())); 538 return DAG.getNode(ISD::TRUNCATE, dl, VT, Promoted); 539 } 540 541 SDValue VectorLegalizer::ExpandLoad(SDValue Op) { 542 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode()); 543 544 EVT SrcVT = LD->getMemoryVT(); 545 EVT SrcEltVT = SrcVT.getScalarType(); 546 unsigned NumElem = SrcVT.getVectorNumElements(); 547 548 SDValue NewChain; 549 SDValue Value; 550 if (SrcVT.getVectorNumElements() > 1 && !SrcEltVT.isByteSized()) { 551 SDLoc dl(Op); 552 553 SmallVector<SDValue, 8> Vals; 554 SmallVector<SDValue, 8> LoadChains; 555 556 EVT DstEltVT = LD->getValueType(0).getScalarType(); 557 SDValue Chain = LD->getChain(); 558 SDValue BasePTR = LD->getBasePtr(); 559 ISD::LoadExtType ExtType = LD->getExtensionType(); 560 561 // When elements in a vector is not byte-addressable, we cannot directly 562 // load each element by advancing pointer, which could only address bytes. 563 // Instead, we load all significant words, mask bits off, and concatenate 564 // them to form each element. Finally, they are extended to destination 565 // scalar type to build the destination vector. 566 EVT WideVT = TLI.getPointerTy(DAG.getDataLayout()); 567 568 assert(WideVT.isRound() && 569 "Could not handle the sophisticated case when the widest integer is" 570 " not power of 2."); 571 assert(WideVT.bitsGE(SrcEltVT) && 572 "Type is not legalized?"); 573 574 unsigned WideBytes = WideVT.getStoreSize(); 575 unsigned Offset = 0; 576 unsigned RemainingBytes = SrcVT.getStoreSize(); 577 SmallVector<SDValue, 8> LoadVals; 578 while (RemainingBytes > 0) { 579 SDValue ScalarLoad; 580 unsigned LoadBytes = WideBytes; 581 582 if (RemainingBytes >= LoadBytes) { 583 ScalarLoad = 584 DAG.getLoad(WideVT, dl, Chain, BasePTR, 585 LD->getPointerInfo().getWithOffset(Offset), 586 MinAlign(LD->getAlignment(), Offset), 587 LD->getMemOperand()->getFlags(), LD->getAAInfo()); 588 } else { 589 EVT LoadVT = WideVT; 590 while (RemainingBytes < LoadBytes) { 591 LoadBytes >>= 1; // Reduce the load size by half. 592 LoadVT = EVT::getIntegerVT(*DAG.getContext(), LoadBytes << 3); 593 } 594 ScalarLoad = 595 DAG.getExtLoad(ISD::EXTLOAD, dl, WideVT, Chain, BasePTR, 596 LD->getPointerInfo().getWithOffset(Offset), LoadVT, 597 MinAlign(LD->getAlignment(), Offset), 598 LD->getMemOperand()->getFlags(), LD->getAAInfo()); 599 } 600 601 RemainingBytes -= LoadBytes; 602 Offset += LoadBytes; 603 604 BasePTR = DAG.getObjectPtrOffset(dl, BasePTR, LoadBytes); 605 606 LoadVals.push_back(ScalarLoad.getValue(0)); 607 LoadChains.push_back(ScalarLoad.getValue(1)); 608 } 609 610 // Extract bits, pack and extend/trunc them into destination type. 611 unsigned SrcEltBits = SrcEltVT.getSizeInBits(); 612 SDValue SrcEltBitMask = DAG.getConstant((1U << SrcEltBits) - 1, dl, WideVT); 613 614 unsigned BitOffset = 0; 615 unsigned WideIdx = 0; 616 unsigned WideBits = WideVT.getSizeInBits(); 617 618 for (unsigned Idx = 0; Idx != NumElem; ++Idx) { 619 SDValue Lo, Hi, ShAmt; 620 621 if (BitOffset < WideBits) { 622 ShAmt = DAG.getConstant( 623 BitOffset, dl, TLI.getShiftAmountTy(WideVT, DAG.getDataLayout())); 624 Lo = DAG.getNode(ISD::SRL, dl, WideVT, LoadVals[WideIdx], ShAmt); 625 Lo = DAG.getNode(ISD::AND, dl, WideVT, Lo, SrcEltBitMask); 626 } 627 628 BitOffset += SrcEltBits; 629 if (BitOffset >= WideBits) { 630 WideIdx++; 631 BitOffset -= WideBits; 632 if (BitOffset > 0) { 633 ShAmt = DAG.getConstant( 634 SrcEltBits - BitOffset, dl, 635 TLI.getShiftAmountTy(WideVT, DAG.getDataLayout())); 636 Hi = DAG.getNode(ISD::SHL, dl, WideVT, LoadVals[WideIdx], ShAmt); 637 Hi = DAG.getNode(ISD::AND, dl, WideVT, Hi, SrcEltBitMask); 638 } 639 } 640 641 if (Hi.getNode()) 642 Lo = DAG.getNode(ISD::OR, dl, WideVT, Lo, Hi); 643 644 switch (ExtType) { 645 default: llvm_unreachable("Unknown extended-load op!"); 646 case ISD::EXTLOAD: 647 Lo = DAG.getAnyExtOrTrunc(Lo, dl, DstEltVT); 648 break; 649 case ISD::ZEXTLOAD: 650 Lo = DAG.getZExtOrTrunc(Lo, dl, DstEltVT); 651 break; 652 case ISD::SEXTLOAD: 653 ShAmt = 654 DAG.getConstant(WideBits - SrcEltBits, dl, 655 TLI.getShiftAmountTy(WideVT, DAG.getDataLayout())); 656 Lo = DAG.getNode(ISD::SHL, dl, WideVT, Lo, ShAmt); 657 Lo = DAG.getNode(ISD::SRA, dl, WideVT, Lo, ShAmt); 658 Lo = DAG.getSExtOrTrunc(Lo, dl, DstEltVT); 659 break; 660 } 661 Vals.push_back(Lo); 662 } 663 664 NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains); 665 Value = DAG.getBuildVector(Op.getNode()->getValueType(0), dl, Vals); 666 } else { 667 SDValue Scalarized = TLI.scalarizeVectorLoad(LD, DAG); 668 669 NewChain = Scalarized.getValue(1); 670 Value = Scalarized.getValue(0); 671 } 672 673 AddLegalizedOperand(Op.getValue(0), Value); 674 AddLegalizedOperand(Op.getValue(1), NewChain); 675 676 return (Op.getResNo() ? NewChain : Value); 677 } 678 679 SDValue VectorLegalizer::ExpandStore(SDValue Op) { 680 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode()); 681 682 EVT StVT = ST->getMemoryVT(); 683 EVT MemSclVT = StVT.getScalarType(); 684 unsigned ScalarSize = MemSclVT.getSizeInBits(); 685 686 // Round odd types to the next pow of two. 687 if (!isPowerOf2_32(ScalarSize)) { 688 // FIXME: This is completely broken and inconsistent with ExpandLoad 689 // handling. 690 691 // For sub-byte element sizes, this ends up with 0 stride between elements, 692 // so the same element just gets re-written to the same location. There seem 693 // to be tests explicitly testing for this broken behavior though. tests 694 // for this broken behavior. 695 696 LLVMContext &Ctx = *DAG.getContext(); 697 698 EVT NewMemVT 699 = EVT::getVectorVT(Ctx, 700 MemSclVT.getIntegerVT(Ctx, NextPowerOf2(ScalarSize)), 701 StVT.getVectorNumElements()); 702 703 SDValue NewVectorStore = DAG.getTruncStore( 704 ST->getChain(), SDLoc(Op), ST->getValue(), ST->getBasePtr(), 705 ST->getPointerInfo(), NewMemVT, ST->getAlignment(), 706 ST->getMemOperand()->getFlags(), ST->getAAInfo()); 707 ST = cast<StoreSDNode>(NewVectorStore.getNode()); 708 } 709 710 SDValue TF = TLI.scalarizeVectorStore(ST, DAG); 711 AddLegalizedOperand(Op, TF); 712 return TF; 713 } 714 715 SDValue VectorLegalizer::Expand(SDValue Op) { 716 switch (Op->getOpcode()) { 717 case ISD::SIGN_EXTEND_INREG: 718 return ExpandSEXTINREG(Op); 719 case ISD::ANY_EXTEND_VECTOR_INREG: 720 return ExpandANY_EXTEND_VECTOR_INREG(Op); 721 case ISD::SIGN_EXTEND_VECTOR_INREG: 722 return ExpandSIGN_EXTEND_VECTOR_INREG(Op); 723 case ISD::ZERO_EXTEND_VECTOR_INREG: 724 return ExpandZERO_EXTEND_VECTOR_INREG(Op); 725 case ISD::BSWAP: 726 return ExpandBSWAP(Op); 727 case ISD::VSELECT: 728 return ExpandVSELECT(Op); 729 case ISD::SELECT: 730 return ExpandSELECT(Op); 731 case ISD::UINT_TO_FP: 732 return ExpandUINT_TO_FLOAT(Op); 733 case ISD::FNEG: 734 return ExpandFNEG(Op); 735 case ISD::FSUB: 736 return ExpandFSUB(Op); 737 case ISD::SETCC: 738 return UnrollVSETCC(Op); 739 case ISD::BITREVERSE: 740 return ExpandBITREVERSE(Op); 741 case ISD::CTLZ: 742 case ISD::CTLZ_ZERO_UNDEF: 743 return ExpandCTLZ(Op); 744 case ISD::CTTZ_ZERO_UNDEF: 745 return ExpandCTTZ_ZERO_UNDEF(Op); 746 default: 747 return DAG.UnrollVectorOp(Op.getNode()); 748 } 749 } 750 751 SDValue VectorLegalizer::ExpandSELECT(SDValue Op) { 752 // Lower a select instruction where the condition is a scalar and the 753 // operands are vectors. Lower this select to VSELECT and implement it 754 // using XOR AND OR. The selector bit is broadcasted. 755 EVT VT = Op.getValueType(); 756 SDLoc DL(Op); 757 758 SDValue Mask = Op.getOperand(0); 759 SDValue Op1 = Op.getOperand(1); 760 SDValue Op2 = Op.getOperand(2); 761 762 assert(VT.isVector() && !Mask.getValueType().isVector() 763 && Op1.getValueType() == Op2.getValueType() && "Invalid type"); 764 765 // If we can't even use the basic vector operations of 766 // AND,OR,XOR, we will have to scalarize the op. 767 // Notice that the operation may be 'promoted' which means that it is 768 // 'bitcasted' to another type which is handled. 769 // Also, we need to be able to construct a splat vector using BUILD_VECTOR. 770 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand || 771 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand || 772 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand || 773 TLI.getOperationAction(ISD::BUILD_VECTOR, VT) == TargetLowering::Expand) 774 return DAG.UnrollVectorOp(Op.getNode()); 775 776 // Generate a mask operand. 777 EVT MaskTy = VT.changeVectorElementTypeToInteger(); 778 779 // What is the size of each element in the vector mask. 780 EVT BitTy = MaskTy.getScalarType(); 781 782 Mask = DAG.getSelect(DL, BitTy, Mask, 783 DAG.getConstant(APInt::getAllOnesValue(BitTy.getSizeInBits()), DL, 784 BitTy), 785 DAG.getConstant(0, DL, BitTy)); 786 787 // Broadcast the mask so that the entire vector is all-one or all zero. 788 Mask = DAG.getSplatBuildVector(MaskTy, DL, Mask); 789 790 // Bitcast the operands to be the same type as the mask. 791 // This is needed when we select between FP types because 792 // the mask is a vector of integers. 793 Op1 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op1); 794 Op2 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op2); 795 796 SDValue AllOnes = DAG.getConstant( 797 APInt::getAllOnesValue(BitTy.getSizeInBits()), DL, MaskTy); 798 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes); 799 800 Op1 = DAG.getNode(ISD::AND, DL, MaskTy, Op1, Mask); 801 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask); 802 SDValue Val = DAG.getNode(ISD::OR, DL, MaskTy, Op1, Op2); 803 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val); 804 } 805 806 SDValue VectorLegalizer::ExpandSEXTINREG(SDValue Op) { 807 EVT VT = Op.getValueType(); 808 809 // Make sure that the SRA and SHL instructions are available. 810 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Expand || 811 TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Expand) 812 return DAG.UnrollVectorOp(Op.getNode()); 813 814 SDLoc DL(Op); 815 EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT(); 816 817 unsigned BW = VT.getScalarSizeInBits(); 818 unsigned OrigBW = OrigTy.getScalarSizeInBits(); 819 SDValue ShiftSz = DAG.getConstant(BW - OrigBW, DL, VT); 820 821 Op = Op.getOperand(0); 822 Op = DAG.getNode(ISD::SHL, DL, VT, Op, ShiftSz); 823 return DAG.getNode(ISD::SRA, DL, VT, Op, ShiftSz); 824 } 825 826 // Generically expand a vector anyext in register to a shuffle of the relevant 827 // lanes into the appropriate locations, with other lanes left undef. 828 SDValue VectorLegalizer::ExpandANY_EXTEND_VECTOR_INREG(SDValue Op) { 829 SDLoc DL(Op); 830 EVT VT = Op.getValueType(); 831 int NumElements = VT.getVectorNumElements(); 832 SDValue Src = Op.getOperand(0); 833 EVT SrcVT = Src.getValueType(); 834 int NumSrcElements = SrcVT.getVectorNumElements(); 835 836 // Build a base mask of undef shuffles. 837 SmallVector<int, 16> ShuffleMask; 838 ShuffleMask.resize(NumSrcElements, -1); 839 840 // Place the extended lanes into the correct locations. 841 int ExtLaneScale = NumSrcElements / NumElements; 842 int EndianOffset = DAG.getDataLayout().isBigEndian() ? ExtLaneScale - 1 : 0; 843 for (int i = 0; i < NumElements; ++i) 844 ShuffleMask[i * ExtLaneScale + EndianOffset] = i; 845 846 return DAG.getNode( 847 ISD::BITCAST, DL, VT, 848 DAG.getVectorShuffle(SrcVT, DL, Src, DAG.getUNDEF(SrcVT), ShuffleMask)); 849 } 850 851 SDValue VectorLegalizer::ExpandSIGN_EXTEND_VECTOR_INREG(SDValue Op) { 852 SDLoc DL(Op); 853 EVT VT = Op.getValueType(); 854 SDValue Src = Op.getOperand(0); 855 EVT SrcVT = Src.getValueType(); 856 857 // First build an any-extend node which can be legalized above when we 858 // recurse through it. 859 Op = DAG.getAnyExtendVectorInReg(Src, DL, VT); 860 861 // Now we need sign extend. Do this by shifting the elements. Even if these 862 // aren't legal operations, they have a better chance of being legalized 863 // without full scalarization than the sign extension does. 864 unsigned EltWidth = VT.getScalarSizeInBits(); 865 unsigned SrcEltWidth = SrcVT.getScalarSizeInBits(); 866 SDValue ShiftAmount = DAG.getConstant(EltWidth - SrcEltWidth, DL, VT); 867 return DAG.getNode(ISD::SRA, DL, VT, 868 DAG.getNode(ISD::SHL, DL, VT, Op, ShiftAmount), 869 ShiftAmount); 870 } 871 872 // Generically expand a vector zext in register to a shuffle of the relevant 873 // lanes into the appropriate locations, a blend of zero into the high bits, 874 // and a bitcast to the wider element type. 875 SDValue VectorLegalizer::ExpandZERO_EXTEND_VECTOR_INREG(SDValue Op) { 876 SDLoc DL(Op); 877 EVT VT = Op.getValueType(); 878 int NumElements = VT.getVectorNumElements(); 879 SDValue Src = Op.getOperand(0); 880 EVT SrcVT = Src.getValueType(); 881 int NumSrcElements = SrcVT.getVectorNumElements(); 882 883 // Build up a zero vector to blend into this one. 884 SDValue Zero = DAG.getConstant(0, DL, SrcVT); 885 886 // Shuffle the incoming lanes into the correct position, and pull all other 887 // lanes from the zero vector. 888 SmallVector<int, 16> ShuffleMask; 889 ShuffleMask.reserve(NumSrcElements); 890 for (int i = 0; i < NumSrcElements; ++i) 891 ShuffleMask.push_back(i); 892 893 int ExtLaneScale = NumSrcElements / NumElements; 894 int EndianOffset = DAG.getDataLayout().isBigEndian() ? ExtLaneScale - 1 : 0; 895 for (int i = 0; i < NumElements; ++i) 896 ShuffleMask[i * ExtLaneScale + EndianOffset] = NumSrcElements + i; 897 898 return DAG.getNode(ISD::BITCAST, DL, VT, 899 DAG.getVectorShuffle(SrcVT, DL, Zero, Src, ShuffleMask)); 900 } 901 902 static void createBSWAPShuffleMask(EVT VT, SmallVectorImpl<int> &ShuffleMask) { 903 int ScalarSizeInBytes = VT.getScalarSizeInBits() / 8; 904 for (int I = 0, E = VT.getVectorNumElements(); I != E; ++I) 905 for (int J = ScalarSizeInBytes - 1; J >= 0; --J) 906 ShuffleMask.push_back((I * ScalarSizeInBytes) + J); 907 } 908 909 SDValue VectorLegalizer::ExpandBSWAP(SDValue Op) { 910 EVT VT = Op.getValueType(); 911 912 // Generate a byte wise shuffle mask for the BSWAP. 913 SmallVector<int, 16> ShuffleMask; 914 createBSWAPShuffleMask(VT, ShuffleMask); 915 EVT ByteVT = EVT::getVectorVT(*DAG.getContext(), MVT::i8, ShuffleMask.size()); 916 917 // Only emit a shuffle if the mask is legal. 918 if (!TLI.isShuffleMaskLegal(ShuffleMask, ByteVT)) 919 return DAG.UnrollVectorOp(Op.getNode()); 920 921 SDLoc DL(Op); 922 Op = DAG.getNode(ISD::BITCAST, DL, ByteVT, Op.getOperand(0)); 923 Op = DAG.getVectorShuffle(ByteVT, DL, Op, DAG.getUNDEF(ByteVT), ShuffleMask); 924 return DAG.getNode(ISD::BITCAST, DL, VT, Op); 925 } 926 927 SDValue VectorLegalizer::ExpandBITREVERSE(SDValue Op) { 928 EVT VT = Op.getValueType(); 929 930 // If we have the scalar operation, it's probably cheaper to unroll it. 931 if (TLI.isOperationLegalOrCustom(ISD::BITREVERSE, VT.getScalarType())) 932 return DAG.UnrollVectorOp(Op.getNode()); 933 934 // If the vector element width is a whole number of bytes, test if its legal 935 // to BSWAP shuffle the bytes and then perform the BITREVERSE on the byte 936 // vector. This greatly reduces the number of bit shifts necessary. 937 unsigned ScalarSizeInBits = VT.getScalarSizeInBits(); 938 if (ScalarSizeInBits > 8 && (ScalarSizeInBits % 8) == 0) { 939 SmallVector<int, 16> BSWAPMask; 940 createBSWAPShuffleMask(VT, BSWAPMask); 941 942 EVT ByteVT = EVT::getVectorVT(*DAG.getContext(), MVT::i8, BSWAPMask.size()); 943 if (TLI.isShuffleMaskLegal(BSWAPMask, ByteVT) && 944 (TLI.isOperationLegalOrCustom(ISD::BITREVERSE, ByteVT) || 945 (TLI.isOperationLegalOrCustom(ISD::SHL, ByteVT) && 946 TLI.isOperationLegalOrCustom(ISD::SRL, ByteVT) && 947 TLI.isOperationLegalOrCustomOrPromote(ISD::AND, ByteVT) && 948 TLI.isOperationLegalOrCustomOrPromote(ISD::OR, ByteVT)))) { 949 SDLoc DL(Op); 950 Op = DAG.getNode(ISD::BITCAST, DL, ByteVT, Op.getOperand(0)); 951 Op = DAG.getVectorShuffle(ByteVT, DL, Op, DAG.getUNDEF(ByteVT), 952 BSWAPMask); 953 Op = DAG.getNode(ISD::BITREVERSE, DL, ByteVT, Op); 954 return DAG.getNode(ISD::BITCAST, DL, VT, Op); 955 } 956 } 957 958 // If we have the appropriate vector bit operations, it is better to use them 959 // than unrolling and expanding each component. 960 if (!TLI.isOperationLegalOrCustom(ISD::SHL, VT) || 961 !TLI.isOperationLegalOrCustom(ISD::SRL, VT) || 962 !TLI.isOperationLegalOrCustomOrPromote(ISD::AND, VT) || 963 !TLI.isOperationLegalOrCustomOrPromote(ISD::OR, VT)) 964 return DAG.UnrollVectorOp(Op.getNode()); 965 966 // Let LegalizeDAG handle this later. 967 return Op; 968 } 969 970 SDValue VectorLegalizer::ExpandVSELECT(SDValue Op) { 971 // Implement VSELECT in terms of XOR, AND, OR 972 // on platforms which do not support blend natively. 973 SDLoc DL(Op); 974 975 SDValue Mask = Op.getOperand(0); 976 SDValue Op1 = Op.getOperand(1); 977 SDValue Op2 = Op.getOperand(2); 978 979 EVT VT = Mask.getValueType(); 980 981 // If we can't even use the basic vector operations of 982 // AND,OR,XOR, we will have to scalarize the op. 983 // Notice that the operation may be 'promoted' which means that it is 984 // 'bitcasted' to another type which is handled. 985 // This operation also isn't safe with AND, OR, XOR when the boolean 986 // type is 0/1 as we need an all ones vector constant to mask with. 987 // FIXME: Sign extend 1 to all ones if thats legal on the target. 988 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand || 989 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand || 990 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand || 991 TLI.getBooleanContents(Op1.getValueType()) != 992 TargetLowering::ZeroOrNegativeOneBooleanContent) 993 return DAG.UnrollVectorOp(Op.getNode()); 994 995 // If the mask and the type are different sizes, unroll the vector op. This 996 // can occur when getSetCCResultType returns something that is different in 997 // size from the operand types. For example, v4i8 = select v4i32, v4i8, v4i8. 998 if (VT.getSizeInBits() != Op1.getValueSizeInBits()) 999 return DAG.UnrollVectorOp(Op.getNode()); 1000 1001 // Bitcast the operands to be the same type as the mask. 1002 // This is needed when we select between FP types because 1003 // the mask is a vector of integers. 1004 Op1 = DAG.getNode(ISD::BITCAST, DL, VT, Op1); 1005 Op2 = DAG.getNode(ISD::BITCAST, DL, VT, Op2); 1006 1007 SDValue AllOnes = DAG.getConstant( 1008 APInt::getAllOnesValue(VT.getScalarSizeInBits()), DL, VT); 1009 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes); 1010 1011 Op1 = DAG.getNode(ISD::AND, DL, VT, Op1, Mask); 1012 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask); 1013 SDValue Val = DAG.getNode(ISD::OR, DL, VT, Op1, Op2); 1014 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val); 1015 } 1016 1017 SDValue VectorLegalizer::ExpandUINT_TO_FLOAT(SDValue Op) { 1018 EVT VT = Op.getOperand(0).getValueType(); 1019 SDLoc DL(Op); 1020 1021 // Make sure that the SINT_TO_FP and SRL instructions are available. 1022 if (TLI.getOperationAction(ISD::SINT_TO_FP, VT) == TargetLowering::Expand || 1023 TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Expand) 1024 return DAG.UnrollVectorOp(Op.getNode()); 1025 1026 unsigned BW = VT.getScalarSizeInBits(); 1027 assert((BW == 64 || BW == 32) && 1028 "Elements in vector-UINT_TO_FP must be 32 or 64 bits wide"); 1029 1030 SDValue HalfWord = DAG.getConstant(BW / 2, DL, VT); 1031 1032 // Constants to clear the upper part of the word. 1033 // Notice that we can also use SHL+SHR, but using a constant is slightly 1034 // faster on x86. 1035 uint64_t HWMask = (BW == 64) ? 0x00000000FFFFFFFF : 0x0000FFFF; 1036 SDValue HalfWordMask = DAG.getConstant(HWMask, DL, VT); 1037 1038 // Two to the power of half-word-size. 1039 SDValue TWOHW = DAG.getConstantFP(1 << (BW / 2), DL, Op.getValueType()); 1040 1041 // Clear upper part of LO, lower HI 1042 SDValue HI = DAG.getNode(ISD::SRL, DL, VT, Op.getOperand(0), HalfWord); 1043 SDValue LO = DAG.getNode(ISD::AND, DL, VT, Op.getOperand(0), HalfWordMask); 1044 1045 // Convert hi and lo to floats 1046 // Convert the hi part back to the upper values 1047 // TODO: Can any fast-math-flags be set on these nodes? 1048 SDValue fHI = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), HI); 1049 fHI = DAG.getNode(ISD::FMUL, DL, Op.getValueType(), fHI, TWOHW); 1050 SDValue fLO = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), LO); 1051 1052 // Add the two halves 1053 return DAG.getNode(ISD::FADD, DL, Op.getValueType(), fHI, fLO); 1054 } 1055 1056 SDValue VectorLegalizer::ExpandFNEG(SDValue Op) { 1057 if (TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) { 1058 SDLoc DL(Op); 1059 SDValue Zero = DAG.getConstantFP(-0.0, DL, Op.getValueType()); 1060 // TODO: If FNEG had fast-math-flags, they'd get propagated to this FSUB. 1061 return DAG.getNode(ISD::FSUB, DL, Op.getValueType(), 1062 Zero, Op.getOperand(0)); 1063 } 1064 return DAG.UnrollVectorOp(Op.getNode()); 1065 } 1066 1067 SDValue VectorLegalizer::ExpandFSUB(SDValue Op) { 1068 // For floating-point values, (a-b) is the same as a+(-b). If FNEG is legal, 1069 // we can defer this to operation legalization where it will be lowered as 1070 // a+(-b). 1071 EVT VT = Op.getValueType(); 1072 if (TLI.isOperationLegalOrCustom(ISD::FNEG, VT) && 1073 TLI.isOperationLegalOrCustom(ISD::FADD, VT)) 1074 return Op; // Defer to LegalizeDAG 1075 1076 return DAG.UnrollVectorOp(Op.getNode()); 1077 } 1078 1079 SDValue VectorLegalizer::ExpandCTLZ(SDValue Op) { 1080 EVT VT = Op.getValueType(); 1081 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); 1082 1083 // If the non-ZERO_UNDEF version is supported we can use that instead. 1084 if (Op.getOpcode() == ISD::CTLZ_ZERO_UNDEF && 1085 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT)) { 1086 SDLoc DL(Op); 1087 return DAG.getNode(ISD::CTLZ, DL, Op.getValueType(), Op.getOperand(0)); 1088 } 1089 1090 // If CTPOP is available we can lower with a CTPOP based method: 1091 // u16 ctlz(u16 x) { 1092 // x |= (x >> 1); 1093 // x |= (x >> 2); 1094 // x |= (x >> 4); 1095 // x |= (x >> 8); 1096 // return ctpop(~x); 1097 // } 1098 // Ref: "Hacker's Delight" by Henry Warren 1099 if (isPowerOf2_32(NumBitsPerElt) && 1100 TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) && 1101 TLI.isOperationLegalOrCustom(ISD::SRL, VT) && 1102 TLI.isOperationLegalOrCustomOrPromote(ISD::OR, VT) && 1103 TLI.isOperationLegalOrCustomOrPromote(ISD::XOR, VT)) { 1104 SDLoc DL(Op); 1105 SDValue Res = Op.getOperand(0); 1106 EVT ShiftTy = TLI.getShiftAmountTy(VT, DAG.getDataLayout()); 1107 1108 for (unsigned i = 1; i != NumBitsPerElt; i *= 2) 1109 Res = DAG.getNode( 1110 ISD::OR, DL, VT, Res, 1111 DAG.getNode(ISD::SRL, DL, VT, Res, DAG.getConstant(i, DL, ShiftTy))); 1112 1113 Res = DAG.getNOT(DL, Res, VT); 1114 return DAG.getNode(ISD::CTPOP, DL, VT, Res); 1115 } 1116 1117 // Otherwise go ahead and unroll. 1118 return DAG.UnrollVectorOp(Op.getNode()); 1119 } 1120 1121 SDValue VectorLegalizer::ExpandCTTZ_ZERO_UNDEF(SDValue Op) { 1122 // If the non-ZERO_UNDEF version is supported we can use that instead. 1123 if (TLI.isOperationLegalOrCustom(ISD::CTTZ, Op.getValueType())) { 1124 SDLoc DL(Op); 1125 return DAG.getNode(ISD::CTTZ, DL, Op.getValueType(), Op.getOperand(0)); 1126 } 1127 1128 // Otherwise go ahead and unroll. 1129 return DAG.UnrollVectorOp(Op.getNode()); 1130 } 1131 1132 SDValue VectorLegalizer::UnrollVSETCC(SDValue Op) { 1133 EVT VT = Op.getValueType(); 1134 unsigned NumElems = VT.getVectorNumElements(); 1135 EVT EltVT = VT.getVectorElementType(); 1136 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1), CC = Op.getOperand(2); 1137 EVT TmpEltVT = LHS.getValueType().getVectorElementType(); 1138 SDLoc dl(Op); 1139 SmallVector<SDValue, 8> Ops(NumElems); 1140 for (unsigned i = 0; i < NumElems; ++i) { 1141 SDValue LHSElem = DAG.getNode( 1142 ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, LHS, 1143 DAG.getConstant(i, dl, TLI.getVectorIdxTy(DAG.getDataLayout()))); 1144 SDValue RHSElem = DAG.getNode( 1145 ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, RHS, 1146 DAG.getConstant(i, dl, TLI.getVectorIdxTy(DAG.getDataLayout()))); 1147 Ops[i] = DAG.getNode(ISD::SETCC, dl, 1148 TLI.getSetCCResultType(DAG.getDataLayout(), 1149 *DAG.getContext(), TmpEltVT), 1150 LHSElem, RHSElem, CC); 1151 Ops[i] = DAG.getSelect(dl, EltVT, Ops[i], 1152 DAG.getConstant(APInt::getAllOnesValue 1153 (EltVT.getSizeInBits()), dl, EltVT), 1154 DAG.getConstant(0, dl, EltVT)); 1155 } 1156 return DAG.getBuildVector(VT, dl, Ops); 1157 } 1158 1159 bool SelectionDAG::LegalizeVectors() { 1160 return VectorLegalizer(*this).Run(); 1161 } 1162