1 //===- SelectionDAG.cpp - Implement the SelectionDAG data structures ------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This implements the SelectionDAG class. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "llvm/CodeGen/SelectionDAG.h" 14 #include "SDNodeDbgValue.h" 15 #include "llvm/ADT/APFloat.h" 16 #include "llvm/ADT/APInt.h" 17 #include "llvm/ADT/APSInt.h" 18 #include "llvm/ADT/ArrayRef.h" 19 #include "llvm/ADT/BitVector.h" 20 #include "llvm/ADT/FoldingSet.h" 21 #include "llvm/ADT/None.h" 22 #include "llvm/ADT/STLExtras.h" 23 #include "llvm/ADT/SmallPtrSet.h" 24 #include "llvm/ADT/SmallVector.h" 25 #include "llvm/ADT/Triple.h" 26 #include "llvm/ADT/Twine.h" 27 #include "llvm/Analysis/BlockFrequencyInfo.h" 28 #include "llvm/Analysis/MemoryLocation.h" 29 #include "llvm/Analysis/ProfileSummaryInfo.h" 30 #include "llvm/Analysis/ValueTracking.h" 31 #include "llvm/CodeGen/FunctionLoweringInfo.h" 32 #include "llvm/CodeGen/ISDOpcodes.h" 33 #include "llvm/CodeGen/MachineBasicBlock.h" 34 #include "llvm/CodeGen/MachineConstantPool.h" 35 #include "llvm/CodeGen/MachineFrameInfo.h" 36 #include "llvm/CodeGen/MachineFunction.h" 37 #include "llvm/CodeGen/MachineMemOperand.h" 38 #include "llvm/CodeGen/RuntimeLibcalls.h" 39 #include "llvm/CodeGen/SelectionDAGAddressAnalysis.h" 40 #include "llvm/CodeGen/SelectionDAGNodes.h" 41 #include "llvm/CodeGen/SelectionDAGTargetInfo.h" 42 #include "llvm/CodeGen/TargetFrameLowering.h" 43 #include "llvm/CodeGen/TargetLowering.h" 44 #include "llvm/CodeGen/TargetRegisterInfo.h" 45 #include "llvm/CodeGen/TargetSubtargetInfo.h" 46 #include "llvm/CodeGen/ValueTypes.h" 47 #include "llvm/IR/Constant.h" 48 #include "llvm/IR/Constants.h" 49 #include "llvm/IR/DataLayout.h" 50 #include "llvm/IR/DebugInfoMetadata.h" 51 #include "llvm/IR/DebugLoc.h" 52 #include "llvm/IR/DerivedTypes.h" 53 #include "llvm/IR/Function.h" 54 #include "llvm/IR/GlobalValue.h" 55 #include "llvm/IR/Metadata.h" 56 #include "llvm/IR/Type.h" 57 #include "llvm/IR/Value.h" 58 #include "llvm/Support/Casting.h" 59 #include "llvm/Support/CodeGen.h" 60 #include "llvm/Support/Compiler.h" 61 #include "llvm/Support/Debug.h" 62 #include "llvm/Support/ErrorHandling.h" 63 #include "llvm/Support/KnownBits.h" 64 #include "llvm/Support/MachineValueType.h" 65 #include "llvm/Support/ManagedStatic.h" 66 #include "llvm/Support/MathExtras.h" 67 #include "llvm/Support/Mutex.h" 68 #include "llvm/Support/raw_ostream.h" 69 #include "llvm/Target/TargetMachine.h" 70 #include "llvm/Target/TargetOptions.h" 71 #include "llvm/Transforms/Utils/SizeOpts.h" 72 #include <algorithm> 73 #include <cassert> 74 #include <cstdint> 75 #include <cstdlib> 76 #include <limits> 77 #include <set> 78 #include <string> 79 #include <utility> 80 #include <vector> 81 82 using namespace llvm; 83 84 /// makeVTList - Return an instance of the SDVTList struct initialized with the 85 /// specified members. 86 static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) { 87 SDVTList Res = {VTs, NumVTs}; 88 return Res; 89 } 90 91 // Default null implementations of the callbacks. 92 void SelectionDAG::DAGUpdateListener::NodeDeleted(SDNode*, SDNode*) {} 93 void SelectionDAG::DAGUpdateListener::NodeUpdated(SDNode*) {} 94 void SelectionDAG::DAGUpdateListener::NodeInserted(SDNode *) {} 95 96 void SelectionDAG::DAGNodeDeletedListener::anchor() {} 97 98 #define DEBUG_TYPE "selectiondag" 99 100 static cl::opt<bool> EnableMemCpyDAGOpt("enable-memcpy-dag-opt", 101 cl::Hidden, cl::init(true), 102 cl::desc("Gang up loads and stores generated by inlining of memcpy")); 103 104 static cl::opt<int> MaxLdStGlue("ldstmemcpy-glue-max", 105 cl::desc("Number limit for gluing ld/st of memcpy."), 106 cl::Hidden, cl::init(0)); 107 108 static void NewSDValueDbgMsg(SDValue V, StringRef Msg, SelectionDAG *G) { 109 LLVM_DEBUG(dbgs() << Msg; V.getNode()->dump(G);); 110 } 111 112 //===----------------------------------------------------------------------===// 113 // ConstantFPSDNode Class 114 //===----------------------------------------------------------------------===// 115 116 /// isExactlyValue - We don't rely on operator== working on double values, as 117 /// it returns true for things that are clearly not equal, like -0.0 and 0.0. 118 /// As such, this method can be used to do an exact bit-for-bit comparison of 119 /// two floating point values. 120 bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const { 121 return getValueAPF().bitwiseIsEqual(V); 122 } 123 124 bool ConstantFPSDNode::isValueValidForType(EVT VT, 125 const APFloat& Val) { 126 assert(VT.isFloatingPoint() && "Can only convert between FP types"); 127 128 // convert modifies in place, so make a copy. 129 APFloat Val2 = APFloat(Val); 130 bool losesInfo; 131 (void) Val2.convert(SelectionDAG::EVTToAPFloatSemantics(VT), 132 APFloat::rmNearestTiesToEven, 133 &losesInfo); 134 return !losesInfo; 135 } 136 137 //===----------------------------------------------------------------------===// 138 // ISD Namespace 139 //===----------------------------------------------------------------------===// 140 141 bool ISD::isConstantSplatVector(const SDNode *N, APInt &SplatVal) { 142 if (N->getOpcode() == ISD::SPLAT_VECTOR) { 143 unsigned EltSize = 144 N->getValueType(0).getVectorElementType().getSizeInBits(); 145 if (auto *Op0 = dyn_cast<ConstantSDNode>(N->getOperand(0))) { 146 SplatVal = Op0->getAPIntValue().truncOrSelf(EltSize); 147 return true; 148 } else if (auto *Op0 = dyn_cast<ConstantFPSDNode>(N->getOperand(0))) { 149 SplatVal = Op0->getValueAPF().bitcastToAPInt().truncOrSelf(EltSize); 150 return true; 151 } 152 } 153 154 auto *BV = dyn_cast<BuildVectorSDNode>(N); 155 if (!BV) 156 return false; 157 158 APInt SplatUndef; 159 unsigned SplatBitSize; 160 bool HasUndefs; 161 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits(); 162 return BV->isConstantSplat(SplatVal, SplatUndef, SplatBitSize, HasUndefs, 163 EltSize) && 164 EltSize == SplatBitSize; 165 } 166 167 // FIXME: AllOnes and AllZeros duplicate a lot of code. Could these be 168 // specializations of the more general isConstantSplatVector()? 169 170 bool ISD::isConstantSplatVectorAllOnes(const SDNode *N, bool BuildVectorOnly) { 171 // Look through a bit convert. 172 while (N->getOpcode() == ISD::BITCAST) 173 N = N->getOperand(0).getNode(); 174 175 if (!BuildVectorOnly && N->getOpcode() == ISD::SPLAT_VECTOR) { 176 APInt SplatVal; 177 return isConstantSplatVector(N, SplatVal) && SplatVal.isAllOnesValue(); 178 } 179 180 if (N->getOpcode() != ISD::BUILD_VECTOR) return false; 181 182 unsigned i = 0, e = N->getNumOperands(); 183 184 // Skip over all of the undef values. 185 while (i != e && N->getOperand(i).isUndef()) 186 ++i; 187 188 // Do not accept an all-undef vector. 189 if (i == e) return false; 190 191 // Do not accept build_vectors that aren't all constants or which have non-~0 192 // elements. We have to be a bit careful here, as the type of the constant 193 // may not be the same as the type of the vector elements due to type 194 // legalization (the elements are promoted to a legal type for the target and 195 // a vector of a type may be legal when the base element type is not). 196 // We only want to check enough bits to cover the vector elements, because 197 // we care if the resultant vector is all ones, not whether the individual 198 // constants are. 199 SDValue NotZero = N->getOperand(i); 200 unsigned EltSize = N->getValueType(0).getScalarSizeInBits(); 201 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(NotZero)) { 202 if (CN->getAPIntValue().countTrailingOnes() < EltSize) 203 return false; 204 } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(NotZero)) { 205 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingOnes() < EltSize) 206 return false; 207 } else 208 return false; 209 210 // Okay, we have at least one ~0 value, check to see if the rest match or are 211 // undefs. Even with the above element type twiddling, this should be OK, as 212 // the same type legalization should have applied to all the elements. 213 for (++i; i != e; ++i) 214 if (N->getOperand(i) != NotZero && !N->getOperand(i).isUndef()) 215 return false; 216 return true; 217 } 218 219 bool ISD::isConstantSplatVectorAllZeros(const SDNode *N, bool BuildVectorOnly) { 220 // Look through a bit convert. 221 while (N->getOpcode() == ISD::BITCAST) 222 N = N->getOperand(0).getNode(); 223 224 if (!BuildVectorOnly && N->getOpcode() == ISD::SPLAT_VECTOR) { 225 APInt SplatVal; 226 return isConstantSplatVector(N, SplatVal) && SplatVal.isNullValue(); 227 } 228 229 if (N->getOpcode() != ISD::BUILD_VECTOR) return false; 230 231 bool IsAllUndef = true; 232 for (const SDValue &Op : N->op_values()) { 233 if (Op.isUndef()) 234 continue; 235 IsAllUndef = false; 236 // Do not accept build_vectors that aren't all constants or which have non-0 237 // elements. We have to be a bit careful here, as the type of the constant 238 // may not be the same as the type of the vector elements due to type 239 // legalization (the elements are promoted to a legal type for the target 240 // and a vector of a type may be legal when the base element type is not). 241 // We only want to check enough bits to cover the vector elements, because 242 // we care if the resultant vector is all zeros, not whether the individual 243 // constants are. 244 unsigned EltSize = N->getValueType(0).getScalarSizeInBits(); 245 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op)) { 246 if (CN->getAPIntValue().countTrailingZeros() < EltSize) 247 return false; 248 } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(Op)) { 249 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingZeros() < EltSize) 250 return false; 251 } else 252 return false; 253 } 254 255 // Do not accept an all-undef vector. 256 if (IsAllUndef) 257 return false; 258 return true; 259 } 260 261 bool ISD::isBuildVectorAllOnes(const SDNode *N) { 262 return isConstantSplatVectorAllOnes(N, /*BuildVectorOnly*/ true); 263 } 264 265 bool ISD::isBuildVectorAllZeros(const SDNode *N) { 266 return isConstantSplatVectorAllZeros(N, /*BuildVectorOnly*/ true); 267 } 268 269 bool ISD::isBuildVectorOfConstantSDNodes(const SDNode *N) { 270 if (N->getOpcode() != ISD::BUILD_VECTOR) 271 return false; 272 273 for (const SDValue &Op : N->op_values()) { 274 if (Op.isUndef()) 275 continue; 276 if (!isa<ConstantSDNode>(Op)) 277 return false; 278 } 279 return true; 280 } 281 282 bool ISD::isBuildVectorOfConstantFPSDNodes(const SDNode *N) { 283 if (N->getOpcode() != ISD::BUILD_VECTOR) 284 return false; 285 286 for (const SDValue &Op : N->op_values()) { 287 if (Op.isUndef()) 288 continue; 289 if (!isa<ConstantFPSDNode>(Op)) 290 return false; 291 } 292 return true; 293 } 294 295 bool ISD::allOperandsUndef(const SDNode *N) { 296 // Return false if the node has no operands. 297 // This is "logically inconsistent" with the definition of "all" but 298 // is probably the desired behavior. 299 if (N->getNumOperands() == 0) 300 return false; 301 return all_of(N->op_values(), [](SDValue Op) { return Op.isUndef(); }); 302 } 303 304 bool ISD::matchUnaryPredicate(SDValue Op, 305 std::function<bool(ConstantSDNode *)> Match, 306 bool AllowUndefs) { 307 // FIXME: Add support for scalar UNDEF cases? 308 if (auto *Cst = dyn_cast<ConstantSDNode>(Op)) 309 return Match(Cst); 310 311 // FIXME: Add support for vector UNDEF cases? 312 if (ISD::BUILD_VECTOR != Op.getOpcode() && 313 ISD::SPLAT_VECTOR != Op.getOpcode()) 314 return false; 315 316 EVT SVT = Op.getValueType().getScalarType(); 317 for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i) { 318 if (AllowUndefs && Op.getOperand(i).isUndef()) { 319 if (!Match(nullptr)) 320 return false; 321 continue; 322 } 323 324 auto *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(i)); 325 if (!Cst || Cst->getValueType(0) != SVT || !Match(Cst)) 326 return false; 327 } 328 return true; 329 } 330 331 bool ISD::matchBinaryPredicate( 332 SDValue LHS, SDValue RHS, 333 std::function<bool(ConstantSDNode *, ConstantSDNode *)> Match, 334 bool AllowUndefs, bool AllowTypeMismatch) { 335 if (!AllowTypeMismatch && LHS.getValueType() != RHS.getValueType()) 336 return false; 337 338 // TODO: Add support for scalar UNDEF cases? 339 if (auto *LHSCst = dyn_cast<ConstantSDNode>(LHS)) 340 if (auto *RHSCst = dyn_cast<ConstantSDNode>(RHS)) 341 return Match(LHSCst, RHSCst); 342 343 // TODO: Add support for vector UNDEF cases? 344 if (ISD::BUILD_VECTOR != LHS.getOpcode() || 345 ISD::BUILD_VECTOR != RHS.getOpcode()) 346 return false; 347 348 EVT SVT = LHS.getValueType().getScalarType(); 349 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) { 350 SDValue LHSOp = LHS.getOperand(i); 351 SDValue RHSOp = RHS.getOperand(i); 352 bool LHSUndef = AllowUndefs && LHSOp.isUndef(); 353 bool RHSUndef = AllowUndefs && RHSOp.isUndef(); 354 auto *LHSCst = dyn_cast<ConstantSDNode>(LHSOp); 355 auto *RHSCst = dyn_cast<ConstantSDNode>(RHSOp); 356 if ((!LHSCst && !LHSUndef) || (!RHSCst && !RHSUndef)) 357 return false; 358 if (!AllowTypeMismatch && (LHSOp.getValueType() != SVT || 359 LHSOp.getValueType() != RHSOp.getValueType())) 360 return false; 361 if (!Match(LHSCst, RHSCst)) 362 return false; 363 } 364 return true; 365 } 366 367 ISD::NodeType ISD::getVecReduceBaseOpcode(unsigned VecReduceOpcode) { 368 switch (VecReduceOpcode) { 369 default: 370 llvm_unreachable("Expected VECREDUCE opcode"); 371 case ISD::VECREDUCE_FADD: 372 case ISD::VECREDUCE_SEQ_FADD: 373 return ISD::FADD; 374 case ISD::VECREDUCE_FMUL: 375 case ISD::VECREDUCE_SEQ_FMUL: 376 return ISD::FMUL; 377 case ISD::VECREDUCE_ADD: 378 return ISD::ADD; 379 case ISD::VECREDUCE_MUL: 380 return ISD::MUL; 381 case ISD::VECREDUCE_AND: 382 return ISD::AND; 383 case ISD::VECREDUCE_OR: 384 return ISD::OR; 385 case ISD::VECREDUCE_XOR: 386 return ISD::XOR; 387 case ISD::VECREDUCE_SMAX: 388 return ISD::SMAX; 389 case ISD::VECREDUCE_SMIN: 390 return ISD::SMIN; 391 case ISD::VECREDUCE_UMAX: 392 return ISD::UMAX; 393 case ISD::VECREDUCE_UMIN: 394 return ISD::UMIN; 395 case ISD::VECREDUCE_FMAX: 396 return ISD::FMAXNUM; 397 case ISD::VECREDUCE_FMIN: 398 return ISD::FMINNUM; 399 } 400 } 401 402 bool ISD::isVPOpcode(unsigned Opcode) { 403 switch (Opcode) { 404 default: 405 return false; 406 #define BEGIN_REGISTER_VP_SDNODE(SDOPC, ...) \ 407 case ISD::SDOPC: \ 408 return true; 409 #include "llvm/IR/VPIntrinsics.def" 410 } 411 } 412 413 /// The operand position of the vector mask. 414 Optional<unsigned> ISD::getVPMaskIdx(unsigned Opcode) { 415 switch (Opcode) { 416 default: 417 return None; 418 #define BEGIN_REGISTER_VP_SDNODE(SDOPC, LEGALPOS, TDNAME, MASKPOS, ...) \ 419 case ISD::SDOPC: \ 420 return MASKPOS; 421 #include "llvm/IR/VPIntrinsics.def" 422 } 423 } 424 425 /// The operand position of the explicit vector length parameter. 426 Optional<unsigned> ISD::getVPExplicitVectorLengthIdx(unsigned Opcode) { 427 switch (Opcode) { 428 default: 429 return None; 430 #define BEGIN_REGISTER_VP_SDNODE(SDOPC, LEGALPOS, TDNAME, MASKPOS, EVLPOS) \ 431 case ISD::SDOPC: \ 432 return EVLPOS; 433 #include "llvm/IR/VPIntrinsics.def" 434 } 435 } 436 437 ISD::NodeType ISD::getExtForLoadExtType(bool IsFP, ISD::LoadExtType ExtType) { 438 switch (ExtType) { 439 case ISD::EXTLOAD: 440 return IsFP ? ISD::FP_EXTEND : ISD::ANY_EXTEND; 441 case ISD::SEXTLOAD: 442 return ISD::SIGN_EXTEND; 443 case ISD::ZEXTLOAD: 444 return ISD::ZERO_EXTEND; 445 default: 446 break; 447 } 448 449 llvm_unreachable("Invalid LoadExtType"); 450 } 451 452 ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) { 453 // To perform this operation, we just need to swap the L and G bits of the 454 // operation. 455 unsigned OldL = (Operation >> 2) & 1; 456 unsigned OldG = (Operation >> 1) & 1; 457 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits 458 (OldL << 1) | // New G bit 459 (OldG << 2)); // New L bit. 460 } 461 462 static ISD::CondCode getSetCCInverseImpl(ISD::CondCode Op, bool isIntegerLike) { 463 unsigned Operation = Op; 464 if (isIntegerLike) 465 Operation ^= 7; // Flip L, G, E bits, but not U. 466 else 467 Operation ^= 15; // Flip all of the condition bits. 468 469 if (Operation > ISD::SETTRUE2) 470 Operation &= ~8; // Don't let N and U bits get set. 471 472 return ISD::CondCode(Operation); 473 } 474 475 ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, EVT Type) { 476 return getSetCCInverseImpl(Op, Type.isInteger()); 477 } 478 479 ISD::CondCode ISD::GlobalISel::getSetCCInverse(ISD::CondCode Op, 480 bool isIntegerLike) { 481 return getSetCCInverseImpl(Op, isIntegerLike); 482 } 483 484 /// For an integer comparison, return 1 if the comparison is a signed operation 485 /// and 2 if the result is an unsigned comparison. Return zero if the operation 486 /// does not depend on the sign of the input (setne and seteq). 487 static int isSignedOp(ISD::CondCode Opcode) { 488 switch (Opcode) { 489 default: llvm_unreachable("Illegal integer setcc operation!"); 490 case ISD::SETEQ: 491 case ISD::SETNE: return 0; 492 case ISD::SETLT: 493 case ISD::SETLE: 494 case ISD::SETGT: 495 case ISD::SETGE: return 1; 496 case ISD::SETULT: 497 case ISD::SETULE: 498 case ISD::SETUGT: 499 case ISD::SETUGE: return 2; 500 } 501 } 502 503 ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2, 504 EVT Type) { 505 bool IsInteger = Type.isInteger(); 506 if (IsInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3) 507 // Cannot fold a signed integer setcc with an unsigned integer setcc. 508 return ISD::SETCC_INVALID; 509 510 unsigned Op = Op1 | Op2; // Combine all of the condition bits. 511 512 // If the N and U bits get set, then the resultant comparison DOES suddenly 513 // care about orderedness, and it is true when ordered. 514 if (Op > ISD::SETTRUE2) 515 Op &= ~16; // Clear the U bit if the N bit is set. 516 517 // Canonicalize illegal integer setcc's. 518 if (IsInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT 519 Op = ISD::SETNE; 520 521 return ISD::CondCode(Op); 522 } 523 524 ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2, 525 EVT Type) { 526 bool IsInteger = Type.isInteger(); 527 if (IsInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3) 528 // Cannot fold a signed setcc with an unsigned setcc. 529 return ISD::SETCC_INVALID; 530 531 // Combine all of the condition bits. 532 ISD::CondCode Result = ISD::CondCode(Op1 & Op2); 533 534 // Canonicalize illegal integer setcc's. 535 if (IsInteger) { 536 switch (Result) { 537 default: break; 538 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT 539 case ISD::SETOEQ: // SETEQ & SETU[LG]E 540 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE 541 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE 542 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE 543 } 544 } 545 546 return Result; 547 } 548 549 //===----------------------------------------------------------------------===// 550 // SDNode Profile Support 551 //===----------------------------------------------------------------------===// 552 553 /// AddNodeIDOpcode - Add the node opcode to the NodeID data. 554 static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) { 555 ID.AddInteger(OpC); 556 } 557 558 /// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them 559 /// solely with their pointer. 560 static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) { 561 ID.AddPointer(VTList.VTs); 562 } 563 564 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data. 565 static void AddNodeIDOperands(FoldingSetNodeID &ID, 566 ArrayRef<SDValue> Ops) { 567 for (auto& Op : Ops) { 568 ID.AddPointer(Op.getNode()); 569 ID.AddInteger(Op.getResNo()); 570 } 571 } 572 573 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data. 574 static void AddNodeIDOperands(FoldingSetNodeID &ID, 575 ArrayRef<SDUse> Ops) { 576 for (auto& Op : Ops) { 577 ID.AddPointer(Op.getNode()); 578 ID.AddInteger(Op.getResNo()); 579 } 580 } 581 582 static void AddNodeIDNode(FoldingSetNodeID &ID, unsigned short OpC, 583 SDVTList VTList, ArrayRef<SDValue> OpList) { 584 AddNodeIDOpcode(ID, OpC); 585 AddNodeIDValueTypes(ID, VTList); 586 AddNodeIDOperands(ID, OpList); 587 } 588 589 /// If this is an SDNode with special info, add this info to the NodeID data. 590 static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) { 591 switch (N->getOpcode()) { 592 case ISD::TargetExternalSymbol: 593 case ISD::ExternalSymbol: 594 case ISD::MCSymbol: 595 llvm_unreachable("Should only be used on nodes with operands"); 596 default: break; // Normal nodes don't need extra info. 597 case ISD::TargetConstant: 598 case ISD::Constant: { 599 const ConstantSDNode *C = cast<ConstantSDNode>(N); 600 ID.AddPointer(C->getConstantIntValue()); 601 ID.AddBoolean(C->isOpaque()); 602 break; 603 } 604 case ISD::TargetConstantFP: 605 case ISD::ConstantFP: 606 ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue()); 607 break; 608 case ISD::TargetGlobalAddress: 609 case ISD::GlobalAddress: 610 case ISD::TargetGlobalTLSAddress: 611 case ISD::GlobalTLSAddress: { 612 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N); 613 ID.AddPointer(GA->getGlobal()); 614 ID.AddInteger(GA->getOffset()); 615 ID.AddInteger(GA->getTargetFlags()); 616 break; 617 } 618 case ISD::BasicBlock: 619 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock()); 620 break; 621 case ISD::Register: 622 ID.AddInteger(cast<RegisterSDNode>(N)->getReg()); 623 break; 624 case ISD::RegisterMask: 625 ID.AddPointer(cast<RegisterMaskSDNode>(N)->getRegMask()); 626 break; 627 case ISD::SRCVALUE: 628 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue()); 629 break; 630 case ISD::FrameIndex: 631 case ISD::TargetFrameIndex: 632 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex()); 633 break; 634 case ISD::LIFETIME_START: 635 case ISD::LIFETIME_END: 636 if (cast<LifetimeSDNode>(N)->hasOffset()) { 637 ID.AddInteger(cast<LifetimeSDNode>(N)->getSize()); 638 ID.AddInteger(cast<LifetimeSDNode>(N)->getOffset()); 639 } 640 break; 641 case ISD::PSEUDO_PROBE: 642 ID.AddInteger(cast<PseudoProbeSDNode>(N)->getGuid()); 643 ID.AddInteger(cast<PseudoProbeSDNode>(N)->getIndex()); 644 ID.AddInteger(cast<PseudoProbeSDNode>(N)->getAttributes()); 645 break; 646 case ISD::JumpTable: 647 case ISD::TargetJumpTable: 648 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex()); 649 ID.AddInteger(cast<JumpTableSDNode>(N)->getTargetFlags()); 650 break; 651 case ISD::ConstantPool: 652 case ISD::TargetConstantPool: { 653 const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N); 654 ID.AddInteger(CP->getAlign().value()); 655 ID.AddInteger(CP->getOffset()); 656 if (CP->isMachineConstantPoolEntry()) 657 CP->getMachineCPVal()->addSelectionDAGCSEId(ID); 658 else 659 ID.AddPointer(CP->getConstVal()); 660 ID.AddInteger(CP->getTargetFlags()); 661 break; 662 } 663 case ISD::TargetIndex: { 664 const TargetIndexSDNode *TI = cast<TargetIndexSDNode>(N); 665 ID.AddInteger(TI->getIndex()); 666 ID.AddInteger(TI->getOffset()); 667 ID.AddInteger(TI->getTargetFlags()); 668 break; 669 } 670 case ISD::LOAD: { 671 const LoadSDNode *LD = cast<LoadSDNode>(N); 672 ID.AddInteger(LD->getMemoryVT().getRawBits()); 673 ID.AddInteger(LD->getRawSubclassData()); 674 ID.AddInteger(LD->getPointerInfo().getAddrSpace()); 675 break; 676 } 677 case ISD::STORE: { 678 const StoreSDNode *ST = cast<StoreSDNode>(N); 679 ID.AddInteger(ST->getMemoryVT().getRawBits()); 680 ID.AddInteger(ST->getRawSubclassData()); 681 ID.AddInteger(ST->getPointerInfo().getAddrSpace()); 682 break; 683 } 684 case ISD::MLOAD: { 685 const MaskedLoadSDNode *MLD = cast<MaskedLoadSDNode>(N); 686 ID.AddInteger(MLD->getMemoryVT().getRawBits()); 687 ID.AddInteger(MLD->getRawSubclassData()); 688 ID.AddInteger(MLD->getPointerInfo().getAddrSpace()); 689 break; 690 } 691 case ISD::MSTORE: { 692 const MaskedStoreSDNode *MST = cast<MaskedStoreSDNode>(N); 693 ID.AddInteger(MST->getMemoryVT().getRawBits()); 694 ID.AddInteger(MST->getRawSubclassData()); 695 ID.AddInteger(MST->getPointerInfo().getAddrSpace()); 696 break; 697 } 698 case ISD::MGATHER: { 699 const MaskedGatherSDNode *MG = cast<MaskedGatherSDNode>(N); 700 ID.AddInteger(MG->getMemoryVT().getRawBits()); 701 ID.AddInteger(MG->getRawSubclassData()); 702 ID.AddInteger(MG->getPointerInfo().getAddrSpace()); 703 break; 704 } 705 case ISD::MSCATTER: { 706 const MaskedScatterSDNode *MS = cast<MaskedScatterSDNode>(N); 707 ID.AddInteger(MS->getMemoryVT().getRawBits()); 708 ID.AddInteger(MS->getRawSubclassData()); 709 ID.AddInteger(MS->getPointerInfo().getAddrSpace()); 710 break; 711 } 712 case ISD::ATOMIC_CMP_SWAP: 713 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: 714 case ISD::ATOMIC_SWAP: 715 case ISD::ATOMIC_LOAD_ADD: 716 case ISD::ATOMIC_LOAD_SUB: 717 case ISD::ATOMIC_LOAD_AND: 718 case ISD::ATOMIC_LOAD_CLR: 719 case ISD::ATOMIC_LOAD_OR: 720 case ISD::ATOMIC_LOAD_XOR: 721 case ISD::ATOMIC_LOAD_NAND: 722 case ISD::ATOMIC_LOAD_MIN: 723 case ISD::ATOMIC_LOAD_MAX: 724 case ISD::ATOMIC_LOAD_UMIN: 725 case ISD::ATOMIC_LOAD_UMAX: 726 case ISD::ATOMIC_LOAD: 727 case ISD::ATOMIC_STORE: { 728 const AtomicSDNode *AT = cast<AtomicSDNode>(N); 729 ID.AddInteger(AT->getMemoryVT().getRawBits()); 730 ID.AddInteger(AT->getRawSubclassData()); 731 ID.AddInteger(AT->getPointerInfo().getAddrSpace()); 732 break; 733 } 734 case ISD::PREFETCH: { 735 const MemSDNode *PF = cast<MemSDNode>(N); 736 ID.AddInteger(PF->getPointerInfo().getAddrSpace()); 737 break; 738 } 739 case ISD::VECTOR_SHUFFLE: { 740 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); 741 for (unsigned i = 0, e = N->getValueType(0).getVectorNumElements(); 742 i != e; ++i) 743 ID.AddInteger(SVN->getMaskElt(i)); 744 break; 745 } 746 case ISD::TargetBlockAddress: 747 case ISD::BlockAddress: { 748 const BlockAddressSDNode *BA = cast<BlockAddressSDNode>(N); 749 ID.AddPointer(BA->getBlockAddress()); 750 ID.AddInteger(BA->getOffset()); 751 ID.AddInteger(BA->getTargetFlags()); 752 break; 753 } 754 } // end switch (N->getOpcode()) 755 756 // Target specific memory nodes could also have address spaces to check. 757 if (N->isTargetMemoryOpcode()) 758 ID.AddInteger(cast<MemSDNode>(N)->getPointerInfo().getAddrSpace()); 759 } 760 761 /// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID 762 /// data. 763 static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) { 764 AddNodeIDOpcode(ID, N->getOpcode()); 765 // Add the return value info. 766 AddNodeIDValueTypes(ID, N->getVTList()); 767 // Add the operand info. 768 AddNodeIDOperands(ID, N->ops()); 769 770 // Handle SDNode leafs with special info. 771 AddNodeIDCustom(ID, N); 772 } 773 774 //===----------------------------------------------------------------------===// 775 // SelectionDAG Class 776 //===----------------------------------------------------------------------===// 777 778 /// doNotCSE - Return true if CSE should not be performed for this node. 779 static bool doNotCSE(SDNode *N) { 780 if (N->getValueType(0) == MVT::Glue) 781 return true; // Never CSE anything that produces a flag. 782 783 switch (N->getOpcode()) { 784 default: break; 785 case ISD::HANDLENODE: 786 case ISD::EH_LABEL: 787 return true; // Never CSE these nodes. 788 } 789 790 // Check that remaining values produced are not flags. 791 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i) 792 if (N->getValueType(i) == MVT::Glue) 793 return true; // Never CSE anything that produces a flag. 794 795 return false; 796 } 797 798 /// RemoveDeadNodes - This method deletes all unreachable nodes in the 799 /// SelectionDAG. 800 void SelectionDAG::RemoveDeadNodes() { 801 // Create a dummy node (which is not added to allnodes), that adds a reference 802 // to the root node, preventing it from being deleted. 803 HandleSDNode Dummy(getRoot()); 804 805 SmallVector<SDNode*, 128> DeadNodes; 806 807 // Add all obviously-dead nodes to the DeadNodes worklist. 808 for (SDNode &Node : allnodes()) 809 if (Node.use_empty()) 810 DeadNodes.push_back(&Node); 811 812 RemoveDeadNodes(DeadNodes); 813 814 // If the root changed (e.g. it was a dead load, update the root). 815 setRoot(Dummy.getValue()); 816 } 817 818 /// RemoveDeadNodes - This method deletes the unreachable nodes in the 819 /// given list, and any nodes that become unreachable as a result. 820 void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes) { 821 822 // Process the worklist, deleting the nodes and adding their uses to the 823 // worklist. 824 while (!DeadNodes.empty()) { 825 SDNode *N = DeadNodes.pop_back_val(); 826 // Skip to next node if we've already managed to delete the node. This could 827 // happen if replacing a node causes a node previously added to the node to 828 // be deleted. 829 if (N->getOpcode() == ISD::DELETED_NODE) 830 continue; 831 832 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next) 833 DUL->NodeDeleted(N, nullptr); 834 835 // Take the node out of the appropriate CSE map. 836 RemoveNodeFromCSEMaps(N); 837 838 // Next, brutally remove the operand list. This is safe to do, as there are 839 // no cycles in the graph. 840 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) { 841 SDUse &Use = *I++; 842 SDNode *Operand = Use.getNode(); 843 Use.set(SDValue()); 844 845 // Now that we removed this operand, see if there are no uses of it left. 846 if (Operand->use_empty()) 847 DeadNodes.push_back(Operand); 848 } 849 850 DeallocateNode(N); 851 } 852 } 853 854 void SelectionDAG::RemoveDeadNode(SDNode *N){ 855 SmallVector<SDNode*, 16> DeadNodes(1, N); 856 857 // Create a dummy node that adds a reference to the root node, preventing 858 // it from being deleted. (This matters if the root is an operand of the 859 // dead node.) 860 HandleSDNode Dummy(getRoot()); 861 862 RemoveDeadNodes(DeadNodes); 863 } 864 865 void SelectionDAG::DeleteNode(SDNode *N) { 866 // First take this out of the appropriate CSE map. 867 RemoveNodeFromCSEMaps(N); 868 869 // Finally, remove uses due to operands of this node, remove from the 870 // AllNodes list, and delete the node. 871 DeleteNodeNotInCSEMaps(N); 872 } 873 874 void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) { 875 assert(N->getIterator() != AllNodes.begin() && 876 "Cannot delete the entry node!"); 877 assert(N->use_empty() && "Cannot delete a node that is not dead!"); 878 879 // Drop all of the operands and decrement used node's use counts. 880 N->DropOperands(); 881 882 DeallocateNode(N); 883 } 884 885 void SDDbgInfo::add(SDDbgValue *V, bool isParameter) { 886 assert(!(V->isVariadic() && isParameter)); 887 if (isParameter) 888 ByvalParmDbgValues.push_back(V); 889 else 890 DbgValues.push_back(V); 891 for (const SDNode *Node : V->getSDNodes()) 892 if (Node) 893 DbgValMap[Node].push_back(V); 894 } 895 896 void SDDbgInfo::erase(const SDNode *Node) { 897 DbgValMapType::iterator I = DbgValMap.find(Node); 898 if (I == DbgValMap.end()) 899 return; 900 for (auto &Val: I->second) 901 Val->setIsInvalidated(); 902 DbgValMap.erase(I); 903 } 904 905 void SelectionDAG::DeallocateNode(SDNode *N) { 906 // If we have operands, deallocate them. 907 removeOperands(N); 908 909 NodeAllocator.Deallocate(AllNodes.remove(N)); 910 911 // Set the opcode to DELETED_NODE to help catch bugs when node 912 // memory is reallocated. 913 // FIXME: There are places in SDag that have grown a dependency on the opcode 914 // value in the released node. 915 __asan_unpoison_memory_region(&N->NodeType, sizeof(N->NodeType)); 916 N->NodeType = ISD::DELETED_NODE; 917 918 // If any of the SDDbgValue nodes refer to this SDNode, invalidate 919 // them and forget about that node. 920 DbgInfo->erase(N); 921 } 922 923 #ifndef NDEBUG 924 /// VerifySDNode - Sanity check the given SDNode. Aborts if it is invalid. 925 static void VerifySDNode(SDNode *N) { 926 switch (N->getOpcode()) { 927 default: 928 break; 929 case ISD::BUILD_PAIR: { 930 EVT VT = N->getValueType(0); 931 assert(N->getNumValues() == 1 && "Too many results!"); 932 assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) && 933 "Wrong return type!"); 934 assert(N->getNumOperands() == 2 && "Wrong number of operands!"); 935 assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() && 936 "Mismatched operand types!"); 937 assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() && 938 "Wrong operand type!"); 939 assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() && 940 "Wrong return type size"); 941 break; 942 } 943 case ISD::BUILD_VECTOR: { 944 assert(N->getNumValues() == 1 && "Too many results!"); 945 assert(N->getValueType(0).isVector() && "Wrong return type!"); 946 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() && 947 "Wrong number of operands!"); 948 EVT EltVT = N->getValueType(0).getVectorElementType(); 949 for (const SDUse &Op : N->ops()) { 950 assert((Op.getValueType() == EltVT || 951 (EltVT.isInteger() && Op.getValueType().isInteger() && 952 EltVT.bitsLE(Op.getValueType()))) && 953 "Wrong operand type!"); 954 assert(Op.getValueType() == N->getOperand(0).getValueType() && 955 "Operands must all have the same type"); 956 } 957 break; 958 } 959 } 960 } 961 #endif // NDEBUG 962 963 /// Insert a newly allocated node into the DAG. 964 /// 965 /// Handles insertion into the all nodes list and CSE map, as well as 966 /// verification and other common operations when a new node is allocated. 967 void SelectionDAG::InsertNode(SDNode *N) { 968 AllNodes.push_back(N); 969 #ifndef NDEBUG 970 N->PersistentId = NextPersistentId++; 971 VerifySDNode(N); 972 #endif 973 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next) 974 DUL->NodeInserted(N); 975 } 976 977 /// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that 978 /// correspond to it. This is useful when we're about to delete or repurpose 979 /// the node. We don't want future request for structurally identical nodes 980 /// to return N anymore. 981 bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) { 982 bool Erased = false; 983 switch (N->getOpcode()) { 984 case ISD::HANDLENODE: return false; // noop. 985 case ISD::CONDCODE: 986 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] && 987 "Cond code doesn't exist!"); 988 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != nullptr; 989 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = nullptr; 990 break; 991 case ISD::ExternalSymbol: 992 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol()); 993 break; 994 case ISD::TargetExternalSymbol: { 995 ExternalSymbolSDNode *ESN = cast<ExternalSymbolSDNode>(N); 996 Erased = TargetExternalSymbols.erase(std::pair<std::string, unsigned>( 997 ESN->getSymbol(), ESN->getTargetFlags())); 998 break; 999 } 1000 case ISD::MCSymbol: { 1001 auto *MCSN = cast<MCSymbolSDNode>(N); 1002 Erased = MCSymbols.erase(MCSN->getMCSymbol()); 1003 break; 1004 } 1005 case ISD::VALUETYPE: { 1006 EVT VT = cast<VTSDNode>(N)->getVT(); 1007 if (VT.isExtended()) { 1008 Erased = ExtendedValueTypeNodes.erase(VT); 1009 } else { 1010 Erased = ValueTypeNodes[VT.getSimpleVT().SimpleTy] != nullptr; 1011 ValueTypeNodes[VT.getSimpleVT().SimpleTy] = nullptr; 1012 } 1013 break; 1014 } 1015 default: 1016 // Remove it from the CSE Map. 1017 assert(N->getOpcode() != ISD::DELETED_NODE && "DELETED_NODE in CSEMap!"); 1018 assert(N->getOpcode() != ISD::EntryToken && "EntryToken in CSEMap!"); 1019 Erased = CSEMap.RemoveNode(N); 1020 break; 1021 } 1022 #ifndef NDEBUG 1023 // Verify that the node was actually in one of the CSE maps, unless it has a 1024 // flag result (which cannot be CSE'd) or is one of the special cases that are 1025 // not subject to CSE. 1026 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Glue && 1027 !N->isMachineOpcode() && !doNotCSE(N)) { 1028 N->dump(this); 1029 dbgs() << "\n"; 1030 llvm_unreachable("Node is not in map!"); 1031 } 1032 #endif 1033 return Erased; 1034 } 1035 1036 /// AddModifiedNodeToCSEMaps - The specified node has been removed from the CSE 1037 /// maps and modified in place. Add it back to the CSE maps, unless an identical 1038 /// node already exists, in which case transfer all its users to the existing 1039 /// node. This transfer can potentially trigger recursive merging. 1040 void 1041 SelectionDAG::AddModifiedNodeToCSEMaps(SDNode *N) { 1042 // For node types that aren't CSE'd, just act as if no identical node 1043 // already exists. 1044 if (!doNotCSE(N)) { 1045 SDNode *Existing = CSEMap.GetOrInsertNode(N); 1046 if (Existing != N) { 1047 // If there was already an existing matching node, use ReplaceAllUsesWith 1048 // to replace the dead one with the existing one. This can cause 1049 // recursive merging of other unrelated nodes down the line. 1050 ReplaceAllUsesWith(N, Existing); 1051 1052 // N is now dead. Inform the listeners and delete it. 1053 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next) 1054 DUL->NodeDeleted(N, Existing); 1055 DeleteNodeNotInCSEMaps(N); 1056 return; 1057 } 1058 } 1059 1060 // If the node doesn't already exist, we updated it. Inform listeners. 1061 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next) 1062 DUL->NodeUpdated(N); 1063 } 1064 1065 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands 1066 /// were replaced with those specified. If this node is never memoized, 1067 /// return null, otherwise return a pointer to the slot it would take. If a 1068 /// node already exists with these operands, the slot will be non-null. 1069 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op, 1070 void *&InsertPos) { 1071 if (doNotCSE(N)) 1072 return nullptr; 1073 1074 SDValue Ops[] = { Op }; 1075 FoldingSetNodeID ID; 1076 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops); 1077 AddNodeIDCustom(ID, N); 1078 SDNode *Node = FindNodeOrInsertPos(ID, SDLoc(N), InsertPos); 1079 if (Node) 1080 Node->intersectFlagsWith(N->getFlags()); 1081 return Node; 1082 } 1083 1084 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands 1085 /// were replaced with those specified. If this node is never memoized, 1086 /// return null, otherwise return a pointer to the slot it would take. If a 1087 /// node already exists with these operands, the slot will be non-null. 1088 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, 1089 SDValue Op1, SDValue Op2, 1090 void *&InsertPos) { 1091 if (doNotCSE(N)) 1092 return nullptr; 1093 1094 SDValue Ops[] = { Op1, Op2 }; 1095 FoldingSetNodeID ID; 1096 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops); 1097 AddNodeIDCustom(ID, N); 1098 SDNode *Node = FindNodeOrInsertPos(ID, SDLoc(N), InsertPos); 1099 if (Node) 1100 Node->intersectFlagsWith(N->getFlags()); 1101 return Node; 1102 } 1103 1104 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands 1105 /// were replaced with those specified. If this node is never memoized, 1106 /// return null, otherwise return a pointer to the slot it would take. If a 1107 /// node already exists with these operands, the slot will be non-null. 1108 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, ArrayRef<SDValue> Ops, 1109 void *&InsertPos) { 1110 if (doNotCSE(N)) 1111 return nullptr; 1112 1113 FoldingSetNodeID ID; 1114 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops); 1115 AddNodeIDCustom(ID, N); 1116 SDNode *Node = FindNodeOrInsertPos(ID, SDLoc(N), InsertPos); 1117 if (Node) 1118 Node->intersectFlagsWith(N->getFlags()); 1119 return Node; 1120 } 1121 1122 Align SelectionDAG::getEVTAlign(EVT VT) const { 1123 Type *Ty = VT == MVT::iPTR ? 1124 PointerType::get(Type::getInt8Ty(*getContext()), 0) : 1125 VT.getTypeForEVT(*getContext()); 1126 1127 return getDataLayout().getABITypeAlign(Ty); 1128 } 1129 1130 // EntryNode could meaningfully have debug info if we can find it... 1131 SelectionDAG::SelectionDAG(const TargetMachine &tm, CodeGenOpt::Level OL) 1132 : TM(tm), OptLevel(OL), 1133 EntryNode(ISD::EntryToken, 0, DebugLoc(), getVTList(MVT::Other)), 1134 Root(getEntryNode()) { 1135 InsertNode(&EntryNode); 1136 DbgInfo = new SDDbgInfo(); 1137 } 1138 1139 void SelectionDAG::init(MachineFunction &NewMF, 1140 OptimizationRemarkEmitter &NewORE, 1141 Pass *PassPtr, const TargetLibraryInfo *LibraryInfo, 1142 LegacyDivergenceAnalysis * Divergence, 1143 ProfileSummaryInfo *PSIin, 1144 BlockFrequencyInfo *BFIin) { 1145 MF = &NewMF; 1146 SDAGISelPass = PassPtr; 1147 ORE = &NewORE; 1148 TLI = getSubtarget().getTargetLowering(); 1149 TSI = getSubtarget().getSelectionDAGInfo(); 1150 LibInfo = LibraryInfo; 1151 Context = &MF->getFunction().getContext(); 1152 DA = Divergence; 1153 PSI = PSIin; 1154 BFI = BFIin; 1155 } 1156 1157 SelectionDAG::~SelectionDAG() { 1158 assert(!UpdateListeners && "Dangling registered DAGUpdateListeners"); 1159 allnodes_clear(); 1160 OperandRecycler.clear(OperandAllocator); 1161 delete DbgInfo; 1162 } 1163 1164 bool SelectionDAG::shouldOptForSize() const { 1165 return MF->getFunction().hasOptSize() || 1166 llvm::shouldOptimizeForSize(FLI->MBB->getBasicBlock(), PSI, BFI); 1167 } 1168 1169 void SelectionDAG::allnodes_clear() { 1170 assert(&*AllNodes.begin() == &EntryNode); 1171 AllNodes.remove(AllNodes.begin()); 1172 while (!AllNodes.empty()) 1173 DeallocateNode(&AllNodes.front()); 1174 #ifndef NDEBUG 1175 NextPersistentId = 0; 1176 #endif 1177 } 1178 1179 SDNode *SelectionDAG::FindNodeOrInsertPos(const FoldingSetNodeID &ID, 1180 void *&InsertPos) { 1181 SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos); 1182 if (N) { 1183 switch (N->getOpcode()) { 1184 default: break; 1185 case ISD::Constant: 1186 case ISD::ConstantFP: 1187 llvm_unreachable("Querying for Constant and ConstantFP nodes requires " 1188 "debug location. Use another overload."); 1189 } 1190 } 1191 return N; 1192 } 1193 1194 SDNode *SelectionDAG::FindNodeOrInsertPos(const FoldingSetNodeID &ID, 1195 const SDLoc &DL, void *&InsertPos) { 1196 SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos); 1197 if (N) { 1198 switch (N->getOpcode()) { 1199 case ISD::Constant: 1200 case ISD::ConstantFP: 1201 // Erase debug location from the node if the node is used at several 1202 // different places. Do not propagate one location to all uses as it 1203 // will cause a worse single stepping debugging experience. 1204 if (N->getDebugLoc() != DL.getDebugLoc()) 1205 N->setDebugLoc(DebugLoc()); 1206 break; 1207 default: 1208 // When the node's point of use is located earlier in the instruction 1209 // sequence than its prior point of use, update its debug info to the 1210 // earlier location. 1211 if (DL.getIROrder() && DL.getIROrder() < N->getIROrder()) 1212 N->setDebugLoc(DL.getDebugLoc()); 1213 break; 1214 } 1215 } 1216 return N; 1217 } 1218 1219 void SelectionDAG::clear() { 1220 allnodes_clear(); 1221 OperandRecycler.clear(OperandAllocator); 1222 OperandAllocator.Reset(); 1223 CSEMap.clear(); 1224 1225 ExtendedValueTypeNodes.clear(); 1226 ExternalSymbols.clear(); 1227 TargetExternalSymbols.clear(); 1228 MCSymbols.clear(); 1229 SDCallSiteDbgInfo.clear(); 1230 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(), 1231 static_cast<CondCodeSDNode*>(nullptr)); 1232 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(), 1233 static_cast<SDNode*>(nullptr)); 1234 1235 EntryNode.UseList = nullptr; 1236 InsertNode(&EntryNode); 1237 Root = getEntryNode(); 1238 DbgInfo->clear(); 1239 } 1240 1241 SDValue SelectionDAG::getFPExtendOrRound(SDValue Op, const SDLoc &DL, EVT VT) { 1242 return VT.bitsGT(Op.getValueType()) 1243 ? getNode(ISD::FP_EXTEND, DL, VT, Op) 1244 : getNode(ISD::FP_ROUND, DL, VT, Op, getIntPtrConstant(0, DL)); 1245 } 1246 1247 std::pair<SDValue, SDValue> 1248 SelectionDAG::getStrictFPExtendOrRound(SDValue Op, SDValue Chain, 1249 const SDLoc &DL, EVT VT) { 1250 assert(!VT.bitsEq(Op.getValueType()) && 1251 "Strict no-op FP extend/round not allowed."); 1252 SDValue Res = 1253 VT.bitsGT(Op.getValueType()) 1254 ? getNode(ISD::STRICT_FP_EXTEND, DL, {VT, MVT::Other}, {Chain, Op}) 1255 : getNode(ISD::STRICT_FP_ROUND, DL, {VT, MVT::Other}, 1256 {Chain, Op, getIntPtrConstant(0, DL)}); 1257 1258 return std::pair<SDValue, SDValue>(Res, SDValue(Res.getNode(), 1)); 1259 } 1260 1261 SDValue SelectionDAG::getAnyExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) { 1262 return VT.bitsGT(Op.getValueType()) ? 1263 getNode(ISD::ANY_EXTEND, DL, VT, Op) : 1264 getNode(ISD::TRUNCATE, DL, VT, Op); 1265 } 1266 1267 SDValue SelectionDAG::getSExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) { 1268 return VT.bitsGT(Op.getValueType()) ? 1269 getNode(ISD::SIGN_EXTEND, DL, VT, Op) : 1270 getNode(ISD::TRUNCATE, DL, VT, Op); 1271 } 1272 1273 SDValue SelectionDAG::getZExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) { 1274 return VT.bitsGT(Op.getValueType()) ? 1275 getNode(ISD::ZERO_EXTEND, DL, VT, Op) : 1276 getNode(ISD::TRUNCATE, DL, VT, Op); 1277 } 1278 1279 SDValue SelectionDAG::getBoolExtOrTrunc(SDValue Op, const SDLoc &SL, EVT VT, 1280 EVT OpVT) { 1281 if (VT.bitsLE(Op.getValueType())) 1282 return getNode(ISD::TRUNCATE, SL, VT, Op); 1283 1284 TargetLowering::BooleanContent BType = TLI->getBooleanContents(OpVT); 1285 return getNode(TLI->getExtendForContent(BType), SL, VT, Op); 1286 } 1287 1288 SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, const SDLoc &DL, EVT VT) { 1289 EVT OpVT = Op.getValueType(); 1290 assert(VT.isInteger() && OpVT.isInteger() && 1291 "Cannot getZeroExtendInReg FP types"); 1292 assert(VT.isVector() == OpVT.isVector() && 1293 "getZeroExtendInReg type should be vector iff the operand " 1294 "type is vector!"); 1295 assert((!VT.isVector() || 1296 VT.getVectorElementCount() == OpVT.getVectorElementCount()) && 1297 "Vector element counts must match in getZeroExtendInReg"); 1298 assert(VT.bitsLE(OpVT) && "Not extending!"); 1299 if (OpVT == VT) 1300 return Op; 1301 APInt Imm = APInt::getLowBitsSet(OpVT.getScalarSizeInBits(), 1302 VT.getScalarSizeInBits()); 1303 return getNode(ISD::AND, DL, OpVT, Op, getConstant(Imm, DL, OpVT)); 1304 } 1305 1306 SDValue SelectionDAG::getPtrExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) { 1307 // Only unsigned pointer semantics are supported right now. In the future this 1308 // might delegate to TLI to check pointer signedness. 1309 return getZExtOrTrunc(Op, DL, VT); 1310 } 1311 1312 SDValue SelectionDAG::getPtrExtendInReg(SDValue Op, const SDLoc &DL, EVT VT) { 1313 // Only unsigned pointer semantics are supported right now. In the future this 1314 // might delegate to TLI to check pointer signedness. 1315 return getZeroExtendInReg(Op, DL, VT); 1316 } 1317 1318 /// getNOT - Create a bitwise NOT operation as (XOR Val, -1). 1319 SDValue SelectionDAG::getNOT(const SDLoc &DL, SDValue Val, EVT VT) { 1320 EVT EltVT = VT.getScalarType(); 1321 SDValue NegOne = 1322 getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), DL, VT); 1323 return getNode(ISD::XOR, DL, VT, Val, NegOne); 1324 } 1325 1326 SDValue SelectionDAG::getLogicalNOT(const SDLoc &DL, SDValue Val, EVT VT) { 1327 SDValue TrueValue = getBoolConstant(true, DL, VT, VT); 1328 return getNode(ISD::XOR, DL, VT, Val, TrueValue); 1329 } 1330 1331 SDValue SelectionDAG::getBoolConstant(bool V, const SDLoc &DL, EVT VT, 1332 EVT OpVT) { 1333 if (!V) 1334 return getConstant(0, DL, VT); 1335 1336 switch (TLI->getBooleanContents(OpVT)) { 1337 case TargetLowering::ZeroOrOneBooleanContent: 1338 case TargetLowering::UndefinedBooleanContent: 1339 return getConstant(1, DL, VT); 1340 case TargetLowering::ZeroOrNegativeOneBooleanContent: 1341 return getAllOnesConstant(DL, VT); 1342 } 1343 llvm_unreachable("Unexpected boolean content enum!"); 1344 } 1345 1346 SDValue SelectionDAG::getConstant(uint64_t Val, const SDLoc &DL, EVT VT, 1347 bool isT, bool isO) { 1348 EVT EltVT = VT.getScalarType(); 1349 assert((EltVT.getSizeInBits() >= 64 || 1350 (uint64_t)((int64_t)Val >> EltVT.getSizeInBits()) + 1 < 2) && 1351 "getConstant with a uint64_t value that doesn't fit in the type!"); 1352 return getConstant(APInt(EltVT.getSizeInBits(), Val), DL, VT, isT, isO); 1353 } 1354 1355 SDValue SelectionDAG::getConstant(const APInt &Val, const SDLoc &DL, EVT VT, 1356 bool isT, bool isO) { 1357 return getConstant(*ConstantInt::get(*Context, Val), DL, VT, isT, isO); 1358 } 1359 1360 SDValue SelectionDAG::getConstant(const ConstantInt &Val, const SDLoc &DL, 1361 EVT VT, bool isT, bool isO) { 1362 assert(VT.isInteger() && "Cannot create FP integer constant!"); 1363 1364 EVT EltVT = VT.getScalarType(); 1365 const ConstantInt *Elt = &Val; 1366 1367 // In some cases the vector type is legal but the element type is illegal and 1368 // needs to be promoted, for example v8i8 on ARM. In this case, promote the 1369 // inserted value (the type does not need to match the vector element type). 1370 // Any extra bits introduced will be truncated away. 1371 if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) == 1372 TargetLowering::TypePromoteInteger) { 1373 EltVT = TLI->getTypeToTransformTo(*getContext(), EltVT); 1374 APInt NewVal = Elt->getValue().zextOrTrunc(EltVT.getSizeInBits()); 1375 Elt = ConstantInt::get(*getContext(), NewVal); 1376 } 1377 // In other cases the element type is illegal and needs to be expanded, for 1378 // example v2i64 on MIPS32. In this case, find the nearest legal type, split 1379 // the value into n parts and use a vector type with n-times the elements. 1380 // Then bitcast to the type requested. 1381 // Legalizing constants too early makes the DAGCombiner's job harder so we 1382 // only legalize if the DAG tells us we must produce legal types. 1383 else if (NewNodesMustHaveLegalTypes && VT.isVector() && 1384 TLI->getTypeAction(*getContext(), EltVT) == 1385 TargetLowering::TypeExpandInteger) { 1386 const APInt &NewVal = Elt->getValue(); 1387 EVT ViaEltVT = TLI->getTypeToTransformTo(*getContext(), EltVT); 1388 unsigned ViaEltSizeInBits = ViaEltVT.getSizeInBits(); 1389 1390 // For scalable vectors, try to use a SPLAT_VECTOR_PARTS node. 1391 if (VT.isScalableVector()) { 1392 assert(EltVT.getSizeInBits() % ViaEltSizeInBits == 0 && 1393 "Can only handle an even split!"); 1394 unsigned Parts = EltVT.getSizeInBits() / ViaEltSizeInBits; 1395 1396 SmallVector<SDValue, 2> ScalarParts; 1397 for (unsigned i = 0; i != Parts; ++i) 1398 ScalarParts.push_back(getConstant( 1399 NewVal.lshr(i * ViaEltSizeInBits).trunc(ViaEltSizeInBits), DL, 1400 ViaEltVT, isT, isO)); 1401 1402 return getNode(ISD::SPLAT_VECTOR_PARTS, DL, VT, ScalarParts); 1403 } 1404 1405 unsigned ViaVecNumElts = VT.getSizeInBits() / ViaEltSizeInBits; 1406 EVT ViaVecVT = EVT::getVectorVT(*getContext(), ViaEltVT, ViaVecNumElts); 1407 1408 // Check the temporary vector is the correct size. If this fails then 1409 // getTypeToTransformTo() probably returned a type whose size (in bits) 1410 // isn't a power-of-2 factor of the requested type size. 1411 assert(ViaVecVT.getSizeInBits() == VT.getSizeInBits()); 1412 1413 SmallVector<SDValue, 2> EltParts; 1414 for (unsigned i = 0; i < ViaVecNumElts / VT.getVectorNumElements(); ++i) { 1415 EltParts.push_back(getConstant( 1416 NewVal.lshr(i * ViaEltSizeInBits).zextOrTrunc(ViaEltSizeInBits), DL, 1417 ViaEltVT, isT, isO)); 1418 } 1419 1420 // EltParts is currently in little endian order. If we actually want 1421 // big-endian order then reverse it now. 1422 if (getDataLayout().isBigEndian()) 1423 std::reverse(EltParts.begin(), EltParts.end()); 1424 1425 // The elements must be reversed when the element order is different 1426 // to the endianness of the elements (because the BITCAST is itself a 1427 // vector shuffle in this situation). However, we do not need any code to 1428 // perform this reversal because getConstant() is producing a vector 1429 // splat. 1430 // This situation occurs in MIPS MSA. 1431 1432 SmallVector<SDValue, 8> Ops; 1433 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) 1434 llvm::append_range(Ops, EltParts); 1435 1436 SDValue V = 1437 getNode(ISD::BITCAST, DL, VT, getBuildVector(ViaVecVT, DL, Ops)); 1438 return V; 1439 } 1440 1441 assert(Elt->getBitWidth() == EltVT.getSizeInBits() && 1442 "APInt size does not match type size!"); 1443 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant; 1444 FoldingSetNodeID ID; 1445 AddNodeIDNode(ID, Opc, getVTList(EltVT), None); 1446 ID.AddPointer(Elt); 1447 ID.AddBoolean(isO); 1448 void *IP = nullptr; 1449 SDNode *N = nullptr; 1450 if ((N = FindNodeOrInsertPos(ID, DL, IP))) 1451 if (!VT.isVector()) 1452 return SDValue(N, 0); 1453 1454 if (!N) { 1455 N = newSDNode<ConstantSDNode>(isT, isO, Elt, EltVT); 1456 CSEMap.InsertNode(N, IP); 1457 InsertNode(N); 1458 NewSDValueDbgMsg(SDValue(N, 0), "Creating constant: ", this); 1459 } 1460 1461 SDValue Result(N, 0); 1462 if (VT.isScalableVector()) 1463 Result = getSplatVector(VT, DL, Result); 1464 else if (VT.isVector()) 1465 Result = getSplatBuildVector(VT, DL, Result); 1466 1467 return Result; 1468 } 1469 1470 SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, const SDLoc &DL, 1471 bool isTarget) { 1472 return getConstant(Val, DL, TLI->getPointerTy(getDataLayout()), isTarget); 1473 } 1474 1475 SDValue SelectionDAG::getShiftAmountConstant(uint64_t Val, EVT VT, 1476 const SDLoc &DL, bool LegalTypes) { 1477 assert(VT.isInteger() && "Shift amount is not an integer type!"); 1478 EVT ShiftVT = TLI->getShiftAmountTy(VT, getDataLayout(), LegalTypes); 1479 return getConstant(Val, DL, ShiftVT); 1480 } 1481 1482 SDValue SelectionDAG::getVectorIdxConstant(uint64_t Val, const SDLoc &DL, 1483 bool isTarget) { 1484 return getConstant(Val, DL, TLI->getVectorIdxTy(getDataLayout()), isTarget); 1485 } 1486 1487 SDValue SelectionDAG::getConstantFP(const APFloat &V, const SDLoc &DL, EVT VT, 1488 bool isTarget) { 1489 return getConstantFP(*ConstantFP::get(*getContext(), V), DL, VT, isTarget); 1490 } 1491 1492 SDValue SelectionDAG::getConstantFP(const ConstantFP &V, const SDLoc &DL, 1493 EVT VT, bool isTarget) { 1494 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!"); 1495 1496 EVT EltVT = VT.getScalarType(); 1497 1498 // Do the map lookup using the actual bit pattern for the floating point 1499 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and 1500 // we don't have issues with SNANs. 1501 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP; 1502 FoldingSetNodeID ID; 1503 AddNodeIDNode(ID, Opc, getVTList(EltVT), None); 1504 ID.AddPointer(&V); 1505 void *IP = nullptr; 1506 SDNode *N = nullptr; 1507 if ((N = FindNodeOrInsertPos(ID, DL, IP))) 1508 if (!VT.isVector()) 1509 return SDValue(N, 0); 1510 1511 if (!N) { 1512 N = newSDNode<ConstantFPSDNode>(isTarget, &V, EltVT); 1513 CSEMap.InsertNode(N, IP); 1514 InsertNode(N); 1515 } 1516 1517 SDValue Result(N, 0); 1518 if (VT.isScalableVector()) 1519 Result = getSplatVector(VT, DL, Result); 1520 else if (VT.isVector()) 1521 Result = getSplatBuildVector(VT, DL, Result); 1522 NewSDValueDbgMsg(Result, "Creating fp constant: ", this); 1523 return Result; 1524 } 1525 1526 SDValue SelectionDAG::getConstantFP(double Val, const SDLoc &DL, EVT VT, 1527 bool isTarget) { 1528 EVT EltVT = VT.getScalarType(); 1529 if (EltVT == MVT::f32) 1530 return getConstantFP(APFloat((float)Val), DL, VT, isTarget); 1531 else if (EltVT == MVT::f64) 1532 return getConstantFP(APFloat(Val), DL, VT, isTarget); 1533 else if (EltVT == MVT::f80 || EltVT == MVT::f128 || EltVT == MVT::ppcf128 || 1534 EltVT == MVT::f16 || EltVT == MVT::bf16) { 1535 bool Ignored; 1536 APFloat APF = APFloat(Val); 1537 APF.convert(EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven, 1538 &Ignored); 1539 return getConstantFP(APF, DL, VT, isTarget); 1540 } else 1541 llvm_unreachable("Unsupported type in getConstantFP"); 1542 } 1543 1544 SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, const SDLoc &DL, 1545 EVT VT, int64_t Offset, bool isTargetGA, 1546 unsigned TargetFlags) { 1547 assert((TargetFlags == 0 || isTargetGA) && 1548 "Cannot set target flags on target-independent globals"); 1549 1550 // Truncate (with sign-extension) the offset value to the pointer size. 1551 unsigned BitWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); 1552 if (BitWidth < 64) 1553 Offset = SignExtend64(Offset, BitWidth); 1554 1555 unsigned Opc; 1556 if (GV->isThreadLocal()) 1557 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress; 1558 else 1559 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress; 1560 1561 FoldingSetNodeID ID; 1562 AddNodeIDNode(ID, Opc, getVTList(VT), None); 1563 ID.AddPointer(GV); 1564 ID.AddInteger(Offset); 1565 ID.AddInteger(TargetFlags); 1566 void *IP = nullptr; 1567 if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) 1568 return SDValue(E, 0); 1569 1570 auto *N = newSDNode<GlobalAddressSDNode>( 1571 Opc, DL.getIROrder(), DL.getDebugLoc(), GV, VT, Offset, TargetFlags); 1572 CSEMap.InsertNode(N, IP); 1573 InsertNode(N); 1574 return SDValue(N, 0); 1575 } 1576 1577 SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) { 1578 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex; 1579 FoldingSetNodeID ID; 1580 AddNodeIDNode(ID, Opc, getVTList(VT), None); 1581 ID.AddInteger(FI); 1582 void *IP = nullptr; 1583 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 1584 return SDValue(E, 0); 1585 1586 auto *N = newSDNode<FrameIndexSDNode>(FI, VT, isTarget); 1587 CSEMap.InsertNode(N, IP); 1588 InsertNode(N); 1589 return SDValue(N, 0); 1590 } 1591 1592 SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget, 1593 unsigned TargetFlags) { 1594 assert((TargetFlags == 0 || isTarget) && 1595 "Cannot set target flags on target-independent jump tables"); 1596 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable; 1597 FoldingSetNodeID ID; 1598 AddNodeIDNode(ID, Opc, getVTList(VT), None); 1599 ID.AddInteger(JTI); 1600 ID.AddInteger(TargetFlags); 1601 void *IP = nullptr; 1602 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 1603 return SDValue(E, 0); 1604 1605 auto *N = newSDNode<JumpTableSDNode>(JTI, VT, isTarget, TargetFlags); 1606 CSEMap.InsertNode(N, IP); 1607 InsertNode(N); 1608 return SDValue(N, 0); 1609 } 1610 1611 SDValue SelectionDAG::getConstantPool(const Constant *C, EVT VT, 1612 MaybeAlign Alignment, int Offset, 1613 bool isTarget, unsigned TargetFlags) { 1614 assert((TargetFlags == 0 || isTarget) && 1615 "Cannot set target flags on target-independent globals"); 1616 if (!Alignment) 1617 Alignment = shouldOptForSize() 1618 ? getDataLayout().getABITypeAlign(C->getType()) 1619 : getDataLayout().getPrefTypeAlign(C->getType()); 1620 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool; 1621 FoldingSetNodeID ID; 1622 AddNodeIDNode(ID, Opc, getVTList(VT), None); 1623 ID.AddInteger(Alignment->value()); 1624 ID.AddInteger(Offset); 1625 ID.AddPointer(C); 1626 ID.AddInteger(TargetFlags); 1627 void *IP = nullptr; 1628 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 1629 return SDValue(E, 0); 1630 1631 auto *N = newSDNode<ConstantPoolSDNode>(isTarget, C, VT, Offset, *Alignment, 1632 TargetFlags); 1633 CSEMap.InsertNode(N, IP); 1634 InsertNode(N); 1635 SDValue V = SDValue(N, 0); 1636 NewSDValueDbgMsg(V, "Creating new constant pool: ", this); 1637 return V; 1638 } 1639 1640 SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT, 1641 MaybeAlign Alignment, int Offset, 1642 bool isTarget, unsigned TargetFlags) { 1643 assert((TargetFlags == 0 || isTarget) && 1644 "Cannot set target flags on target-independent globals"); 1645 if (!Alignment) 1646 Alignment = getDataLayout().getPrefTypeAlign(C->getType()); 1647 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool; 1648 FoldingSetNodeID ID; 1649 AddNodeIDNode(ID, Opc, getVTList(VT), None); 1650 ID.AddInteger(Alignment->value()); 1651 ID.AddInteger(Offset); 1652 C->addSelectionDAGCSEId(ID); 1653 ID.AddInteger(TargetFlags); 1654 void *IP = nullptr; 1655 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 1656 return SDValue(E, 0); 1657 1658 auto *N = newSDNode<ConstantPoolSDNode>(isTarget, C, VT, Offset, *Alignment, 1659 TargetFlags); 1660 CSEMap.InsertNode(N, IP); 1661 InsertNode(N); 1662 return SDValue(N, 0); 1663 } 1664 1665 SDValue SelectionDAG::getTargetIndex(int Index, EVT VT, int64_t Offset, 1666 unsigned TargetFlags) { 1667 FoldingSetNodeID ID; 1668 AddNodeIDNode(ID, ISD::TargetIndex, getVTList(VT), None); 1669 ID.AddInteger(Index); 1670 ID.AddInteger(Offset); 1671 ID.AddInteger(TargetFlags); 1672 void *IP = nullptr; 1673 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 1674 return SDValue(E, 0); 1675 1676 auto *N = newSDNode<TargetIndexSDNode>(Index, VT, Offset, TargetFlags); 1677 CSEMap.InsertNode(N, IP); 1678 InsertNode(N); 1679 return SDValue(N, 0); 1680 } 1681 1682 SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) { 1683 FoldingSetNodeID ID; 1684 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), None); 1685 ID.AddPointer(MBB); 1686 void *IP = nullptr; 1687 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 1688 return SDValue(E, 0); 1689 1690 auto *N = newSDNode<BasicBlockSDNode>(MBB); 1691 CSEMap.InsertNode(N, IP); 1692 InsertNode(N); 1693 return SDValue(N, 0); 1694 } 1695 1696 SDValue SelectionDAG::getValueType(EVT VT) { 1697 if (VT.isSimple() && (unsigned)VT.getSimpleVT().SimpleTy >= 1698 ValueTypeNodes.size()) 1699 ValueTypeNodes.resize(VT.getSimpleVT().SimpleTy+1); 1700 1701 SDNode *&N = VT.isExtended() ? 1702 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT().SimpleTy]; 1703 1704 if (N) return SDValue(N, 0); 1705 N = newSDNode<VTSDNode>(VT); 1706 InsertNode(N); 1707 return SDValue(N, 0); 1708 } 1709 1710 SDValue SelectionDAG::getExternalSymbol(const char *Sym, EVT VT) { 1711 SDNode *&N = ExternalSymbols[Sym]; 1712 if (N) return SDValue(N, 0); 1713 N = newSDNode<ExternalSymbolSDNode>(false, Sym, 0, VT); 1714 InsertNode(N); 1715 return SDValue(N, 0); 1716 } 1717 1718 SDValue SelectionDAG::getMCSymbol(MCSymbol *Sym, EVT VT) { 1719 SDNode *&N = MCSymbols[Sym]; 1720 if (N) 1721 return SDValue(N, 0); 1722 N = newSDNode<MCSymbolSDNode>(Sym, VT); 1723 InsertNode(N); 1724 return SDValue(N, 0); 1725 } 1726 1727 SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, EVT VT, 1728 unsigned TargetFlags) { 1729 SDNode *&N = 1730 TargetExternalSymbols[std::pair<std::string, unsigned>(Sym, TargetFlags)]; 1731 if (N) return SDValue(N, 0); 1732 N = newSDNode<ExternalSymbolSDNode>(true, Sym, TargetFlags, VT); 1733 InsertNode(N); 1734 return SDValue(N, 0); 1735 } 1736 1737 SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) { 1738 if ((unsigned)Cond >= CondCodeNodes.size()) 1739 CondCodeNodes.resize(Cond+1); 1740 1741 if (!CondCodeNodes[Cond]) { 1742 auto *N = newSDNode<CondCodeSDNode>(Cond); 1743 CondCodeNodes[Cond] = N; 1744 InsertNode(N); 1745 } 1746 1747 return SDValue(CondCodeNodes[Cond], 0); 1748 } 1749 1750 SDValue SelectionDAG::getStepVector(const SDLoc &DL, EVT ResVT, SDValue Step) { 1751 if (ResVT.isScalableVector()) 1752 return getNode(ISD::STEP_VECTOR, DL, ResVT, Step); 1753 1754 EVT OpVT = Step.getValueType(); 1755 APInt StepVal = cast<ConstantSDNode>(Step)->getAPIntValue(); 1756 SmallVector<SDValue, 16> OpsStepConstants; 1757 for (uint64_t i = 0; i < ResVT.getVectorNumElements(); i++) 1758 OpsStepConstants.push_back(getConstant(StepVal * i, DL, OpVT)); 1759 return getBuildVector(ResVT, DL, OpsStepConstants); 1760 } 1761 1762 /// Swaps the values of N1 and N2. Swaps all indices in the shuffle mask M that 1763 /// point at N1 to point at N2 and indices that point at N2 to point at N1. 1764 static void commuteShuffle(SDValue &N1, SDValue &N2, MutableArrayRef<int> M) { 1765 std::swap(N1, N2); 1766 ShuffleVectorSDNode::commuteMask(M); 1767 } 1768 1769 SDValue SelectionDAG::getVectorShuffle(EVT VT, const SDLoc &dl, SDValue N1, 1770 SDValue N2, ArrayRef<int> Mask) { 1771 assert(VT.getVectorNumElements() == Mask.size() && 1772 "Must have the same number of vector elements as mask elements!"); 1773 assert(VT == N1.getValueType() && VT == N2.getValueType() && 1774 "Invalid VECTOR_SHUFFLE"); 1775 1776 // Canonicalize shuffle undef, undef -> undef 1777 if (N1.isUndef() && N2.isUndef()) 1778 return getUNDEF(VT); 1779 1780 // Validate that all indices in Mask are within the range of the elements 1781 // input to the shuffle. 1782 int NElts = Mask.size(); 1783 assert(llvm::all_of(Mask, 1784 [&](int M) { return M < (NElts * 2) && M >= -1; }) && 1785 "Index out of range"); 1786 1787 // Copy the mask so we can do any needed cleanup. 1788 SmallVector<int, 8> MaskVec(Mask.begin(), Mask.end()); 1789 1790 // Canonicalize shuffle v, v -> v, undef 1791 if (N1 == N2) { 1792 N2 = getUNDEF(VT); 1793 for (int i = 0; i != NElts; ++i) 1794 if (MaskVec[i] >= NElts) MaskVec[i] -= NElts; 1795 } 1796 1797 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask. 1798 if (N1.isUndef()) 1799 commuteShuffle(N1, N2, MaskVec); 1800 1801 if (TLI->hasVectorBlend()) { 1802 // If shuffling a splat, try to blend the splat instead. We do this here so 1803 // that even when this arises during lowering we don't have to re-handle it. 1804 auto BlendSplat = [&](BuildVectorSDNode *BV, int Offset) { 1805 BitVector UndefElements; 1806 SDValue Splat = BV->getSplatValue(&UndefElements); 1807 if (!Splat) 1808 return; 1809 1810 for (int i = 0; i < NElts; ++i) { 1811 if (MaskVec[i] < Offset || MaskVec[i] >= (Offset + NElts)) 1812 continue; 1813 1814 // If this input comes from undef, mark it as such. 1815 if (UndefElements[MaskVec[i] - Offset]) { 1816 MaskVec[i] = -1; 1817 continue; 1818 } 1819 1820 // If we can blend a non-undef lane, use that instead. 1821 if (!UndefElements[i]) 1822 MaskVec[i] = i + Offset; 1823 } 1824 }; 1825 if (auto *N1BV = dyn_cast<BuildVectorSDNode>(N1)) 1826 BlendSplat(N1BV, 0); 1827 if (auto *N2BV = dyn_cast<BuildVectorSDNode>(N2)) 1828 BlendSplat(N2BV, NElts); 1829 } 1830 1831 // Canonicalize all index into lhs, -> shuffle lhs, undef 1832 // Canonicalize all index into rhs, -> shuffle rhs, undef 1833 bool AllLHS = true, AllRHS = true; 1834 bool N2Undef = N2.isUndef(); 1835 for (int i = 0; i != NElts; ++i) { 1836 if (MaskVec[i] >= NElts) { 1837 if (N2Undef) 1838 MaskVec[i] = -1; 1839 else 1840 AllLHS = false; 1841 } else if (MaskVec[i] >= 0) { 1842 AllRHS = false; 1843 } 1844 } 1845 if (AllLHS && AllRHS) 1846 return getUNDEF(VT); 1847 if (AllLHS && !N2Undef) 1848 N2 = getUNDEF(VT); 1849 if (AllRHS) { 1850 N1 = getUNDEF(VT); 1851 commuteShuffle(N1, N2, MaskVec); 1852 } 1853 // Reset our undef status after accounting for the mask. 1854 N2Undef = N2.isUndef(); 1855 // Re-check whether both sides ended up undef. 1856 if (N1.isUndef() && N2Undef) 1857 return getUNDEF(VT); 1858 1859 // If Identity shuffle return that node. 1860 bool Identity = true, AllSame = true; 1861 for (int i = 0; i != NElts; ++i) { 1862 if (MaskVec[i] >= 0 && MaskVec[i] != i) Identity = false; 1863 if (MaskVec[i] != MaskVec[0]) AllSame = false; 1864 } 1865 if (Identity && NElts) 1866 return N1; 1867 1868 // Shuffling a constant splat doesn't change the result. 1869 if (N2Undef) { 1870 SDValue V = N1; 1871 1872 // Look through any bitcasts. We check that these don't change the number 1873 // (and size) of elements and just changes their types. 1874 while (V.getOpcode() == ISD::BITCAST) 1875 V = V->getOperand(0); 1876 1877 // A splat should always show up as a build vector node. 1878 if (auto *BV = dyn_cast<BuildVectorSDNode>(V)) { 1879 BitVector UndefElements; 1880 SDValue Splat = BV->getSplatValue(&UndefElements); 1881 // If this is a splat of an undef, shuffling it is also undef. 1882 if (Splat && Splat.isUndef()) 1883 return getUNDEF(VT); 1884 1885 bool SameNumElts = 1886 V.getValueType().getVectorNumElements() == VT.getVectorNumElements(); 1887 1888 // We only have a splat which can skip shuffles if there is a splatted 1889 // value and no undef lanes rearranged by the shuffle. 1890 if (Splat && UndefElements.none()) { 1891 // Splat of <x, x, ..., x>, return <x, x, ..., x>, provided that the 1892 // number of elements match or the value splatted is a zero constant. 1893 if (SameNumElts) 1894 return N1; 1895 if (auto *C = dyn_cast<ConstantSDNode>(Splat)) 1896 if (C->isNullValue()) 1897 return N1; 1898 } 1899 1900 // If the shuffle itself creates a splat, build the vector directly. 1901 if (AllSame && SameNumElts) { 1902 EVT BuildVT = BV->getValueType(0); 1903 const SDValue &Splatted = BV->getOperand(MaskVec[0]); 1904 SDValue NewBV = getSplatBuildVector(BuildVT, dl, Splatted); 1905 1906 // We may have jumped through bitcasts, so the type of the 1907 // BUILD_VECTOR may not match the type of the shuffle. 1908 if (BuildVT != VT) 1909 NewBV = getNode(ISD::BITCAST, dl, VT, NewBV); 1910 return NewBV; 1911 } 1912 } 1913 } 1914 1915 FoldingSetNodeID ID; 1916 SDValue Ops[2] = { N1, N2 }; 1917 AddNodeIDNode(ID, ISD::VECTOR_SHUFFLE, getVTList(VT), Ops); 1918 for (int i = 0; i != NElts; ++i) 1919 ID.AddInteger(MaskVec[i]); 1920 1921 void* IP = nullptr; 1922 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) 1923 return SDValue(E, 0); 1924 1925 // Allocate the mask array for the node out of the BumpPtrAllocator, since 1926 // SDNode doesn't have access to it. This memory will be "leaked" when 1927 // the node is deallocated, but recovered when the NodeAllocator is released. 1928 int *MaskAlloc = OperandAllocator.Allocate<int>(NElts); 1929 llvm::copy(MaskVec, MaskAlloc); 1930 1931 auto *N = newSDNode<ShuffleVectorSDNode>(VT, dl.getIROrder(), 1932 dl.getDebugLoc(), MaskAlloc); 1933 createOperands(N, Ops); 1934 1935 CSEMap.InsertNode(N, IP); 1936 InsertNode(N); 1937 SDValue V = SDValue(N, 0); 1938 NewSDValueDbgMsg(V, "Creating new node: ", this); 1939 return V; 1940 } 1941 1942 SDValue SelectionDAG::getCommutedVectorShuffle(const ShuffleVectorSDNode &SV) { 1943 EVT VT = SV.getValueType(0); 1944 SmallVector<int, 8> MaskVec(SV.getMask().begin(), SV.getMask().end()); 1945 ShuffleVectorSDNode::commuteMask(MaskVec); 1946 1947 SDValue Op0 = SV.getOperand(0); 1948 SDValue Op1 = SV.getOperand(1); 1949 return getVectorShuffle(VT, SDLoc(&SV), Op1, Op0, MaskVec); 1950 } 1951 1952 SDValue SelectionDAG::getRegister(unsigned RegNo, EVT VT) { 1953 FoldingSetNodeID ID; 1954 AddNodeIDNode(ID, ISD::Register, getVTList(VT), None); 1955 ID.AddInteger(RegNo); 1956 void *IP = nullptr; 1957 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 1958 return SDValue(E, 0); 1959 1960 auto *N = newSDNode<RegisterSDNode>(RegNo, VT); 1961 N->SDNodeBits.IsDivergent = TLI->isSDNodeSourceOfDivergence(N, FLI, DA); 1962 CSEMap.InsertNode(N, IP); 1963 InsertNode(N); 1964 return SDValue(N, 0); 1965 } 1966 1967 SDValue SelectionDAG::getRegisterMask(const uint32_t *RegMask) { 1968 FoldingSetNodeID ID; 1969 AddNodeIDNode(ID, ISD::RegisterMask, getVTList(MVT::Untyped), None); 1970 ID.AddPointer(RegMask); 1971 void *IP = nullptr; 1972 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 1973 return SDValue(E, 0); 1974 1975 auto *N = newSDNode<RegisterMaskSDNode>(RegMask); 1976 CSEMap.InsertNode(N, IP); 1977 InsertNode(N); 1978 return SDValue(N, 0); 1979 } 1980 1981 SDValue SelectionDAG::getEHLabel(const SDLoc &dl, SDValue Root, 1982 MCSymbol *Label) { 1983 return getLabelNode(ISD::EH_LABEL, dl, Root, Label); 1984 } 1985 1986 SDValue SelectionDAG::getLabelNode(unsigned Opcode, const SDLoc &dl, 1987 SDValue Root, MCSymbol *Label) { 1988 FoldingSetNodeID ID; 1989 SDValue Ops[] = { Root }; 1990 AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), Ops); 1991 ID.AddPointer(Label); 1992 void *IP = nullptr; 1993 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 1994 return SDValue(E, 0); 1995 1996 auto *N = 1997 newSDNode<LabelSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(), Label); 1998 createOperands(N, Ops); 1999 2000 CSEMap.InsertNode(N, IP); 2001 InsertNode(N); 2002 return SDValue(N, 0); 2003 } 2004 2005 SDValue SelectionDAG::getBlockAddress(const BlockAddress *BA, EVT VT, 2006 int64_t Offset, bool isTarget, 2007 unsigned TargetFlags) { 2008 unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress; 2009 2010 FoldingSetNodeID ID; 2011 AddNodeIDNode(ID, Opc, getVTList(VT), None); 2012 ID.AddPointer(BA); 2013 ID.AddInteger(Offset); 2014 ID.AddInteger(TargetFlags); 2015 void *IP = nullptr; 2016 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 2017 return SDValue(E, 0); 2018 2019 auto *N = newSDNode<BlockAddressSDNode>(Opc, VT, BA, Offset, TargetFlags); 2020 CSEMap.InsertNode(N, IP); 2021 InsertNode(N); 2022 return SDValue(N, 0); 2023 } 2024 2025 SDValue SelectionDAG::getSrcValue(const Value *V) { 2026 FoldingSetNodeID ID; 2027 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), None); 2028 ID.AddPointer(V); 2029 2030 void *IP = nullptr; 2031 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 2032 return SDValue(E, 0); 2033 2034 auto *N = newSDNode<SrcValueSDNode>(V); 2035 CSEMap.InsertNode(N, IP); 2036 InsertNode(N); 2037 return SDValue(N, 0); 2038 } 2039 2040 SDValue SelectionDAG::getMDNode(const MDNode *MD) { 2041 FoldingSetNodeID ID; 2042 AddNodeIDNode(ID, ISD::MDNODE_SDNODE, getVTList(MVT::Other), None); 2043 ID.AddPointer(MD); 2044 2045 void *IP = nullptr; 2046 if (SDNode *E = FindNodeOrInsertPos(ID, IP)) 2047 return SDValue(E, 0); 2048 2049 auto *N = newSDNode<MDNodeSDNode>(MD); 2050 CSEMap.InsertNode(N, IP); 2051 InsertNode(N); 2052 return SDValue(N, 0); 2053 } 2054 2055 SDValue SelectionDAG::getBitcast(EVT VT, SDValue V) { 2056 if (VT == V.getValueType()) 2057 return V; 2058 2059 return getNode(ISD::BITCAST, SDLoc(V), VT, V); 2060 } 2061 2062 SDValue SelectionDAG::getAddrSpaceCast(const SDLoc &dl, EVT VT, SDValue Ptr, 2063 unsigned SrcAS, unsigned DestAS) { 2064 SDValue Ops[] = {Ptr}; 2065 FoldingSetNodeID ID; 2066 AddNodeIDNode(ID, ISD::ADDRSPACECAST, getVTList(VT), Ops); 2067 ID.AddInteger(SrcAS); 2068 ID.AddInteger(DestAS); 2069 2070 void *IP = nullptr; 2071 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) 2072 return SDValue(E, 0); 2073 2074 auto *N = newSDNode<AddrSpaceCastSDNode>(dl.getIROrder(), dl.getDebugLoc(), 2075 VT, SrcAS, DestAS); 2076 createOperands(N, Ops); 2077 2078 CSEMap.InsertNode(N, IP); 2079 InsertNode(N); 2080 return SDValue(N, 0); 2081 } 2082 2083 SDValue SelectionDAG::getFreeze(SDValue V) { 2084 return getNode(ISD::FREEZE, SDLoc(V), V.getValueType(), V); 2085 } 2086 2087 /// getShiftAmountOperand - Return the specified value casted to 2088 /// the target's desired shift amount type. 2089 SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) { 2090 EVT OpTy = Op.getValueType(); 2091 EVT ShTy = TLI->getShiftAmountTy(LHSTy, getDataLayout()); 2092 if (OpTy == ShTy || OpTy.isVector()) return Op; 2093 2094 return getZExtOrTrunc(Op, SDLoc(Op), ShTy); 2095 } 2096 2097 SDValue SelectionDAG::expandVAArg(SDNode *Node) { 2098 SDLoc dl(Node); 2099 const TargetLowering &TLI = getTargetLoweringInfo(); 2100 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); 2101 EVT VT = Node->getValueType(0); 2102 SDValue Tmp1 = Node->getOperand(0); 2103 SDValue Tmp2 = Node->getOperand(1); 2104 const MaybeAlign MA(Node->getConstantOperandVal(3)); 2105 2106 SDValue VAListLoad = getLoad(TLI.getPointerTy(getDataLayout()), dl, Tmp1, 2107 Tmp2, MachinePointerInfo(V)); 2108 SDValue VAList = VAListLoad; 2109 2110 if (MA && *MA > TLI.getMinStackArgumentAlignment()) { 2111 VAList = getNode(ISD::ADD, dl, VAList.getValueType(), VAList, 2112 getConstant(MA->value() - 1, dl, VAList.getValueType())); 2113 2114 VAList = 2115 getNode(ISD::AND, dl, VAList.getValueType(), VAList, 2116 getConstant(-(int64_t)MA->value(), dl, VAList.getValueType())); 2117 } 2118 2119 // Increment the pointer, VAList, to the next vaarg 2120 Tmp1 = getNode(ISD::ADD, dl, VAList.getValueType(), VAList, 2121 getConstant(getDataLayout().getTypeAllocSize( 2122 VT.getTypeForEVT(*getContext())), 2123 dl, VAList.getValueType())); 2124 // Store the incremented VAList to the legalized pointer 2125 Tmp1 = 2126 getStore(VAListLoad.getValue(1), dl, Tmp1, Tmp2, MachinePointerInfo(V)); 2127 // Load the actual argument out of the pointer VAList 2128 return getLoad(VT, dl, Tmp1, VAList, MachinePointerInfo()); 2129 } 2130 2131 SDValue SelectionDAG::expandVACopy(SDNode *Node) { 2132 SDLoc dl(Node); 2133 const TargetLowering &TLI = getTargetLoweringInfo(); 2134 // This defaults to loading a pointer from the input and storing it to the 2135 // output, returning the chain. 2136 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue(); 2137 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue(); 2138 SDValue Tmp1 = 2139 getLoad(TLI.getPointerTy(getDataLayout()), dl, Node->getOperand(0), 2140 Node->getOperand(2), MachinePointerInfo(VS)); 2141 return getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1), 2142 MachinePointerInfo(VD)); 2143 } 2144 2145 Align SelectionDAG::getReducedAlign(EVT VT, bool UseABI) { 2146 const DataLayout &DL = getDataLayout(); 2147 Type *Ty = VT.getTypeForEVT(*getContext()); 2148 Align RedAlign = UseABI ? DL.getABITypeAlign(Ty) : DL.getPrefTypeAlign(Ty); 2149 2150 if (TLI->isTypeLegal(VT) || !VT.isVector()) 2151 return RedAlign; 2152 2153 const TargetFrameLowering *TFI = MF->getSubtarget().getFrameLowering(); 2154 const Align StackAlign = TFI->getStackAlign(); 2155 2156 // See if we can choose a smaller ABI alignment in cases where it's an 2157 // illegal vector type that will get broken down. 2158 if (RedAlign > StackAlign) { 2159 EVT IntermediateVT; 2160 MVT RegisterVT; 2161 unsigned NumIntermediates; 2162 TLI->getVectorTypeBreakdown(*getContext(), VT, IntermediateVT, 2163 NumIntermediates, RegisterVT); 2164 Ty = IntermediateVT.getTypeForEVT(*getContext()); 2165 Align RedAlign2 = UseABI ? DL.getABITypeAlign(Ty) : DL.getPrefTypeAlign(Ty); 2166 if (RedAlign2 < RedAlign) 2167 RedAlign = RedAlign2; 2168 } 2169 2170 return RedAlign; 2171 } 2172 2173 SDValue SelectionDAG::CreateStackTemporary(TypeSize Bytes, Align Alignment) { 2174 MachineFrameInfo &MFI = MF->getFrameInfo(); 2175 const TargetFrameLowering *TFI = MF->getSubtarget().getFrameLowering(); 2176 int StackID = 0; 2177 if (Bytes.isScalable()) 2178 StackID = TFI->getStackIDForScalableVectors(); 2179 // The stack id gives an indication of whether the object is scalable or 2180 // not, so it's safe to pass in the minimum size here. 2181 int FrameIdx = MFI.CreateStackObject(Bytes.getKnownMinSize(), Alignment, 2182 false, nullptr, StackID); 2183 return getFrameIndex(FrameIdx, TLI->getFrameIndexTy(getDataLayout())); 2184 } 2185 2186 SDValue SelectionDAG::CreateStackTemporary(EVT VT, unsigned minAlign) { 2187 Type *Ty = VT.getTypeForEVT(*getContext()); 2188 Align StackAlign = 2189 std::max(getDataLayout().getPrefTypeAlign(Ty), Align(minAlign)); 2190 return CreateStackTemporary(VT.getStoreSize(), StackAlign); 2191 } 2192 2193 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) { 2194 TypeSize VT1Size = VT1.getStoreSize(); 2195 TypeSize VT2Size = VT2.getStoreSize(); 2196 assert(VT1Size.isScalable() == VT2Size.isScalable() && 2197 "Don't know how to choose the maximum size when creating a stack " 2198 "temporary"); 2199 TypeSize Bytes = 2200 VT1Size.getKnownMinSize() > VT2Size.getKnownMinSize() ? VT1Size : VT2Size; 2201 2202 Type *Ty1 = VT1.getTypeForEVT(*getContext()); 2203 Type *Ty2 = VT2.getTypeForEVT(*getContext()); 2204 const DataLayout &DL = getDataLayout(); 2205 Align Align = std::max(DL.getPrefTypeAlign(Ty1), DL.getPrefTypeAlign(Ty2)); 2206 return CreateStackTemporary(Bytes, Align); 2207 } 2208 2209 SDValue SelectionDAG::FoldSetCC(EVT VT, SDValue N1, SDValue N2, 2210 ISD::CondCode Cond, const SDLoc &dl) { 2211 EVT OpVT = N1.getValueType(); 2212 2213 // These setcc operations always fold. 2214 switch (Cond) { 2215 default: break; 2216 case ISD::SETFALSE: 2217 case ISD::SETFALSE2: return getBoolConstant(false, dl, VT, OpVT); 2218 case ISD::SETTRUE: 2219 case ISD::SETTRUE2: return getBoolConstant(true, dl, VT, OpVT); 2220 2221 case ISD::SETOEQ: 2222 case ISD::SETOGT: 2223 case ISD::SETOGE: 2224 case ISD::SETOLT: 2225 case ISD::SETOLE: 2226 case ISD::SETONE: 2227 case ISD::SETO: 2228 case ISD::SETUO: 2229 case ISD::SETUEQ: 2230 case ISD::SETUNE: 2231 assert(!OpVT.isInteger() && "Illegal setcc for integer!"); 2232 break; 2233 } 2234 2235 if (OpVT.isInteger()) { 2236 // For EQ and NE, we can always pick a value for the undef to make the 2237 // predicate pass or fail, so we can return undef. 2238 // Matches behavior in llvm::ConstantFoldCompareInstruction. 2239 // icmp eq/ne X, undef -> undef. 2240 if ((N1.isUndef() || N2.isUndef()) && 2241 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) 2242 return getUNDEF(VT); 2243 2244 // If both operands are undef, we can return undef for int comparison. 2245 // icmp undef, undef -> undef. 2246 if (N1.isUndef() && N2.isUndef()) 2247 return getUNDEF(VT); 2248 2249 // icmp X, X -> true/false 2250 // icmp X, undef -> true/false because undef could be X. 2251 if (N1 == N2) 2252 return getBoolConstant(ISD::isTrueWhenEqual(Cond), dl, VT, OpVT); 2253 } 2254 2255 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2)) { 2256 const APInt &C2 = N2C->getAPIntValue(); 2257 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1)) { 2258 const APInt &C1 = N1C->getAPIntValue(); 2259 2260 switch (Cond) { 2261 default: llvm_unreachable("Unknown integer setcc!"); 2262 case ISD::SETEQ: return getBoolConstant(C1 == C2, dl, VT, OpVT); 2263 case ISD::SETNE: return getBoolConstant(C1 != C2, dl, VT, OpVT); 2264 case ISD::SETULT: return getBoolConstant(C1.ult(C2), dl, VT, OpVT); 2265 case ISD::SETUGT: return getBoolConstant(C1.ugt(C2), dl, VT, OpVT); 2266 case ISD::SETULE: return getBoolConstant(C1.ule(C2), dl, VT, OpVT); 2267 case ISD::SETUGE: return getBoolConstant(C1.uge(C2), dl, VT, OpVT); 2268 case ISD::SETLT: return getBoolConstant(C1.slt(C2), dl, VT, OpVT); 2269 case ISD::SETGT: return getBoolConstant(C1.sgt(C2), dl, VT, OpVT); 2270 case ISD::SETLE: return getBoolConstant(C1.sle(C2), dl, VT, OpVT); 2271 case ISD::SETGE: return getBoolConstant(C1.sge(C2), dl, VT, OpVT); 2272 } 2273 } 2274 } 2275 2276 auto *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 2277 auto *N2CFP = dyn_cast<ConstantFPSDNode>(N2); 2278 2279 if (N1CFP && N2CFP) { 2280 APFloat::cmpResult R = N1CFP->getValueAPF().compare(N2CFP->getValueAPF()); 2281 switch (Cond) { 2282 default: break; 2283 case ISD::SETEQ: if (R==APFloat::cmpUnordered) 2284 return getUNDEF(VT); 2285 LLVM_FALLTHROUGH; 2286 case ISD::SETOEQ: return getBoolConstant(R==APFloat::cmpEqual, dl, VT, 2287 OpVT); 2288 case ISD::SETNE: if (R==APFloat::cmpUnordered) 2289 return getUNDEF(VT); 2290 LLVM_FALLTHROUGH; 2291 case ISD::SETONE: return getBoolConstant(R==APFloat::cmpGreaterThan || 2292 R==APFloat::cmpLessThan, dl, VT, 2293 OpVT); 2294 case ISD::SETLT: if (R==APFloat::cmpUnordered) 2295 return getUNDEF(VT); 2296 LLVM_FALLTHROUGH; 2297 case ISD::SETOLT: return getBoolConstant(R==APFloat::cmpLessThan, dl, VT, 2298 OpVT); 2299 case ISD::SETGT: if (R==APFloat::cmpUnordered) 2300 return getUNDEF(VT); 2301 LLVM_FALLTHROUGH; 2302 case ISD::SETOGT: return getBoolConstant(R==APFloat::cmpGreaterThan, dl, 2303 VT, OpVT); 2304 case ISD::SETLE: if (R==APFloat::cmpUnordered) 2305 return getUNDEF(VT); 2306 LLVM_FALLTHROUGH; 2307 case ISD::SETOLE: return getBoolConstant(R==APFloat::cmpLessThan || 2308 R==APFloat::cmpEqual, dl, VT, 2309 OpVT); 2310 case ISD::SETGE: if (R==APFloat::cmpUnordered) 2311 return getUNDEF(VT); 2312 LLVM_FALLTHROUGH; 2313 case ISD::SETOGE: return getBoolConstant(R==APFloat::cmpGreaterThan || 2314 R==APFloat::cmpEqual, dl, VT, OpVT); 2315 case ISD::SETO: return getBoolConstant(R!=APFloat::cmpUnordered, dl, VT, 2316 OpVT); 2317 case ISD::SETUO: return getBoolConstant(R==APFloat::cmpUnordered, dl, VT, 2318 OpVT); 2319 case ISD::SETUEQ: return getBoolConstant(R==APFloat::cmpUnordered || 2320 R==APFloat::cmpEqual, dl, VT, 2321 OpVT); 2322 case ISD::SETUNE: return getBoolConstant(R!=APFloat::cmpEqual, dl, VT, 2323 OpVT); 2324 case ISD::SETULT: return getBoolConstant(R==APFloat::cmpUnordered || 2325 R==APFloat::cmpLessThan, dl, VT, 2326 OpVT); 2327 case ISD::SETUGT: return getBoolConstant(R==APFloat::cmpGreaterThan || 2328 R==APFloat::cmpUnordered, dl, VT, 2329 OpVT); 2330 case ISD::SETULE: return getBoolConstant(R!=APFloat::cmpGreaterThan, dl, 2331 VT, OpVT); 2332 case ISD::SETUGE: return getBoolConstant(R!=APFloat::cmpLessThan, dl, VT, 2333 OpVT); 2334 } 2335 } else if (N1CFP && OpVT.isSimple() && !N2.isUndef()) { 2336 // Ensure that the constant occurs on the RHS. 2337 ISD::CondCode SwappedCond = ISD::getSetCCSwappedOperands(Cond); 2338 if (!TLI->isCondCodeLegal(SwappedCond, OpVT.getSimpleVT())) 2339 return SDValue(); 2340 return getSetCC(dl, VT, N2, N1, SwappedCond); 2341 } else if ((N2CFP && N2CFP->getValueAPF().isNaN()) || 2342 (OpVT.isFloatingPoint() && (N1.isUndef() || N2.isUndef()))) { 2343 // If an operand is known to be a nan (or undef that could be a nan), we can 2344 // fold it. 2345 // Choosing NaN for the undef will always make unordered comparison succeed 2346 // and ordered comparison fails. 2347 // Matches behavior in llvm::ConstantFoldCompareInstruction. 2348 switch (ISD::getUnorderedFlavor(Cond)) { 2349 default: 2350 llvm_unreachable("Unknown flavor!"); 2351 case 0: // Known false. 2352 return getBoolConstant(false, dl, VT, OpVT); 2353 case 1: // Known true. 2354 return getBoolConstant(true, dl, VT, OpVT); 2355 case 2: // Undefined. 2356 return getUNDEF(VT); 2357 } 2358 } 2359 2360 // Could not fold it. 2361 return SDValue(); 2362 } 2363 2364 /// See if the specified operand can be simplified with the knowledge that only 2365 /// the bits specified by DemandedBits are used. 2366 /// TODO: really we should be making this into the DAG equivalent of 2367 /// SimplifyMultipleUseDemandedBits and not generate any new nodes. 2368 SDValue SelectionDAG::GetDemandedBits(SDValue V, const APInt &DemandedBits) { 2369 EVT VT = V.getValueType(); 2370 2371 if (VT.isScalableVector()) 2372 return SDValue(); 2373 2374 APInt DemandedElts = VT.isVector() 2375 ? APInt::getAllOnesValue(VT.getVectorNumElements()) 2376 : APInt(1, 1); 2377 return GetDemandedBits(V, DemandedBits, DemandedElts); 2378 } 2379 2380 /// See if the specified operand can be simplified with the knowledge that only 2381 /// the bits specified by DemandedBits are used in the elements specified by 2382 /// DemandedElts. 2383 /// TODO: really we should be making this into the DAG equivalent of 2384 /// SimplifyMultipleUseDemandedBits and not generate any new nodes. 2385 SDValue SelectionDAG::GetDemandedBits(SDValue V, const APInt &DemandedBits, 2386 const APInt &DemandedElts) { 2387 switch (V.getOpcode()) { 2388 default: 2389 return TLI->SimplifyMultipleUseDemandedBits(V, DemandedBits, DemandedElts, 2390 *this, 0); 2391 case ISD::Constant: { 2392 const APInt &CVal = cast<ConstantSDNode>(V)->getAPIntValue(); 2393 APInt NewVal = CVal & DemandedBits; 2394 if (NewVal != CVal) 2395 return getConstant(NewVal, SDLoc(V), V.getValueType()); 2396 break; 2397 } 2398 case ISD::SRL: 2399 // Only look at single-use SRLs. 2400 if (!V.getNode()->hasOneUse()) 2401 break; 2402 if (auto *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) { 2403 // See if we can recursively simplify the LHS. 2404 unsigned Amt = RHSC->getZExtValue(); 2405 2406 // Watch out for shift count overflow though. 2407 if (Amt >= DemandedBits.getBitWidth()) 2408 break; 2409 APInt SrcDemandedBits = DemandedBits << Amt; 2410 if (SDValue SimplifyLHS = 2411 GetDemandedBits(V.getOperand(0), SrcDemandedBits)) 2412 return getNode(ISD::SRL, SDLoc(V), V.getValueType(), SimplifyLHS, 2413 V.getOperand(1)); 2414 } 2415 break; 2416 } 2417 return SDValue(); 2418 } 2419 2420 /// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We 2421 /// use this predicate to simplify operations downstream. 2422 bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const { 2423 unsigned BitWidth = Op.getScalarValueSizeInBits(); 2424 return MaskedValueIsZero(Op, APInt::getSignMask(BitWidth), Depth); 2425 } 2426 2427 /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use 2428 /// this predicate to simplify operations downstream. Mask is known to be zero 2429 /// for bits that V cannot have. 2430 bool SelectionDAG::MaskedValueIsZero(SDValue V, const APInt &Mask, 2431 unsigned Depth) const { 2432 return Mask.isSubsetOf(computeKnownBits(V, Depth).Zero); 2433 } 2434 2435 /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero in 2436 /// DemandedElts. We use this predicate to simplify operations downstream. 2437 /// Mask is known to be zero for bits that V cannot have. 2438 bool SelectionDAG::MaskedValueIsZero(SDValue V, const APInt &Mask, 2439 const APInt &DemandedElts, 2440 unsigned Depth) const { 2441 return Mask.isSubsetOf(computeKnownBits(V, DemandedElts, Depth).Zero); 2442 } 2443 2444 /// MaskedValueIsAllOnes - Return true if '(Op & Mask) == Mask'. 2445 bool SelectionDAG::MaskedValueIsAllOnes(SDValue V, const APInt &Mask, 2446 unsigned Depth) const { 2447 return Mask.isSubsetOf(computeKnownBits(V, Depth).One); 2448 } 2449 2450 /// isSplatValue - Return true if the vector V has the same value 2451 /// across all DemandedElts. For scalable vectors it does not make 2452 /// sense to specify which elements are demanded or undefined, therefore 2453 /// they are simply ignored. 2454 bool SelectionDAG::isSplatValue(SDValue V, const APInt &DemandedElts, 2455 APInt &UndefElts, unsigned Depth) { 2456 EVT VT = V.getValueType(); 2457 assert(VT.isVector() && "Vector type expected"); 2458 2459 if (!VT.isScalableVector() && !DemandedElts) 2460 return false; // No demanded elts, better to assume we don't know anything. 2461 2462 if (Depth >= MaxRecursionDepth) 2463 return false; // Limit search depth. 2464 2465 // Deal with some common cases here that work for both fixed and scalable 2466 // vector types. 2467 switch (V.getOpcode()) { 2468 case ISD::SPLAT_VECTOR: 2469 UndefElts = V.getOperand(0).isUndef() 2470 ? APInt::getAllOnesValue(DemandedElts.getBitWidth()) 2471 : APInt(DemandedElts.getBitWidth(), 0); 2472 return true; 2473 case ISD::ADD: 2474 case ISD::SUB: 2475 case ISD::AND: 2476 case ISD::XOR: 2477 case ISD::OR: { 2478 APInt UndefLHS, UndefRHS; 2479 SDValue LHS = V.getOperand(0); 2480 SDValue RHS = V.getOperand(1); 2481 if (isSplatValue(LHS, DemandedElts, UndefLHS, Depth + 1) && 2482 isSplatValue(RHS, DemandedElts, UndefRHS, Depth + 1)) { 2483 UndefElts = UndefLHS | UndefRHS; 2484 return true; 2485 } 2486 break; 2487 } 2488 case ISD::ABS: 2489 case ISD::TRUNCATE: 2490 case ISD::SIGN_EXTEND: 2491 case ISD::ZERO_EXTEND: 2492 return isSplatValue(V.getOperand(0), DemandedElts, UndefElts, Depth + 1); 2493 } 2494 2495 // We don't support other cases than those above for scalable vectors at 2496 // the moment. 2497 if (VT.isScalableVector()) 2498 return false; 2499 2500 unsigned NumElts = VT.getVectorNumElements(); 2501 assert(NumElts == DemandedElts.getBitWidth() && "Vector size mismatch"); 2502 UndefElts = APInt::getNullValue(NumElts); 2503 2504 switch (V.getOpcode()) { 2505 case ISD::BUILD_VECTOR: { 2506 SDValue Scl; 2507 for (unsigned i = 0; i != NumElts; ++i) { 2508 SDValue Op = V.getOperand(i); 2509 if (Op.isUndef()) { 2510 UndefElts.setBit(i); 2511 continue; 2512 } 2513 if (!DemandedElts[i]) 2514 continue; 2515 if (Scl && Scl != Op) 2516 return false; 2517 Scl = Op; 2518 } 2519 return true; 2520 } 2521 case ISD::VECTOR_SHUFFLE: { 2522 // Check if this is a shuffle node doing a splat. 2523 // TODO: Do we need to handle shuffle(splat, undef, mask)? 2524 int SplatIndex = -1; 2525 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(V)->getMask(); 2526 for (int i = 0; i != (int)NumElts; ++i) { 2527 int M = Mask[i]; 2528 if (M < 0) { 2529 UndefElts.setBit(i); 2530 continue; 2531 } 2532 if (!DemandedElts[i]) 2533 continue; 2534 if (0 <= SplatIndex && SplatIndex != M) 2535 return false; 2536 SplatIndex = M; 2537 } 2538 return true; 2539 } 2540 case ISD::EXTRACT_SUBVECTOR: { 2541 // Offset the demanded elts by the subvector index. 2542 SDValue Src = V.getOperand(0); 2543 // We don't support scalable vectors at the moment. 2544 if (Src.getValueType().isScalableVector()) 2545 return false; 2546 uint64_t Idx = V.getConstantOperandVal(1); 2547 unsigned NumSrcElts = Src.getValueType().getVectorNumElements(); 2548 APInt UndefSrcElts; 2549 APInt DemandedSrcElts = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx); 2550 if (isSplatValue(Src, DemandedSrcElts, UndefSrcElts, Depth + 1)) { 2551 UndefElts = UndefSrcElts.extractBits(NumElts, Idx); 2552 return true; 2553 } 2554 break; 2555 } 2556 } 2557 2558 return false; 2559 } 2560 2561 /// Helper wrapper to main isSplatValue function. 2562 bool SelectionDAG::isSplatValue(SDValue V, bool AllowUndefs) { 2563 EVT VT = V.getValueType(); 2564 assert(VT.isVector() && "Vector type expected"); 2565 2566 APInt UndefElts; 2567 APInt DemandedElts; 2568 2569 // For now we don't support this with scalable vectors. 2570 if (!VT.isScalableVector()) 2571 DemandedElts = APInt::getAllOnesValue(VT.getVectorNumElements()); 2572 return isSplatValue(V, DemandedElts, UndefElts) && 2573 (AllowUndefs || !UndefElts); 2574 } 2575 2576 SDValue SelectionDAG::getSplatSourceVector(SDValue V, int &SplatIdx) { 2577 V = peekThroughExtractSubvectors(V); 2578 2579 EVT VT = V.getValueType(); 2580 unsigned Opcode = V.getOpcode(); 2581 switch (Opcode) { 2582 default: { 2583 APInt UndefElts; 2584 APInt DemandedElts; 2585 2586 if (!VT.isScalableVector()) 2587 DemandedElts = APInt::getAllOnesValue(VT.getVectorNumElements()); 2588 2589 if (isSplatValue(V, DemandedElts, UndefElts)) { 2590 if (VT.isScalableVector()) { 2591 // DemandedElts and UndefElts are ignored for scalable vectors, since 2592 // the only supported cases are SPLAT_VECTOR nodes. 2593 SplatIdx = 0; 2594 } else { 2595 // Handle case where all demanded elements are UNDEF. 2596 if (DemandedElts.isSubsetOf(UndefElts)) { 2597 SplatIdx = 0; 2598 return getUNDEF(VT); 2599 } 2600 SplatIdx = (UndefElts & DemandedElts).countTrailingOnes(); 2601 } 2602 return V; 2603 } 2604 break; 2605 } 2606 case ISD::SPLAT_VECTOR: 2607 SplatIdx = 0; 2608 return V; 2609 case ISD::VECTOR_SHUFFLE: { 2610 if (VT.isScalableVector()) 2611 return SDValue(); 2612 2613 // Check if this is a shuffle node doing a splat. 2614 // TODO - remove this and rely purely on SelectionDAG::isSplatValue, 2615 // getTargetVShiftNode currently struggles without the splat source. 2616 auto *SVN = cast<ShuffleVectorSDNode>(V); 2617 if (!SVN->isSplat()) 2618 break; 2619 int Idx = SVN->getSplatIndex(); 2620 int NumElts = V.getValueType().getVectorNumElements(); 2621 SplatIdx = Idx % NumElts; 2622 return V.getOperand(Idx / NumElts); 2623 } 2624 } 2625 2626 return SDValue(); 2627 } 2628 2629 SDValue SelectionDAG::getSplatValue(SDValue V) { 2630 int SplatIdx; 2631 if (SDValue SrcVector = getSplatSourceVector(V, SplatIdx)) 2632 return getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(V), 2633 SrcVector.getValueType().getScalarType(), SrcVector, 2634 getVectorIdxConstant(SplatIdx, SDLoc(V))); 2635 return SDValue(); 2636 } 2637 2638 const APInt * 2639 SelectionDAG::getValidShiftAmountConstant(SDValue V, 2640 const APInt &DemandedElts) const { 2641 assert((V.getOpcode() == ISD::SHL || V.getOpcode() == ISD::SRL || 2642 V.getOpcode() == ISD::SRA) && 2643 "Unknown shift node"); 2644 unsigned BitWidth = V.getScalarValueSizeInBits(); 2645 if (ConstantSDNode *SA = isConstOrConstSplat(V.getOperand(1), DemandedElts)) { 2646 // Shifting more than the bitwidth is not valid. 2647 const APInt &ShAmt = SA->getAPIntValue(); 2648 if (ShAmt.ult(BitWidth)) 2649 return &ShAmt; 2650 } 2651 return nullptr; 2652 } 2653 2654 const APInt *SelectionDAG::getValidMinimumShiftAmountConstant( 2655 SDValue V, const APInt &DemandedElts) const { 2656 assert((V.getOpcode() == ISD::SHL || V.getOpcode() == ISD::SRL || 2657 V.getOpcode() == ISD::SRA) && 2658 "Unknown shift node"); 2659 if (const APInt *ValidAmt = getValidShiftAmountConstant(V, DemandedElts)) 2660 return ValidAmt; 2661 unsigned BitWidth = V.getScalarValueSizeInBits(); 2662 auto *BV = dyn_cast<BuildVectorSDNode>(V.getOperand(1)); 2663 if (!BV) 2664 return nullptr; 2665 const APInt *MinShAmt = nullptr; 2666 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) { 2667 if (!DemandedElts[i]) 2668 continue; 2669 auto *SA = dyn_cast<ConstantSDNode>(BV->getOperand(i)); 2670 if (!SA) 2671 return nullptr; 2672 // Shifting more than the bitwidth is not valid. 2673 const APInt &ShAmt = SA->getAPIntValue(); 2674 if (ShAmt.uge(BitWidth)) 2675 return nullptr; 2676 if (MinShAmt && MinShAmt->ule(ShAmt)) 2677 continue; 2678 MinShAmt = &ShAmt; 2679 } 2680 return MinShAmt; 2681 } 2682 2683 const APInt *SelectionDAG::getValidMaximumShiftAmountConstant( 2684 SDValue V, const APInt &DemandedElts) const { 2685 assert((V.getOpcode() == ISD::SHL || V.getOpcode() == ISD::SRL || 2686 V.getOpcode() == ISD::SRA) && 2687 "Unknown shift node"); 2688 if (const APInt *ValidAmt = getValidShiftAmountConstant(V, DemandedElts)) 2689 return ValidAmt; 2690 unsigned BitWidth = V.getScalarValueSizeInBits(); 2691 auto *BV = dyn_cast<BuildVectorSDNode>(V.getOperand(1)); 2692 if (!BV) 2693 return nullptr; 2694 const APInt *MaxShAmt = nullptr; 2695 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) { 2696 if (!DemandedElts[i]) 2697 continue; 2698 auto *SA = dyn_cast<ConstantSDNode>(BV->getOperand(i)); 2699 if (!SA) 2700 return nullptr; 2701 // Shifting more than the bitwidth is not valid. 2702 const APInt &ShAmt = SA->getAPIntValue(); 2703 if (ShAmt.uge(BitWidth)) 2704 return nullptr; 2705 if (MaxShAmt && MaxShAmt->uge(ShAmt)) 2706 continue; 2707 MaxShAmt = &ShAmt; 2708 } 2709 return MaxShAmt; 2710 } 2711 2712 /// Determine which bits of Op are known to be either zero or one and return 2713 /// them in Known. For vectors, the known bits are those that are shared by 2714 /// every vector element. 2715 KnownBits SelectionDAG::computeKnownBits(SDValue Op, unsigned Depth) const { 2716 EVT VT = Op.getValueType(); 2717 2718 // TOOD: Until we have a plan for how to represent demanded elements for 2719 // scalable vectors, we can just bail out for now. 2720 if (Op.getValueType().isScalableVector()) { 2721 unsigned BitWidth = Op.getScalarValueSizeInBits(); 2722 return KnownBits(BitWidth); 2723 } 2724 2725 APInt DemandedElts = VT.isVector() 2726 ? APInt::getAllOnesValue(VT.getVectorNumElements()) 2727 : APInt(1, 1); 2728 return computeKnownBits(Op, DemandedElts, Depth); 2729 } 2730 2731 /// Determine which bits of Op are known to be either zero or one and return 2732 /// them in Known. The DemandedElts argument allows us to only collect the known 2733 /// bits that are shared by the requested vector elements. 2734 KnownBits SelectionDAG::computeKnownBits(SDValue Op, const APInt &DemandedElts, 2735 unsigned Depth) const { 2736 unsigned BitWidth = Op.getScalarValueSizeInBits(); 2737 2738 KnownBits Known(BitWidth); // Don't know anything. 2739 2740 // TOOD: Until we have a plan for how to represent demanded elements for 2741 // scalable vectors, we can just bail out for now. 2742 if (Op.getValueType().isScalableVector()) 2743 return Known; 2744 2745 if (auto *C = dyn_cast<ConstantSDNode>(Op)) { 2746 // We know all of the bits for a constant! 2747 return KnownBits::makeConstant(C->getAPIntValue()); 2748 } 2749 if (auto *C = dyn_cast<ConstantFPSDNode>(Op)) { 2750 // We know all of the bits for a constant fp! 2751 return KnownBits::makeConstant(C->getValueAPF().bitcastToAPInt()); 2752 } 2753 2754 if (Depth >= MaxRecursionDepth) 2755 return Known; // Limit search depth. 2756 2757 KnownBits Known2; 2758 unsigned NumElts = DemandedElts.getBitWidth(); 2759 assert((!Op.getValueType().isVector() || 2760 NumElts == Op.getValueType().getVectorNumElements()) && 2761 "Unexpected vector size"); 2762 2763 if (!DemandedElts) 2764 return Known; // No demanded elts, better to assume we don't know anything. 2765 2766 unsigned Opcode = Op.getOpcode(); 2767 switch (Opcode) { 2768 case ISD::BUILD_VECTOR: 2769 // Collect the known bits that are shared by every demanded vector element. 2770 Known.Zero.setAllBits(); Known.One.setAllBits(); 2771 for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i) { 2772 if (!DemandedElts[i]) 2773 continue; 2774 2775 SDValue SrcOp = Op.getOperand(i); 2776 Known2 = computeKnownBits(SrcOp, Depth + 1); 2777 2778 // BUILD_VECTOR can implicitly truncate sources, we must handle this. 2779 if (SrcOp.getValueSizeInBits() != BitWidth) { 2780 assert(SrcOp.getValueSizeInBits() > BitWidth && 2781 "Expected BUILD_VECTOR implicit truncation"); 2782 Known2 = Known2.trunc(BitWidth); 2783 } 2784 2785 // Known bits are the values that are shared by every demanded element. 2786 Known = KnownBits::commonBits(Known, Known2); 2787 2788 // If we don't know any bits, early out. 2789 if (Known.isUnknown()) 2790 break; 2791 } 2792 break; 2793 case ISD::VECTOR_SHUFFLE: { 2794 // Collect the known bits that are shared by every vector element referenced 2795 // by the shuffle. 2796 APInt DemandedLHS(NumElts, 0), DemandedRHS(NumElts, 0); 2797 Known.Zero.setAllBits(); Known.One.setAllBits(); 2798 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op); 2799 assert(NumElts == SVN->getMask().size() && "Unexpected vector size"); 2800 for (unsigned i = 0; i != NumElts; ++i) { 2801 if (!DemandedElts[i]) 2802 continue; 2803 2804 int M = SVN->getMaskElt(i); 2805 if (M < 0) { 2806 // For UNDEF elements, we don't know anything about the common state of 2807 // the shuffle result. 2808 Known.resetAll(); 2809 DemandedLHS.clearAllBits(); 2810 DemandedRHS.clearAllBits(); 2811 break; 2812 } 2813 2814 if ((unsigned)M < NumElts) 2815 DemandedLHS.setBit((unsigned)M % NumElts); 2816 else 2817 DemandedRHS.setBit((unsigned)M % NumElts); 2818 } 2819 // Known bits are the values that are shared by every demanded element. 2820 if (!!DemandedLHS) { 2821 SDValue LHS = Op.getOperand(0); 2822 Known2 = computeKnownBits(LHS, DemandedLHS, Depth + 1); 2823 Known = KnownBits::commonBits(Known, Known2); 2824 } 2825 // If we don't know any bits, early out. 2826 if (Known.isUnknown()) 2827 break; 2828 if (!!DemandedRHS) { 2829 SDValue RHS = Op.getOperand(1); 2830 Known2 = computeKnownBits(RHS, DemandedRHS, Depth + 1); 2831 Known = KnownBits::commonBits(Known, Known2); 2832 } 2833 break; 2834 } 2835 case ISD::CONCAT_VECTORS: { 2836 // Split DemandedElts and test each of the demanded subvectors. 2837 Known.Zero.setAllBits(); Known.One.setAllBits(); 2838 EVT SubVectorVT = Op.getOperand(0).getValueType(); 2839 unsigned NumSubVectorElts = SubVectorVT.getVectorNumElements(); 2840 unsigned NumSubVectors = Op.getNumOperands(); 2841 for (unsigned i = 0; i != NumSubVectors; ++i) { 2842 APInt DemandedSub = DemandedElts.lshr(i * NumSubVectorElts); 2843 DemandedSub = DemandedSub.trunc(NumSubVectorElts); 2844 if (!!DemandedSub) { 2845 SDValue Sub = Op.getOperand(i); 2846 Known2 = computeKnownBits(Sub, DemandedSub, Depth + 1); 2847 Known = KnownBits::commonBits(Known, Known2); 2848 } 2849 // If we don't know any bits, early out. 2850 if (Known.isUnknown()) 2851 break; 2852 } 2853 break; 2854 } 2855 case ISD::INSERT_SUBVECTOR: { 2856 // Demand any elements from the subvector and the remainder from the src its 2857 // inserted into. 2858 SDValue Src = Op.getOperand(0); 2859 SDValue Sub = Op.getOperand(1); 2860 uint64_t Idx = Op.getConstantOperandVal(2); 2861 unsigned NumSubElts = Sub.getValueType().getVectorNumElements(); 2862 APInt DemandedSubElts = DemandedElts.extractBits(NumSubElts, Idx); 2863 APInt DemandedSrcElts = DemandedElts; 2864 DemandedSrcElts.insertBits(APInt::getNullValue(NumSubElts), Idx); 2865 2866 Known.One.setAllBits(); 2867 Known.Zero.setAllBits(); 2868 if (!!DemandedSubElts) { 2869 Known = computeKnownBits(Sub, DemandedSubElts, Depth + 1); 2870 if (Known.isUnknown()) 2871 break; // early-out. 2872 } 2873 if (!!DemandedSrcElts) { 2874 Known2 = computeKnownBits(Src, DemandedSrcElts, Depth + 1); 2875 Known = KnownBits::commonBits(Known, Known2); 2876 } 2877 break; 2878 } 2879 case ISD::EXTRACT_SUBVECTOR: { 2880 // Offset the demanded elts by the subvector index. 2881 SDValue Src = Op.getOperand(0); 2882 // Bail until we can represent demanded elements for scalable vectors. 2883 if (Src.getValueType().isScalableVector()) 2884 break; 2885 uint64_t Idx = Op.getConstantOperandVal(1); 2886 unsigned NumSrcElts = Src.getValueType().getVectorNumElements(); 2887 APInt DemandedSrcElts = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx); 2888 Known = computeKnownBits(Src, DemandedSrcElts, Depth + 1); 2889 break; 2890 } 2891 case ISD::SCALAR_TO_VECTOR: { 2892 // We know about scalar_to_vector as much as we know about it source, 2893 // which becomes the first element of otherwise unknown vector. 2894 if (DemandedElts != 1) 2895 break; 2896 2897 SDValue N0 = Op.getOperand(0); 2898 Known = computeKnownBits(N0, Depth + 1); 2899 if (N0.getValueSizeInBits() != BitWidth) 2900 Known = Known.trunc(BitWidth); 2901 2902 break; 2903 } 2904 case ISD::BITCAST: { 2905 SDValue N0 = Op.getOperand(0); 2906 EVT SubVT = N0.getValueType(); 2907 unsigned SubBitWidth = SubVT.getScalarSizeInBits(); 2908 2909 // Ignore bitcasts from unsupported types. 2910 if (!(SubVT.isInteger() || SubVT.isFloatingPoint())) 2911 break; 2912 2913 // Fast handling of 'identity' bitcasts. 2914 if (BitWidth == SubBitWidth) { 2915 Known = computeKnownBits(N0, DemandedElts, Depth + 1); 2916 break; 2917 } 2918 2919 bool IsLE = getDataLayout().isLittleEndian(); 2920 2921 // Bitcast 'small element' vector to 'large element' scalar/vector. 2922 if ((BitWidth % SubBitWidth) == 0) { 2923 assert(N0.getValueType().isVector() && "Expected bitcast from vector"); 2924 2925 // Collect known bits for the (larger) output by collecting the known 2926 // bits from each set of sub elements and shift these into place. 2927 // We need to separately call computeKnownBits for each set of 2928 // sub elements as the knownbits for each is likely to be different. 2929 unsigned SubScale = BitWidth / SubBitWidth; 2930 APInt SubDemandedElts(NumElts * SubScale, 0); 2931 for (unsigned i = 0; i != NumElts; ++i) 2932 if (DemandedElts[i]) 2933 SubDemandedElts.setBit(i * SubScale); 2934 2935 for (unsigned i = 0; i != SubScale; ++i) { 2936 Known2 = computeKnownBits(N0, SubDemandedElts.shl(i), 2937 Depth + 1); 2938 unsigned Shifts = IsLE ? i : SubScale - 1 - i; 2939 Known.One |= Known2.One.zext(BitWidth).shl(SubBitWidth * Shifts); 2940 Known.Zero |= Known2.Zero.zext(BitWidth).shl(SubBitWidth * Shifts); 2941 } 2942 } 2943 2944 // Bitcast 'large element' scalar/vector to 'small element' vector. 2945 if ((SubBitWidth % BitWidth) == 0) { 2946 assert(Op.getValueType().isVector() && "Expected bitcast to vector"); 2947 2948 // Collect known bits for the (smaller) output by collecting the known 2949 // bits from the overlapping larger input elements and extracting the 2950 // sub sections we actually care about. 2951 unsigned SubScale = SubBitWidth / BitWidth; 2952 APInt SubDemandedElts(NumElts / SubScale, 0); 2953 for (unsigned i = 0; i != NumElts; ++i) 2954 if (DemandedElts[i]) 2955 SubDemandedElts.setBit(i / SubScale); 2956 2957 Known2 = computeKnownBits(N0, SubDemandedElts, Depth + 1); 2958 2959 Known.Zero.setAllBits(); Known.One.setAllBits(); 2960 for (unsigned i = 0; i != NumElts; ++i) 2961 if (DemandedElts[i]) { 2962 unsigned Shifts = IsLE ? i : NumElts - 1 - i; 2963 unsigned Offset = (Shifts % SubScale) * BitWidth; 2964 Known.One &= Known2.One.lshr(Offset).trunc(BitWidth); 2965 Known.Zero &= Known2.Zero.lshr(Offset).trunc(BitWidth); 2966 // If we don't know any bits, early out. 2967 if (Known.isUnknown()) 2968 break; 2969 } 2970 } 2971 break; 2972 } 2973 case ISD::AND: 2974 Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 2975 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 2976 2977 Known &= Known2; 2978 break; 2979 case ISD::OR: 2980 Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 2981 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 2982 2983 Known |= Known2; 2984 break; 2985 case ISD::XOR: 2986 Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 2987 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 2988 2989 Known ^= Known2; 2990 break; 2991 case ISD::MUL: { 2992 Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 2993 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 2994 Known = KnownBits::mul(Known, Known2); 2995 break; 2996 } 2997 case ISD::MULHU: { 2998 Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 2999 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3000 Known = KnownBits::mulhu(Known, Known2); 3001 break; 3002 } 3003 case ISD::MULHS: { 3004 Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3005 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3006 Known = KnownBits::mulhs(Known, Known2); 3007 break; 3008 } 3009 case ISD::UMUL_LOHI: { 3010 assert((Op.getResNo() == 0 || Op.getResNo() == 1) && "Unknown result"); 3011 Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3012 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3013 if (Op.getResNo() == 0) 3014 Known = KnownBits::mul(Known, Known2); 3015 else 3016 Known = KnownBits::mulhu(Known, Known2); 3017 break; 3018 } 3019 case ISD::SMUL_LOHI: { 3020 assert((Op.getResNo() == 0 || Op.getResNo() == 1) && "Unknown result"); 3021 Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3022 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3023 if (Op.getResNo() == 0) 3024 Known = KnownBits::mul(Known, Known2); 3025 else 3026 Known = KnownBits::mulhs(Known, Known2); 3027 break; 3028 } 3029 case ISD::UDIV: { 3030 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3031 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3032 Known = KnownBits::udiv(Known, Known2); 3033 break; 3034 } 3035 case ISD::SELECT: 3036 case ISD::VSELECT: 3037 Known = computeKnownBits(Op.getOperand(2), DemandedElts, Depth+1); 3038 // If we don't know any bits, early out. 3039 if (Known.isUnknown()) 3040 break; 3041 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth+1); 3042 3043 // Only known if known in both the LHS and RHS. 3044 Known = KnownBits::commonBits(Known, Known2); 3045 break; 3046 case ISD::SELECT_CC: 3047 Known = computeKnownBits(Op.getOperand(3), DemandedElts, Depth+1); 3048 // If we don't know any bits, early out. 3049 if (Known.isUnknown()) 3050 break; 3051 Known2 = computeKnownBits(Op.getOperand(2), DemandedElts, Depth+1); 3052 3053 // Only known if known in both the LHS and RHS. 3054 Known = KnownBits::commonBits(Known, Known2); 3055 break; 3056 case ISD::SMULO: 3057 case ISD::UMULO: 3058 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: 3059 if (Op.getResNo() != 1) 3060 break; 3061 // The boolean result conforms to getBooleanContents. 3062 // If we know the result of a setcc has the top bits zero, use this info. 3063 // We know that we have an integer-based boolean since these operations 3064 // are only available for integer. 3065 if (TLI->getBooleanContents(Op.getValueType().isVector(), false) == 3066 TargetLowering::ZeroOrOneBooleanContent && 3067 BitWidth > 1) 3068 Known.Zero.setBitsFrom(1); 3069 break; 3070 case ISD::SETCC: 3071 case ISD::STRICT_FSETCC: 3072 case ISD::STRICT_FSETCCS: { 3073 unsigned OpNo = Op->isStrictFPOpcode() ? 1 : 0; 3074 // If we know the result of a setcc has the top bits zero, use this info. 3075 if (TLI->getBooleanContents(Op.getOperand(OpNo).getValueType()) == 3076 TargetLowering::ZeroOrOneBooleanContent && 3077 BitWidth > 1) 3078 Known.Zero.setBitsFrom(1); 3079 break; 3080 } 3081 case ISD::SHL: 3082 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3083 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3084 Known = KnownBits::shl(Known, Known2); 3085 3086 // Minimum shift low bits are known zero. 3087 if (const APInt *ShMinAmt = 3088 getValidMinimumShiftAmountConstant(Op, DemandedElts)) 3089 Known.Zero.setLowBits(ShMinAmt->getZExtValue()); 3090 break; 3091 case ISD::SRL: 3092 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3093 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3094 Known = KnownBits::lshr(Known, Known2); 3095 3096 // Minimum shift high bits are known zero. 3097 if (const APInt *ShMinAmt = 3098 getValidMinimumShiftAmountConstant(Op, DemandedElts)) 3099 Known.Zero.setHighBits(ShMinAmt->getZExtValue()); 3100 break; 3101 case ISD::SRA: 3102 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3103 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3104 Known = KnownBits::ashr(Known, Known2); 3105 // TODO: Add minimum shift high known sign bits. 3106 break; 3107 case ISD::FSHL: 3108 case ISD::FSHR: 3109 if (ConstantSDNode *C = isConstOrConstSplat(Op.getOperand(2), DemandedElts)) { 3110 unsigned Amt = C->getAPIntValue().urem(BitWidth); 3111 3112 // For fshl, 0-shift returns the 1st arg. 3113 // For fshr, 0-shift returns the 2nd arg. 3114 if (Amt == 0) { 3115 Known = computeKnownBits(Op.getOperand(Opcode == ISD::FSHL ? 0 : 1), 3116 DemandedElts, Depth + 1); 3117 break; 3118 } 3119 3120 // fshl: (X << (Z % BW)) | (Y >> (BW - (Z % BW))) 3121 // fshr: (X << (BW - (Z % BW))) | (Y >> (Z % BW)) 3122 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3123 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3124 if (Opcode == ISD::FSHL) { 3125 Known.One <<= Amt; 3126 Known.Zero <<= Amt; 3127 Known2.One.lshrInPlace(BitWidth - Amt); 3128 Known2.Zero.lshrInPlace(BitWidth - Amt); 3129 } else { 3130 Known.One <<= BitWidth - Amt; 3131 Known.Zero <<= BitWidth - Amt; 3132 Known2.One.lshrInPlace(Amt); 3133 Known2.Zero.lshrInPlace(Amt); 3134 } 3135 Known.One |= Known2.One; 3136 Known.Zero |= Known2.Zero; 3137 } 3138 break; 3139 case ISD::SIGN_EXTEND_INREG: { 3140 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3141 EVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT(); 3142 Known = Known.sextInReg(EVT.getScalarSizeInBits()); 3143 break; 3144 } 3145 case ISD::CTTZ: 3146 case ISD::CTTZ_ZERO_UNDEF: { 3147 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3148 // If we have a known 1, its position is our upper bound. 3149 unsigned PossibleTZ = Known2.countMaxTrailingZeros(); 3150 unsigned LowBits = Log2_32(PossibleTZ) + 1; 3151 Known.Zero.setBitsFrom(LowBits); 3152 break; 3153 } 3154 case ISD::CTLZ: 3155 case ISD::CTLZ_ZERO_UNDEF: { 3156 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3157 // If we have a known 1, its position is our upper bound. 3158 unsigned PossibleLZ = Known2.countMaxLeadingZeros(); 3159 unsigned LowBits = Log2_32(PossibleLZ) + 1; 3160 Known.Zero.setBitsFrom(LowBits); 3161 break; 3162 } 3163 case ISD::CTPOP: { 3164 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3165 // If we know some of the bits are zero, they can't be one. 3166 unsigned PossibleOnes = Known2.countMaxPopulation(); 3167 Known.Zero.setBitsFrom(Log2_32(PossibleOnes) + 1); 3168 break; 3169 } 3170 case ISD::PARITY: { 3171 // Parity returns 0 everywhere but the LSB. 3172 Known.Zero.setBitsFrom(1); 3173 break; 3174 } 3175 case ISD::LOAD: { 3176 LoadSDNode *LD = cast<LoadSDNode>(Op); 3177 const Constant *Cst = TLI->getTargetConstantFromLoad(LD); 3178 if (ISD::isNON_EXTLoad(LD) && Cst) { 3179 // Determine any common known bits from the loaded constant pool value. 3180 Type *CstTy = Cst->getType(); 3181 if ((NumElts * BitWidth) == CstTy->getPrimitiveSizeInBits()) { 3182 // If its a vector splat, then we can (quickly) reuse the scalar path. 3183 // NOTE: We assume all elements match and none are UNDEF. 3184 if (CstTy->isVectorTy()) { 3185 if (const Constant *Splat = Cst->getSplatValue()) { 3186 Cst = Splat; 3187 CstTy = Cst->getType(); 3188 } 3189 } 3190 // TODO - do we need to handle different bitwidths? 3191 if (CstTy->isVectorTy() && BitWidth == CstTy->getScalarSizeInBits()) { 3192 // Iterate across all vector elements finding common known bits. 3193 Known.One.setAllBits(); 3194 Known.Zero.setAllBits(); 3195 for (unsigned i = 0; i != NumElts; ++i) { 3196 if (!DemandedElts[i]) 3197 continue; 3198 if (Constant *Elt = Cst->getAggregateElement(i)) { 3199 if (auto *CInt = dyn_cast<ConstantInt>(Elt)) { 3200 const APInt &Value = CInt->getValue(); 3201 Known.One &= Value; 3202 Known.Zero &= ~Value; 3203 continue; 3204 } 3205 if (auto *CFP = dyn_cast<ConstantFP>(Elt)) { 3206 APInt Value = CFP->getValueAPF().bitcastToAPInt(); 3207 Known.One &= Value; 3208 Known.Zero &= ~Value; 3209 continue; 3210 } 3211 } 3212 Known.One.clearAllBits(); 3213 Known.Zero.clearAllBits(); 3214 break; 3215 } 3216 } else if (BitWidth == CstTy->getPrimitiveSizeInBits()) { 3217 if (auto *CInt = dyn_cast<ConstantInt>(Cst)) { 3218 Known = KnownBits::makeConstant(CInt->getValue()); 3219 } else if (auto *CFP = dyn_cast<ConstantFP>(Cst)) { 3220 Known = 3221 KnownBits::makeConstant(CFP->getValueAPF().bitcastToAPInt()); 3222 } 3223 } 3224 } 3225 } else if (ISD::isZEXTLoad(Op.getNode()) && Op.getResNo() == 0) { 3226 // If this is a ZEXTLoad and we are looking at the loaded value. 3227 EVT VT = LD->getMemoryVT(); 3228 unsigned MemBits = VT.getScalarSizeInBits(); 3229 Known.Zero.setBitsFrom(MemBits); 3230 } else if (const MDNode *Ranges = LD->getRanges()) { 3231 if (LD->getExtensionType() == ISD::NON_EXTLOAD) 3232 computeKnownBitsFromRangeMetadata(*Ranges, Known); 3233 } 3234 break; 3235 } 3236 case ISD::ZERO_EXTEND_VECTOR_INREG: { 3237 EVT InVT = Op.getOperand(0).getValueType(); 3238 APInt InDemandedElts = DemandedElts.zextOrSelf(InVT.getVectorNumElements()); 3239 Known = computeKnownBits(Op.getOperand(0), InDemandedElts, Depth + 1); 3240 Known = Known.zext(BitWidth); 3241 break; 3242 } 3243 case ISD::ZERO_EXTEND: { 3244 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3245 Known = Known.zext(BitWidth); 3246 break; 3247 } 3248 case ISD::SIGN_EXTEND_VECTOR_INREG: { 3249 EVT InVT = Op.getOperand(0).getValueType(); 3250 APInt InDemandedElts = DemandedElts.zextOrSelf(InVT.getVectorNumElements()); 3251 Known = computeKnownBits(Op.getOperand(0), InDemandedElts, Depth + 1); 3252 // If the sign bit is known to be zero or one, then sext will extend 3253 // it to the top bits, else it will just zext. 3254 Known = Known.sext(BitWidth); 3255 break; 3256 } 3257 case ISD::SIGN_EXTEND: { 3258 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3259 // If the sign bit is known to be zero or one, then sext will extend 3260 // it to the top bits, else it will just zext. 3261 Known = Known.sext(BitWidth); 3262 break; 3263 } 3264 case ISD::ANY_EXTEND_VECTOR_INREG: { 3265 EVT InVT = Op.getOperand(0).getValueType(); 3266 APInt InDemandedElts = DemandedElts.zextOrSelf(InVT.getVectorNumElements()); 3267 Known = computeKnownBits(Op.getOperand(0), InDemandedElts, Depth + 1); 3268 Known = Known.anyext(BitWidth); 3269 break; 3270 } 3271 case ISD::ANY_EXTEND: { 3272 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3273 Known = Known.anyext(BitWidth); 3274 break; 3275 } 3276 case ISD::TRUNCATE: { 3277 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3278 Known = Known.trunc(BitWidth); 3279 break; 3280 } 3281 case ISD::AssertZext: { 3282 EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT(); 3283 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits()); 3284 Known = computeKnownBits(Op.getOperand(0), Depth+1); 3285 Known.Zero |= (~InMask); 3286 Known.One &= (~Known.Zero); 3287 break; 3288 } 3289 case ISD::AssertAlign: { 3290 unsigned LogOfAlign = Log2(cast<AssertAlignSDNode>(Op)->getAlign()); 3291 assert(LogOfAlign != 0); 3292 // If a node is guaranteed to be aligned, set low zero bits accordingly as 3293 // well as clearing one bits. 3294 Known.Zero.setLowBits(LogOfAlign); 3295 Known.One.clearLowBits(LogOfAlign); 3296 break; 3297 } 3298 case ISD::FGETSIGN: 3299 // All bits are zero except the low bit. 3300 Known.Zero.setBitsFrom(1); 3301 break; 3302 case ISD::USUBO: 3303 case ISD::SSUBO: 3304 if (Op.getResNo() == 1) { 3305 // If we know the result of a setcc has the top bits zero, use this info. 3306 if (TLI->getBooleanContents(Op.getOperand(0).getValueType()) == 3307 TargetLowering::ZeroOrOneBooleanContent && 3308 BitWidth > 1) 3309 Known.Zero.setBitsFrom(1); 3310 break; 3311 } 3312 LLVM_FALLTHROUGH; 3313 case ISD::SUB: 3314 case ISD::SUBC: { 3315 assert(Op.getResNo() == 0 && 3316 "We only compute knownbits for the difference here."); 3317 3318 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3319 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3320 Known = KnownBits::computeForAddSub(/* Add */ false, /* NSW */ false, 3321 Known, Known2); 3322 break; 3323 } 3324 case ISD::UADDO: 3325 case ISD::SADDO: 3326 case ISD::ADDCARRY: 3327 if (Op.getResNo() == 1) { 3328 // If we know the result of a setcc has the top bits zero, use this info. 3329 if (TLI->getBooleanContents(Op.getOperand(0).getValueType()) == 3330 TargetLowering::ZeroOrOneBooleanContent && 3331 BitWidth > 1) 3332 Known.Zero.setBitsFrom(1); 3333 break; 3334 } 3335 LLVM_FALLTHROUGH; 3336 case ISD::ADD: 3337 case ISD::ADDC: 3338 case ISD::ADDE: { 3339 assert(Op.getResNo() == 0 && "We only compute knownbits for the sum here."); 3340 3341 // With ADDE and ADDCARRY, a carry bit may be added in. 3342 KnownBits Carry(1); 3343 if (Opcode == ISD::ADDE) 3344 // Can't track carry from glue, set carry to unknown. 3345 Carry.resetAll(); 3346 else if (Opcode == ISD::ADDCARRY) 3347 // TODO: Compute known bits for the carry operand. Not sure if it is worth 3348 // the trouble (how often will we find a known carry bit). And I haven't 3349 // tested this very much yet, but something like this might work: 3350 // Carry = computeKnownBits(Op.getOperand(2), DemandedElts, Depth + 1); 3351 // Carry = Carry.zextOrTrunc(1, false); 3352 Carry.resetAll(); 3353 else 3354 Carry.setAllZero(); 3355 3356 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3357 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3358 Known = KnownBits::computeForAddCarry(Known, Known2, Carry); 3359 break; 3360 } 3361 case ISD::SREM: { 3362 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3363 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3364 Known = KnownBits::srem(Known, Known2); 3365 break; 3366 } 3367 case ISD::UREM: { 3368 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3369 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3370 Known = KnownBits::urem(Known, Known2); 3371 break; 3372 } 3373 case ISD::EXTRACT_ELEMENT: { 3374 Known = computeKnownBits(Op.getOperand(0), Depth+1); 3375 const unsigned Index = Op.getConstantOperandVal(1); 3376 const unsigned EltBitWidth = Op.getValueSizeInBits(); 3377 3378 // Remove low part of known bits mask 3379 Known.Zero = Known.Zero.getHiBits(Known.getBitWidth() - Index * EltBitWidth); 3380 Known.One = Known.One.getHiBits(Known.getBitWidth() - Index * EltBitWidth); 3381 3382 // Remove high part of known bit mask 3383 Known = Known.trunc(EltBitWidth); 3384 break; 3385 } 3386 case ISD::EXTRACT_VECTOR_ELT: { 3387 SDValue InVec = Op.getOperand(0); 3388 SDValue EltNo = Op.getOperand(1); 3389 EVT VecVT = InVec.getValueType(); 3390 // computeKnownBits not yet implemented for scalable vectors. 3391 if (VecVT.isScalableVector()) 3392 break; 3393 const unsigned EltBitWidth = VecVT.getScalarSizeInBits(); 3394 const unsigned NumSrcElts = VecVT.getVectorNumElements(); 3395 3396 // If BitWidth > EltBitWidth the value is anyext:ed. So we do not know 3397 // anything about the extended bits. 3398 if (BitWidth > EltBitWidth) 3399 Known = Known.trunc(EltBitWidth); 3400 3401 // If we know the element index, just demand that vector element, else for 3402 // an unknown element index, ignore DemandedElts and demand them all. 3403 APInt DemandedSrcElts = APInt::getAllOnesValue(NumSrcElts); 3404 auto *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo); 3405 if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts)) 3406 DemandedSrcElts = 3407 APInt::getOneBitSet(NumSrcElts, ConstEltNo->getZExtValue()); 3408 3409 Known = computeKnownBits(InVec, DemandedSrcElts, Depth + 1); 3410 if (BitWidth > EltBitWidth) 3411 Known = Known.anyext(BitWidth); 3412 break; 3413 } 3414 case ISD::INSERT_VECTOR_ELT: { 3415 // If we know the element index, split the demand between the 3416 // source vector and the inserted element, otherwise assume we need 3417 // the original demanded vector elements and the value. 3418 SDValue InVec = Op.getOperand(0); 3419 SDValue InVal = Op.getOperand(1); 3420 SDValue EltNo = Op.getOperand(2); 3421 bool DemandedVal = true; 3422 APInt DemandedVecElts = DemandedElts; 3423 auto *CEltNo = dyn_cast<ConstantSDNode>(EltNo); 3424 if (CEltNo && CEltNo->getAPIntValue().ult(NumElts)) { 3425 unsigned EltIdx = CEltNo->getZExtValue(); 3426 DemandedVal = !!DemandedElts[EltIdx]; 3427 DemandedVecElts.clearBit(EltIdx); 3428 } 3429 Known.One.setAllBits(); 3430 Known.Zero.setAllBits(); 3431 if (DemandedVal) { 3432 Known2 = computeKnownBits(InVal, Depth + 1); 3433 Known = KnownBits::commonBits(Known, Known2.zextOrTrunc(BitWidth)); 3434 } 3435 if (!!DemandedVecElts) { 3436 Known2 = computeKnownBits(InVec, DemandedVecElts, Depth + 1); 3437 Known = KnownBits::commonBits(Known, Known2); 3438 } 3439 break; 3440 } 3441 case ISD::BITREVERSE: { 3442 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3443 Known = Known2.reverseBits(); 3444 break; 3445 } 3446 case ISD::BSWAP: { 3447 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3448 Known = Known2.byteSwap(); 3449 break; 3450 } 3451 case ISD::ABS: { 3452 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3453 Known = Known2.abs(); 3454 break; 3455 } 3456 case ISD::USUBSAT: { 3457 // The result of usubsat will never be larger than the LHS. 3458 Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3459 Known.Zero.setHighBits(Known2.countMinLeadingZeros()); 3460 break; 3461 } 3462 case ISD::UMIN: { 3463 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3464 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3465 Known = KnownBits::umin(Known, Known2); 3466 break; 3467 } 3468 case ISD::UMAX: { 3469 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3470 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3471 Known = KnownBits::umax(Known, Known2); 3472 break; 3473 } 3474 case ISD::SMIN: 3475 case ISD::SMAX: { 3476 // If we have a clamp pattern, we know that the number of sign bits will be 3477 // the minimum of the clamp min/max range. 3478 bool IsMax = (Opcode == ISD::SMAX); 3479 ConstantSDNode *CstLow = nullptr, *CstHigh = nullptr; 3480 if ((CstLow = isConstOrConstSplat(Op.getOperand(1), DemandedElts))) 3481 if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX)) 3482 CstHigh = 3483 isConstOrConstSplat(Op.getOperand(0).getOperand(1), DemandedElts); 3484 if (CstLow && CstHigh) { 3485 if (!IsMax) 3486 std::swap(CstLow, CstHigh); 3487 3488 const APInt &ValueLow = CstLow->getAPIntValue(); 3489 const APInt &ValueHigh = CstHigh->getAPIntValue(); 3490 if (ValueLow.sle(ValueHigh)) { 3491 unsigned LowSignBits = ValueLow.getNumSignBits(); 3492 unsigned HighSignBits = ValueHigh.getNumSignBits(); 3493 unsigned MinSignBits = std::min(LowSignBits, HighSignBits); 3494 if (ValueLow.isNegative() && ValueHigh.isNegative()) { 3495 Known.One.setHighBits(MinSignBits); 3496 break; 3497 } 3498 if (ValueLow.isNonNegative() && ValueHigh.isNonNegative()) { 3499 Known.Zero.setHighBits(MinSignBits); 3500 break; 3501 } 3502 } 3503 } 3504 3505 Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3506 Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3507 if (IsMax) 3508 Known = KnownBits::smax(Known, Known2); 3509 else 3510 Known = KnownBits::smin(Known, Known2); 3511 break; 3512 } 3513 case ISD::FrameIndex: 3514 case ISD::TargetFrameIndex: 3515 TLI->computeKnownBitsForFrameIndex(cast<FrameIndexSDNode>(Op)->getIndex(), 3516 Known, getMachineFunction()); 3517 break; 3518 3519 default: 3520 if (Opcode < ISD::BUILTIN_OP_END) 3521 break; 3522 LLVM_FALLTHROUGH; 3523 case ISD::INTRINSIC_WO_CHAIN: 3524 case ISD::INTRINSIC_W_CHAIN: 3525 case ISD::INTRINSIC_VOID: 3526 // Allow the target to implement this method for its nodes. 3527 TLI->computeKnownBitsForTargetNode(Op, Known, DemandedElts, *this, Depth); 3528 break; 3529 } 3530 3531 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 3532 return Known; 3533 } 3534 3535 SelectionDAG::OverflowKind SelectionDAG::computeOverflowKind(SDValue N0, 3536 SDValue N1) const { 3537 // X + 0 never overflow 3538 if (isNullConstant(N1)) 3539 return OFK_Never; 3540 3541 KnownBits N1Known = computeKnownBits(N1); 3542 if (N1Known.Zero.getBoolValue()) { 3543 KnownBits N0Known = computeKnownBits(N0); 3544 3545 bool overflow; 3546 (void)N0Known.getMaxValue().uadd_ov(N1Known.getMaxValue(), overflow); 3547 if (!overflow) 3548 return OFK_Never; 3549 } 3550 3551 // mulhi + 1 never overflow 3552 if (N0.getOpcode() == ISD::UMUL_LOHI && N0.getResNo() == 1 && 3553 (N1Known.getMaxValue() & 0x01) == N1Known.getMaxValue()) 3554 return OFK_Never; 3555 3556 if (N1.getOpcode() == ISD::UMUL_LOHI && N1.getResNo() == 1) { 3557 KnownBits N0Known = computeKnownBits(N0); 3558 3559 if ((N0Known.getMaxValue() & 0x01) == N0Known.getMaxValue()) 3560 return OFK_Never; 3561 } 3562 3563 return OFK_Sometime; 3564 } 3565 3566 bool SelectionDAG::isKnownToBeAPowerOfTwo(SDValue Val) const { 3567 EVT OpVT = Val.getValueType(); 3568 unsigned BitWidth = OpVT.getScalarSizeInBits(); 3569 3570 // Is the constant a known power of 2? 3571 if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(Val)) 3572 return Const->getAPIntValue().zextOrTrunc(BitWidth).isPowerOf2(); 3573 3574 // A left-shift of a constant one will have exactly one bit set because 3575 // shifting the bit off the end is undefined. 3576 if (Val.getOpcode() == ISD::SHL) { 3577 auto *C = isConstOrConstSplat(Val.getOperand(0)); 3578 if (C && C->getAPIntValue() == 1) 3579 return true; 3580 } 3581 3582 // Similarly, a logical right-shift of a constant sign-bit will have exactly 3583 // one bit set. 3584 if (Val.getOpcode() == ISD::SRL) { 3585 auto *C = isConstOrConstSplat(Val.getOperand(0)); 3586 if (C && C->getAPIntValue().isSignMask()) 3587 return true; 3588 } 3589 3590 // Are all operands of a build vector constant powers of two? 3591 if (Val.getOpcode() == ISD::BUILD_VECTOR) 3592 if (llvm::all_of(Val->ops(), [BitWidth](SDValue E) { 3593 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(E)) 3594 return C->getAPIntValue().zextOrTrunc(BitWidth).isPowerOf2(); 3595 return false; 3596 })) 3597 return true; 3598 3599 // More could be done here, though the above checks are enough 3600 // to handle some common cases. 3601 3602 // Fall back to computeKnownBits to catch other known cases. 3603 KnownBits Known = computeKnownBits(Val); 3604 return (Known.countMaxPopulation() == 1) && (Known.countMinPopulation() == 1); 3605 } 3606 3607 unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const { 3608 EVT VT = Op.getValueType(); 3609 3610 // TODO: Assume we don't know anything for now. 3611 if (VT.isScalableVector()) 3612 return 1; 3613 3614 APInt DemandedElts = VT.isVector() 3615 ? APInt::getAllOnesValue(VT.getVectorNumElements()) 3616 : APInt(1, 1); 3617 return ComputeNumSignBits(Op, DemandedElts, Depth); 3618 } 3619 3620 unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, const APInt &DemandedElts, 3621 unsigned Depth) const { 3622 EVT VT = Op.getValueType(); 3623 assert((VT.isInteger() || VT.isFloatingPoint()) && "Invalid VT!"); 3624 unsigned VTBits = VT.getScalarSizeInBits(); 3625 unsigned NumElts = DemandedElts.getBitWidth(); 3626 unsigned Tmp, Tmp2; 3627 unsigned FirstAnswer = 1; 3628 3629 if (auto *C = dyn_cast<ConstantSDNode>(Op)) { 3630 const APInt &Val = C->getAPIntValue(); 3631 return Val.getNumSignBits(); 3632 } 3633 3634 if (Depth >= MaxRecursionDepth) 3635 return 1; // Limit search depth. 3636 3637 if (!DemandedElts || VT.isScalableVector()) 3638 return 1; // No demanded elts, better to assume we don't know anything. 3639 3640 unsigned Opcode = Op.getOpcode(); 3641 switch (Opcode) { 3642 default: break; 3643 case ISD::AssertSext: 3644 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits(); 3645 return VTBits-Tmp+1; 3646 case ISD::AssertZext: 3647 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits(); 3648 return VTBits-Tmp; 3649 3650 case ISD::BUILD_VECTOR: 3651 Tmp = VTBits; 3652 for (unsigned i = 0, e = Op.getNumOperands(); (i < e) && (Tmp > 1); ++i) { 3653 if (!DemandedElts[i]) 3654 continue; 3655 3656 SDValue SrcOp = Op.getOperand(i); 3657 Tmp2 = ComputeNumSignBits(SrcOp, Depth + 1); 3658 3659 // BUILD_VECTOR can implicitly truncate sources, we must handle this. 3660 if (SrcOp.getValueSizeInBits() != VTBits) { 3661 assert(SrcOp.getValueSizeInBits() > VTBits && 3662 "Expected BUILD_VECTOR implicit truncation"); 3663 unsigned ExtraBits = SrcOp.getValueSizeInBits() - VTBits; 3664 Tmp2 = (Tmp2 > ExtraBits ? Tmp2 - ExtraBits : 1); 3665 } 3666 Tmp = std::min(Tmp, Tmp2); 3667 } 3668 return Tmp; 3669 3670 case ISD::VECTOR_SHUFFLE: { 3671 // Collect the minimum number of sign bits that are shared by every vector 3672 // element referenced by the shuffle. 3673 APInt DemandedLHS(NumElts, 0), DemandedRHS(NumElts, 0); 3674 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op); 3675 assert(NumElts == SVN->getMask().size() && "Unexpected vector size"); 3676 for (unsigned i = 0; i != NumElts; ++i) { 3677 int M = SVN->getMaskElt(i); 3678 if (!DemandedElts[i]) 3679 continue; 3680 // For UNDEF elements, we don't know anything about the common state of 3681 // the shuffle result. 3682 if (M < 0) 3683 return 1; 3684 if ((unsigned)M < NumElts) 3685 DemandedLHS.setBit((unsigned)M % NumElts); 3686 else 3687 DemandedRHS.setBit((unsigned)M % NumElts); 3688 } 3689 Tmp = std::numeric_limits<unsigned>::max(); 3690 if (!!DemandedLHS) 3691 Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedLHS, Depth + 1); 3692 if (!!DemandedRHS) { 3693 Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedRHS, Depth + 1); 3694 Tmp = std::min(Tmp, Tmp2); 3695 } 3696 // If we don't know anything, early out and try computeKnownBits fall-back. 3697 if (Tmp == 1) 3698 break; 3699 assert(Tmp <= VTBits && "Failed to determine minimum sign bits"); 3700 return Tmp; 3701 } 3702 3703 case ISD::BITCAST: { 3704 SDValue N0 = Op.getOperand(0); 3705 EVT SrcVT = N0.getValueType(); 3706 unsigned SrcBits = SrcVT.getScalarSizeInBits(); 3707 3708 // Ignore bitcasts from unsupported types.. 3709 if (!(SrcVT.isInteger() || SrcVT.isFloatingPoint())) 3710 break; 3711 3712 // Fast handling of 'identity' bitcasts. 3713 if (VTBits == SrcBits) 3714 return ComputeNumSignBits(N0, DemandedElts, Depth + 1); 3715 3716 bool IsLE = getDataLayout().isLittleEndian(); 3717 3718 // Bitcast 'large element' scalar/vector to 'small element' vector. 3719 if ((SrcBits % VTBits) == 0) { 3720 assert(VT.isVector() && "Expected bitcast to vector"); 3721 3722 unsigned Scale = SrcBits / VTBits; 3723 APInt SrcDemandedElts(NumElts / Scale, 0); 3724 for (unsigned i = 0; i != NumElts; ++i) 3725 if (DemandedElts[i]) 3726 SrcDemandedElts.setBit(i / Scale); 3727 3728 // Fast case - sign splat can be simply split across the small elements. 3729 Tmp = ComputeNumSignBits(N0, SrcDemandedElts, Depth + 1); 3730 if (Tmp == SrcBits) 3731 return VTBits; 3732 3733 // Slow case - determine how far the sign extends into each sub-element. 3734 Tmp2 = VTBits; 3735 for (unsigned i = 0; i != NumElts; ++i) 3736 if (DemandedElts[i]) { 3737 unsigned SubOffset = i % Scale; 3738 SubOffset = (IsLE ? ((Scale - 1) - SubOffset) : SubOffset); 3739 SubOffset = SubOffset * VTBits; 3740 if (Tmp <= SubOffset) 3741 return 1; 3742 Tmp2 = std::min(Tmp2, Tmp - SubOffset); 3743 } 3744 return Tmp2; 3745 } 3746 break; 3747 } 3748 3749 case ISD::SIGN_EXTEND: 3750 Tmp = VTBits - Op.getOperand(0).getScalarValueSizeInBits(); 3751 return ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1) + Tmp; 3752 case ISD::SIGN_EXTEND_INREG: 3753 // Max of the input and what this extends. 3754 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getScalarSizeInBits(); 3755 Tmp = VTBits-Tmp+1; 3756 Tmp2 = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1); 3757 return std::max(Tmp, Tmp2); 3758 case ISD::SIGN_EXTEND_VECTOR_INREG: { 3759 SDValue Src = Op.getOperand(0); 3760 EVT SrcVT = Src.getValueType(); 3761 APInt DemandedSrcElts = DemandedElts.zextOrSelf(SrcVT.getVectorNumElements()); 3762 Tmp = VTBits - SrcVT.getScalarSizeInBits(); 3763 return ComputeNumSignBits(Src, DemandedSrcElts, Depth+1) + Tmp; 3764 } 3765 case ISD::SRA: 3766 Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1); 3767 // SRA X, C -> adds C sign bits. 3768 if (const APInt *ShAmt = 3769 getValidMinimumShiftAmountConstant(Op, DemandedElts)) 3770 Tmp = std::min<uint64_t>(Tmp + ShAmt->getZExtValue(), VTBits); 3771 return Tmp; 3772 case ISD::SHL: 3773 if (const APInt *ShAmt = 3774 getValidMaximumShiftAmountConstant(Op, DemandedElts)) { 3775 // shl destroys sign bits, ensure it doesn't shift out all sign bits. 3776 Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1); 3777 if (ShAmt->ult(Tmp)) 3778 return Tmp - ShAmt->getZExtValue(); 3779 } 3780 break; 3781 case ISD::AND: 3782 case ISD::OR: 3783 case ISD::XOR: // NOT is handled here. 3784 // Logical binary ops preserve the number of sign bits at the worst. 3785 Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1); 3786 if (Tmp != 1) { 3787 Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth+1); 3788 FirstAnswer = std::min(Tmp, Tmp2); 3789 // We computed what we know about the sign bits as our first 3790 // answer. Now proceed to the generic code that uses 3791 // computeKnownBits, and pick whichever answer is better. 3792 } 3793 break; 3794 3795 case ISD::SELECT: 3796 case ISD::VSELECT: 3797 Tmp = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth+1); 3798 if (Tmp == 1) return 1; // Early out. 3799 Tmp2 = ComputeNumSignBits(Op.getOperand(2), DemandedElts, Depth+1); 3800 return std::min(Tmp, Tmp2); 3801 case ISD::SELECT_CC: 3802 Tmp = ComputeNumSignBits(Op.getOperand(2), DemandedElts, Depth+1); 3803 if (Tmp == 1) return 1; // Early out. 3804 Tmp2 = ComputeNumSignBits(Op.getOperand(3), DemandedElts, Depth+1); 3805 return std::min(Tmp, Tmp2); 3806 3807 case ISD::SMIN: 3808 case ISD::SMAX: { 3809 // If we have a clamp pattern, we know that the number of sign bits will be 3810 // the minimum of the clamp min/max range. 3811 bool IsMax = (Opcode == ISD::SMAX); 3812 ConstantSDNode *CstLow = nullptr, *CstHigh = nullptr; 3813 if ((CstLow = isConstOrConstSplat(Op.getOperand(1), DemandedElts))) 3814 if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX)) 3815 CstHigh = 3816 isConstOrConstSplat(Op.getOperand(0).getOperand(1), DemandedElts); 3817 if (CstLow && CstHigh) { 3818 if (!IsMax) 3819 std::swap(CstLow, CstHigh); 3820 if (CstLow->getAPIntValue().sle(CstHigh->getAPIntValue())) { 3821 Tmp = CstLow->getAPIntValue().getNumSignBits(); 3822 Tmp2 = CstHigh->getAPIntValue().getNumSignBits(); 3823 return std::min(Tmp, Tmp2); 3824 } 3825 } 3826 3827 // Fallback - just get the minimum number of sign bits of the operands. 3828 Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1); 3829 if (Tmp == 1) 3830 return 1; // Early out. 3831 Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth + 1); 3832 return std::min(Tmp, Tmp2); 3833 } 3834 case ISD::UMIN: 3835 case ISD::UMAX: 3836 Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1); 3837 if (Tmp == 1) 3838 return 1; // Early out. 3839 Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth + 1); 3840 return std::min(Tmp, Tmp2); 3841 case ISD::SADDO: 3842 case ISD::UADDO: 3843 case ISD::SSUBO: 3844 case ISD::USUBO: 3845 case ISD::SMULO: 3846 case ISD::UMULO: 3847 if (Op.getResNo() != 1) 3848 break; 3849 // The boolean result conforms to getBooleanContents. Fall through. 3850 // If setcc returns 0/-1, all bits are sign bits. 3851 // We know that we have an integer-based boolean since these operations 3852 // are only available for integer. 3853 if (TLI->getBooleanContents(VT.isVector(), false) == 3854 TargetLowering::ZeroOrNegativeOneBooleanContent) 3855 return VTBits; 3856 break; 3857 case ISD::SETCC: 3858 case ISD::STRICT_FSETCC: 3859 case ISD::STRICT_FSETCCS: { 3860 unsigned OpNo = Op->isStrictFPOpcode() ? 1 : 0; 3861 // If setcc returns 0/-1, all bits are sign bits. 3862 if (TLI->getBooleanContents(Op.getOperand(OpNo).getValueType()) == 3863 TargetLowering::ZeroOrNegativeOneBooleanContent) 3864 return VTBits; 3865 break; 3866 } 3867 case ISD::ROTL: 3868 case ISD::ROTR: 3869 Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1); 3870 3871 // If we're rotating an 0/-1 value, then it stays an 0/-1 value. 3872 if (Tmp == VTBits) 3873 return VTBits; 3874 3875 if (ConstantSDNode *C = 3876 isConstOrConstSplat(Op.getOperand(1), DemandedElts)) { 3877 unsigned RotAmt = C->getAPIntValue().urem(VTBits); 3878 3879 // Handle rotate right by N like a rotate left by 32-N. 3880 if (Opcode == ISD::ROTR) 3881 RotAmt = (VTBits - RotAmt) % VTBits; 3882 3883 // If we aren't rotating out all of the known-in sign bits, return the 3884 // number that are left. This handles rotl(sext(x), 1) for example. 3885 if (Tmp > (RotAmt + 1)) return (Tmp - RotAmt); 3886 } 3887 break; 3888 case ISD::ADD: 3889 case ISD::ADDC: 3890 // Add can have at most one carry bit. Thus we know that the output 3891 // is, at worst, one more bit than the inputs. 3892 Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1); 3893 if (Tmp == 1) return 1; // Early out. 3894 3895 // Special case decrementing a value (ADD X, -1): 3896 if (ConstantSDNode *CRHS = 3897 isConstOrConstSplat(Op.getOperand(1), DemandedElts)) 3898 if (CRHS->isAllOnesValue()) { 3899 KnownBits Known = 3900 computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1); 3901 3902 // If the input is known to be 0 or 1, the output is 0/-1, which is all 3903 // sign bits set. 3904 if ((Known.Zero | 1).isAllOnesValue()) 3905 return VTBits; 3906 3907 // If we are subtracting one from a positive number, there is no carry 3908 // out of the result. 3909 if (Known.isNonNegative()) 3910 return Tmp; 3911 } 3912 3913 Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth + 1); 3914 if (Tmp2 == 1) return 1; // Early out. 3915 return std::min(Tmp, Tmp2) - 1; 3916 case ISD::SUB: 3917 Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth + 1); 3918 if (Tmp2 == 1) return 1; // Early out. 3919 3920 // Handle NEG. 3921 if (ConstantSDNode *CLHS = 3922 isConstOrConstSplat(Op.getOperand(0), DemandedElts)) 3923 if (CLHS->isNullValue()) { 3924 KnownBits Known = 3925 computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1); 3926 // If the input is known to be 0 or 1, the output is 0/-1, which is all 3927 // sign bits set. 3928 if ((Known.Zero | 1).isAllOnesValue()) 3929 return VTBits; 3930 3931 // If the input is known to be positive (the sign bit is known clear), 3932 // the output of the NEG has the same number of sign bits as the input. 3933 if (Known.isNonNegative()) 3934 return Tmp2; 3935 3936 // Otherwise, we treat this like a SUB. 3937 } 3938 3939 // Sub can have at most one carry bit. Thus we know that the output 3940 // is, at worst, one more bit than the inputs. 3941 Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1); 3942 if (Tmp == 1) return 1; // Early out. 3943 return std::min(Tmp, Tmp2) - 1; 3944 case ISD::MUL: { 3945 // The output of the Mul can be at most twice the valid bits in the inputs. 3946 unsigned SignBitsOp0 = ComputeNumSignBits(Op.getOperand(0), Depth + 1); 3947 if (SignBitsOp0 == 1) 3948 break; 3949 unsigned SignBitsOp1 = ComputeNumSignBits(Op.getOperand(1), Depth + 1); 3950 if (SignBitsOp1 == 1) 3951 break; 3952 unsigned OutValidBits = 3953 (VTBits - SignBitsOp0 + 1) + (VTBits - SignBitsOp1 + 1); 3954 return OutValidBits > VTBits ? 1 : VTBits - OutValidBits + 1; 3955 } 3956 case ISD::SREM: 3957 // The sign bit is the LHS's sign bit, except when the result of the 3958 // remainder is zero. The magnitude of the result should be less than or 3959 // equal to the magnitude of the LHS. Therefore, the result should have 3960 // at least as many sign bits as the left hand side. 3961 return ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1); 3962 case ISD::TRUNCATE: { 3963 // Check if the sign bits of source go down as far as the truncated value. 3964 unsigned NumSrcBits = Op.getOperand(0).getScalarValueSizeInBits(); 3965 unsigned NumSrcSignBits = ComputeNumSignBits(Op.getOperand(0), Depth + 1); 3966 if (NumSrcSignBits > (NumSrcBits - VTBits)) 3967 return NumSrcSignBits - (NumSrcBits - VTBits); 3968 break; 3969 } 3970 case ISD::EXTRACT_ELEMENT: { 3971 const int KnownSign = ComputeNumSignBits(Op.getOperand(0), Depth+1); 3972 const int BitWidth = Op.getValueSizeInBits(); 3973 const int Items = Op.getOperand(0).getValueSizeInBits() / BitWidth; 3974 3975 // Get reverse index (starting from 1), Op1 value indexes elements from 3976 // little end. Sign starts at big end. 3977 const int rIndex = Items - 1 - Op.getConstantOperandVal(1); 3978 3979 // If the sign portion ends in our element the subtraction gives correct 3980 // result. Otherwise it gives either negative or > bitwidth result 3981 return std::max(std::min(KnownSign - rIndex * BitWidth, BitWidth), 0); 3982 } 3983 case ISD::INSERT_VECTOR_ELT: { 3984 // If we know the element index, split the demand between the 3985 // source vector and the inserted element, otherwise assume we need 3986 // the original demanded vector elements and the value. 3987 SDValue InVec = Op.getOperand(0); 3988 SDValue InVal = Op.getOperand(1); 3989 SDValue EltNo = Op.getOperand(2); 3990 bool DemandedVal = true; 3991 APInt DemandedVecElts = DemandedElts; 3992 auto *CEltNo = dyn_cast<ConstantSDNode>(EltNo); 3993 if (CEltNo && CEltNo->getAPIntValue().ult(NumElts)) { 3994 unsigned EltIdx = CEltNo->getZExtValue(); 3995 DemandedVal = !!DemandedElts[EltIdx]; 3996 DemandedVecElts.clearBit(EltIdx); 3997 } 3998 Tmp = std::numeric_limits<unsigned>::max(); 3999 if (DemandedVal) { 4000 // TODO - handle implicit truncation of inserted elements. 4001 if (InVal.getScalarValueSizeInBits() != VTBits) 4002 break; 4003 Tmp2 = ComputeNumSignBits(InVal, Depth + 1); 4004 Tmp = std::min(Tmp, Tmp2); 4005 } 4006 if (!!DemandedVecElts) { 4007 Tmp2 = ComputeNumSignBits(InVec, DemandedVecElts, Depth + 1); 4008 Tmp = std::min(Tmp, Tmp2); 4009 } 4010 assert(Tmp <= VTBits && "Failed to determine minimum sign bits"); 4011 return Tmp; 4012 } 4013 case ISD::EXTRACT_VECTOR_ELT: { 4014 SDValue InVec = Op.getOperand(0); 4015 SDValue EltNo = Op.getOperand(1); 4016 EVT VecVT = InVec.getValueType(); 4017 // ComputeNumSignBits not yet implemented for scalable vectors. 4018 if (VecVT.isScalableVector()) 4019 break; 4020 const unsigned BitWidth = Op.getValueSizeInBits(); 4021 const unsigned EltBitWidth = Op.getOperand(0).getScalarValueSizeInBits(); 4022 const unsigned NumSrcElts = VecVT.getVectorNumElements(); 4023 4024 // If BitWidth > EltBitWidth the value is anyext:ed, and we do not know 4025 // anything about sign bits. But if the sizes match we can derive knowledge 4026 // about sign bits from the vector operand. 4027 if (BitWidth != EltBitWidth) 4028 break; 4029 4030 // If we know the element index, just demand that vector element, else for 4031 // an unknown element index, ignore DemandedElts and demand them all. 4032 APInt DemandedSrcElts = APInt::getAllOnesValue(NumSrcElts); 4033 auto *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo); 4034 if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts)) 4035 DemandedSrcElts = 4036 APInt::getOneBitSet(NumSrcElts, ConstEltNo->getZExtValue()); 4037 4038 return ComputeNumSignBits(InVec, DemandedSrcElts, Depth + 1); 4039 } 4040 case ISD::EXTRACT_SUBVECTOR: { 4041 // Offset the demanded elts by the subvector index. 4042 SDValue Src = Op.getOperand(0); 4043 // Bail until we can represent demanded elements for scalable vectors. 4044 if (Src.getValueType().isScalableVector()) 4045 break; 4046 uint64_t Idx = Op.getConstantOperandVal(1); 4047 unsigned NumSrcElts = Src.getValueType().getVectorNumElements(); 4048 APInt DemandedSrcElts = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx); 4049 return ComputeNumSignBits(Src, DemandedSrcElts, Depth + 1); 4050 } 4051 case ISD::CONCAT_VECTORS: { 4052 // Determine the minimum number of sign bits across all demanded 4053 // elts of the input vectors. Early out if the result is already 1. 4054 Tmp = std::numeric_limits<unsigned>::max(); 4055 EVT SubVectorVT = Op.getOperand(0).getValueType(); 4056 unsigned NumSubVectorElts = SubVectorVT.getVectorNumElements(); 4057 unsigned NumSubVectors = Op.getNumOperands(); 4058 for (unsigned i = 0; (i < NumSubVectors) && (Tmp > 1); ++i) { 4059 APInt DemandedSub = DemandedElts.lshr(i * NumSubVectorElts); 4060 DemandedSub = DemandedSub.trunc(NumSubVectorElts); 4061 if (!DemandedSub) 4062 continue; 4063 Tmp2 = ComputeNumSignBits(Op.getOperand(i), DemandedSub, Depth + 1); 4064 Tmp = std::min(Tmp, Tmp2); 4065 } 4066 assert(Tmp <= VTBits && "Failed to determine minimum sign bits"); 4067 return Tmp; 4068 } 4069 case ISD::INSERT_SUBVECTOR: { 4070 // Demand any elements from the subvector and the remainder from the src its 4071 // inserted into. 4072 SDValue Src = Op.getOperand(0); 4073 SDValue Sub = Op.getOperand(1); 4074 uint64_t Idx = Op.getConstantOperandVal(2); 4075 unsigned NumSubElts = Sub.getValueType().getVectorNumElements(); 4076 APInt DemandedSubElts = DemandedElts.extractBits(NumSubElts, Idx); 4077 APInt DemandedSrcElts = DemandedElts; 4078 DemandedSrcElts.insertBits(APInt::getNullValue(NumSubElts), Idx); 4079 4080 Tmp = std::numeric_limits<unsigned>::max(); 4081 if (!!DemandedSubElts) { 4082 Tmp = ComputeNumSignBits(Sub, DemandedSubElts, Depth + 1); 4083 if (Tmp == 1) 4084 return 1; // early-out 4085 } 4086 if (!!DemandedSrcElts) { 4087 Tmp2 = ComputeNumSignBits(Src, DemandedSrcElts, Depth + 1); 4088 Tmp = std::min(Tmp, Tmp2); 4089 } 4090 assert(Tmp <= VTBits && "Failed to determine minimum sign bits"); 4091 return Tmp; 4092 } 4093 } 4094 4095 // If we are looking at the loaded value of the SDNode. 4096 if (Op.getResNo() == 0) { 4097 // Handle LOADX separately here. EXTLOAD case will fallthrough. 4098 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) { 4099 unsigned ExtType = LD->getExtensionType(); 4100 switch (ExtType) { 4101 default: break; 4102 case ISD::SEXTLOAD: // e.g. i16->i32 = '17' bits known. 4103 Tmp = LD->getMemoryVT().getScalarSizeInBits(); 4104 return VTBits - Tmp + 1; 4105 case ISD::ZEXTLOAD: // e.g. i16->i32 = '16' bits known. 4106 Tmp = LD->getMemoryVT().getScalarSizeInBits(); 4107 return VTBits - Tmp; 4108 case ISD::NON_EXTLOAD: 4109 if (const Constant *Cst = TLI->getTargetConstantFromLoad(LD)) { 4110 // We only need to handle vectors - computeKnownBits should handle 4111 // scalar cases. 4112 Type *CstTy = Cst->getType(); 4113 if (CstTy->isVectorTy() && 4114 (NumElts * VTBits) == CstTy->getPrimitiveSizeInBits()) { 4115 Tmp = VTBits; 4116 for (unsigned i = 0; i != NumElts; ++i) { 4117 if (!DemandedElts[i]) 4118 continue; 4119 if (Constant *Elt = Cst->getAggregateElement(i)) { 4120 if (auto *CInt = dyn_cast<ConstantInt>(Elt)) { 4121 const APInt &Value = CInt->getValue(); 4122 Tmp = std::min(Tmp, Value.getNumSignBits()); 4123 continue; 4124 } 4125 if (auto *CFP = dyn_cast<ConstantFP>(Elt)) { 4126 APInt Value = CFP->getValueAPF().bitcastToAPInt(); 4127 Tmp = std::min(Tmp, Value.getNumSignBits()); 4128 continue; 4129 } 4130 } 4131 // Unknown type. Conservatively assume no bits match sign bit. 4132 return 1; 4133 } 4134 return Tmp; 4135 } 4136 } 4137 break; 4138 } 4139 } 4140 } 4141 4142 // Allow the target to implement this method for its nodes. 4143 if (Opcode >= ISD::BUILTIN_OP_END || 4144 Opcode == ISD::INTRINSIC_WO_CHAIN || 4145 Opcode == ISD::INTRINSIC_W_CHAIN || 4146 Opcode == ISD::INTRINSIC_VOID) { 4147 unsigned NumBits = 4148 TLI->ComputeNumSignBitsForTargetNode(Op, DemandedElts, *this, Depth); 4149 if (NumBits > 1) 4150 FirstAnswer = std::max(FirstAnswer, NumBits); 4151 } 4152 4153 // Finally, if we can prove that the top bits of the result are 0's or 1's, 4154 // use this information. 4155 KnownBits Known = computeKnownBits(Op, DemandedElts, Depth); 4156 4157 APInt Mask; 4158 if (Known.isNonNegative()) { // sign bit is 0 4159 Mask = Known.Zero; 4160 } else if (Known.isNegative()) { // sign bit is 1; 4161 Mask = Known.One; 4162 } else { 4163 // Nothing known. 4164 return FirstAnswer; 4165 } 4166 4167 // Okay, we know that the sign bit in Mask is set. Use CLO to determine 4168 // the number of identical bits in the top of the input value. 4169 Mask <<= Mask.getBitWidth()-VTBits; 4170 return std::max(FirstAnswer, Mask.countLeadingOnes()); 4171 } 4172 4173 bool SelectionDAG::isBaseWithConstantOffset(SDValue Op) const { 4174 if ((Op.getOpcode() != ISD::ADD && Op.getOpcode() != ISD::OR) || 4175 !isa<ConstantSDNode>(Op.getOperand(1))) 4176 return false; 4177 4178 if (Op.getOpcode() == ISD::OR && 4179 !MaskedValueIsZero(Op.getOperand(0), Op.getConstantOperandAPInt(1))) 4180 return false; 4181 4182 return true; 4183 } 4184 4185 bool SelectionDAG::isKnownNeverNaN(SDValue Op, bool SNaN, unsigned Depth) const { 4186 // If we're told that NaNs won't happen, assume they won't. 4187 if (getTarget().Options.NoNaNsFPMath || Op->getFlags().hasNoNaNs()) 4188 return true; 4189 4190 if (Depth >= MaxRecursionDepth) 4191 return false; // Limit search depth. 4192 4193 // TODO: Handle vectors. 4194 // If the value is a constant, we can obviously see if it is a NaN or not. 4195 if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op)) { 4196 return !C->getValueAPF().isNaN() || 4197 (SNaN && !C->getValueAPF().isSignaling()); 4198 } 4199 4200 unsigned Opcode = Op.getOpcode(); 4201 switch (Opcode) { 4202 case ISD::FADD: 4203 case ISD::FSUB: 4204 case ISD::FMUL: 4205 case ISD::FDIV: 4206 case ISD::FREM: 4207 case ISD::FSIN: 4208 case ISD::FCOS: { 4209 if (SNaN) 4210 return true; 4211 // TODO: Need isKnownNeverInfinity 4212 return false; 4213 } 4214 case ISD::FCANONICALIZE: 4215 case ISD::FEXP: 4216 case ISD::FEXP2: 4217 case ISD::FTRUNC: 4218 case ISD::FFLOOR: 4219 case ISD::FCEIL: 4220 case ISD::FROUND: 4221 case ISD::FROUNDEVEN: 4222 case ISD::FRINT: 4223 case ISD::FNEARBYINT: { 4224 if (SNaN) 4225 return true; 4226 return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1); 4227 } 4228 case ISD::FABS: 4229 case ISD::FNEG: 4230 case ISD::FCOPYSIGN: { 4231 return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1); 4232 } 4233 case ISD::SELECT: 4234 return isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1) && 4235 isKnownNeverNaN(Op.getOperand(2), SNaN, Depth + 1); 4236 case ISD::FP_EXTEND: 4237 case ISD::FP_ROUND: { 4238 if (SNaN) 4239 return true; 4240 return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1); 4241 } 4242 case ISD::SINT_TO_FP: 4243 case ISD::UINT_TO_FP: 4244 return true; 4245 case ISD::FMA: 4246 case ISD::FMAD: { 4247 if (SNaN) 4248 return true; 4249 return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1) && 4250 isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1) && 4251 isKnownNeverNaN(Op.getOperand(2), SNaN, Depth + 1); 4252 } 4253 case ISD::FSQRT: // Need is known positive 4254 case ISD::FLOG: 4255 case ISD::FLOG2: 4256 case ISD::FLOG10: 4257 case ISD::FPOWI: 4258 case ISD::FPOW: { 4259 if (SNaN) 4260 return true; 4261 // TODO: Refine on operand 4262 return false; 4263 } 4264 case ISD::FMINNUM: 4265 case ISD::FMAXNUM: { 4266 // Only one needs to be known not-nan, since it will be returned if the 4267 // other ends up being one. 4268 return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1) || 4269 isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1); 4270 } 4271 case ISD::FMINNUM_IEEE: 4272 case ISD::FMAXNUM_IEEE: { 4273 if (SNaN) 4274 return true; 4275 // This can return a NaN if either operand is an sNaN, or if both operands 4276 // are NaN. 4277 return (isKnownNeverNaN(Op.getOperand(0), false, Depth + 1) && 4278 isKnownNeverSNaN(Op.getOperand(1), Depth + 1)) || 4279 (isKnownNeverNaN(Op.getOperand(1), false, Depth + 1) && 4280 isKnownNeverSNaN(Op.getOperand(0), Depth + 1)); 4281 } 4282 case ISD::FMINIMUM: 4283 case ISD::FMAXIMUM: { 4284 // TODO: Does this quiet or return the origina NaN as-is? 4285 return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1) && 4286 isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1); 4287 } 4288 case ISD::EXTRACT_VECTOR_ELT: { 4289 return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1); 4290 } 4291 default: 4292 if (Opcode >= ISD::BUILTIN_OP_END || 4293 Opcode == ISD::INTRINSIC_WO_CHAIN || 4294 Opcode == ISD::INTRINSIC_W_CHAIN || 4295 Opcode == ISD::INTRINSIC_VOID) { 4296 return TLI->isKnownNeverNaNForTargetNode(Op, *this, SNaN, Depth); 4297 } 4298 4299 return false; 4300 } 4301 } 4302 4303 bool SelectionDAG::isKnownNeverZeroFloat(SDValue Op) const { 4304 assert(Op.getValueType().isFloatingPoint() && 4305 "Floating point type expected"); 4306 4307 // If the value is a constant, we can obviously see if it is a zero or not. 4308 // TODO: Add BuildVector support. 4309 if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op)) 4310 return !C->isZero(); 4311 return false; 4312 } 4313 4314 bool SelectionDAG::isKnownNeverZero(SDValue Op) const { 4315 assert(!Op.getValueType().isFloatingPoint() && 4316 "Floating point types unsupported - use isKnownNeverZeroFloat"); 4317 4318 // If the value is a constant, we can obviously see if it is a zero or not. 4319 if (ISD::matchUnaryPredicate( 4320 Op, [](ConstantSDNode *C) { return !C->isNullValue(); })) 4321 return true; 4322 4323 // TODO: Recognize more cases here. 4324 switch (Op.getOpcode()) { 4325 default: break; 4326 case ISD::OR: 4327 if (isKnownNeverZero(Op.getOperand(1)) || 4328 isKnownNeverZero(Op.getOperand(0))) 4329 return true; 4330 break; 4331 } 4332 4333 return false; 4334 } 4335 4336 bool SelectionDAG::isEqualTo(SDValue A, SDValue B) const { 4337 // Check the obvious case. 4338 if (A == B) return true; 4339 4340 // For for negative and positive zero. 4341 if (const ConstantFPSDNode *CA = dyn_cast<ConstantFPSDNode>(A)) 4342 if (const ConstantFPSDNode *CB = dyn_cast<ConstantFPSDNode>(B)) 4343 if (CA->isZero() && CB->isZero()) return true; 4344 4345 // Otherwise they may not be equal. 4346 return false; 4347 } 4348 4349 // FIXME: unify with llvm::haveNoCommonBitsSet. 4350 // FIXME: could also handle masked merge pattern (X & ~M) op (Y & M) 4351 bool SelectionDAG::haveNoCommonBitsSet(SDValue A, SDValue B) const { 4352 assert(A.getValueType() == B.getValueType() && 4353 "Values must have the same type"); 4354 return KnownBits::haveNoCommonBitsSet(computeKnownBits(A), 4355 computeKnownBits(B)); 4356 } 4357 4358 static SDValue FoldSTEP_VECTOR(const SDLoc &DL, EVT VT, SDValue Step, 4359 SelectionDAG &DAG) { 4360 if (cast<ConstantSDNode>(Step)->isNullValue()) 4361 return DAG.getConstant(0, DL, VT); 4362 4363 return SDValue(); 4364 } 4365 4366 static SDValue FoldBUILD_VECTOR(const SDLoc &DL, EVT VT, 4367 ArrayRef<SDValue> Ops, 4368 SelectionDAG &DAG) { 4369 int NumOps = Ops.size(); 4370 assert(NumOps != 0 && "Can't build an empty vector!"); 4371 assert(!VT.isScalableVector() && 4372 "BUILD_VECTOR cannot be used with scalable types"); 4373 assert(VT.getVectorNumElements() == (unsigned)NumOps && 4374 "Incorrect element count in BUILD_VECTOR!"); 4375 4376 // BUILD_VECTOR of UNDEFs is UNDEF. 4377 if (llvm::all_of(Ops, [](SDValue Op) { return Op.isUndef(); })) 4378 return DAG.getUNDEF(VT); 4379 4380 // BUILD_VECTOR of seq extract/insert from the same vector + type is Identity. 4381 SDValue IdentitySrc; 4382 bool IsIdentity = true; 4383 for (int i = 0; i != NumOps; ++i) { 4384 if (Ops[i].getOpcode() != ISD::EXTRACT_VECTOR_ELT || 4385 Ops[i].getOperand(0).getValueType() != VT || 4386 (IdentitySrc && Ops[i].getOperand(0) != IdentitySrc) || 4387 !isa<ConstantSDNode>(Ops[i].getOperand(1)) || 4388 cast<ConstantSDNode>(Ops[i].getOperand(1))->getAPIntValue() != i) { 4389 IsIdentity = false; 4390 break; 4391 } 4392 IdentitySrc = Ops[i].getOperand(0); 4393 } 4394 if (IsIdentity) 4395 return IdentitySrc; 4396 4397 return SDValue(); 4398 } 4399 4400 /// Try to simplify vector concatenation to an input value, undef, or build 4401 /// vector. 4402 static SDValue foldCONCAT_VECTORS(const SDLoc &DL, EVT VT, 4403 ArrayRef<SDValue> Ops, 4404 SelectionDAG &DAG) { 4405 assert(!Ops.empty() && "Can't concatenate an empty list of vectors!"); 4406 assert(llvm::all_of(Ops, 4407 [Ops](SDValue Op) { 4408 return Ops[0].getValueType() == Op.getValueType(); 4409 }) && 4410 "Concatenation of vectors with inconsistent value types!"); 4411 assert((Ops[0].getValueType().getVectorElementCount() * Ops.size()) == 4412 VT.getVectorElementCount() && 4413 "Incorrect element count in vector concatenation!"); 4414 4415 if (Ops.size() == 1) 4416 return Ops[0]; 4417 4418 // Concat of UNDEFs is UNDEF. 4419 if (llvm::all_of(Ops, [](SDValue Op) { return Op.isUndef(); })) 4420 return DAG.getUNDEF(VT); 4421 4422 // Scan the operands and look for extract operations from a single source 4423 // that correspond to insertion at the same location via this concatenation: 4424 // concat (extract X, 0*subvec_elts), (extract X, 1*subvec_elts), ... 4425 SDValue IdentitySrc; 4426 bool IsIdentity = true; 4427 for (unsigned i = 0, e = Ops.size(); i != e; ++i) { 4428 SDValue Op = Ops[i]; 4429 unsigned IdentityIndex = i * Op.getValueType().getVectorMinNumElements(); 4430 if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR || 4431 Op.getOperand(0).getValueType() != VT || 4432 (IdentitySrc && Op.getOperand(0) != IdentitySrc) || 4433 Op.getConstantOperandVal(1) != IdentityIndex) { 4434 IsIdentity = false; 4435 break; 4436 } 4437 assert((!IdentitySrc || IdentitySrc == Op.getOperand(0)) && 4438 "Unexpected identity source vector for concat of extracts"); 4439 IdentitySrc = Op.getOperand(0); 4440 } 4441 if (IsIdentity) { 4442 assert(IdentitySrc && "Failed to set source vector of extracts"); 4443 return IdentitySrc; 4444 } 4445 4446 // The code below this point is only designed to work for fixed width 4447 // vectors, so we bail out for now. 4448 if (VT.isScalableVector()) 4449 return SDValue(); 4450 4451 // A CONCAT_VECTOR with all UNDEF/BUILD_VECTOR operands can be 4452 // simplified to one big BUILD_VECTOR. 4453 // FIXME: Add support for SCALAR_TO_VECTOR as well. 4454 EVT SVT = VT.getScalarType(); 4455 SmallVector<SDValue, 16> Elts; 4456 for (SDValue Op : Ops) { 4457 EVT OpVT = Op.getValueType(); 4458 if (Op.isUndef()) 4459 Elts.append(OpVT.getVectorNumElements(), DAG.getUNDEF(SVT)); 4460 else if (Op.getOpcode() == ISD::BUILD_VECTOR) 4461 Elts.append(Op->op_begin(), Op->op_end()); 4462 else 4463 return SDValue(); 4464 } 4465 4466 // BUILD_VECTOR requires all inputs to be of the same type, find the 4467 // maximum type and extend them all. 4468 for (SDValue Op : Elts) 4469 SVT = (SVT.bitsLT(Op.getValueType()) ? Op.getValueType() : SVT); 4470 4471 if (SVT.bitsGT(VT.getScalarType())) { 4472 for (SDValue &Op : Elts) { 4473 if (Op.isUndef()) 4474 Op = DAG.getUNDEF(SVT); 4475 else 4476 Op = DAG.getTargetLoweringInfo().isZExtFree(Op.getValueType(), SVT) 4477 ? DAG.getZExtOrTrunc(Op, DL, SVT) 4478 : DAG.getSExtOrTrunc(Op, DL, SVT); 4479 } 4480 } 4481 4482 SDValue V = DAG.getBuildVector(VT, DL, Elts); 4483 NewSDValueDbgMsg(V, "New node fold concat vectors: ", &DAG); 4484 return V; 4485 } 4486 4487 /// Gets or creates the specified node. 4488 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT) { 4489 FoldingSetNodeID ID; 4490 AddNodeIDNode(ID, Opcode, getVTList(VT), None); 4491 void *IP = nullptr; 4492 if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) 4493 return SDValue(E, 0); 4494 4495 auto *N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), 4496 getVTList(VT)); 4497 CSEMap.InsertNode(N, IP); 4498 4499 InsertNode(N); 4500 SDValue V = SDValue(N, 0); 4501 NewSDValueDbgMsg(V, "Creating new node: ", this); 4502 return V; 4503 } 4504 4505 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 4506 SDValue Operand) { 4507 SDNodeFlags Flags; 4508 if (Inserter) 4509 Flags = Inserter->getFlags(); 4510 return getNode(Opcode, DL, VT, Operand, Flags); 4511 } 4512 4513 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 4514 SDValue Operand, const SDNodeFlags Flags) { 4515 assert(Operand.getOpcode() != ISD::DELETED_NODE && 4516 "Operand is DELETED_NODE!"); 4517 // Constant fold unary operations with an integer constant operand. Even 4518 // opaque constant will be folded, because the folding of unary operations 4519 // doesn't create new constants with different values. Nevertheless, the 4520 // opaque flag is preserved during folding to prevent future folding with 4521 // other constants. 4522 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand)) { 4523 const APInt &Val = C->getAPIntValue(); 4524 switch (Opcode) { 4525 default: break; 4526 case ISD::SIGN_EXTEND: 4527 return getConstant(Val.sextOrTrunc(VT.getSizeInBits()), DL, VT, 4528 C->isTargetOpcode(), C->isOpaque()); 4529 case ISD::TRUNCATE: 4530 if (C->isOpaque()) 4531 break; 4532 LLVM_FALLTHROUGH; 4533 case ISD::ANY_EXTEND: 4534 case ISD::ZERO_EXTEND: 4535 return getConstant(Val.zextOrTrunc(VT.getSizeInBits()), DL, VT, 4536 C->isTargetOpcode(), C->isOpaque()); 4537 case ISD::UINT_TO_FP: 4538 case ISD::SINT_TO_FP: { 4539 APFloat apf(EVTToAPFloatSemantics(VT), 4540 APInt::getNullValue(VT.getSizeInBits())); 4541 (void)apf.convertFromAPInt(Val, 4542 Opcode==ISD::SINT_TO_FP, 4543 APFloat::rmNearestTiesToEven); 4544 return getConstantFP(apf, DL, VT); 4545 } 4546 case ISD::BITCAST: 4547 if (VT == MVT::f16 && C->getValueType(0) == MVT::i16) 4548 return getConstantFP(APFloat(APFloat::IEEEhalf(), Val), DL, VT); 4549 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32) 4550 return getConstantFP(APFloat(APFloat::IEEEsingle(), Val), DL, VT); 4551 if (VT == MVT::f64 && C->getValueType(0) == MVT::i64) 4552 return getConstantFP(APFloat(APFloat::IEEEdouble(), Val), DL, VT); 4553 if (VT == MVT::f128 && C->getValueType(0) == MVT::i128) 4554 return getConstantFP(APFloat(APFloat::IEEEquad(), Val), DL, VT); 4555 break; 4556 case ISD::ABS: 4557 return getConstant(Val.abs(), DL, VT, C->isTargetOpcode(), 4558 C->isOpaque()); 4559 case ISD::BITREVERSE: 4560 return getConstant(Val.reverseBits(), DL, VT, C->isTargetOpcode(), 4561 C->isOpaque()); 4562 case ISD::BSWAP: 4563 return getConstant(Val.byteSwap(), DL, VT, C->isTargetOpcode(), 4564 C->isOpaque()); 4565 case ISD::CTPOP: 4566 return getConstant(Val.countPopulation(), DL, VT, C->isTargetOpcode(), 4567 C->isOpaque()); 4568 case ISD::CTLZ: 4569 case ISD::CTLZ_ZERO_UNDEF: 4570 return getConstant(Val.countLeadingZeros(), DL, VT, C->isTargetOpcode(), 4571 C->isOpaque()); 4572 case ISD::CTTZ: 4573 case ISD::CTTZ_ZERO_UNDEF: 4574 return getConstant(Val.countTrailingZeros(), DL, VT, C->isTargetOpcode(), 4575 C->isOpaque()); 4576 case ISD::FP16_TO_FP: { 4577 bool Ignored; 4578 APFloat FPV(APFloat::IEEEhalf(), 4579 (Val.getBitWidth() == 16) ? Val : Val.trunc(16)); 4580 4581 // This can return overflow, underflow, or inexact; we don't care. 4582 // FIXME need to be more flexible about rounding mode. 4583 (void)FPV.convert(EVTToAPFloatSemantics(VT), 4584 APFloat::rmNearestTiesToEven, &Ignored); 4585 return getConstantFP(FPV, DL, VT); 4586 } 4587 case ISD::STEP_VECTOR: { 4588 if (SDValue V = FoldSTEP_VECTOR(DL, VT, Operand, *this)) 4589 return V; 4590 break; 4591 } 4592 } 4593 } 4594 4595 // Constant fold unary operations with a floating point constant operand. 4596 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand)) { 4597 APFloat V = C->getValueAPF(); // make copy 4598 switch (Opcode) { 4599 case ISD::FNEG: 4600 V.changeSign(); 4601 return getConstantFP(V, DL, VT); 4602 case ISD::FABS: 4603 V.clearSign(); 4604 return getConstantFP(V, DL, VT); 4605 case ISD::FCEIL: { 4606 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive); 4607 if (fs == APFloat::opOK || fs == APFloat::opInexact) 4608 return getConstantFP(V, DL, VT); 4609 break; 4610 } 4611 case ISD::FTRUNC: { 4612 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero); 4613 if (fs == APFloat::opOK || fs == APFloat::opInexact) 4614 return getConstantFP(V, DL, VT); 4615 break; 4616 } 4617 case ISD::FFLOOR: { 4618 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative); 4619 if (fs == APFloat::opOK || fs == APFloat::opInexact) 4620 return getConstantFP(V, DL, VT); 4621 break; 4622 } 4623 case ISD::FP_EXTEND: { 4624 bool ignored; 4625 // This can return overflow, underflow, or inexact; we don't care. 4626 // FIXME need to be more flexible about rounding mode. 4627 (void)V.convert(EVTToAPFloatSemantics(VT), 4628 APFloat::rmNearestTiesToEven, &ignored); 4629 return getConstantFP(V, DL, VT); 4630 } 4631 case ISD::FP_TO_SINT: 4632 case ISD::FP_TO_UINT: { 4633 bool ignored; 4634 APSInt IntVal(VT.getSizeInBits(), Opcode == ISD::FP_TO_UINT); 4635 // FIXME need to be more flexible about rounding mode. 4636 APFloat::opStatus s = 4637 V.convertToInteger(IntVal, APFloat::rmTowardZero, &ignored); 4638 if (s == APFloat::opInvalidOp) // inexact is OK, in fact usual 4639 break; 4640 return getConstant(IntVal, DL, VT); 4641 } 4642 case ISD::BITCAST: 4643 if (VT == MVT::i16 && C->getValueType(0) == MVT::f16) 4644 return getConstant((uint16_t)V.bitcastToAPInt().getZExtValue(), DL, VT); 4645 else if (VT == MVT::i32 && C->getValueType(0) == MVT::f32) 4646 return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), DL, VT); 4647 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64) 4648 return getConstant(V.bitcastToAPInt().getZExtValue(), DL, VT); 4649 break; 4650 case ISD::FP_TO_FP16: { 4651 bool Ignored; 4652 // This can return overflow, underflow, or inexact; we don't care. 4653 // FIXME need to be more flexible about rounding mode. 4654 (void)V.convert(APFloat::IEEEhalf(), 4655 APFloat::rmNearestTiesToEven, &Ignored); 4656 return getConstant(V.bitcastToAPInt().getZExtValue(), DL, VT); 4657 } 4658 } 4659 } 4660 4661 // Constant fold unary operations with a vector integer or float operand. 4662 if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Operand)) { 4663 if (BV->isConstant()) { 4664 switch (Opcode) { 4665 default: 4666 // FIXME: Entirely reasonable to perform folding of other unary 4667 // operations here as the need arises. 4668 break; 4669 case ISD::FNEG: 4670 case ISD::FABS: 4671 case ISD::FCEIL: 4672 case ISD::FTRUNC: 4673 case ISD::FFLOOR: 4674 case ISD::FP_EXTEND: 4675 case ISD::FP_TO_SINT: 4676 case ISD::FP_TO_UINT: 4677 case ISD::TRUNCATE: 4678 case ISD::ANY_EXTEND: 4679 case ISD::ZERO_EXTEND: 4680 case ISD::SIGN_EXTEND: 4681 case ISD::UINT_TO_FP: 4682 case ISD::SINT_TO_FP: 4683 case ISD::ABS: 4684 case ISD::BITREVERSE: 4685 case ISD::BSWAP: 4686 case ISD::CTLZ: 4687 case ISD::CTLZ_ZERO_UNDEF: 4688 case ISD::CTTZ: 4689 case ISD::CTTZ_ZERO_UNDEF: 4690 case ISD::CTPOP: { 4691 SDValue Ops = { Operand }; 4692 if (SDValue Fold = FoldConstantVectorArithmetic(Opcode, DL, VT, Ops)) 4693 return Fold; 4694 } 4695 } 4696 } 4697 } 4698 4699 unsigned OpOpcode = Operand.getNode()->getOpcode(); 4700 switch (Opcode) { 4701 case ISD::STEP_VECTOR: 4702 assert(VT.isScalableVector() && 4703 "STEP_VECTOR can only be used with scalable types"); 4704 assert(VT.getScalarSizeInBits() >= 8 && 4705 "STEP_VECTOR can only be used with vectors of integers that are at " 4706 "least 8 bits wide"); 4707 assert(Operand.getValueType().bitsGE(VT.getScalarType()) && 4708 "Operand type should be at least as large as the element type"); 4709 assert(isa<ConstantSDNode>(Operand) && 4710 cast<ConstantSDNode>(Operand)->getAPIntValue().isNonNegative() && 4711 "Expected positive integer constant for STEP_VECTOR"); 4712 break; 4713 case ISD::FREEZE: 4714 assert(VT == Operand.getValueType() && "Unexpected VT!"); 4715 break; 4716 case ISD::TokenFactor: 4717 case ISD::MERGE_VALUES: 4718 case ISD::CONCAT_VECTORS: 4719 return Operand; // Factor, merge or concat of one node? No need. 4720 case ISD::BUILD_VECTOR: { 4721 // Attempt to simplify BUILD_VECTOR. 4722 SDValue Ops[] = {Operand}; 4723 if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this)) 4724 return V; 4725 break; 4726 } 4727 case ISD::FP_ROUND: llvm_unreachable("Invalid method to make FP_ROUND node"); 4728 case ISD::FP_EXTEND: 4729 assert(VT.isFloatingPoint() && 4730 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!"); 4731 if (Operand.getValueType() == VT) return Operand; // noop conversion. 4732 assert((!VT.isVector() || 4733 VT.getVectorElementCount() == 4734 Operand.getValueType().getVectorElementCount()) && 4735 "Vector element count mismatch!"); 4736 assert(Operand.getValueType().bitsLT(VT) && 4737 "Invalid fpext node, dst < src!"); 4738 if (Operand.isUndef()) 4739 return getUNDEF(VT); 4740 break; 4741 case ISD::FP_TO_SINT: 4742 case ISD::FP_TO_UINT: 4743 if (Operand.isUndef()) 4744 return getUNDEF(VT); 4745 break; 4746 case ISD::SINT_TO_FP: 4747 case ISD::UINT_TO_FP: 4748 // [us]itofp(undef) = 0, because the result value is bounded. 4749 if (Operand.isUndef()) 4750 return getConstantFP(0.0, DL, VT); 4751 break; 4752 case ISD::SIGN_EXTEND: 4753 assert(VT.isInteger() && Operand.getValueType().isInteger() && 4754 "Invalid SIGN_EXTEND!"); 4755 assert(VT.isVector() == Operand.getValueType().isVector() && 4756 "SIGN_EXTEND result type type should be vector iff the operand " 4757 "type is vector!"); 4758 if (Operand.getValueType() == VT) return Operand; // noop extension 4759 assert((!VT.isVector() || 4760 VT.getVectorElementCount() == 4761 Operand.getValueType().getVectorElementCount()) && 4762 "Vector element count mismatch!"); 4763 assert(Operand.getValueType().bitsLT(VT) && 4764 "Invalid sext node, dst < src!"); 4765 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND) 4766 return getNode(OpOpcode, DL, VT, Operand.getOperand(0)); 4767 else if (OpOpcode == ISD::UNDEF) 4768 // sext(undef) = 0, because the top bits will all be the same. 4769 return getConstant(0, DL, VT); 4770 break; 4771 case ISD::ZERO_EXTEND: 4772 assert(VT.isInteger() && Operand.getValueType().isInteger() && 4773 "Invalid ZERO_EXTEND!"); 4774 assert(VT.isVector() == Operand.getValueType().isVector() && 4775 "ZERO_EXTEND result type type should be vector iff the operand " 4776 "type is vector!"); 4777 if (Operand.getValueType() == VT) return Operand; // noop extension 4778 assert((!VT.isVector() || 4779 VT.getVectorElementCount() == 4780 Operand.getValueType().getVectorElementCount()) && 4781 "Vector element count mismatch!"); 4782 assert(Operand.getValueType().bitsLT(VT) && 4783 "Invalid zext node, dst < src!"); 4784 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x) 4785 return getNode(ISD::ZERO_EXTEND, DL, VT, Operand.getOperand(0)); 4786 else if (OpOpcode == ISD::UNDEF) 4787 // zext(undef) = 0, because the top bits will be zero. 4788 return getConstant(0, DL, VT); 4789 break; 4790 case ISD::ANY_EXTEND: 4791 assert(VT.isInteger() && Operand.getValueType().isInteger() && 4792 "Invalid ANY_EXTEND!"); 4793 assert(VT.isVector() == Operand.getValueType().isVector() && 4794 "ANY_EXTEND result type type should be vector iff the operand " 4795 "type is vector!"); 4796 if (Operand.getValueType() == VT) return Operand; // noop extension 4797 assert((!VT.isVector() || 4798 VT.getVectorElementCount() == 4799 Operand.getValueType().getVectorElementCount()) && 4800 "Vector element count mismatch!"); 4801 assert(Operand.getValueType().bitsLT(VT) && 4802 "Invalid anyext node, dst < src!"); 4803 4804 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND || 4805 OpOpcode == ISD::ANY_EXTEND) 4806 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x) 4807 return getNode(OpOpcode, DL, VT, Operand.getOperand(0)); 4808 else if (OpOpcode == ISD::UNDEF) 4809 return getUNDEF(VT); 4810 4811 // (ext (trunc x)) -> x 4812 if (OpOpcode == ISD::TRUNCATE) { 4813 SDValue OpOp = Operand.getOperand(0); 4814 if (OpOp.getValueType() == VT) { 4815 transferDbgValues(Operand, OpOp); 4816 return OpOp; 4817 } 4818 } 4819 break; 4820 case ISD::TRUNCATE: 4821 assert(VT.isInteger() && Operand.getValueType().isInteger() && 4822 "Invalid TRUNCATE!"); 4823 assert(VT.isVector() == Operand.getValueType().isVector() && 4824 "TRUNCATE result type type should be vector iff the operand " 4825 "type is vector!"); 4826 if (Operand.getValueType() == VT) return Operand; // noop truncate 4827 assert((!VT.isVector() || 4828 VT.getVectorElementCount() == 4829 Operand.getValueType().getVectorElementCount()) && 4830 "Vector element count mismatch!"); 4831 assert(Operand.getValueType().bitsGT(VT) && 4832 "Invalid truncate node, src < dst!"); 4833 if (OpOpcode == ISD::TRUNCATE) 4834 return getNode(ISD::TRUNCATE, DL, VT, Operand.getOperand(0)); 4835 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND || 4836 OpOpcode == ISD::ANY_EXTEND) { 4837 // If the source is smaller than the dest, we still need an extend. 4838 if (Operand.getOperand(0).getValueType().getScalarType() 4839 .bitsLT(VT.getScalarType())) 4840 return getNode(OpOpcode, DL, VT, Operand.getOperand(0)); 4841 if (Operand.getOperand(0).getValueType().bitsGT(VT)) 4842 return getNode(ISD::TRUNCATE, DL, VT, Operand.getOperand(0)); 4843 return Operand.getOperand(0); 4844 } 4845 if (OpOpcode == ISD::UNDEF) 4846 return getUNDEF(VT); 4847 break; 4848 case ISD::ANY_EXTEND_VECTOR_INREG: 4849 case ISD::ZERO_EXTEND_VECTOR_INREG: 4850 case ISD::SIGN_EXTEND_VECTOR_INREG: 4851 assert(VT.isVector() && "This DAG node is restricted to vector types."); 4852 assert(Operand.getValueType().bitsLE(VT) && 4853 "The input must be the same size or smaller than the result."); 4854 assert(VT.getVectorMinNumElements() < 4855 Operand.getValueType().getVectorMinNumElements() && 4856 "The destination vector type must have fewer lanes than the input."); 4857 break; 4858 case ISD::ABS: 4859 assert(VT.isInteger() && VT == Operand.getValueType() && 4860 "Invalid ABS!"); 4861 if (OpOpcode == ISD::UNDEF) 4862 return getUNDEF(VT); 4863 break; 4864 case ISD::BSWAP: 4865 assert(VT.isInteger() && VT == Operand.getValueType() && 4866 "Invalid BSWAP!"); 4867 assert((VT.getScalarSizeInBits() % 16 == 0) && 4868 "BSWAP types must be a multiple of 16 bits!"); 4869 if (OpOpcode == ISD::UNDEF) 4870 return getUNDEF(VT); 4871 break; 4872 case ISD::BITREVERSE: 4873 assert(VT.isInteger() && VT == Operand.getValueType() && 4874 "Invalid BITREVERSE!"); 4875 if (OpOpcode == ISD::UNDEF) 4876 return getUNDEF(VT); 4877 break; 4878 case ISD::BITCAST: 4879 // Basic sanity checking. 4880 assert(VT.getSizeInBits() == Operand.getValueSizeInBits() && 4881 "Cannot BITCAST between types of different sizes!"); 4882 if (VT == Operand.getValueType()) return Operand; // noop conversion. 4883 if (OpOpcode == ISD::BITCAST) // bitconv(bitconv(x)) -> bitconv(x) 4884 return getNode(ISD::BITCAST, DL, VT, Operand.getOperand(0)); 4885 if (OpOpcode == ISD::UNDEF) 4886 return getUNDEF(VT); 4887 break; 4888 case ISD::SCALAR_TO_VECTOR: 4889 assert(VT.isVector() && !Operand.getValueType().isVector() && 4890 (VT.getVectorElementType() == Operand.getValueType() || 4891 (VT.getVectorElementType().isInteger() && 4892 Operand.getValueType().isInteger() && 4893 VT.getVectorElementType().bitsLE(Operand.getValueType()))) && 4894 "Illegal SCALAR_TO_VECTOR node!"); 4895 if (OpOpcode == ISD::UNDEF) 4896 return getUNDEF(VT); 4897 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined. 4898 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT && 4899 isa<ConstantSDNode>(Operand.getOperand(1)) && 4900 Operand.getConstantOperandVal(1) == 0 && 4901 Operand.getOperand(0).getValueType() == VT) 4902 return Operand.getOperand(0); 4903 break; 4904 case ISD::FNEG: 4905 // Negation of an unknown bag of bits is still completely undefined. 4906 if (OpOpcode == ISD::UNDEF) 4907 return getUNDEF(VT); 4908 4909 if (OpOpcode == ISD::FNEG) // --X -> X 4910 return Operand.getOperand(0); 4911 break; 4912 case ISD::FABS: 4913 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X) 4914 return getNode(ISD::FABS, DL, VT, Operand.getOperand(0)); 4915 break; 4916 case ISD::VSCALE: 4917 assert(VT == Operand.getValueType() && "Unexpected VT!"); 4918 break; 4919 case ISD::CTPOP: 4920 if (Operand.getValueType().getScalarType() == MVT::i1) 4921 return Operand; 4922 break; 4923 case ISD::CTLZ: 4924 case ISD::CTTZ: 4925 if (Operand.getValueType().getScalarType() == MVT::i1) 4926 return getNOT(DL, Operand, Operand.getValueType()); 4927 break; 4928 case ISD::VECREDUCE_SMIN: 4929 case ISD::VECREDUCE_UMAX: 4930 if (Operand.getValueType().getScalarType() == MVT::i1) 4931 return getNode(ISD::VECREDUCE_OR, DL, VT, Operand); 4932 break; 4933 case ISD::VECREDUCE_SMAX: 4934 case ISD::VECREDUCE_UMIN: 4935 if (Operand.getValueType().getScalarType() == MVT::i1) 4936 return getNode(ISD::VECREDUCE_AND, DL, VT, Operand); 4937 break; 4938 } 4939 4940 SDNode *N; 4941 SDVTList VTs = getVTList(VT); 4942 SDValue Ops[] = {Operand}; 4943 if (VT != MVT::Glue) { // Don't CSE flag producing nodes 4944 FoldingSetNodeID ID; 4945 AddNodeIDNode(ID, Opcode, VTs, Ops); 4946 void *IP = nullptr; 4947 if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) { 4948 E->intersectFlagsWith(Flags); 4949 return SDValue(E, 0); 4950 } 4951 4952 N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs); 4953 N->setFlags(Flags); 4954 createOperands(N, Ops); 4955 CSEMap.InsertNode(N, IP); 4956 } else { 4957 N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs); 4958 createOperands(N, Ops); 4959 } 4960 4961 InsertNode(N); 4962 SDValue V = SDValue(N, 0); 4963 NewSDValueDbgMsg(V, "Creating new node: ", this); 4964 return V; 4965 } 4966 4967 static llvm::Optional<APInt> FoldValue(unsigned Opcode, const APInt &C1, 4968 const APInt &C2) { 4969 switch (Opcode) { 4970 case ISD::ADD: return C1 + C2; 4971 case ISD::SUB: return C1 - C2; 4972 case ISD::MUL: return C1 * C2; 4973 case ISD::AND: return C1 & C2; 4974 case ISD::OR: return C1 | C2; 4975 case ISD::XOR: return C1 ^ C2; 4976 case ISD::SHL: return C1 << C2; 4977 case ISD::SRL: return C1.lshr(C2); 4978 case ISD::SRA: return C1.ashr(C2); 4979 case ISD::ROTL: return C1.rotl(C2); 4980 case ISD::ROTR: return C1.rotr(C2); 4981 case ISD::SMIN: return C1.sle(C2) ? C1 : C2; 4982 case ISD::SMAX: return C1.sge(C2) ? C1 : C2; 4983 case ISD::UMIN: return C1.ule(C2) ? C1 : C2; 4984 case ISD::UMAX: return C1.uge(C2) ? C1 : C2; 4985 case ISD::SADDSAT: return C1.sadd_sat(C2); 4986 case ISD::UADDSAT: return C1.uadd_sat(C2); 4987 case ISD::SSUBSAT: return C1.ssub_sat(C2); 4988 case ISD::USUBSAT: return C1.usub_sat(C2); 4989 case ISD::UDIV: 4990 if (!C2.getBoolValue()) 4991 break; 4992 return C1.udiv(C2); 4993 case ISD::UREM: 4994 if (!C2.getBoolValue()) 4995 break; 4996 return C1.urem(C2); 4997 case ISD::SDIV: 4998 if (!C2.getBoolValue()) 4999 break; 5000 return C1.sdiv(C2); 5001 case ISD::SREM: 5002 if (!C2.getBoolValue()) 5003 break; 5004 return C1.srem(C2); 5005 } 5006 return llvm::None; 5007 } 5008 5009 SDValue SelectionDAG::FoldSymbolOffset(unsigned Opcode, EVT VT, 5010 const GlobalAddressSDNode *GA, 5011 const SDNode *N2) { 5012 if (GA->getOpcode() != ISD::GlobalAddress) 5013 return SDValue(); 5014 if (!TLI->isOffsetFoldingLegal(GA)) 5015 return SDValue(); 5016 auto *C2 = dyn_cast<ConstantSDNode>(N2); 5017 if (!C2) 5018 return SDValue(); 5019 int64_t Offset = C2->getSExtValue(); 5020 switch (Opcode) { 5021 case ISD::ADD: break; 5022 case ISD::SUB: Offset = -uint64_t(Offset); break; 5023 default: return SDValue(); 5024 } 5025 return getGlobalAddress(GA->getGlobal(), SDLoc(C2), VT, 5026 GA->getOffset() + uint64_t(Offset)); 5027 } 5028 5029 bool SelectionDAG::isUndef(unsigned Opcode, ArrayRef<SDValue> Ops) { 5030 switch (Opcode) { 5031 case ISD::SDIV: 5032 case ISD::UDIV: 5033 case ISD::SREM: 5034 case ISD::UREM: { 5035 // If a divisor is zero/undef or any element of a divisor vector is 5036 // zero/undef, the whole op is undef. 5037 assert(Ops.size() == 2 && "Div/rem should have 2 operands"); 5038 SDValue Divisor = Ops[1]; 5039 if (Divisor.isUndef() || isNullConstant(Divisor)) 5040 return true; 5041 5042 return ISD::isBuildVectorOfConstantSDNodes(Divisor.getNode()) && 5043 llvm::any_of(Divisor->op_values(), 5044 [](SDValue V) { return V.isUndef() || 5045 isNullConstant(V); }); 5046 // TODO: Handle signed overflow. 5047 } 5048 // TODO: Handle oversized shifts. 5049 default: 5050 return false; 5051 } 5052 } 5053 5054 SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode, const SDLoc &DL, 5055 EVT VT, ArrayRef<SDValue> Ops) { 5056 // If the opcode is a target-specific ISD node, there's nothing we can 5057 // do here and the operand rules may not line up with the below, so 5058 // bail early. 5059 // We can't create a scalar CONCAT_VECTORS so skip it. It will break 5060 // for concats involving SPLAT_VECTOR. Concats of BUILD_VECTORS are handled by 5061 // foldCONCAT_VECTORS in getNode before this is called. 5062 if (Opcode >= ISD::BUILTIN_OP_END || Opcode == ISD::CONCAT_VECTORS) 5063 return SDValue(); 5064 5065 // For now, the array Ops should only contain two values. 5066 // This enforcement will be removed once this function is merged with 5067 // FoldConstantVectorArithmetic 5068 if (Ops.size() != 2) 5069 return SDValue(); 5070 5071 if (isUndef(Opcode, Ops)) 5072 return getUNDEF(VT); 5073 5074 SDNode *N1 = Ops[0].getNode(); 5075 SDNode *N2 = Ops[1].getNode(); 5076 5077 // Handle the case of two scalars. 5078 if (auto *C1 = dyn_cast<ConstantSDNode>(N1)) { 5079 if (auto *C2 = dyn_cast<ConstantSDNode>(N2)) { 5080 if (C1->isOpaque() || C2->isOpaque()) 5081 return SDValue(); 5082 5083 Optional<APInt> FoldAttempt = 5084 FoldValue(Opcode, C1->getAPIntValue(), C2->getAPIntValue()); 5085 if (!FoldAttempt) 5086 return SDValue(); 5087 5088 SDValue Folded = getConstant(FoldAttempt.getValue(), DL, VT); 5089 assert((!Folded || !VT.isVector()) && 5090 "Can't fold vectors ops with scalar operands"); 5091 return Folded; 5092 } 5093 } 5094 5095 // fold (add Sym, c) -> Sym+c 5096 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N1)) 5097 return FoldSymbolOffset(Opcode, VT, GA, N2); 5098 if (TLI->isCommutativeBinOp(Opcode)) 5099 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N2)) 5100 return FoldSymbolOffset(Opcode, VT, GA, N1); 5101 5102 // For fixed width vectors, extract each constant element and fold them 5103 // individually. Either input may be an undef value. 5104 bool IsBVOrSV1 = N1->getOpcode() == ISD::BUILD_VECTOR || 5105 N1->getOpcode() == ISD::SPLAT_VECTOR; 5106 if (!IsBVOrSV1 && !N1->isUndef()) 5107 return SDValue(); 5108 bool IsBVOrSV2 = N2->getOpcode() == ISD::BUILD_VECTOR || 5109 N2->getOpcode() == ISD::SPLAT_VECTOR; 5110 if (!IsBVOrSV2 && !N2->isUndef()) 5111 return SDValue(); 5112 // If both operands are undef, that's handled the same way as scalars. 5113 if (!IsBVOrSV1 && !IsBVOrSV2) 5114 return SDValue(); 5115 5116 EVT SVT = VT.getScalarType(); 5117 EVT LegalSVT = SVT; 5118 if (NewNodesMustHaveLegalTypes && LegalSVT.isInteger()) { 5119 LegalSVT = TLI->getTypeToTransformTo(*getContext(), LegalSVT); 5120 if (LegalSVT.bitsLT(SVT)) 5121 return SDValue(); 5122 } 5123 5124 SmallVector<SDValue, 4> Outputs; 5125 unsigned NumOps = 0; 5126 if (IsBVOrSV1) 5127 NumOps = std::max(NumOps, N1->getNumOperands()); 5128 if (IsBVOrSV2) 5129 NumOps = std::max(NumOps, N2->getNumOperands()); 5130 assert(NumOps != 0 && "Expected non-zero operands"); 5131 // Scalable vectors should only be SPLAT_VECTOR or UNDEF here. We only need 5132 // one iteration for that. 5133 assert((!VT.isScalableVector() || NumOps == 1) && 5134 "Scalar vector should only have one scalar"); 5135 5136 for (unsigned I = 0; I != NumOps; ++I) { 5137 // We can have a fixed length SPLAT_VECTOR and a BUILD_VECTOR so we need 5138 // to use operand 0 of the SPLAT_VECTOR for each fixed element. 5139 SDValue V1; 5140 if (N1->getOpcode() == ISD::BUILD_VECTOR) 5141 V1 = N1->getOperand(I); 5142 else if (N1->getOpcode() == ISD::SPLAT_VECTOR) 5143 V1 = N1->getOperand(0); 5144 else 5145 V1 = getUNDEF(SVT); 5146 5147 SDValue V2; 5148 if (N2->getOpcode() == ISD::BUILD_VECTOR) 5149 V2 = N2->getOperand(I); 5150 else if (N2->getOpcode() == ISD::SPLAT_VECTOR) 5151 V2 = N2->getOperand(0); 5152 else 5153 V2 = getUNDEF(SVT); 5154 5155 if (SVT.isInteger()) { 5156 if (V1.getValueType().bitsGT(SVT)) 5157 V1 = getNode(ISD::TRUNCATE, DL, SVT, V1); 5158 if (V2.getValueType().bitsGT(SVT)) 5159 V2 = getNode(ISD::TRUNCATE, DL, SVT, V2); 5160 } 5161 5162 if (V1.getValueType() != SVT || V2.getValueType() != SVT) 5163 return SDValue(); 5164 5165 // Fold one vector element. 5166 SDValue ScalarResult = getNode(Opcode, DL, SVT, V1, V2); 5167 if (LegalSVT != SVT) 5168 ScalarResult = getNode(ISD::SIGN_EXTEND, DL, LegalSVT, ScalarResult); 5169 5170 // Scalar folding only succeeded if the result is a constant or UNDEF. 5171 if (!ScalarResult.isUndef() && ScalarResult.getOpcode() != ISD::Constant && 5172 ScalarResult.getOpcode() != ISD::ConstantFP) 5173 return SDValue(); 5174 Outputs.push_back(ScalarResult); 5175 } 5176 5177 if (N1->getOpcode() == ISD::BUILD_VECTOR || 5178 N2->getOpcode() == ISD::BUILD_VECTOR) { 5179 assert(VT.getVectorNumElements() == Outputs.size() && 5180 "Vector size mismatch!"); 5181 5182 // Build a big vector out of the scalar elements we generated. 5183 return getBuildVector(VT, SDLoc(), Outputs); 5184 } 5185 5186 assert((N1->getOpcode() == ISD::SPLAT_VECTOR || 5187 N2->getOpcode() == ISD::SPLAT_VECTOR) && 5188 "One operand should be a splat vector"); 5189 5190 assert(Outputs.size() == 1 && "Vector size mismatch!"); 5191 return getSplatVector(VT, SDLoc(), Outputs[0]); 5192 } 5193 5194 // TODO: Merge with FoldConstantArithmetic 5195 SDValue SelectionDAG::FoldConstantVectorArithmetic(unsigned Opcode, 5196 const SDLoc &DL, EVT VT, 5197 ArrayRef<SDValue> Ops, 5198 const SDNodeFlags Flags) { 5199 // If the opcode is a target-specific ISD node, there's nothing we can 5200 // do here and the operand rules may not line up with the below, so 5201 // bail early. 5202 if (Opcode >= ISD::BUILTIN_OP_END) 5203 return SDValue(); 5204 5205 if (isUndef(Opcode, Ops)) 5206 return getUNDEF(VT); 5207 5208 // We can only fold vectors - maybe merge with FoldConstantArithmetic someday? 5209 if (!VT.isVector()) 5210 return SDValue(); 5211 5212 // TODO: All the folds below are performed lane-by-lane and assume a fixed 5213 // vector width, however we should be able to do constant folds involving 5214 // splat vector nodes too. 5215 if (VT.isScalableVector()) 5216 return SDValue(); 5217 5218 // From this point onwards all vectors are assumed to be fixed width. 5219 unsigned NumElts = VT.getVectorNumElements(); 5220 5221 auto IsScalarOrSameVectorSize = [&](const SDValue &Op) { 5222 return !Op.getValueType().isVector() || 5223 Op.getValueType().getVectorNumElements() == NumElts; 5224 }; 5225 5226 auto IsConstantBuildVectorOrUndef = [&](const SDValue &Op) { 5227 BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Op); 5228 return (Op.isUndef()) || (Op.getOpcode() == ISD::CONDCODE) || 5229 (BV && BV->isConstant()); 5230 }; 5231 5232 // All operands must be vector types with the same number of elements as 5233 // the result type and must be either UNDEF or a build vector of constant 5234 // or UNDEF scalars. 5235 if (!llvm::all_of(Ops, IsConstantBuildVectorOrUndef) || 5236 !llvm::all_of(Ops, IsScalarOrSameVectorSize)) 5237 return SDValue(); 5238 5239 // If we are comparing vectors, then the result needs to be a i1 boolean 5240 // that is then sign-extended back to the legal result type. 5241 EVT SVT = (Opcode == ISD::SETCC ? MVT::i1 : VT.getScalarType()); 5242 5243 // Find legal integer scalar type for constant promotion and 5244 // ensure that its scalar size is at least as large as source. 5245 EVT LegalSVT = VT.getScalarType(); 5246 if (NewNodesMustHaveLegalTypes && LegalSVT.isInteger()) { 5247 LegalSVT = TLI->getTypeToTransformTo(*getContext(), LegalSVT); 5248 if (LegalSVT.bitsLT(VT.getScalarType())) 5249 return SDValue(); 5250 } 5251 5252 // Constant fold each scalar lane separately. 5253 SmallVector<SDValue, 4> ScalarResults; 5254 for (unsigned i = 0; i != NumElts; i++) { 5255 SmallVector<SDValue, 4> ScalarOps; 5256 for (SDValue Op : Ops) { 5257 EVT InSVT = Op.getValueType().getScalarType(); 5258 BuildVectorSDNode *InBV = dyn_cast<BuildVectorSDNode>(Op); 5259 if (!InBV) { 5260 // We've checked that this is UNDEF or a constant of some kind. 5261 if (Op.isUndef()) 5262 ScalarOps.push_back(getUNDEF(InSVT)); 5263 else 5264 ScalarOps.push_back(Op); 5265 continue; 5266 } 5267 5268 SDValue ScalarOp = InBV->getOperand(i); 5269 EVT ScalarVT = ScalarOp.getValueType(); 5270 5271 // Build vector (integer) scalar operands may need implicit 5272 // truncation - do this before constant folding. 5273 if (ScalarVT.isInteger() && ScalarVT.bitsGT(InSVT)) 5274 ScalarOp = getNode(ISD::TRUNCATE, DL, InSVT, ScalarOp); 5275 5276 ScalarOps.push_back(ScalarOp); 5277 } 5278 5279 // Constant fold the scalar operands. 5280 SDValue ScalarResult = getNode(Opcode, DL, SVT, ScalarOps, Flags); 5281 5282 // Legalize the (integer) scalar constant if necessary. 5283 if (LegalSVT != SVT) 5284 ScalarResult = getNode(ISD::SIGN_EXTEND, DL, LegalSVT, ScalarResult); 5285 5286 // Scalar folding only succeeded if the result is a constant or UNDEF. 5287 if (!ScalarResult.isUndef() && ScalarResult.getOpcode() != ISD::Constant && 5288 ScalarResult.getOpcode() != ISD::ConstantFP) 5289 return SDValue(); 5290 ScalarResults.push_back(ScalarResult); 5291 } 5292 5293 SDValue V = getBuildVector(VT, DL, ScalarResults); 5294 NewSDValueDbgMsg(V, "New node fold constant vector: ", this); 5295 return V; 5296 } 5297 5298 SDValue SelectionDAG::foldConstantFPMath(unsigned Opcode, const SDLoc &DL, 5299 EVT VT, SDValue N1, SDValue N2) { 5300 // TODO: We don't do any constant folding for strict FP opcodes here, but we 5301 // should. That will require dealing with a potentially non-default 5302 // rounding mode, checking the "opStatus" return value from the APFloat 5303 // math calculations, and possibly other variations. 5304 auto *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode()); 5305 auto *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode()); 5306 if (N1CFP && N2CFP) { 5307 APFloat C1 = N1CFP->getValueAPF(), C2 = N2CFP->getValueAPF(); 5308 switch (Opcode) { 5309 case ISD::FADD: 5310 C1.add(C2, APFloat::rmNearestTiesToEven); 5311 return getConstantFP(C1, DL, VT); 5312 case ISD::FSUB: 5313 C1.subtract(C2, APFloat::rmNearestTiesToEven); 5314 return getConstantFP(C1, DL, VT); 5315 case ISD::FMUL: 5316 C1.multiply(C2, APFloat::rmNearestTiesToEven); 5317 return getConstantFP(C1, DL, VT); 5318 case ISD::FDIV: 5319 C1.divide(C2, APFloat::rmNearestTiesToEven); 5320 return getConstantFP(C1, DL, VT); 5321 case ISD::FREM: 5322 C1.mod(C2); 5323 return getConstantFP(C1, DL, VT); 5324 case ISD::FCOPYSIGN: 5325 C1.copySign(C2); 5326 return getConstantFP(C1, DL, VT); 5327 default: break; 5328 } 5329 } 5330 if (N1CFP && Opcode == ISD::FP_ROUND) { 5331 APFloat C1 = N1CFP->getValueAPF(); // make copy 5332 bool Unused; 5333 // This can return overflow, underflow, or inexact; we don't care. 5334 // FIXME need to be more flexible about rounding mode. 5335 (void) C1.convert(EVTToAPFloatSemantics(VT), APFloat::rmNearestTiesToEven, 5336 &Unused); 5337 return getConstantFP(C1, DL, VT); 5338 } 5339 5340 switch (Opcode) { 5341 case ISD::FSUB: 5342 // -0.0 - undef --> undef (consistent with "fneg undef") 5343 if (N1CFP && N1CFP->getValueAPF().isNegZero() && N2.isUndef()) 5344 return getUNDEF(VT); 5345 LLVM_FALLTHROUGH; 5346 5347 case ISD::FADD: 5348 case ISD::FMUL: 5349 case ISD::FDIV: 5350 case ISD::FREM: 5351 // If both operands are undef, the result is undef. If 1 operand is undef, 5352 // the result is NaN. This should match the behavior of the IR optimizer. 5353 if (N1.isUndef() && N2.isUndef()) 5354 return getUNDEF(VT); 5355 if (N1.isUndef() || N2.isUndef()) 5356 return getConstantFP(APFloat::getNaN(EVTToAPFloatSemantics(VT)), DL, VT); 5357 } 5358 return SDValue(); 5359 } 5360 5361 SDValue SelectionDAG::getAssertAlign(const SDLoc &DL, SDValue Val, Align A) { 5362 assert(Val.getValueType().isInteger() && "Invalid AssertAlign!"); 5363 5364 // There's no need to assert on a byte-aligned pointer. All pointers are at 5365 // least byte aligned. 5366 if (A == Align(1)) 5367 return Val; 5368 5369 FoldingSetNodeID ID; 5370 AddNodeIDNode(ID, ISD::AssertAlign, getVTList(Val.getValueType()), {Val}); 5371 ID.AddInteger(A.value()); 5372 5373 void *IP = nullptr; 5374 if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) 5375 return SDValue(E, 0); 5376 5377 auto *N = newSDNode<AssertAlignSDNode>(DL.getIROrder(), DL.getDebugLoc(), 5378 Val.getValueType(), A); 5379 createOperands(N, {Val}); 5380 5381 CSEMap.InsertNode(N, IP); 5382 InsertNode(N); 5383 5384 SDValue V(N, 0); 5385 NewSDValueDbgMsg(V, "Creating new node: ", this); 5386 return V; 5387 } 5388 5389 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 5390 SDValue N1, SDValue N2) { 5391 SDNodeFlags Flags; 5392 if (Inserter) 5393 Flags = Inserter->getFlags(); 5394 return getNode(Opcode, DL, VT, N1, N2, Flags); 5395 } 5396 5397 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 5398 SDValue N1, SDValue N2, const SDNodeFlags Flags) { 5399 assert(N1.getOpcode() != ISD::DELETED_NODE && 5400 N2.getOpcode() != ISD::DELETED_NODE && 5401 "Operand is DELETED_NODE!"); 5402 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 5403 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); 5404 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 5405 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2); 5406 5407 // Canonicalize constant to RHS if commutative. 5408 if (TLI->isCommutativeBinOp(Opcode)) { 5409 if (N1C && !N2C) { 5410 std::swap(N1C, N2C); 5411 std::swap(N1, N2); 5412 } else if (N1CFP && !N2CFP) { 5413 std::swap(N1CFP, N2CFP); 5414 std::swap(N1, N2); 5415 } 5416 } 5417 5418 switch (Opcode) { 5419 default: break; 5420 case ISD::TokenFactor: 5421 assert(VT == MVT::Other && N1.getValueType() == MVT::Other && 5422 N2.getValueType() == MVT::Other && "Invalid token factor!"); 5423 // Fold trivial token factors. 5424 if (N1.getOpcode() == ISD::EntryToken) return N2; 5425 if (N2.getOpcode() == ISD::EntryToken) return N1; 5426 if (N1 == N2) return N1; 5427 break; 5428 case ISD::BUILD_VECTOR: { 5429 // Attempt to simplify BUILD_VECTOR. 5430 SDValue Ops[] = {N1, N2}; 5431 if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this)) 5432 return V; 5433 break; 5434 } 5435 case ISD::CONCAT_VECTORS: { 5436 SDValue Ops[] = {N1, N2}; 5437 if (SDValue V = foldCONCAT_VECTORS(DL, VT, Ops, *this)) 5438 return V; 5439 break; 5440 } 5441 case ISD::AND: 5442 assert(VT.isInteger() && "This operator does not apply to FP types!"); 5443 assert(N1.getValueType() == N2.getValueType() && 5444 N1.getValueType() == VT && "Binary operator types must match!"); 5445 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's 5446 // worth handling here. 5447 if (N2C && N2C->isNullValue()) 5448 return N2; 5449 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X 5450 return N1; 5451 break; 5452 case ISD::OR: 5453 case ISD::XOR: 5454 case ISD::ADD: 5455 case ISD::SUB: 5456 assert(VT.isInteger() && "This operator does not apply to FP types!"); 5457 assert(N1.getValueType() == N2.getValueType() && 5458 N1.getValueType() == VT && "Binary operator types must match!"); 5459 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so 5460 // it's worth handling here. 5461 if (N2C && N2C->isNullValue()) 5462 return N1; 5463 if ((Opcode == ISD::ADD || Opcode == ISD::SUB) && VT.isVector() && 5464 VT.getVectorElementType() == MVT::i1) 5465 return getNode(ISD::XOR, DL, VT, N1, N2); 5466 break; 5467 case ISD::MUL: 5468 assert(VT.isInteger() && "This operator does not apply to FP types!"); 5469 assert(N1.getValueType() == N2.getValueType() && 5470 N1.getValueType() == VT && "Binary operator types must match!"); 5471 if (VT.isVector() && VT.getVectorElementType() == MVT::i1) 5472 return getNode(ISD::AND, DL, VT, N1, N2); 5473 if (N2C && (N1.getOpcode() == ISD::VSCALE) && Flags.hasNoSignedWrap()) { 5474 const APInt &MulImm = N1->getConstantOperandAPInt(0); 5475 const APInt &N2CImm = N2C->getAPIntValue(); 5476 return getVScale(DL, VT, MulImm * N2CImm); 5477 } 5478 break; 5479 case ISD::UDIV: 5480 case ISD::UREM: 5481 case ISD::MULHU: 5482 case ISD::MULHS: 5483 case ISD::SDIV: 5484 case ISD::SREM: 5485 case ISD::SADDSAT: 5486 case ISD::SSUBSAT: 5487 case ISD::UADDSAT: 5488 case ISD::USUBSAT: 5489 assert(VT.isInteger() && "This operator does not apply to FP types!"); 5490 assert(N1.getValueType() == N2.getValueType() && 5491 N1.getValueType() == VT && "Binary operator types must match!"); 5492 if (VT.isVector() && VT.getVectorElementType() == MVT::i1) { 5493 // fold (add_sat x, y) -> (or x, y) for bool types. 5494 if (Opcode == ISD::SADDSAT || Opcode == ISD::UADDSAT) 5495 return getNode(ISD::OR, DL, VT, N1, N2); 5496 // fold (sub_sat x, y) -> (and x, ~y) for bool types. 5497 if (Opcode == ISD::SSUBSAT || Opcode == ISD::USUBSAT) 5498 return getNode(ISD::AND, DL, VT, N1, getNOT(DL, N2, VT)); 5499 } 5500 break; 5501 case ISD::SMIN: 5502 case ISD::UMAX: 5503 assert(VT.isInteger() && "This operator does not apply to FP types!"); 5504 assert(N1.getValueType() == N2.getValueType() && 5505 N1.getValueType() == VT && "Binary operator types must match!"); 5506 if (VT.isVector() && VT.getVectorElementType() == MVT::i1) 5507 return getNode(ISD::OR, DL, VT, N1, N2); 5508 break; 5509 case ISD::SMAX: 5510 case ISD::UMIN: 5511 assert(VT.isInteger() && "This operator does not apply to FP types!"); 5512 assert(N1.getValueType() == N2.getValueType() && 5513 N1.getValueType() == VT && "Binary operator types must match!"); 5514 if (VT.isVector() && VT.getVectorElementType() == MVT::i1) 5515 return getNode(ISD::AND, DL, VT, N1, N2); 5516 break; 5517 case ISD::FADD: 5518 case ISD::FSUB: 5519 case ISD::FMUL: 5520 case ISD::FDIV: 5521 case ISD::FREM: 5522 assert(VT.isFloatingPoint() && "This operator only applies to FP types!"); 5523 assert(N1.getValueType() == N2.getValueType() && 5524 N1.getValueType() == VT && "Binary operator types must match!"); 5525 if (SDValue V = simplifyFPBinop(Opcode, N1, N2, Flags)) 5526 return V; 5527 break; 5528 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match. 5529 assert(N1.getValueType() == VT && 5530 N1.getValueType().isFloatingPoint() && 5531 N2.getValueType().isFloatingPoint() && 5532 "Invalid FCOPYSIGN!"); 5533 break; 5534 case ISD::SHL: 5535 if (N2C && (N1.getOpcode() == ISD::VSCALE) && Flags.hasNoSignedWrap()) { 5536 const APInt &MulImm = N1->getConstantOperandAPInt(0); 5537 const APInt &ShiftImm = N2C->getAPIntValue(); 5538 return getVScale(DL, VT, MulImm << ShiftImm); 5539 } 5540 LLVM_FALLTHROUGH; 5541 case ISD::SRA: 5542 case ISD::SRL: 5543 if (SDValue V = simplifyShift(N1, N2)) 5544 return V; 5545 LLVM_FALLTHROUGH; 5546 case ISD::ROTL: 5547 case ISD::ROTR: 5548 assert(VT == N1.getValueType() && 5549 "Shift operators return type must be the same as their first arg"); 5550 assert(VT.isInteger() && N2.getValueType().isInteger() && 5551 "Shifts only work on integers"); 5552 assert((!VT.isVector() || VT == N2.getValueType()) && 5553 "Vector shift amounts must be in the same as their first arg"); 5554 // Verify that the shift amount VT is big enough to hold valid shift 5555 // amounts. This catches things like trying to shift an i1024 value by an 5556 // i8, which is easy to fall into in generic code that uses 5557 // TLI.getShiftAmount(). 5558 assert(N2.getValueType().getScalarSizeInBits() >= 5559 Log2_32_Ceil(VT.getScalarSizeInBits()) && 5560 "Invalid use of small shift amount with oversized value!"); 5561 5562 // Always fold shifts of i1 values so the code generator doesn't need to 5563 // handle them. Since we know the size of the shift has to be less than the 5564 // size of the value, the shift/rotate count is guaranteed to be zero. 5565 if (VT == MVT::i1) 5566 return N1; 5567 if (N2C && N2C->isNullValue()) 5568 return N1; 5569 break; 5570 case ISD::FP_ROUND: 5571 assert(VT.isFloatingPoint() && 5572 N1.getValueType().isFloatingPoint() && 5573 VT.bitsLE(N1.getValueType()) && 5574 N2C && (N2C->getZExtValue() == 0 || N2C->getZExtValue() == 1) && 5575 "Invalid FP_ROUND!"); 5576 if (N1.getValueType() == VT) return N1; // noop conversion. 5577 break; 5578 case ISD::AssertSext: 5579 case ISD::AssertZext: { 5580 EVT EVT = cast<VTSDNode>(N2)->getVT(); 5581 assert(VT == N1.getValueType() && "Not an inreg extend!"); 5582 assert(VT.isInteger() && EVT.isInteger() && 5583 "Cannot *_EXTEND_INREG FP types"); 5584 assert(!EVT.isVector() && 5585 "AssertSExt/AssertZExt type should be the vector element type " 5586 "rather than the vector type!"); 5587 assert(EVT.bitsLE(VT.getScalarType()) && "Not extending!"); 5588 if (VT.getScalarType() == EVT) return N1; // noop assertion. 5589 break; 5590 } 5591 case ISD::SIGN_EXTEND_INREG: { 5592 EVT EVT = cast<VTSDNode>(N2)->getVT(); 5593 assert(VT == N1.getValueType() && "Not an inreg extend!"); 5594 assert(VT.isInteger() && EVT.isInteger() && 5595 "Cannot *_EXTEND_INREG FP types"); 5596 assert(EVT.isVector() == VT.isVector() && 5597 "SIGN_EXTEND_INREG type should be vector iff the operand " 5598 "type is vector!"); 5599 assert((!EVT.isVector() || 5600 EVT.getVectorElementCount() == VT.getVectorElementCount()) && 5601 "Vector element counts must match in SIGN_EXTEND_INREG"); 5602 assert(EVT.bitsLE(VT) && "Not extending!"); 5603 if (EVT == VT) return N1; // Not actually extending 5604 5605 auto SignExtendInReg = [&](APInt Val, llvm::EVT ConstantVT) { 5606 unsigned FromBits = EVT.getScalarSizeInBits(); 5607 Val <<= Val.getBitWidth() - FromBits; 5608 Val.ashrInPlace(Val.getBitWidth() - FromBits); 5609 return getConstant(Val, DL, ConstantVT); 5610 }; 5611 5612 if (N1C) { 5613 const APInt &Val = N1C->getAPIntValue(); 5614 return SignExtendInReg(Val, VT); 5615 } 5616 if (ISD::isBuildVectorOfConstantSDNodes(N1.getNode())) { 5617 SmallVector<SDValue, 8> Ops; 5618 llvm::EVT OpVT = N1.getOperand(0).getValueType(); 5619 for (int i = 0, e = VT.getVectorNumElements(); i != e; ++i) { 5620 SDValue Op = N1.getOperand(i); 5621 if (Op.isUndef()) { 5622 Ops.push_back(getUNDEF(OpVT)); 5623 continue; 5624 } 5625 ConstantSDNode *C = cast<ConstantSDNode>(Op); 5626 APInt Val = C->getAPIntValue(); 5627 Ops.push_back(SignExtendInReg(Val, OpVT)); 5628 } 5629 return getBuildVector(VT, DL, Ops); 5630 } 5631 break; 5632 } 5633 case ISD::EXTRACT_VECTOR_ELT: 5634 assert(VT.getSizeInBits() >= N1.getValueType().getScalarSizeInBits() && 5635 "The result of EXTRACT_VECTOR_ELT must be at least as wide as the \ 5636 element type of the vector."); 5637 5638 // Extract from an undefined value or using an undefined index is undefined. 5639 if (N1.isUndef() || N2.isUndef()) 5640 return getUNDEF(VT); 5641 5642 // EXTRACT_VECTOR_ELT of out-of-bounds element is an UNDEF for fixed length 5643 // vectors. For scalable vectors we will provide appropriate support for 5644 // dealing with arbitrary indices. 5645 if (N2C && N1.getValueType().isFixedLengthVector() && 5646 N2C->getAPIntValue().uge(N1.getValueType().getVectorNumElements())) 5647 return getUNDEF(VT); 5648 5649 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is 5650 // expanding copies of large vectors from registers. This only works for 5651 // fixed length vectors, since we need to know the exact number of 5652 // elements. 5653 if (N2C && N1.getOperand(0).getValueType().isFixedLengthVector() && 5654 N1.getOpcode() == ISD::CONCAT_VECTORS && N1.getNumOperands() > 0) { 5655 unsigned Factor = 5656 N1.getOperand(0).getValueType().getVectorNumElements(); 5657 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, 5658 N1.getOperand(N2C->getZExtValue() / Factor), 5659 getVectorIdxConstant(N2C->getZExtValue() % Factor, DL)); 5660 } 5661 5662 // EXTRACT_VECTOR_ELT of BUILD_VECTOR or SPLAT_VECTOR is often formed while 5663 // lowering is expanding large vector constants. 5664 if (N2C && (N1.getOpcode() == ISD::BUILD_VECTOR || 5665 N1.getOpcode() == ISD::SPLAT_VECTOR)) { 5666 assert((N1.getOpcode() != ISD::BUILD_VECTOR || 5667 N1.getValueType().isFixedLengthVector()) && 5668 "BUILD_VECTOR used for scalable vectors"); 5669 unsigned Index = 5670 N1.getOpcode() == ISD::BUILD_VECTOR ? N2C->getZExtValue() : 0; 5671 SDValue Elt = N1.getOperand(Index); 5672 5673 if (VT != Elt.getValueType()) 5674 // If the vector element type is not legal, the BUILD_VECTOR operands 5675 // are promoted and implicitly truncated, and the result implicitly 5676 // extended. Make that explicit here. 5677 Elt = getAnyExtOrTrunc(Elt, DL, VT); 5678 5679 return Elt; 5680 } 5681 5682 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector 5683 // operations are lowered to scalars. 5684 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) { 5685 // If the indices are the same, return the inserted element else 5686 // if the indices are known different, extract the element from 5687 // the original vector. 5688 SDValue N1Op2 = N1.getOperand(2); 5689 ConstantSDNode *N1Op2C = dyn_cast<ConstantSDNode>(N1Op2); 5690 5691 if (N1Op2C && N2C) { 5692 if (N1Op2C->getZExtValue() == N2C->getZExtValue()) { 5693 if (VT == N1.getOperand(1).getValueType()) 5694 return N1.getOperand(1); 5695 else 5696 return getSExtOrTrunc(N1.getOperand(1), DL, VT); 5697 } 5698 5699 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0), N2); 5700 } 5701 } 5702 5703 // EXTRACT_VECTOR_ELT of v1iX EXTRACT_SUBVECTOR could be formed 5704 // when vector types are scalarized and v1iX is legal. 5705 // vextract (v1iX extract_subvector(vNiX, Idx)) -> vextract(vNiX,Idx). 5706 // Here we are completely ignoring the extract element index (N2), 5707 // which is fine for fixed width vectors, since any index other than 0 5708 // is undefined anyway. However, this cannot be ignored for scalable 5709 // vectors - in theory we could support this, but we don't want to do this 5710 // without a profitability check. 5711 if (N1.getOpcode() == ISD::EXTRACT_SUBVECTOR && 5712 N1.getValueType().isFixedLengthVector() && 5713 N1.getValueType().getVectorNumElements() == 1) { 5714 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0), 5715 N1.getOperand(1)); 5716 } 5717 break; 5718 case ISD::EXTRACT_ELEMENT: 5719 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!"); 5720 assert(!N1.getValueType().isVector() && !VT.isVector() && 5721 (N1.getValueType().isInteger() == VT.isInteger()) && 5722 N1.getValueType() != VT && 5723 "Wrong types for EXTRACT_ELEMENT!"); 5724 5725 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding 5726 // 64-bit integers into 32-bit parts. Instead of building the extract of 5727 // the BUILD_PAIR, only to have legalize rip it apart, just do it now. 5728 if (N1.getOpcode() == ISD::BUILD_PAIR) 5729 return N1.getOperand(N2C->getZExtValue()); 5730 5731 // EXTRACT_ELEMENT of a constant int is also very common. 5732 if (N1C) { 5733 unsigned ElementSize = VT.getSizeInBits(); 5734 unsigned Shift = ElementSize * N2C->getZExtValue(); 5735 const APInt &Val = N1C->getAPIntValue(); 5736 return getConstant(Val.extractBits(ElementSize, Shift), DL, VT); 5737 } 5738 break; 5739 case ISD::EXTRACT_SUBVECTOR: 5740 EVT N1VT = N1.getValueType(); 5741 assert(VT.isVector() && N1VT.isVector() && 5742 "Extract subvector VTs must be vectors!"); 5743 assert(VT.getVectorElementType() == N1VT.getVectorElementType() && 5744 "Extract subvector VTs must have the same element type!"); 5745 assert((VT.isFixedLengthVector() || N1VT.isScalableVector()) && 5746 "Cannot extract a scalable vector from a fixed length vector!"); 5747 assert((VT.isScalableVector() != N1VT.isScalableVector() || 5748 VT.getVectorMinNumElements() <= N1VT.getVectorMinNumElements()) && 5749 "Extract subvector must be from larger vector to smaller vector!"); 5750 assert(N2C && "Extract subvector index must be a constant"); 5751 assert((VT.isScalableVector() != N1VT.isScalableVector() || 5752 (VT.getVectorMinNumElements() + N2C->getZExtValue()) <= 5753 N1VT.getVectorMinNumElements()) && 5754 "Extract subvector overflow!"); 5755 assert(N2C->getAPIntValue().getBitWidth() == 5756 TLI->getVectorIdxTy(getDataLayout()).getFixedSizeInBits() && 5757 "Constant index for EXTRACT_SUBVECTOR has an invalid size"); 5758 5759 // Trivial extraction. 5760 if (VT == N1VT) 5761 return N1; 5762 5763 // EXTRACT_SUBVECTOR of an UNDEF is an UNDEF. 5764 if (N1.isUndef()) 5765 return getUNDEF(VT); 5766 5767 // EXTRACT_SUBVECTOR of CONCAT_VECTOR can be simplified if the pieces of 5768 // the concat have the same type as the extract. 5769 if (N1.getOpcode() == ISD::CONCAT_VECTORS && N1.getNumOperands() > 0 && 5770 VT == N1.getOperand(0).getValueType()) { 5771 unsigned Factor = VT.getVectorMinNumElements(); 5772 return N1.getOperand(N2C->getZExtValue() / Factor); 5773 } 5774 5775 // EXTRACT_SUBVECTOR of INSERT_SUBVECTOR is often created 5776 // during shuffle legalization. 5777 if (N1.getOpcode() == ISD::INSERT_SUBVECTOR && N2 == N1.getOperand(2) && 5778 VT == N1.getOperand(1).getValueType()) 5779 return N1.getOperand(1); 5780 break; 5781 } 5782 5783 // Perform trivial constant folding. 5784 if (SDValue SV = FoldConstantArithmetic(Opcode, DL, VT, {N1, N2})) 5785 return SV; 5786 5787 if (SDValue V = foldConstantFPMath(Opcode, DL, VT, N1, N2)) 5788 return V; 5789 5790 // Canonicalize an UNDEF to the RHS, even over a constant. 5791 if (N1.isUndef()) { 5792 if (TLI->isCommutativeBinOp(Opcode)) { 5793 std::swap(N1, N2); 5794 } else { 5795 switch (Opcode) { 5796 case ISD::SIGN_EXTEND_INREG: 5797 case ISD::SUB: 5798 return getUNDEF(VT); // fold op(undef, arg2) -> undef 5799 case ISD::UDIV: 5800 case ISD::SDIV: 5801 case ISD::UREM: 5802 case ISD::SREM: 5803 case ISD::SSUBSAT: 5804 case ISD::USUBSAT: 5805 return getConstant(0, DL, VT); // fold op(undef, arg2) -> 0 5806 } 5807 } 5808 } 5809 5810 // Fold a bunch of operators when the RHS is undef. 5811 if (N2.isUndef()) { 5812 switch (Opcode) { 5813 case ISD::XOR: 5814 if (N1.isUndef()) 5815 // Handle undef ^ undef -> 0 special case. This is a common 5816 // idiom (misuse). 5817 return getConstant(0, DL, VT); 5818 LLVM_FALLTHROUGH; 5819 case ISD::ADD: 5820 case ISD::SUB: 5821 case ISD::UDIV: 5822 case ISD::SDIV: 5823 case ISD::UREM: 5824 case ISD::SREM: 5825 return getUNDEF(VT); // fold op(arg1, undef) -> undef 5826 case ISD::MUL: 5827 case ISD::AND: 5828 case ISD::SSUBSAT: 5829 case ISD::USUBSAT: 5830 return getConstant(0, DL, VT); // fold op(arg1, undef) -> 0 5831 case ISD::OR: 5832 case ISD::SADDSAT: 5833 case ISD::UADDSAT: 5834 return getAllOnesConstant(DL, VT); 5835 } 5836 } 5837 5838 // Memoize this node if possible. 5839 SDNode *N; 5840 SDVTList VTs = getVTList(VT); 5841 SDValue Ops[] = {N1, N2}; 5842 if (VT != MVT::Glue) { 5843 FoldingSetNodeID ID; 5844 AddNodeIDNode(ID, Opcode, VTs, Ops); 5845 void *IP = nullptr; 5846 if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) { 5847 E->intersectFlagsWith(Flags); 5848 return SDValue(E, 0); 5849 } 5850 5851 N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs); 5852 N->setFlags(Flags); 5853 createOperands(N, Ops); 5854 CSEMap.InsertNode(N, IP); 5855 } else { 5856 N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs); 5857 createOperands(N, Ops); 5858 } 5859 5860 InsertNode(N); 5861 SDValue V = SDValue(N, 0); 5862 NewSDValueDbgMsg(V, "Creating new node: ", this); 5863 return V; 5864 } 5865 5866 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 5867 SDValue N1, SDValue N2, SDValue N3) { 5868 SDNodeFlags Flags; 5869 if (Inserter) 5870 Flags = Inserter->getFlags(); 5871 return getNode(Opcode, DL, VT, N1, N2, N3, Flags); 5872 } 5873 5874 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 5875 SDValue N1, SDValue N2, SDValue N3, 5876 const SDNodeFlags Flags) { 5877 assert(N1.getOpcode() != ISD::DELETED_NODE && 5878 N2.getOpcode() != ISD::DELETED_NODE && 5879 N3.getOpcode() != ISD::DELETED_NODE && 5880 "Operand is DELETED_NODE!"); 5881 // Perform various simplifications. 5882 switch (Opcode) { 5883 case ISD::FMA: { 5884 assert(VT.isFloatingPoint() && "This operator only applies to FP types!"); 5885 assert(N1.getValueType() == VT && N2.getValueType() == VT && 5886 N3.getValueType() == VT && "FMA types must match!"); 5887 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 5888 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2); 5889 ConstantFPSDNode *N3CFP = dyn_cast<ConstantFPSDNode>(N3); 5890 if (N1CFP && N2CFP && N3CFP) { 5891 APFloat V1 = N1CFP->getValueAPF(); 5892 const APFloat &V2 = N2CFP->getValueAPF(); 5893 const APFloat &V3 = N3CFP->getValueAPF(); 5894 V1.fusedMultiplyAdd(V2, V3, APFloat::rmNearestTiesToEven); 5895 return getConstantFP(V1, DL, VT); 5896 } 5897 break; 5898 } 5899 case ISD::BUILD_VECTOR: { 5900 // Attempt to simplify BUILD_VECTOR. 5901 SDValue Ops[] = {N1, N2, N3}; 5902 if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this)) 5903 return V; 5904 break; 5905 } 5906 case ISD::CONCAT_VECTORS: { 5907 SDValue Ops[] = {N1, N2, N3}; 5908 if (SDValue V = foldCONCAT_VECTORS(DL, VT, Ops, *this)) 5909 return V; 5910 break; 5911 } 5912 case ISD::SETCC: { 5913 assert(VT.isInteger() && "SETCC result type must be an integer!"); 5914 assert(N1.getValueType() == N2.getValueType() && 5915 "SETCC operands must have the same type!"); 5916 assert(VT.isVector() == N1.getValueType().isVector() && 5917 "SETCC type should be vector iff the operand type is vector!"); 5918 assert((!VT.isVector() || VT.getVectorElementCount() == 5919 N1.getValueType().getVectorElementCount()) && 5920 "SETCC vector element counts must match!"); 5921 // Use FoldSetCC to simplify SETCC's. 5922 if (SDValue V = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get(), DL)) 5923 return V; 5924 // Vector constant folding. 5925 SDValue Ops[] = {N1, N2, N3}; 5926 if (SDValue V = FoldConstantVectorArithmetic(Opcode, DL, VT, Ops)) { 5927 NewSDValueDbgMsg(V, "New node vector constant folding: ", this); 5928 return V; 5929 } 5930 break; 5931 } 5932 case ISD::SELECT: 5933 case ISD::VSELECT: 5934 if (SDValue V = simplifySelect(N1, N2, N3)) 5935 return V; 5936 break; 5937 case ISD::VECTOR_SHUFFLE: 5938 llvm_unreachable("should use getVectorShuffle constructor!"); 5939 case ISD::INSERT_VECTOR_ELT: { 5940 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3); 5941 // INSERT_VECTOR_ELT into out-of-bounds element is an UNDEF, except 5942 // for scalable vectors where we will generate appropriate code to 5943 // deal with out-of-bounds cases correctly. 5944 if (N3C && N1.getValueType().isFixedLengthVector() && 5945 N3C->getZExtValue() >= N1.getValueType().getVectorNumElements()) 5946 return getUNDEF(VT); 5947 5948 // Undefined index can be assumed out-of-bounds, so that's UNDEF too. 5949 if (N3.isUndef()) 5950 return getUNDEF(VT); 5951 5952 // If the inserted element is an UNDEF, just use the input vector. 5953 if (N2.isUndef()) 5954 return N1; 5955 5956 break; 5957 } 5958 case ISD::INSERT_SUBVECTOR: { 5959 // Inserting undef into undef is still undef. 5960 if (N1.isUndef() && N2.isUndef()) 5961 return getUNDEF(VT); 5962 5963 EVT N2VT = N2.getValueType(); 5964 assert(VT == N1.getValueType() && 5965 "Dest and insert subvector source types must match!"); 5966 assert(VT.isVector() && N2VT.isVector() && 5967 "Insert subvector VTs must be vectors!"); 5968 assert((VT.isScalableVector() || N2VT.isFixedLengthVector()) && 5969 "Cannot insert a scalable vector into a fixed length vector!"); 5970 assert((VT.isScalableVector() != N2VT.isScalableVector() || 5971 VT.getVectorMinNumElements() >= N2VT.getVectorMinNumElements()) && 5972 "Insert subvector must be from smaller vector to larger vector!"); 5973 assert(isa<ConstantSDNode>(N3) && 5974 "Insert subvector index must be constant"); 5975 assert((VT.isScalableVector() != N2VT.isScalableVector() || 5976 (N2VT.getVectorMinNumElements() + 5977 cast<ConstantSDNode>(N3)->getZExtValue()) <= 5978 VT.getVectorMinNumElements()) && 5979 "Insert subvector overflow!"); 5980 assert(cast<ConstantSDNode>(N3)->getAPIntValue().getBitWidth() == 5981 TLI->getVectorIdxTy(getDataLayout()).getFixedSizeInBits() && 5982 "Constant index for INSERT_SUBVECTOR has an invalid size"); 5983 5984 // Trivial insertion. 5985 if (VT == N2VT) 5986 return N2; 5987 5988 // If this is an insert of an extracted vector into an undef vector, we 5989 // can just use the input to the extract. 5990 if (N1.isUndef() && N2.getOpcode() == ISD::EXTRACT_SUBVECTOR && 5991 N2.getOperand(1) == N3 && N2.getOperand(0).getValueType() == VT) 5992 return N2.getOperand(0); 5993 break; 5994 } 5995 case ISD::BITCAST: 5996 // Fold bit_convert nodes from a type to themselves. 5997 if (N1.getValueType() == VT) 5998 return N1; 5999 break; 6000 } 6001 6002 // Memoize node if it doesn't produce a flag. 6003 SDNode *N; 6004 SDVTList VTs = getVTList(VT); 6005 SDValue Ops[] = {N1, N2, N3}; 6006 if (VT != MVT::Glue) { 6007 FoldingSetNodeID ID; 6008 AddNodeIDNode(ID, Opcode, VTs, Ops); 6009 void *IP = nullptr; 6010 if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) { 6011 E->intersectFlagsWith(Flags); 6012 return SDValue(E, 0); 6013 } 6014 6015 N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs); 6016 N->setFlags(Flags); 6017 createOperands(N, Ops); 6018 CSEMap.InsertNode(N, IP); 6019 } else { 6020 N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs); 6021 createOperands(N, Ops); 6022 } 6023 6024 InsertNode(N); 6025 SDValue V = SDValue(N, 0); 6026 NewSDValueDbgMsg(V, "Creating new node: ", this); 6027 return V; 6028 } 6029 6030 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 6031 SDValue N1, SDValue N2, SDValue N3, SDValue N4) { 6032 SDValue Ops[] = { N1, N2, N3, N4 }; 6033 return getNode(Opcode, DL, VT, Ops); 6034 } 6035 6036 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 6037 SDValue N1, SDValue N2, SDValue N3, SDValue N4, 6038 SDValue N5) { 6039 SDValue Ops[] = { N1, N2, N3, N4, N5 }; 6040 return getNode(Opcode, DL, VT, Ops); 6041 } 6042 6043 /// getStackArgumentTokenFactor - Compute a TokenFactor to force all 6044 /// the incoming stack arguments to be loaded from the stack. 6045 SDValue SelectionDAG::getStackArgumentTokenFactor(SDValue Chain) { 6046 SmallVector<SDValue, 8> ArgChains; 6047 6048 // Include the original chain at the beginning of the list. When this is 6049 // used by target LowerCall hooks, this helps legalize find the 6050 // CALLSEQ_BEGIN node. 6051 ArgChains.push_back(Chain); 6052 6053 // Add a chain value for each stack argument. 6054 for (SDNode::use_iterator U = getEntryNode().getNode()->use_begin(), 6055 UE = getEntryNode().getNode()->use_end(); U != UE; ++U) 6056 if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U)) 6057 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr())) 6058 if (FI->getIndex() < 0) 6059 ArgChains.push_back(SDValue(L, 1)); 6060 6061 // Build a tokenfactor for all the chains. 6062 return getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, ArgChains); 6063 } 6064 6065 /// getMemsetValue - Vectorized representation of the memset value 6066 /// operand. 6067 static SDValue getMemsetValue(SDValue Value, EVT VT, SelectionDAG &DAG, 6068 const SDLoc &dl) { 6069 assert(!Value.isUndef()); 6070 6071 unsigned NumBits = VT.getScalarSizeInBits(); 6072 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) { 6073 assert(C->getAPIntValue().getBitWidth() == 8); 6074 APInt Val = APInt::getSplat(NumBits, C->getAPIntValue()); 6075 if (VT.isInteger()) { 6076 bool IsOpaque = VT.getSizeInBits() > 64 || 6077 !DAG.getTargetLoweringInfo().isLegalStoreImmediate(C->getSExtValue()); 6078 return DAG.getConstant(Val, dl, VT, false, IsOpaque); 6079 } 6080 return DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(VT), Val), dl, 6081 VT); 6082 } 6083 6084 assert(Value.getValueType() == MVT::i8 && "memset with non-byte fill value?"); 6085 EVT IntVT = VT.getScalarType(); 6086 if (!IntVT.isInteger()) 6087 IntVT = EVT::getIntegerVT(*DAG.getContext(), IntVT.getSizeInBits()); 6088 6089 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, IntVT, Value); 6090 if (NumBits > 8) { 6091 // Use a multiplication with 0x010101... to extend the input to the 6092 // required length. 6093 APInt Magic = APInt::getSplat(NumBits, APInt(8, 0x01)); 6094 Value = DAG.getNode(ISD::MUL, dl, IntVT, Value, 6095 DAG.getConstant(Magic, dl, IntVT)); 6096 } 6097 6098 if (VT != Value.getValueType() && !VT.isInteger()) 6099 Value = DAG.getBitcast(VT.getScalarType(), Value); 6100 if (VT != Value.getValueType()) 6101 Value = DAG.getSplatBuildVector(VT, dl, Value); 6102 6103 return Value; 6104 } 6105 6106 /// getMemsetStringVal - Similar to getMemsetValue. Except this is only 6107 /// used when a memcpy is turned into a memset when the source is a constant 6108 /// string ptr. 6109 static SDValue getMemsetStringVal(EVT VT, const SDLoc &dl, SelectionDAG &DAG, 6110 const TargetLowering &TLI, 6111 const ConstantDataArraySlice &Slice) { 6112 // Handle vector with all elements zero. 6113 if (Slice.Array == nullptr) { 6114 if (VT.isInteger()) 6115 return DAG.getConstant(0, dl, VT); 6116 else if (VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f128) 6117 return DAG.getConstantFP(0.0, dl, VT); 6118 else if (VT.isVector()) { 6119 unsigned NumElts = VT.getVectorNumElements(); 6120 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64; 6121 return DAG.getNode(ISD::BITCAST, dl, VT, 6122 DAG.getConstant(0, dl, 6123 EVT::getVectorVT(*DAG.getContext(), 6124 EltVT, NumElts))); 6125 } else 6126 llvm_unreachable("Expected type!"); 6127 } 6128 6129 assert(!VT.isVector() && "Can't handle vector type here!"); 6130 unsigned NumVTBits = VT.getSizeInBits(); 6131 unsigned NumVTBytes = NumVTBits / 8; 6132 unsigned NumBytes = std::min(NumVTBytes, unsigned(Slice.Length)); 6133 6134 APInt Val(NumVTBits, 0); 6135 if (DAG.getDataLayout().isLittleEndian()) { 6136 for (unsigned i = 0; i != NumBytes; ++i) 6137 Val |= (uint64_t)(unsigned char)Slice[i] << i*8; 6138 } else { 6139 for (unsigned i = 0; i != NumBytes; ++i) 6140 Val |= (uint64_t)(unsigned char)Slice[i] << (NumVTBytes-i-1)*8; 6141 } 6142 6143 // If the "cost" of materializing the integer immediate is less than the cost 6144 // of a load, then it is cost effective to turn the load into the immediate. 6145 Type *Ty = VT.getTypeForEVT(*DAG.getContext()); 6146 if (TLI.shouldConvertConstantLoadToIntImm(Val, Ty)) 6147 return DAG.getConstant(Val, dl, VT); 6148 return SDValue(nullptr, 0); 6149 } 6150 6151 SDValue SelectionDAG::getMemBasePlusOffset(SDValue Base, TypeSize Offset, 6152 const SDLoc &DL, 6153 const SDNodeFlags Flags) { 6154 EVT VT = Base.getValueType(); 6155 SDValue Index; 6156 6157 if (Offset.isScalable()) 6158 Index = getVScale(DL, Base.getValueType(), 6159 APInt(Base.getValueSizeInBits().getFixedSize(), 6160 Offset.getKnownMinSize())); 6161 else 6162 Index = getConstant(Offset.getFixedSize(), DL, VT); 6163 6164 return getMemBasePlusOffset(Base, Index, DL, Flags); 6165 } 6166 6167 SDValue SelectionDAG::getMemBasePlusOffset(SDValue Ptr, SDValue Offset, 6168 const SDLoc &DL, 6169 const SDNodeFlags Flags) { 6170 assert(Offset.getValueType().isInteger()); 6171 EVT BasePtrVT = Ptr.getValueType(); 6172 return getNode(ISD::ADD, DL, BasePtrVT, Ptr, Offset, Flags); 6173 } 6174 6175 /// Returns true if memcpy source is constant data. 6176 static bool isMemSrcFromConstant(SDValue Src, ConstantDataArraySlice &Slice) { 6177 uint64_t SrcDelta = 0; 6178 GlobalAddressSDNode *G = nullptr; 6179 if (Src.getOpcode() == ISD::GlobalAddress) 6180 G = cast<GlobalAddressSDNode>(Src); 6181 else if (Src.getOpcode() == ISD::ADD && 6182 Src.getOperand(0).getOpcode() == ISD::GlobalAddress && 6183 Src.getOperand(1).getOpcode() == ISD::Constant) { 6184 G = cast<GlobalAddressSDNode>(Src.getOperand(0)); 6185 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue(); 6186 } 6187 if (!G) 6188 return false; 6189 6190 return getConstantDataArrayInfo(G->getGlobal(), Slice, 8, 6191 SrcDelta + G->getOffset()); 6192 } 6193 6194 static bool shouldLowerMemFuncForSize(const MachineFunction &MF, 6195 SelectionDAG &DAG) { 6196 // On Darwin, -Os means optimize for size without hurting performance, so 6197 // only really optimize for size when -Oz (MinSize) is used. 6198 if (MF.getTarget().getTargetTriple().isOSDarwin()) 6199 return MF.getFunction().hasMinSize(); 6200 return DAG.shouldOptForSize(); 6201 } 6202 6203 static void chainLoadsAndStoresForMemcpy(SelectionDAG &DAG, const SDLoc &dl, 6204 SmallVector<SDValue, 32> &OutChains, unsigned From, 6205 unsigned To, SmallVector<SDValue, 16> &OutLoadChains, 6206 SmallVector<SDValue, 16> &OutStoreChains) { 6207 assert(OutLoadChains.size() && "Missing loads in memcpy inlining"); 6208 assert(OutStoreChains.size() && "Missing stores in memcpy inlining"); 6209 SmallVector<SDValue, 16> GluedLoadChains; 6210 for (unsigned i = From; i < To; ++i) { 6211 OutChains.push_back(OutLoadChains[i]); 6212 GluedLoadChains.push_back(OutLoadChains[i]); 6213 } 6214 6215 // Chain for all loads. 6216 SDValue LoadToken = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 6217 GluedLoadChains); 6218 6219 for (unsigned i = From; i < To; ++i) { 6220 StoreSDNode *ST = dyn_cast<StoreSDNode>(OutStoreChains[i]); 6221 SDValue NewStore = DAG.getTruncStore(LoadToken, dl, ST->getValue(), 6222 ST->getBasePtr(), ST->getMemoryVT(), 6223 ST->getMemOperand()); 6224 OutChains.push_back(NewStore); 6225 } 6226 } 6227 6228 static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG, const SDLoc &dl, 6229 SDValue Chain, SDValue Dst, SDValue Src, 6230 uint64_t Size, Align Alignment, 6231 bool isVol, bool AlwaysInline, 6232 MachinePointerInfo DstPtrInfo, 6233 MachinePointerInfo SrcPtrInfo) { 6234 // Turn a memcpy of undef to nop. 6235 // FIXME: We need to honor volatile even is Src is undef. 6236 if (Src.isUndef()) 6237 return Chain; 6238 6239 // Expand memcpy to a series of load and store ops if the size operand falls 6240 // below a certain threshold. 6241 // TODO: In the AlwaysInline case, if the size is big then generate a loop 6242 // rather than maybe a humongous number of loads and stores. 6243 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 6244 const DataLayout &DL = DAG.getDataLayout(); 6245 LLVMContext &C = *DAG.getContext(); 6246 std::vector<EVT> MemOps; 6247 bool DstAlignCanChange = false; 6248 MachineFunction &MF = DAG.getMachineFunction(); 6249 MachineFrameInfo &MFI = MF.getFrameInfo(); 6250 bool OptSize = shouldLowerMemFuncForSize(MF, DAG); 6251 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst); 6252 if (FI && !MFI.isFixedObjectIndex(FI->getIndex())) 6253 DstAlignCanChange = true; 6254 MaybeAlign SrcAlign = DAG.InferPtrAlign(Src); 6255 if (!SrcAlign || Alignment > *SrcAlign) 6256 SrcAlign = Alignment; 6257 assert(SrcAlign && "SrcAlign must be set"); 6258 ConstantDataArraySlice Slice; 6259 // If marked as volatile, perform a copy even when marked as constant. 6260 bool CopyFromConstant = !isVol && isMemSrcFromConstant(Src, Slice); 6261 bool isZeroConstant = CopyFromConstant && Slice.Array == nullptr; 6262 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize); 6263 const MemOp Op = isZeroConstant 6264 ? MemOp::Set(Size, DstAlignCanChange, Alignment, 6265 /*IsZeroMemset*/ true, isVol) 6266 : MemOp::Copy(Size, DstAlignCanChange, Alignment, 6267 *SrcAlign, isVol, CopyFromConstant); 6268 if (!TLI.findOptimalMemOpLowering( 6269 MemOps, Limit, Op, DstPtrInfo.getAddrSpace(), 6270 SrcPtrInfo.getAddrSpace(), MF.getFunction().getAttributes())) 6271 return SDValue(); 6272 6273 if (DstAlignCanChange) { 6274 Type *Ty = MemOps[0].getTypeForEVT(C); 6275 Align NewAlign = DL.getABITypeAlign(Ty); 6276 6277 // Don't promote to an alignment that would require dynamic stack 6278 // realignment. 6279 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); 6280 if (!TRI->hasStackRealignment(MF)) 6281 while (NewAlign > Alignment && DL.exceedsNaturalStackAlignment(NewAlign)) 6282 NewAlign = NewAlign / 2; 6283 6284 if (NewAlign > Alignment) { 6285 // Give the stack frame object a larger alignment if needed. 6286 if (MFI.getObjectAlign(FI->getIndex()) < NewAlign) 6287 MFI.setObjectAlignment(FI->getIndex(), NewAlign); 6288 Alignment = NewAlign; 6289 } 6290 } 6291 6292 MachineMemOperand::Flags MMOFlags = 6293 isVol ? MachineMemOperand::MOVolatile : MachineMemOperand::MONone; 6294 SmallVector<SDValue, 16> OutLoadChains; 6295 SmallVector<SDValue, 16> OutStoreChains; 6296 SmallVector<SDValue, 32> OutChains; 6297 unsigned NumMemOps = MemOps.size(); 6298 uint64_t SrcOff = 0, DstOff = 0; 6299 for (unsigned i = 0; i != NumMemOps; ++i) { 6300 EVT VT = MemOps[i]; 6301 unsigned VTSize = VT.getSizeInBits() / 8; 6302 SDValue Value, Store; 6303 6304 if (VTSize > Size) { 6305 // Issuing an unaligned load / store pair that overlaps with the previous 6306 // pair. Adjust the offset accordingly. 6307 assert(i == NumMemOps-1 && i != 0); 6308 SrcOff -= VTSize - Size; 6309 DstOff -= VTSize - Size; 6310 } 6311 6312 if (CopyFromConstant && 6313 (isZeroConstant || (VT.isInteger() && !VT.isVector()))) { 6314 // It's unlikely a store of a vector immediate can be done in a single 6315 // instruction. It would require a load from a constantpool first. 6316 // We only handle zero vectors here. 6317 // FIXME: Handle other cases where store of vector immediate is done in 6318 // a single instruction. 6319 ConstantDataArraySlice SubSlice; 6320 if (SrcOff < Slice.Length) { 6321 SubSlice = Slice; 6322 SubSlice.move(SrcOff); 6323 } else { 6324 // This is an out-of-bounds access and hence UB. Pretend we read zero. 6325 SubSlice.Array = nullptr; 6326 SubSlice.Offset = 0; 6327 SubSlice.Length = VTSize; 6328 } 6329 Value = getMemsetStringVal(VT, dl, DAG, TLI, SubSlice); 6330 if (Value.getNode()) { 6331 Store = DAG.getStore( 6332 Chain, dl, Value, 6333 DAG.getMemBasePlusOffset(Dst, TypeSize::Fixed(DstOff), dl), 6334 DstPtrInfo.getWithOffset(DstOff), Alignment, MMOFlags); 6335 OutChains.push_back(Store); 6336 } 6337 } 6338 6339 if (!Store.getNode()) { 6340 // The type might not be legal for the target. This should only happen 6341 // if the type is smaller than a legal type, as on PPC, so the right 6342 // thing to do is generate a LoadExt/StoreTrunc pair. These simplify 6343 // to Load/Store if NVT==VT. 6344 // FIXME does the case above also need this? 6345 EVT NVT = TLI.getTypeToTransformTo(C, VT); 6346 assert(NVT.bitsGE(VT)); 6347 6348 bool isDereferenceable = 6349 SrcPtrInfo.getWithOffset(SrcOff).isDereferenceable(VTSize, C, DL); 6350 MachineMemOperand::Flags SrcMMOFlags = MMOFlags; 6351 if (isDereferenceable) 6352 SrcMMOFlags |= MachineMemOperand::MODereferenceable; 6353 6354 Value = DAG.getExtLoad( 6355 ISD::EXTLOAD, dl, NVT, Chain, 6356 DAG.getMemBasePlusOffset(Src, TypeSize::Fixed(SrcOff), dl), 6357 SrcPtrInfo.getWithOffset(SrcOff), VT, 6358 commonAlignment(*SrcAlign, SrcOff), SrcMMOFlags); 6359 OutLoadChains.push_back(Value.getValue(1)); 6360 6361 Store = DAG.getTruncStore( 6362 Chain, dl, Value, 6363 DAG.getMemBasePlusOffset(Dst, TypeSize::Fixed(DstOff), dl), 6364 DstPtrInfo.getWithOffset(DstOff), VT, Alignment, MMOFlags); 6365 OutStoreChains.push_back(Store); 6366 } 6367 SrcOff += VTSize; 6368 DstOff += VTSize; 6369 Size -= VTSize; 6370 } 6371 6372 unsigned GluedLdStLimit = MaxLdStGlue == 0 ? 6373 TLI.getMaxGluedStoresPerMemcpy() : MaxLdStGlue; 6374 unsigned NumLdStInMemcpy = OutStoreChains.size(); 6375 6376 if (NumLdStInMemcpy) { 6377 // It may be that memcpy might be converted to memset if it's memcpy 6378 // of constants. In such a case, we won't have loads and stores, but 6379 // just stores. In the absence of loads, there is nothing to gang up. 6380 if ((GluedLdStLimit <= 1) || !EnableMemCpyDAGOpt) { 6381 // If target does not care, just leave as it. 6382 for (unsigned i = 0; i < NumLdStInMemcpy; ++i) { 6383 OutChains.push_back(OutLoadChains[i]); 6384 OutChains.push_back(OutStoreChains[i]); 6385 } 6386 } else { 6387 // Ld/St less than/equal limit set by target. 6388 if (NumLdStInMemcpy <= GluedLdStLimit) { 6389 chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, 0, 6390 NumLdStInMemcpy, OutLoadChains, 6391 OutStoreChains); 6392 } else { 6393 unsigned NumberLdChain = NumLdStInMemcpy / GluedLdStLimit; 6394 unsigned RemainingLdStInMemcpy = NumLdStInMemcpy % GluedLdStLimit; 6395 unsigned GlueIter = 0; 6396 6397 for (unsigned cnt = 0; cnt < NumberLdChain; ++cnt) { 6398 unsigned IndexFrom = NumLdStInMemcpy - GlueIter - GluedLdStLimit; 6399 unsigned IndexTo = NumLdStInMemcpy - GlueIter; 6400 6401 chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, IndexFrom, IndexTo, 6402 OutLoadChains, OutStoreChains); 6403 GlueIter += GluedLdStLimit; 6404 } 6405 6406 // Residual ld/st. 6407 if (RemainingLdStInMemcpy) { 6408 chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, 0, 6409 RemainingLdStInMemcpy, OutLoadChains, 6410 OutStoreChains); 6411 } 6412 } 6413 } 6414 } 6415 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains); 6416 } 6417 6418 static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, const SDLoc &dl, 6419 SDValue Chain, SDValue Dst, SDValue Src, 6420 uint64_t Size, Align Alignment, 6421 bool isVol, bool AlwaysInline, 6422 MachinePointerInfo DstPtrInfo, 6423 MachinePointerInfo SrcPtrInfo) { 6424 // Turn a memmove of undef to nop. 6425 // FIXME: We need to honor volatile even is Src is undef. 6426 if (Src.isUndef()) 6427 return Chain; 6428 6429 // Expand memmove to a series of load and store ops if the size operand falls 6430 // below a certain threshold. 6431 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 6432 const DataLayout &DL = DAG.getDataLayout(); 6433 LLVMContext &C = *DAG.getContext(); 6434 std::vector<EVT> MemOps; 6435 bool DstAlignCanChange = false; 6436 MachineFunction &MF = DAG.getMachineFunction(); 6437 MachineFrameInfo &MFI = MF.getFrameInfo(); 6438 bool OptSize = shouldLowerMemFuncForSize(MF, DAG); 6439 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst); 6440 if (FI && !MFI.isFixedObjectIndex(FI->getIndex())) 6441 DstAlignCanChange = true; 6442 MaybeAlign SrcAlign = DAG.InferPtrAlign(Src); 6443 if (!SrcAlign || Alignment > *SrcAlign) 6444 SrcAlign = Alignment; 6445 assert(SrcAlign && "SrcAlign must be set"); 6446 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize); 6447 if (!TLI.findOptimalMemOpLowering( 6448 MemOps, Limit, 6449 MemOp::Copy(Size, DstAlignCanChange, Alignment, *SrcAlign, 6450 /*IsVolatile*/ true), 6451 DstPtrInfo.getAddrSpace(), SrcPtrInfo.getAddrSpace(), 6452 MF.getFunction().getAttributes())) 6453 return SDValue(); 6454 6455 if (DstAlignCanChange) { 6456 Type *Ty = MemOps[0].getTypeForEVT(C); 6457 Align NewAlign = DL.getABITypeAlign(Ty); 6458 if (NewAlign > Alignment) { 6459 // Give the stack frame object a larger alignment if needed. 6460 if (MFI.getObjectAlign(FI->getIndex()) < NewAlign) 6461 MFI.setObjectAlignment(FI->getIndex(), NewAlign); 6462 Alignment = NewAlign; 6463 } 6464 } 6465 6466 MachineMemOperand::Flags MMOFlags = 6467 isVol ? MachineMemOperand::MOVolatile : MachineMemOperand::MONone; 6468 uint64_t SrcOff = 0, DstOff = 0; 6469 SmallVector<SDValue, 8> LoadValues; 6470 SmallVector<SDValue, 8> LoadChains; 6471 SmallVector<SDValue, 8> OutChains; 6472 unsigned NumMemOps = MemOps.size(); 6473 for (unsigned i = 0; i < NumMemOps; i++) { 6474 EVT VT = MemOps[i]; 6475 unsigned VTSize = VT.getSizeInBits() / 8; 6476 SDValue Value; 6477 6478 bool isDereferenceable = 6479 SrcPtrInfo.getWithOffset(SrcOff).isDereferenceable(VTSize, C, DL); 6480 MachineMemOperand::Flags SrcMMOFlags = MMOFlags; 6481 if (isDereferenceable) 6482 SrcMMOFlags |= MachineMemOperand::MODereferenceable; 6483 6484 Value = 6485 DAG.getLoad(VT, dl, Chain, 6486 DAG.getMemBasePlusOffset(Src, TypeSize::Fixed(SrcOff), dl), 6487 SrcPtrInfo.getWithOffset(SrcOff), *SrcAlign, SrcMMOFlags); 6488 LoadValues.push_back(Value); 6489 LoadChains.push_back(Value.getValue(1)); 6490 SrcOff += VTSize; 6491 } 6492 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains); 6493 OutChains.clear(); 6494 for (unsigned i = 0; i < NumMemOps; i++) { 6495 EVT VT = MemOps[i]; 6496 unsigned VTSize = VT.getSizeInBits() / 8; 6497 SDValue Store; 6498 6499 Store = 6500 DAG.getStore(Chain, dl, LoadValues[i], 6501 DAG.getMemBasePlusOffset(Dst, TypeSize::Fixed(DstOff), dl), 6502 DstPtrInfo.getWithOffset(DstOff), Alignment, MMOFlags); 6503 OutChains.push_back(Store); 6504 DstOff += VTSize; 6505 } 6506 6507 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains); 6508 } 6509 6510 /// Lower the call to 'memset' intrinsic function into a series of store 6511 /// operations. 6512 /// 6513 /// \param DAG Selection DAG where lowered code is placed. 6514 /// \param dl Link to corresponding IR location. 6515 /// \param Chain Control flow dependency. 6516 /// \param Dst Pointer to destination memory location. 6517 /// \param Src Value of byte to write into the memory. 6518 /// \param Size Number of bytes to write. 6519 /// \param Alignment Alignment of the destination in bytes. 6520 /// \param isVol True if destination is volatile. 6521 /// \param DstPtrInfo IR information on the memory pointer. 6522 /// \returns New head in the control flow, if lowering was successful, empty 6523 /// SDValue otherwise. 6524 /// 6525 /// The function tries to replace 'llvm.memset' intrinsic with several store 6526 /// operations and value calculation code. This is usually profitable for small 6527 /// memory size. 6528 static SDValue getMemsetStores(SelectionDAG &DAG, const SDLoc &dl, 6529 SDValue Chain, SDValue Dst, SDValue Src, 6530 uint64_t Size, Align Alignment, bool isVol, 6531 MachinePointerInfo DstPtrInfo) { 6532 // Turn a memset of undef to nop. 6533 // FIXME: We need to honor volatile even is Src is undef. 6534 if (Src.isUndef()) 6535 return Chain; 6536 6537 // Expand memset to a series of load/store ops if the size operand 6538 // falls below a certain threshold. 6539 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 6540 std::vector<EVT> MemOps; 6541 bool DstAlignCanChange = false; 6542 MachineFunction &MF = DAG.getMachineFunction(); 6543 MachineFrameInfo &MFI = MF.getFrameInfo(); 6544 bool OptSize = shouldLowerMemFuncForSize(MF, DAG); 6545 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst); 6546 if (FI && !MFI.isFixedObjectIndex(FI->getIndex())) 6547 DstAlignCanChange = true; 6548 bool IsZeroVal = 6549 isa<ConstantSDNode>(Src) && cast<ConstantSDNode>(Src)->isNullValue(); 6550 if (!TLI.findOptimalMemOpLowering( 6551 MemOps, TLI.getMaxStoresPerMemset(OptSize), 6552 MemOp::Set(Size, DstAlignCanChange, Alignment, IsZeroVal, isVol), 6553 DstPtrInfo.getAddrSpace(), ~0u, MF.getFunction().getAttributes())) 6554 return SDValue(); 6555 6556 if (DstAlignCanChange) { 6557 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext()); 6558 Align NewAlign = DAG.getDataLayout().getABITypeAlign(Ty); 6559 if (NewAlign > Alignment) { 6560 // Give the stack frame object a larger alignment if needed. 6561 if (MFI.getObjectAlign(FI->getIndex()) < NewAlign) 6562 MFI.setObjectAlignment(FI->getIndex(), NewAlign); 6563 Alignment = NewAlign; 6564 } 6565 } 6566 6567 SmallVector<SDValue, 8> OutChains; 6568 uint64_t DstOff = 0; 6569 unsigned NumMemOps = MemOps.size(); 6570 6571 // Find the largest store and generate the bit pattern for it. 6572 EVT LargestVT = MemOps[0]; 6573 for (unsigned i = 1; i < NumMemOps; i++) 6574 if (MemOps[i].bitsGT(LargestVT)) 6575 LargestVT = MemOps[i]; 6576 SDValue MemSetValue = getMemsetValue(Src, LargestVT, DAG, dl); 6577 6578 for (unsigned i = 0; i < NumMemOps; i++) { 6579 EVT VT = MemOps[i]; 6580 unsigned VTSize = VT.getSizeInBits() / 8; 6581 if (VTSize > Size) { 6582 // Issuing an unaligned load / store pair that overlaps with the previous 6583 // pair. Adjust the offset accordingly. 6584 assert(i == NumMemOps-1 && i != 0); 6585 DstOff -= VTSize - Size; 6586 } 6587 6588 // If this store is smaller than the largest store see whether we can get 6589 // the smaller value for free with a truncate. 6590 SDValue Value = MemSetValue; 6591 if (VT.bitsLT(LargestVT)) { 6592 if (!LargestVT.isVector() && !VT.isVector() && 6593 TLI.isTruncateFree(LargestVT, VT)) 6594 Value = DAG.getNode(ISD::TRUNCATE, dl, VT, MemSetValue); 6595 else 6596 Value = getMemsetValue(Src, VT, DAG, dl); 6597 } 6598 assert(Value.getValueType() == VT && "Value with wrong type."); 6599 SDValue Store = DAG.getStore( 6600 Chain, dl, Value, 6601 DAG.getMemBasePlusOffset(Dst, TypeSize::Fixed(DstOff), dl), 6602 DstPtrInfo.getWithOffset(DstOff), Alignment, 6603 isVol ? MachineMemOperand::MOVolatile : MachineMemOperand::MONone); 6604 OutChains.push_back(Store); 6605 DstOff += VT.getSizeInBits() / 8; 6606 Size -= VTSize; 6607 } 6608 6609 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains); 6610 } 6611 6612 static void checkAddrSpaceIsValidForLibcall(const TargetLowering *TLI, 6613 unsigned AS) { 6614 // Lowering memcpy / memset / memmove intrinsics to calls is only valid if all 6615 // pointer operands can be losslessly bitcasted to pointers of address space 0 6616 if (AS != 0 && !TLI->getTargetMachine().isNoopAddrSpaceCast(AS, 0)) { 6617 report_fatal_error("cannot lower memory intrinsic in address space " + 6618 Twine(AS)); 6619 } 6620 } 6621 6622 SDValue SelectionDAG::getMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst, 6623 SDValue Src, SDValue Size, Align Alignment, 6624 bool isVol, bool AlwaysInline, bool isTailCall, 6625 MachinePointerInfo DstPtrInfo, 6626 MachinePointerInfo SrcPtrInfo) { 6627 // Check to see if we should lower the memcpy to loads and stores first. 6628 // For cases within the target-specified limits, this is the best choice. 6629 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); 6630 if (ConstantSize) { 6631 // Memcpy with size zero? Just return the original chain. 6632 if (ConstantSize->isNullValue()) 6633 return Chain; 6634 6635 SDValue Result = getMemcpyLoadsAndStores( 6636 *this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(), Alignment, 6637 isVol, false, DstPtrInfo, SrcPtrInfo); 6638 if (Result.getNode()) 6639 return Result; 6640 } 6641 6642 // Then check to see if we should lower the memcpy with target-specific 6643 // code. If the target chooses to do this, this is the next best. 6644 if (TSI) { 6645 SDValue Result = TSI->EmitTargetCodeForMemcpy( 6646 *this, dl, Chain, Dst, Src, Size, Alignment, isVol, AlwaysInline, 6647 DstPtrInfo, SrcPtrInfo); 6648 if (Result.getNode()) 6649 return Result; 6650 } 6651 6652 // If we really need inline code and the target declined to provide it, 6653 // use a (potentially long) sequence of loads and stores. 6654 if (AlwaysInline) { 6655 assert(ConstantSize && "AlwaysInline requires a constant size!"); 6656 return getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src, 6657 ConstantSize->getZExtValue(), Alignment, 6658 isVol, true, DstPtrInfo, SrcPtrInfo); 6659 } 6660 6661 checkAddrSpaceIsValidForLibcall(TLI, DstPtrInfo.getAddrSpace()); 6662 checkAddrSpaceIsValidForLibcall(TLI, SrcPtrInfo.getAddrSpace()); 6663 6664 // FIXME: If the memcpy is volatile (isVol), lowering it to a plain libc 6665 // memcpy is not guaranteed to be safe. libc memcpys aren't required to 6666 // respect volatile, so they may do things like read or write memory 6667 // beyond the given memory regions. But fixing this isn't easy, and most 6668 // people don't care. 6669 6670 // Emit a library call. 6671 TargetLowering::ArgListTy Args; 6672 TargetLowering::ArgListEntry Entry; 6673 Entry.Ty = Type::getInt8PtrTy(*getContext()); 6674 Entry.Node = Dst; Args.push_back(Entry); 6675 Entry.Node = Src; Args.push_back(Entry); 6676 6677 Entry.Ty = getDataLayout().getIntPtrType(*getContext()); 6678 Entry.Node = Size; Args.push_back(Entry); 6679 // FIXME: pass in SDLoc 6680 TargetLowering::CallLoweringInfo CLI(*this); 6681 CLI.setDebugLoc(dl) 6682 .setChain(Chain) 6683 .setLibCallee(TLI->getLibcallCallingConv(RTLIB::MEMCPY), 6684 Dst.getValueType().getTypeForEVT(*getContext()), 6685 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMCPY), 6686 TLI->getPointerTy(getDataLayout())), 6687 std::move(Args)) 6688 .setDiscardResult() 6689 .setTailCall(isTailCall); 6690 6691 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI); 6692 return CallResult.second; 6693 } 6694 6695 SDValue SelectionDAG::getAtomicMemcpy(SDValue Chain, const SDLoc &dl, 6696 SDValue Dst, unsigned DstAlign, 6697 SDValue Src, unsigned SrcAlign, 6698 SDValue Size, Type *SizeTy, 6699 unsigned ElemSz, bool isTailCall, 6700 MachinePointerInfo DstPtrInfo, 6701 MachinePointerInfo SrcPtrInfo) { 6702 // Emit a library call. 6703 TargetLowering::ArgListTy Args; 6704 TargetLowering::ArgListEntry Entry; 6705 Entry.Ty = getDataLayout().getIntPtrType(*getContext()); 6706 Entry.Node = Dst; 6707 Args.push_back(Entry); 6708 6709 Entry.Node = Src; 6710 Args.push_back(Entry); 6711 6712 Entry.Ty = SizeTy; 6713 Entry.Node = Size; 6714 Args.push_back(Entry); 6715 6716 RTLIB::Libcall LibraryCall = 6717 RTLIB::getMEMCPY_ELEMENT_UNORDERED_ATOMIC(ElemSz); 6718 if (LibraryCall == RTLIB::UNKNOWN_LIBCALL) 6719 report_fatal_error("Unsupported element size"); 6720 6721 TargetLowering::CallLoweringInfo CLI(*this); 6722 CLI.setDebugLoc(dl) 6723 .setChain(Chain) 6724 .setLibCallee(TLI->getLibcallCallingConv(LibraryCall), 6725 Type::getVoidTy(*getContext()), 6726 getExternalSymbol(TLI->getLibcallName(LibraryCall), 6727 TLI->getPointerTy(getDataLayout())), 6728 std::move(Args)) 6729 .setDiscardResult() 6730 .setTailCall(isTailCall); 6731 6732 std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI); 6733 return CallResult.second; 6734 } 6735 6736 SDValue SelectionDAG::getMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst, 6737 SDValue Src, SDValue Size, Align Alignment, 6738 bool isVol, bool isTailCall, 6739 MachinePointerInfo DstPtrInfo, 6740 MachinePointerInfo SrcPtrInfo) { 6741 // Check to see if we should lower the memmove to loads and stores first. 6742 // For cases within the target-specified limits, this is the best choice. 6743 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); 6744 if (ConstantSize) { 6745 // Memmove with size zero? Just return the original chain. 6746 if (ConstantSize->isNullValue()) 6747 return Chain; 6748 6749 SDValue Result = getMemmoveLoadsAndStores( 6750 *this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(), Alignment, 6751 isVol, false, DstPtrInfo, SrcPtrInfo); 6752 if (Result.getNode()) 6753 return Result; 6754 } 6755 6756 // Then check to see if we should lower the memmove with target-specific 6757 // code. If the target chooses to do this, this is the next best. 6758 if (TSI) { 6759 SDValue Result = 6760 TSI->EmitTargetCodeForMemmove(*this, dl, Chain, Dst, Src, Size, 6761 Alignment, isVol, DstPtrInfo, SrcPtrInfo); 6762 if (Result.getNode()) 6763 return Result; 6764 } 6765 6766 checkAddrSpaceIsValidForLibcall(TLI, DstPtrInfo.getAddrSpace()); 6767 checkAddrSpaceIsValidForLibcall(TLI, SrcPtrInfo.getAddrSpace()); 6768 6769 // FIXME: If the memmove is volatile, lowering it to plain libc memmove may 6770 // not be safe. See memcpy above for more details. 6771 6772 // Emit a library call. 6773 TargetLowering::ArgListTy Args; 6774 TargetLowering::ArgListEntry Entry; 6775 Entry.Ty = Type::getInt8PtrTy(*getContext()); 6776 Entry.Node = Dst; Args.push_back(Entry); 6777 Entry.Node = Src; Args.push_back(Entry); 6778 6779 Entry.Ty = getDataLayout().getIntPtrType(*getContext()); 6780 Entry.Node = Size; Args.push_back(Entry); 6781 // FIXME: pass in SDLoc 6782 TargetLowering::CallLoweringInfo CLI(*this); 6783 CLI.setDebugLoc(dl) 6784 .setChain(Chain) 6785 .setLibCallee(TLI->getLibcallCallingConv(RTLIB::MEMMOVE), 6786 Dst.getValueType().getTypeForEVT(*getContext()), 6787 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMMOVE), 6788 TLI->getPointerTy(getDataLayout())), 6789 std::move(Args)) 6790 .setDiscardResult() 6791 .setTailCall(isTailCall); 6792 6793 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI); 6794 return CallResult.second; 6795 } 6796 6797 SDValue SelectionDAG::getAtomicMemmove(SDValue Chain, const SDLoc &dl, 6798 SDValue Dst, unsigned DstAlign, 6799 SDValue Src, unsigned SrcAlign, 6800 SDValue Size, Type *SizeTy, 6801 unsigned ElemSz, bool isTailCall, 6802 MachinePointerInfo DstPtrInfo, 6803 MachinePointerInfo SrcPtrInfo) { 6804 // Emit a library call. 6805 TargetLowering::ArgListTy Args; 6806 TargetLowering::ArgListEntry Entry; 6807 Entry.Ty = getDataLayout().getIntPtrType(*getContext()); 6808 Entry.Node = Dst; 6809 Args.push_back(Entry); 6810 6811 Entry.Node = Src; 6812 Args.push_back(Entry); 6813 6814 Entry.Ty = SizeTy; 6815 Entry.Node = Size; 6816 Args.push_back(Entry); 6817 6818 RTLIB::Libcall LibraryCall = 6819 RTLIB::getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(ElemSz); 6820 if (LibraryCall == RTLIB::UNKNOWN_LIBCALL) 6821 report_fatal_error("Unsupported element size"); 6822 6823 TargetLowering::CallLoweringInfo CLI(*this); 6824 CLI.setDebugLoc(dl) 6825 .setChain(Chain) 6826 .setLibCallee(TLI->getLibcallCallingConv(LibraryCall), 6827 Type::getVoidTy(*getContext()), 6828 getExternalSymbol(TLI->getLibcallName(LibraryCall), 6829 TLI->getPointerTy(getDataLayout())), 6830 std::move(Args)) 6831 .setDiscardResult() 6832 .setTailCall(isTailCall); 6833 6834 std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI); 6835 return CallResult.second; 6836 } 6837 6838 SDValue SelectionDAG::getMemset(SDValue Chain, const SDLoc &dl, SDValue Dst, 6839 SDValue Src, SDValue Size, Align Alignment, 6840 bool isVol, bool isTailCall, 6841 MachinePointerInfo DstPtrInfo) { 6842 // Check to see if we should lower the memset to stores first. 6843 // For cases within the target-specified limits, this is the best choice. 6844 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); 6845 if (ConstantSize) { 6846 // Memset with size zero? Just return the original chain. 6847 if (ConstantSize->isNullValue()) 6848 return Chain; 6849 6850 SDValue Result = getMemsetStores(*this, dl, Chain, Dst, Src, 6851 ConstantSize->getZExtValue(), Alignment, 6852 isVol, DstPtrInfo); 6853 6854 if (Result.getNode()) 6855 return Result; 6856 } 6857 6858 // Then check to see if we should lower the memset with target-specific 6859 // code. If the target chooses to do this, this is the next best. 6860 if (TSI) { 6861 SDValue Result = TSI->EmitTargetCodeForMemset( 6862 *this, dl, Chain, Dst, Src, Size, Alignment, isVol, DstPtrInfo); 6863 if (Result.getNode()) 6864 return Result; 6865 } 6866 6867 checkAddrSpaceIsValidForLibcall(TLI, DstPtrInfo.getAddrSpace()); 6868 6869 // Emit a library call. 6870 TargetLowering::ArgListTy Args; 6871 TargetLowering::ArgListEntry Entry; 6872 Entry.Node = Dst; Entry.Ty = Type::getInt8PtrTy(*getContext()); 6873 Args.push_back(Entry); 6874 Entry.Node = Src; 6875 Entry.Ty = Src.getValueType().getTypeForEVT(*getContext()); 6876 Args.push_back(Entry); 6877 Entry.Node = Size; 6878 Entry.Ty = getDataLayout().getIntPtrType(*getContext()); 6879 Args.push_back(Entry); 6880 6881 // FIXME: pass in SDLoc 6882 TargetLowering::CallLoweringInfo CLI(*this); 6883 CLI.setDebugLoc(dl) 6884 .setChain(Chain) 6885 .setLibCallee(TLI->getLibcallCallingConv(RTLIB::MEMSET), 6886 Dst.getValueType().getTypeForEVT(*getContext()), 6887 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMSET), 6888 TLI->getPointerTy(getDataLayout())), 6889 std::move(Args)) 6890 .setDiscardResult() 6891 .setTailCall(isTailCall); 6892 6893 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI); 6894 return CallResult.second; 6895 } 6896 6897 SDValue SelectionDAG::getAtomicMemset(SDValue Chain, const SDLoc &dl, 6898 SDValue Dst, unsigned DstAlign, 6899 SDValue Value, SDValue Size, Type *SizeTy, 6900 unsigned ElemSz, bool isTailCall, 6901 MachinePointerInfo DstPtrInfo) { 6902 // Emit a library call. 6903 TargetLowering::ArgListTy Args; 6904 TargetLowering::ArgListEntry Entry; 6905 Entry.Ty = getDataLayout().getIntPtrType(*getContext()); 6906 Entry.Node = Dst; 6907 Args.push_back(Entry); 6908 6909 Entry.Ty = Type::getInt8Ty(*getContext()); 6910 Entry.Node = Value; 6911 Args.push_back(Entry); 6912 6913 Entry.Ty = SizeTy; 6914 Entry.Node = Size; 6915 Args.push_back(Entry); 6916 6917 RTLIB::Libcall LibraryCall = 6918 RTLIB::getMEMSET_ELEMENT_UNORDERED_ATOMIC(ElemSz); 6919 if (LibraryCall == RTLIB::UNKNOWN_LIBCALL) 6920 report_fatal_error("Unsupported element size"); 6921 6922 TargetLowering::CallLoweringInfo CLI(*this); 6923 CLI.setDebugLoc(dl) 6924 .setChain(Chain) 6925 .setLibCallee(TLI->getLibcallCallingConv(LibraryCall), 6926 Type::getVoidTy(*getContext()), 6927 getExternalSymbol(TLI->getLibcallName(LibraryCall), 6928 TLI->getPointerTy(getDataLayout())), 6929 std::move(Args)) 6930 .setDiscardResult() 6931 .setTailCall(isTailCall); 6932 6933 std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI); 6934 return CallResult.second; 6935 } 6936 6937 SDValue SelectionDAG::getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT, 6938 SDVTList VTList, ArrayRef<SDValue> Ops, 6939 MachineMemOperand *MMO) { 6940 FoldingSetNodeID ID; 6941 ID.AddInteger(MemVT.getRawBits()); 6942 AddNodeIDNode(ID, Opcode, VTList, Ops); 6943 ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); 6944 void* IP = nullptr; 6945 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) { 6946 cast<AtomicSDNode>(E)->refineAlignment(MMO); 6947 return SDValue(E, 0); 6948 } 6949 6950 auto *N = newSDNode<AtomicSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(), 6951 VTList, MemVT, MMO); 6952 createOperands(N, Ops); 6953 6954 CSEMap.InsertNode(N, IP); 6955 InsertNode(N); 6956 return SDValue(N, 0); 6957 } 6958 6959 SDValue SelectionDAG::getAtomicCmpSwap(unsigned Opcode, const SDLoc &dl, 6960 EVT MemVT, SDVTList VTs, SDValue Chain, 6961 SDValue Ptr, SDValue Cmp, SDValue Swp, 6962 MachineMemOperand *MMO) { 6963 assert(Opcode == ISD::ATOMIC_CMP_SWAP || 6964 Opcode == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS); 6965 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types"); 6966 6967 SDValue Ops[] = {Chain, Ptr, Cmp, Swp}; 6968 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO); 6969 } 6970 6971 SDValue SelectionDAG::getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT, 6972 SDValue Chain, SDValue Ptr, SDValue Val, 6973 MachineMemOperand *MMO) { 6974 assert((Opcode == ISD::ATOMIC_LOAD_ADD || 6975 Opcode == ISD::ATOMIC_LOAD_SUB || 6976 Opcode == ISD::ATOMIC_LOAD_AND || 6977 Opcode == ISD::ATOMIC_LOAD_CLR || 6978 Opcode == ISD::ATOMIC_LOAD_OR || 6979 Opcode == ISD::ATOMIC_LOAD_XOR || 6980 Opcode == ISD::ATOMIC_LOAD_NAND || 6981 Opcode == ISD::ATOMIC_LOAD_MIN || 6982 Opcode == ISD::ATOMIC_LOAD_MAX || 6983 Opcode == ISD::ATOMIC_LOAD_UMIN || 6984 Opcode == ISD::ATOMIC_LOAD_UMAX || 6985 Opcode == ISD::ATOMIC_LOAD_FADD || 6986 Opcode == ISD::ATOMIC_LOAD_FSUB || 6987 Opcode == ISD::ATOMIC_SWAP || 6988 Opcode == ISD::ATOMIC_STORE) && 6989 "Invalid Atomic Op"); 6990 6991 EVT VT = Val.getValueType(); 6992 6993 SDVTList VTs = Opcode == ISD::ATOMIC_STORE ? getVTList(MVT::Other) : 6994 getVTList(VT, MVT::Other); 6995 SDValue Ops[] = {Chain, Ptr, Val}; 6996 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO); 6997 } 6998 6999 SDValue SelectionDAG::getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT, 7000 EVT VT, SDValue Chain, SDValue Ptr, 7001 MachineMemOperand *MMO) { 7002 assert(Opcode == ISD::ATOMIC_LOAD && "Invalid Atomic Op"); 7003 7004 SDVTList VTs = getVTList(VT, MVT::Other); 7005 SDValue Ops[] = {Chain, Ptr}; 7006 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO); 7007 } 7008 7009 /// getMergeValues - Create a MERGE_VALUES node from the given operands. 7010 SDValue SelectionDAG::getMergeValues(ArrayRef<SDValue> Ops, const SDLoc &dl) { 7011 if (Ops.size() == 1) 7012 return Ops[0]; 7013 7014 SmallVector<EVT, 4> VTs; 7015 VTs.reserve(Ops.size()); 7016 for (const SDValue &Op : Ops) 7017 VTs.push_back(Op.getValueType()); 7018 return getNode(ISD::MERGE_VALUES, dl, getVTList(VTs), Ops); 7019 } 7020 7021 SDValue SelectionDAG::getMemIntrinsicNode( 7022 unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef<SDValue> Ops, 7023 EVT MemVT, MachinePointerInfo PtrInfo, Align Alignment, 7024 MachineMemOperand::Flags Flags, uint64_t Size, const AAMDNodes &AAInfo) { 7025 if (!Size && MemVT.isScalableVector()) 7026 Size = MemoryLocation::UnknownSize; 7027 else if (!Size) 7028 Size = MemVT.getStoreSize(); 7029 7030 MachineFunction &MF = getMachineFunction(); 7031 MachineMemOperand *MMO = 7032 MF.getMachineMemOperand(PtrInfo, Flags, Size, Alignment, AAInfo); 7033 7034 return getMemIntrinsicNode(Opcode, dl, VTList, Ops, MemVT, MMO); 7035 } 7036 7037 SDValue SelectionDAG::getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl, 7038 SDVTList VTList, 7039 ArrayRef<SDValue> Ops, EVT MemVT, 7040 MachineMemOperand *MMO) { 7041 assert((Opcode == ISD::INTRINSIC_VOID || 7042 Opcode == ISD::INTRINSIC_W_CHAIN || 7043 Opcode == ISD::PREFETCH || 7044 ((int)Opcode <= std::numeric_limits<int>::max() && 7045 (int)Opcode >= ISD::FIRST_TARGET_MEMORY_OPCODE)) && 7046 "Opcode is not a memory-accessing opcode!"); 7047 7048 // Memoize the node unless it returns a flag. 7049 MemIntrinsicSDNode *N; 7050 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) { 7051 FoldingSetNodeID ID; 7052 AddNodeIDNode(ID, Opcode, VTList, Ops); 7053 ID.AddInteger(getSyntheticNodeSubclassData<MemIntrinsicSDNode>( 7054 Opcode, dl.getIROrder(), VTList, MemVT, MMO)); 7055 ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); 7056 void *IP = nullptr; 7057 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) { 7058 cast<MemIntrinsicSDNode>(E)->refineAlignment(MMO); 7059 return SDValue(E, 0); 7060 } 7061 7062 N = newSDNode<MemIntrinsicSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(), 7063 VTList, MemVT, MMO); 7064 createOperands(N, Ops); 7065 7066 CSEMap.InsertNode(N, IP); 7067 } else { 7068 N = newSDNode<MemIntrinsicSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(), 7069 VTList, MemVT, MMO); 7070 createOperands(N, Ops); 7071 } 7072 InsertNode(N); 7073 SDValue V(N, 0); 7074 NewSDValueDbgMsg(V, "Creating new node: ", this); 7075 return V; 7076 } 7077 7078 SDValue SelectionDAG::getLifetimeNode(bool IsStart, const SDLoc &dl, 7079 SDValue Chain, int FrameIndex, 7080 int64_t Size, int64_t Offset) { 7081 const unsigned Opcode = IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END; 7082 const auto VTs = getVTList(MVT::Other); 7083 SDValue Ops[2] = { 7084 Chain, 7085 getFrameIndex(FrameIndex, 7086 getTargetLoweringInfo().getFrameIndexTy(getDataLayout()), 7087 true)}; 7088 7089 FoldingSetNodeID ID; 7090 AddNodeIDNode(ID, Opcode, VTs, Ops); 7091 ID.AddInteger(FrameIndex); 7092 ID.AddInteger(Size); 7093 ID.AddInteger(Offset); 7094 void *IP = nullptr; 7095 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) 7096 return SDValue(E, 0); 7097 7098 LifetimeSDNode *N = newSDNode<LifetimeSDNode>( 7099 Opcode, dl.getIROrder(), dl.getDebugLoc(), VTs, Size, Offset); 7100 createOperands(N, Ops); 7101 CSEMap.InsertNode(N, IP); 7102 InsertNode(N); 7103 SDValue V(N, 0); 7104 NewSDValueDbgMsg(V, "Creating new node: ", this); 7105 return V; 7106 } 7107 7108 SDValue SelectionDAG::getPseudoProbeNode(const SDLoc &Dl, SDValue Chain, 7109 uint64_t Guid, uint64_t Index, 7110 uint32_t Attr) { 7111 const unsigned Opcode = ISD::PSEUDO_PROBE; 7112 const auto VTs = getVTList(MVT::Other); 7113 SDValue Ops[] = {Chain}; 7114 FoldingSetNodeID ID; 7115 AddNodeIDNode(ID, Opcode, VTs, Ops); 7116 ID.AddInteger(Guid); 7117 ID.AddInteger(Index); 7118 void *IP = nullptr; 7119 if (SDNode *E = FindNodeOrInsertPos(ID, Dl, IP)) 7120 return SDValue(E, 0); 7121 7122 auto *N = newSDNode<PseudoProbeSDNode>( 7123 Opcode, Dl.getIROrder(), Dl.getDebugLoc(), VTs, Guid, Index, Attr); 7124 createOperands(N, Ops); 7125 CSEMap.InsertNode(N, IP); 7126 InsertNode(N); 7127 SDValue V(N, 0); 7128 NewSDValueDbgMsg(V, "Creating new node: ", this); 7129 return V; 7130 } 7131 7132 /// InferPointerInfo - If the specified ptr/offset is a frame index, infer a 7133 /// MachinePointerInfo record from it. This is particularly useful because the 7134 /// code generator has many cases where it doesn't bother passing in a 7135 /// MachinePointerInfo to getLoad or getStore when it has "FI+Cst". 7136 static MachinePointerInfo InferPointerInfo(const MachinePointerInfo &Info, 7137 SelectionDAG &DAG, SDValue Ptr, 7138 int64_t Offset = 0) { 7139 // If this is FI+Offset, we can model it. 7140 if (const FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) 7141 return MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), 7142 FI->getIndex(), Offset); 7143 7144 // If this is (FI+Offset1)+Offset2, we can model it. 7145 if (Ptr.getOpcode() != ISD::ADD || 7146 !isa<ConstantSDNode>(Ptr.getOperand(1)) || 7147 !isa<FrameIndexSDNode>(Ptr.getOperand(0))) 7148 return Info; 7149 7150 int FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex(); 7151 return MachinePointerInfo::getFixedStack( 7152 DAG.getMachineFunction(), FI, 7153 Offset + cast<ConstantSDNode>(Ptr.getOperand(1))->getSExtValue()); 7154 } 7155 7156 /// InferPointerInfo - If the specified ptr/offset is a frame index, infer a 7157 /// MachinePointerInfo record from it. This is particularly useful because the 7158 /// code generator has many cases where it doesn't bother passing in a 7159 /// MachinePointerInfo to getLoad or getStore when it has "FI+Cst". 7160 static MachinePointerInfo InferPointerInfo(const MachinePointerInfo &Info, 7161 SelectionDAG &DAG, SDValue Ptr, 7162 SDValue OffsetOp) { 7163 // If the 'Offset' value isn't a constant, we can't handle this. 7164 if (ConstantSDNode *OffsetNode = dyn_cast<ConstantSDNode>(OffsetOp)) 7165 return InferPointerInfo(Info, DAG, Ptr, OffsetNode->getSExtValue()); 7166 if (OffsetOp.isUndef()) 7167 return InferPointerInfo(Info, DAG, Ptr); 7168 return Info; 7169 } 7170 7171 SDValue SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, 7172 EVT VT, const SDLoc &dl, SDValue Chain, 7173 SDValue Ptr, SDValue Offset, 7174 MachinePointerInfo PtrInfo, EVT MemVT, 7175 Align Alignment, 7176 MachineMemOperand::Flags MMOFlags, 7177 const AAMDNodes &AAInfo, const MDNode *Ranges) { 7178 assert(Chain.getValueType() == MVT::Other && 7179 "Invalid chain type"); 7180 7181 MMOFlags |= MachineMemOperand::MOLoad; 7182 assert((MMOFlags & MachineMemOperand::MOStore) == 0); 7183 // If we don't have a PtrInfo, infer the trivial frame index case to simplify 7184 // clients. 7185 if (PtrInfo.V.isNull()) 7186 PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr, Offset); 7187 7188 uint64_t Size = MemoryLocation::getSizeOrUnknown(MemVT.getStoreSize()); 7189 MachineFunction &MF = getMachineFunction(); 7190 MachineMemOperand *MMO = MF.getMachineMemOperand(PtrInfo, MMOFlags, Size, 7191 Alignment, AAInfo, Ranges); 7192 return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, MemVT, MMO); 7193 } 7194 7195 SDValue SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, 7196 EVT VT, const SDLoc &dl, SDValue Chain, 7197 SDValue Ptr, SDValue Offset, EVT MemVT, 7198 MachineMemOperand *MMO) { 7199 if (VT == MemVT) { 7200 ExtType = ISD::NON_EXTLOAD; 7201 } else if (ExtType == ISD::NON_EXTLOAD) { 7202 assert(VT == MemVT && "Non-extending load from different memory type!"); 7203 } else { 7204 // Extending load. 7205 assert(MemVT.getScalarType().bitsLT(VT.getScalarType()) && 7206 "Should only be an extending load, not truncating!"); 7207 assert(VT.isInteger() == MemVT.isInteger() && 7208 "Cannot convert from FP to Int or Int -> FP!"); 7209 assert(VT.isVector() == MemVT.isVector() && 7210 "Cannot use an ext load to convert to or from a vector!"); 7211 assert((!VT.isVector() || 7212 VT.getVectorElementCount() == MemVT.getVectorElementCount()) && 7213 "Cannot use an ext load to change the number of vector elements!"); 7214 } 7215 7216 bool Indexed = AM != ISD::UNINDEXED; 7217 assert((Indexed || Offset.isUndef()) && "Unindexed load with an offset!"); 7218 7219 SDVTList VTs = Indexed ? 7220 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other); 7221 SDValue Ops[] = { Chain, Ptr, Offset }; 7222 FoldingSetNodeID ID; 7223 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops); 7224 ID.AddInteger(MemVT.getRawBits()); 7225 ID.AddInteger(getSyntheticNodeSubclassData<LoadSDNode>( 7226 dl.getIROrder(), VTs, AM, ExtType, MemVT, MMO)); 7227 ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); 7228 void *IP = nullptr; 7229 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) { 7230 cast<LoadSDNode>(E)->refineAlignment(MMO); 7231 return SDValue(E, 0); 7232 } 7233 auto *N = newSDNode<LoadSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, AM, 7234 ExtType, MemVT, MMO); 7235 createOperands(N, Ops); 7236 7237 CSEMap.InsertNode(N, IP); 7238 InsertNode(N); 7239 SDValue V(N, 0); 7240 NewSDValueDbgMsg(V, "Creating new node: ", this); 7241 return V; 7242 } 7243 7244 SDValue SelectionDAG::getLoad(EVT VT, const SDLoc &dl, SDValue Chain, 7245 SDValue Ptr, MachinePointerInfo PtrInfo, 7246 MaybeAlign Alignment, 7247 MachineMemOperand::Flags MMOFlags, 7248 const AAMDNodes &AAInfo, const MDNode *Ranges) { 7249 SDValue Undef = getUNDEF(Ptr.getValueType()); 7250 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef, 7251 PtrInfo, VT, Alignment, MMOFlags, AAInfo, Ranges); 7252 } 7253 7254 SDValue SelectionDAG::getLoad(EVT VT, const SDLoc &dl, SDValue Chain, 7255 SDValue Ptr, MachineMemOperand *MMO) { 7256 SDValue Undef = getUNDEF(Ptr.getValueType()); 7257 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef, 7258 VT, MMO); 7259 } 7260 7261 SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl, 7262 EVT VT, SDValue Chain, SDValue Ptr, 7263 MachinePointerInfo PtrInfo, EVT MemVT, 7264 MaybeAlign Alignment, 7265 MachineMemOperand::Flags MMOFlags, 7266 const AAMDNodes &AAInfo) { 7267 SDValue Undef = getUNDEF(Ptr.getValueType()); 7268 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, PtrInfo, 7269 MemVT, Alignment, MMOFlags, AAInfo); 7270 } 7271 7272 SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl, 7273 EVT VT, SDValue Chain, SDValue Ptr, EVT MemVT, 7274 MachineMemOperand *MMO) { 7275 SDValue Undef = getUNDEF(Ptr.getValueType()); 7276 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, 7277 MemVT, MMO); 7278 } 7279 7280 SDValue SelectionDAG::getIndexedLoad(SDValue OrigLoad, const SDLoc &dl, 7281 SDValue Base, SDValue Offset, 7282 ISD::MemIndexedMode AM) { 7283 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad); 7284 assert(LD->getOffset().isUndef() && "Load is already a indexed load!"); 7285 // Don't propagate the invariant or dereferenceable flags. 7286 auto MMOFlags = 7287 LD->getMemOperand()->getFlags() & 7288 ~(MachineMemOperand::MOInvariant | MachineMemOperand::MODereferenceable); 7289 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(), dl, 7290 LD->getChain(), Base, Offset, LD->getPointerInfo(), 7291 LD->getMemoryVT(), LD->getAlign(), MMOFlags, LD->getAAInfo()); 7292 } 7293 7294 SDValue SelectionDAG::getStore(SDValue Chain, const SDLoc &dl, SDValue Val, 7295 SDValue Ptr, MachinePointerInfo PtrInfo, 7296 Align Alignment, 7297 MachineMemOperand::Flags MMOFlags, 7298 const AAMDNodes &AAInfo) { 7299 assert(Chain.getValueType() == MVT::Other && "Invalid chain type"); 7300 7301 MMOFlags |= MachineMemOperand::MOStore; 7302 assert((MMOFlags & MachineMemOperand::MOLoad) == 0); 7303 7304 if (PtrInfo.V.isNull()) 7305 PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr); 7306 7307 MachineFunction &MF = getMachineFunction(); 7308 uint64_t Size = 7309 MemoryLocation::getSizeOrUnknown(Val.getValueType().getStoreSize()); 7310 MachineMemOperand *MMO = 7311 MF.getMachineMemOperand(PtrInfo, MMOFlags, Size, Alignment, AAInfo); 7312 return getStore(Chain, dl, Val, Ptr, MMO); 7313 } 7314 7315 SDValue SelectionDAG::getStore(SDValue Chain, const SDLoc &dl, SDValue Val, 7316 SDValue Ptr, MachineMemOperand *MMO) { 7317 assert(Chain.getValueType() == MVT::Other && 7318 "Invalid chain type"); 7319 EVT VT = Val.getValueType(); 7320 SDVTList VTs = getVTList(MVT::Other); 7321 SDValue Undef = getUNDEF(Ptr.getValueType()); 7322 SDValue Ops[] = { Chain, Val, Ptr, Undef }; 7323 FoldingSetNodeID ID; 7324 AddNodeIDNode(ID, ISD::STORE, VTs, Ops); 7325 ID.AddInteger(VT.getRawBits()); 7326 ID.AddInteger(getSyntheticNodeSubclassData<StoreSDNode>( 7327 dl.getIROrder(), VTs, ISD::UNINDEXED, false, VT, MMO)); 7328 ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); 7329 void *IP = nullptr; 7330 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) { 7331 cast<StoreSDNode>(E)->refineAlignment(MMO); 7332 return SDValue(E, 0); 7333 } 7334 auto *N = newSDNode<StoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, 7335 ISD::UNINDEXED, false, VT, MMO); 7336 createOperands(N, Ops); 7337 7338 CSEMap.InsertNode(N, IP); 7339 InsertNode(N); 7340 SDValue V(N, 0); 7341 NewSDValueDbgMsg(V, "Creating new node: ", this); 7342 return V; 7343 } 7344 7345 SDValue SelectionDAG::getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, 7346 SDValue Ptr, MachinePointerInfo PtrInfo, 7347 EVT SVT, Align Alignment, 7348 MachineMemOperand::Flags MMOFlags, 7349 const AAMDNodes &AAInfo) { 7350 assert(Chain.getValueType() == MVT::Other && 7351 "Invalid chain type"); 7352 7353 MMOFlags |= MachineMemOperand::MOStore; 7354 assert((MMOFlags & MachineMemOperand::MOLoad) == 0); 7355 7356 if (PtrInfo.V.isNull()) 7357 PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr); 7358 7359 MachineFunction &MF = getMachineFunction(); 7360 MachineMemOperand *MMO = MF.getMachineMemOperand( 7361 PtrInfo, MMOFlags, MemoryLocation::getSizeOrUnknown(SVT.getStoreSize()), 7362 Alignment, AAInfo); 7363 return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO); 7364 } 7365 7366 SDValue SelectionDAG::getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, 7367 SDValue Ptr, EVT SVT, 7368 MachineMemOperand *MMO) { 7369 EVT VT = Val.getValueType(); 7370 7371 assert(Chain.getValueType() == MVT::Other && 7372 "Invalid chain type"); 7373 if (VT == SVT) 7374 return getStore(Chain, dl, Val, Ptr, MMO); 7375 7376 assert(SVT.getScalarType().bitsLT(VT.getScalarType()) && 7377 "Should only be a truncating store, not extending!"); 7378 assert(VT.isInteger() == SVT.isInteger() && 7379 "Can't do FP-INT conversion!"); 7380 assert(VT.isVector() == SVT.isVector() && 7381 "Cannot use trunc store to convert to or from a vector!"); 7382 assert((!VT.isVector() || 7383 VT.getVectorElementCount() == SVT.getVectorElementCount()) && 7384 "Cannot use trunc store to change the number of vector elements!"); 7385 7386 SDVTList VTs = getVTList(MVT::Other); 7387 SDValue Undef = getUNDEF(Ptr.getValueType()); 7388 SDValue Ops[] = { Chain, Val, Ptr, Undef }; 7389 FoldingSetNodeID ID; 7390 AddNodeIDNode(ID, ISD::STORE, VTs, Ops); 7391 ID.AddInteger(SVT.getRawBits()); 7392 ID.AddInteger(getSyntheticNodeSubclassData<StoreSDNode>( 7393 dl.getIROrder(), VTs, ISD::UNINDEXED, true, SVT, MMO)); 7394 ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); 7395 void *IP = nullptr; 7396 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) { 7397 cast<StoreSDNode>(E)->refineAlignment(MMO); 7398 return SDValue(E, 0); 7399 } 7400 auto *N = newSDNode<StoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, 7401 ISD::UNINDEXED, true, SVT, MMO); 7402 createOperands(N, Ops); 7403 7404 CSEMap.InsertNode(N, IP); 7405 InsertNode(N); 7406 SDValue V(N, 0); 7407 NewSDValueDbgMsg(V, "Creating new node: ", this); 7408 return V; 7409 } 7410 7411 SDValue SelectionDAG::getIndexedStore(SDValue OrigStore, const SDLoc &dl, 7412 SDValue Base, SDValue Offset, 7413 ISD::MemIndexedMode AM) { 7414 StoreSDNode *ST = cast<StoreSDNode>(OrigStore); 7415 assert(ST->getOffset().isUndef() && "Store is already a indexed store!"); 7416 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other); 7417 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset }; 7418 FoldingSetNodeID ID; 7419 AddNodeIDNode(ID, ISD::STORE, VTs, Ops); 7420 ID.AddInteger(ST->getMemoryVT().getRawBits()); 7421 ID.AddInteger(ST->getRawSubclassData()); 7422 ID.AddInteger(ST->getPointerInfo().getAddrSpace()); 7423 void *IP = nullptr; 7424 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) 7425 return SDValue(E, 0); 7426 7427 auto *N = newSDNode<StoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, AM, 7428 ST->isTruncatingStore(), ST->getMemoryVT(), 7429 ST->getMemOperand()); 7430 createOperands(N, Ops); 7431 7432 CSEMap.InsertNode(N, IP); 7433 InsertNode(N); 7434 SDValue V(N, 0); 7435 NewSDValueDbgMsg(V, "Creating new node: ", this); 7436 return V; 7437 } 7438 7439 SDValue SelectionDAG::getMaskedLoad(EVT VT, const SDLoc &dl, SDValue Chain, 7440 SDValue Base, SDValue Offset, SDValue Mask, 7441 SDValue PassThru, EVT MemVT, 7442 MachineMemOperand *MMO, 7443 ISD::MemIndexedMode AM, 7444 ISD::LoadExtType ExtTy, bool isExpanding) { 7445 bool Indexed = AM != ISD::UNINDEXED; 7446 assert((Indexed || Offset.isUndef()) && 7447 "Unindexed masked load with an offset!"); 7448 SDVTList VTs = Indexed ? getVTList(VT, Base.getValueType(), MVT::Other) 7449 : getVTList(VT, MVT::Other); 7450 SDValue Ops[] = {Chain, Base, Offset, Mask, PassThru}; 7451 FoldingSetNodeID ID; 7452 AddNodeIDNode(ID, ISD::MLOAD, VTs, Ops); 7453 ID.AddInteger(MemVT.getRawBits()); 7454 ID.AddInteger(getSyntheticNodeSubclassData<MaskedLoadSDNode>( 7455 dl.getIROrder(), VTs, AM, ExtTy, isExpanding, MemVT, MMO)); 7456 ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); 7457 void *IP = nullptr; 7458 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) { 7459 cast<MaskedLoadSDNode>(E)->refineAlignment(MMO); 7460 return SDValue(E, 0); 7461 } 7462 auto *N = newSDNode<MaskedLoadSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, 7463 AM, ExtTy, isExpanding, MemVT, MMO); 7464 createOperands(N, Ops); 7465 7466 CSEMap.InsertNode(N, IP); 7467 InsertNode(N); 7468 SDValue V(N, 0); 7469 NewSDValueDbgMsg(V, "Creating new node: ", this); 7470 return V; 7471 } 7472 7473 SDValue SelectionDAG::getIndexedMaskedLoad(SDValue OrigLoad, const SDLoc &dl, 7474 SDValue Base, SDValue Offset, 7475 ISD::MemIndexedMode AM) { 7476 MaskedLoadSDNode *LD = cast<MaskedLoadSDNode>(OrigLoad); 7477 assert(LD->getOffset().isUndef() && "Masked load is already a indexed load!"); 7478 return getMaskedLoad(OrigLoad.getValueType(), dl, LD->getChain(), Base, 7479 Offset, LD->getMask(), LD->getPassThru(), 7480 LD->getMemoryVT(), LD->getMemOperand(), AM, 7481 LD->getExtensionType(), LD->isExpandingLoad()); 7482 } 7483 7484 SDValue SelectionDAG::getMaskedStore(SDValue Chain, const SDLoc &dl, 7485 SDValue Val, SDValue Base, SDValue Offset, 7486 SDValue Mask, EVT MemVT, 7487 MachineMemOperand *MMO, 7488 ISD::MemIndexedMode AM, bool IsTruncating, 7489 bool IsCompressing) { 7490 assert(Chain.getValueType() == MVT::Other && 7491 "Invalid chain type"); 7492 bool Indexed = AM != ISD::UNINDEXED; 7493 assert((Indexed || Offset.isUndef()) && 7494 "Unindexed masked store with an offset!"); 7495 SDVTList VTs = Indexed ? getVTList(Base.getValueType(), MVT::Other) 7496 : getVTList(MVT::Other); 7497 SDValue Ops[] = {Chain, Val, Base, Offset, Mask}; 7498 FoldingSetNodeID ID; 7499 AddNodeIDNode(ID, ISD::MSTORE, VTs, Ops); 7500 ID.AddInteger(MemVT.getRawBits()); 7501 ID.AddInteger(getSyntheticNodeSubclassData<MaskedStoreSDNode>( 7502 dl.getIROrder(), VTs, AM, IsTruncating, IsCompressing, MemVT, MMO)); 7503 ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); 7504 void *IP = nullptr; 7505 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) { 7506 cast<MaskedStoreSDNode>(E)->refineAlignment(MMO); 7507 return SDValue(E, 0); 7508 } 7509 auto *N = 7510 newSDNode<MaskedStoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, AM, 7511 IsTruncating, IsCompressing, MemVT, MMO); 7512 createOperands(N, Ops); 7513 7514 CSEMap.InsertNode(N, IP); 7515 InsertNode(N); 7516 SDValue V(N, 0); 7517 NewSDValueDbgMsg(V, "Creating new node: ", this); 7518 return V; 7519 } 7520 7521 SDValue SelectionDAG::getIndexedMaskedStore(SDValue OrigStore, const SDLoc &dl, 7522 SDValue Base, SDValue Offset, 7523 ISD::MemIndexedMode AM) { 7524 MaskedStoreSDNode *ST = cast<MaskedStoreSDNode>(OrigStore); 7525 assert(ST->getOffset().isUndef() && 7526 "Masked store is already a indexed store!"); 7527 return getMaskedStore(ST->getChain(), dl, ST->getValue(), Base, Offset, 7528 ST->getMask(), ST->getMemoryVT(), ST->getMemOperand(), 7529 AM, ST->isTruncatingStore(), ST->isCompressingStore()); 7530 } 7531 7532 SDValue SelectionDAG::getMaskedGather(SDVTList VTs, EVT VT, const SDLoc &dl, 7533 ArrayRef<SDValue> Ops, 7534 MachineMemOperand *MMO, 7535 ISD::MemIndexType IndexType, 7536 ISD::LoadExtType ExtTy) { 7537 assert(Ops.size() == 6 && "Incompatible number of operands"); 7538 7539 FoldingSetNodeID ID; 7540 AddNodeIDNode(ID, ISD::MGATHER, VTs, Ops); 7541 ID.AddInteger(VT.getRawBits()); 7542 ID.AddInteger(getSyntheticNodeSubclassData<MaskedGatherSDNode>( 7543 dl.getIROrder(), VTs, VT, MMO, IndexType, ExtTy)); 7544 ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); 7545 void *IP = nullptr; 7546 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) { 7547 cast<MaskedGatherSDNode>(E)->refineAlignment(MMO); 7548 return SDValue(E, 0); 7549 } 7550 7551 IndexType = TLI->getCanonicalIndexType(IndexType, VT, Ops[4]); 7552 auto *N = newSDNode<MaskedGatherSDNode>(dl.getIROrder(), dl.getDebugLoc(), 7553 VTs, VT, MMO, IndexType, ExtTy); 7554 createOperands(N, Ops); 7555 7556 assert(N->getPassThru().getValueType() == N->getValueType(0) && 7557 "Incompatible type of the PassThru value in MaskedGatherSDNode"); 7558 assert(N->getMask().getValueType().getVectorElementCount() == 7559 N->getValueType(0).getVectorElementCount() && 7560 "Vector width mismatch between mask and data"); 7561 assert(N->getIndex().getValueType().getVectorElementCount().isScalable() == 7562 N->getValueType(0).getVectorElementCount().isScalable() && 7563 "Scalable flags of index and data do not match"); 7564 assert(ElementCount::isKnownGE( 7565 N->getIndex().getValueType().getVectorElementCount(), 7566 N->getValueType(0).getVectorElementCount()) && 7567 "Vector width mismatch between index and data"); 7568 assert(isa<ConstantSDNode>(N->getScale()) && 7569 cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() && 7570 "Scale should be a constant power of 2"); 7571 7572 CSEMap.InsertNode(N, IP); 7573 InsertNode(N); 7574 SDValue V(N, 0); 7575 NewSDValueDbgMsg(V, "Creating new node: ", this); 7576 return V; 7577 } 7578 7579 SDValue SelectionDAG::getMaskedScatter(SDVTList VTs, EVT VT, const SDLoc &dl, 7580 ArrayRef<SDValue> Ops, 7581 MachineMemOperand *MMO, 7582 ISD::MemIndexType IndexType, 7583 bool IsTrunc) { 7584 assert(Ops.size() == 6 && "Incompatible number of operands"); 7585 7586 FoldingSetNodeID ID; 7587 AddNodeIDNode(ID, ISD::MSCATTER, VTs, Ops); 7588 ID.AddInteger(VT.getRawBits()); 7589 ID.AddInteger(getSyntheticNodeSubclassData<MaskedScatterSDNode>( 7590 dl.getIROrder(), VTs, VT, MMO, IndexType, IsTrunc)); 7591 ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); 7592 void *IP = nullptr; 7593 if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) { 7594 cast<MaskedScatterSDNode>(E)->refineAlignment(MMO); 7595 return SDValue(E, 0); 7596 } 7597 7598 IndexType = TLI->getCanonicalIndexType(IndexType, VT, Ops[4]); 7599 auto *N = newSDNode<MaskedScatterSDNode>(dl.getIROrder(), dl.getDebugLoc(), 7600 VTs, VT, MMO, IndexType, IsTrunc); 7601 createOperands(N, Ops); 7602 7603 assert(N->getMask().getValueType().getVectorElementCount() == 7604 N->getValue().getValueType().getVectorElementCount() && 7605 "Vector width mismatch between mask and data"); 7606 assert( 7607 N->getIndex().getValueType().getVectorElementCount().isScalable() == 7608 N->getValue().getValueType().getVectorElementCount().isScalable() && 7609 "Scalable flags of index and data do not match"); 7610 assert(ElementCount::isKnownGE( 7611 N->getIndex().getValueType().getVectorElementCount(), 7612 N->getValue().getValueType().getVectorElementCount()) && 7613 "Vector width mismatch between index and data"); 7614 assert(isa<ConstantSDNode>(N->getScale()) && 7615 cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() && 7616 "Scale should be a constant power of 2"); 7617 7618 CSEMap.InsertNode(N, IP); 7619 InsertNode(N); 7620 SDValue V(N, 0); 7621 NewSDValueDbgMsg(V, "Creating new node: ", this); 7622 return V; 7623 } 7624 7625 SDValue SelectionDAG::simplifySelect(SDValue Cond, SDValue T, SDValue F) { 7626 // select undef, T, F --> T (if T is a constant), otherwise F 7627 // select, ?, undef, F --> F 7628 // select, ?, T, undef --> T 7629 if (Cond.isUndef()) 7630 return isConstantValueOfAnyType(T) ? T : F; 7631 if (T.isUndef()) 7632 return F; 7633 if (F.isUndef()) 7634 return T; 7635 7636 // select true, T, F --> T 7637 // select false, T, F --> F 7638 if (auto *CondC = dyn_cast<ConstantSDNode>(Cond)) 7639 return CondC->isNullValue() ? F : T; 7640 7641 // TODO: This should simplify VSELECT with constant condition using something 7642 // like this (but check boolean contents to be complete?): 7643 // if (ISD::isBuildVectorAllOnes(Cond.getNode())) 7644 // return T; 7645 // if (ISD::isBuildVectorAllZeros(Cond.getNode())) 7646 // return F; 7647 7648 // select ?, T, T --> T 7649 if (T == F) 7650 return T; 7651 7652 return SDValue(); 7653 } 7654 7655 SDValue SelectionDAG::simplifyShift(SDValue X, SDValue Y) { 7656 // shift undef, Y --> 0 (can always assume that the undef value is 0) 7657 if (X.isUndef()) 7658 return getConstant(0, SDLoc(X.getNode()), X.getValueType()); 7659 // shift X, undef --> undef (because it may shift by the bitwidth) 7660 if (Y.isUndef()) 7661 return getUNDEF(X.getValueType()); 7662 7663 // shift 0, Y --> 0 7664 // shift X, 0 --> X 7665 if (isNullOrNullSplat(X) || isNullOrNullSplat(Y)) 7666 return X; 7667 7668 // shift X, C >= bitwidth(X) --> undef 7669 // All vector elements must be too big (or undef) to avoid partial undefs. 7670 auto isShiftTooBig = [X](ConstantSDNode *Val) { 7671 return !Val || Val->getAPIntValue().uge(X.getScalarValueSizeInBits()); 7672 }; 7673 if (ISD::matchUnaryPredicate(Y, isShiftTooBig, true)) 7674 return getUNDEF(X.getValueType()); 7675 7676 return SDValue(); 7677 } 7678 7679 SDValue SelectionDAG::simplifyFPBinop(unsigned Opcode, SDValue X, SDValue Y, 7680 SDNodeFlags Flags) { 7681 // If this operation has 'nnan' or 'ninf' and at least 1 disallowed operand 7682 // (an undef operand can be chosen to be Nan/Inf), then the result of this 7683 // operation is poison. That result can be relaxed to undef. 7684 ConstantFPSDNode *XC = isConstOrConstSplatFP(X, /* AllowUndefs */ true); 7685 ConstantFPSDNode *YC = isConstOrConstSplatFP(Y, /* AllowUndefs */ true); 7686 bool HasNan = (XC && XC->getValueAPF().isNaN()) || 7687 (YC && YC->getValueAPF().isNaN()); 7688 bool HasInf = (XC && XC->getValueAPF().isInfinity()) || 7689 (YC && YC->getValueAPF().isInfinity()); 7690 7691 if (Flags.hasNoNaNs() && (HasNan || X.isUndef() || Y.isUndef())) 7692 return getUNDEF(X.getValueType()); 7693 7694 if (Flags.hasNoInfs() && (HasInf || X.isUndef() || Y.isUndef())) 7695 return getUNDEF(X.getValueType()); 7696 7697 if (!YC) 7698 return SDValue(); 7699 7700 // X + -0.0 --> X 7701 if (Opcode == ISD::FADD) 7702 if (YC->getValueAPF().isNegZero()) 7703 return X; 7704 7705 // X - +0.0 --> X 7706 if (Opcode == ISD::FSUB) 7707 if (YC->getValueAPF().isPosZero()) 7708 return X; 7709 7710 // X * 1.0 --> X 7711 // X / 1.0 --> X 7712 if (Opcode == ISD::FMUL || Opcode == ISD::FDIV) 7713 if (YC->getValueAPF().isExactlyValue(1.0)) 7714 return X; 7715 7716 // X * 0.0 --> 0.0 7717 if (Opcode == ISD::FMUL && Flags.hasNoNaNs() && Flags.hasNoSignedZeros()) 7718 if (YC->getValueAPF().isZero()) 7719 return getConstantFP(0.0, SDLoc(Y), Y.getValueType()); 7720 7721 return SDValue(); 7722 } 7723 7724 SDValue SelectionDAG::getVAArg(EVT VT, const SDLoc &dl, SDValue Chain, 7725 SDValue Ptr, SDValue SV, unsigned Align) { 7726 SDValue Ops[] = { Chain, Ptr, SV, getTargetConstant(Align, dl, MVT::i32) }; 7727 return getNode(ISD::VAARG, dl, getVTList(VT, MVT::Other), Ops); 7728 } 7729 7730 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 7731 ArrayRef<SDUse> Ops) { 7732 switch (Ops.size()) { 7733 case 0: return getNode(Opcode, DL, VT); 7734 case 1: return getNode(Opcode, DL, VT, static_cast<const SDValue>(Ops[0])); 7735 case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]); 7736 case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]); 7737 default: break; 7738 } 7739 7740 // Copy from an SDUse array into an SDValue array for use with 7741 // the regular getNode logic. 7742 SmallVector<SDValue, 8> NewOps(Ops.begin(), Ops.end()); 7743 return getNode(Opcode, DL, VT, NewOps); 7744 } 7745 7746 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 7747 ArrayRef<SDValue> Ops) { 7748 SDNodeFlags Flags; 7749 if (Inserter) 7750 Flags = Inserter->getFlags(); 7751 return getNode(Opcode, DL, VT, Ops, Flags); 7752 } 7753 7754 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT, 7755 ArrayRef<SDValue> Ops, const SDNodeFlags Flags) { 7756 unsigned NumOps = Ops.size(); 7757 switch (NumOps) { 7758 case 0: return getNode(Opcode, DL, VT); 7759 case 1: return getNode(Opcode, DL, VT, Ops[0], Flags); 7760 case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Flags); 7761 case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2], Flags); 7762 default: break; 7763 } 7764 7765 #ifndef NDEBUG 7766 for (auto &Op : Ops) 7767 assert(Op.getOpcode() != ISD::DELETED_NODE && 7768 "Operand is DELETED_NODE!"); 7769 #endif 7770 7771 switch (Opcode) { 7772 default: break; 7773 case ISD::BUILD_VECTOR: 7774 // Attempt to simplify BUILD_VECTOR. 7775 if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this)) 7776 return V; 7777 break; 7778 case ISD::CONCAT_VECTORS: 7779 if (SDValue V = foldCONCAT_VECTORS(DL, VT, Ops, *this)) 7780 return V; 7781 break; 7782 case ISD::SELECT_CC: 7783 assert(NumOps == 5 && "SELECT_CC takes 5 operands!"); 7784 assert(Ops[0].getValueType() == Ops[1].getValueType() && 7785 "LHS and RHS of condition must have same type!"); 7786 assert(Ops[2].getValueType() == Ops[3].getValueType() && 7787 "True and False arms of SelectCC must have same type!"); 7788 assert(Ops[2].getValueType() == VT && 7789 "select_cc node must be of same type as true and false value!"); 7790 break; 7791 case ISD::BR_CC: 7792 assert(NumOps == 5 && "BR_CC takes 5 operands!"); 7793 assert(Ops[2].getValueType() == Ops[3].getValueType() && 7794 "LHS/RHS of comparison should match types!"); 7795 break; 7796 } 7797 7798 // Memoize nodes. 7799 SDNode *N; 7800 SDVTList VTs = getVTList(VT); 7801 7802 if (VT != MVT::Glue) { 7803 FoldingSetNodeID ID; 7804 AddNodeIDNode(ID, Opcode, VTs, Ops); 7805 void *IP = nullptr; 7806 7807 if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) 7808 return SDValue(E, 0); 7809 7810 N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs); 7811 createOperands(N, Ops); 7812 7813 CSEMap.InsertNode(N, IP); 7814 } else { 7815 N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs); 7816 createOperands(N, Ops); 7817 } 7818 7819 N->setFlags(Flags); 7820 InsertNode(N); 7821 SDValue V(N, 0); 7822 NewSDValueDbgMsg(V, "Creating new node: ", this); 7823 return V; 7824 } 7825 7826 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, 7827 ArrayRef<EVT> ResultTys, ArrayRef<SDValue> Ops) { 7828 return getNode(Opcode, DL, getVTList(ResultTys), Ops); 7829 } 7830 7831 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList, 7832 ArrayRef<SDValue> Ops) { 7833 SDNodeFlags Flags; 7834 if (Inserter) 7835 Flags = Inserter->getFlags(); 7836 return getNode(Opcode, DL, VTList, Ops, Flags); 7837 } 7838 7839 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList, 7840 ArrayRef<SDValue> Ops, const SDNodeFlags Flags) { 7841 if (VTList.NumVTs == 1) 7842 return getNode(Opcode, DL, VTList.VTs[0], Ops); 7843 7844 #ifndef NDEBUG 7845 for (auto &Op : Ops) 7846 assert(Op.getOpcode() != ISD::DELETED_NODE && 7847 "Operand is DELETED_NODE!"); 7848 #endif 7849 7850 switch (Opcode) { 7851 case ISD::STRICT_FP_EXTEND: 7852 assert(VTList.NumVTs == 2 && Ops.size() == 2 && 7853 "Invalid STRICT_FP_EXTEND!"); 7854 assert(VTList.VTs[0].isFloatingPoint() && 7855 Ops[1].getValueType().isFloatingPoint() && "Invalid FP cast!"); 7856 assert(VTList.VTs[0].isVector() == Ops[1].getValueType().isVector() && 7857 "STRICT_FP_EXTEND result type should be vector iff the operand " 7858 "type is vector!"); 7859 assert((!VTList.VTs[0].isVector() || 7860 VTList.VTs[0].getVectorNumElements() == 7861 Ops[1].getValueType().getVectorNumElements()) && 7862 "Vector element count mismatch!"); 7863 assert(Ops[1].getValueType().bitsLT(VTList.VTs[0]) && 7864 "Invalid fpext node, dst <= src!"); 7865 break; 7866 case ISD::STRICT_FP_ROUND: 7867 assert(VTList.NumVTs == 2 && Ops.size() == 3 && "Invalid STRICT_FP_ROUND!"); 7868 assert(VTList.VTs[0].isVector() == Ops[1].getValueType().isVector() && 7869 "STRICT_FP_ROUND result type should be vector iff the operand " 7870 "type is vector!"); 7871 assert((!VTList.VTs[0].isVector() || 7872 VTList.VTs[0].getVectorNumElements() == 7873 Ops[1].getValueType().getVectorNumElements()) && 7874 "Vector element count mismatch!"); 7875 assert(VTList.VTs[0].isFloatingPoint() && 7876 Ops[1].getValueType().isFloatingPoint() && 7877 VTList.VTs[0].bitsLT(Ops[1].getValueType()) && 7878 isa<ConstantSDNode>(Ops[2]) && 7879 (cast<ConstantSDNode>(Ops[2])->getZExtValue() == 0 || 7880 cast<ConstantSDNode>(Ops[2])->getZExtValue() == 1) && 7881 "Invalid STRICT_FP_ROUND!"); 7882 break; 7883 #if 0 7884 // FIXME: figure out how to safely handle things like 7885 // int foo(int x) { return 1 << (x & 255); } 7886 // int bar() { return foo(256); } 7887 case ISD::SRA_PARTS: 7888 case ISD::SRL_PARTS: 7889 case ISD::SHL_PARTS: 7890 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG && 7891 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1) 7892 return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0)); 7893 else if (N3.getOpcode() == ISD::AND) 7894 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) { 7895 // If the and is only masking out bits that cannot effect the shift, 7896 // eliminate the and. 7897 unsigned NumBits = VT.getScalarSizeInBits()*2; 7898 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1) 7899 return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0)); 7900 } 7901 break; 7902 #endif 7903 } 7904 7905 // Memoize the node unless it returns a flag. 7906 SDNode *N; 7907 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) { 7908 FoldingSetNodeID ID; 7909 AddNodeIDNode(ID, Opcode, VTList, Ops); 7910 void *IP = nullptr; 7911 if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) 7912 return SDValue(E, 0); 7913 7914 N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList); 7915 createOperands(N, Ops); 7916 CSEMap.InsertNode(N, IP); 7917 } else { 7918 N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList); 7919 createOperands(N, Ops); 7920 } 7921 7922 N->setFlags(Flags); 7923 InsertNode(N); 7924 SDValue V(N, 0); 7925 NewSDValueDbgMsg(V, "Creating new node: ", this); 7926 return V; 7927 } 7928 7929 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, 7930 SDVTList VTList) { 7931 return getNode(Opcode, DL, VTList, None); 7932 } 7933 7934 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList, 7935 SDValue N1) { 7936 SDValue Ops[] = { N1 }; 7937 return getNode(Opcode, DL, VTList, Ops); 7938 } 7939 7940 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList, 7941 SDValue N1, SDValue N2) { 7942 SDValue Ops[] = { N1, N2 }; 7943 return getNode(Opcode, DL, VTList, Ops); 7944 } 7945 7946 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList, 7947 SDValue N1, SDValue N2, SDValue N3) { 7948 SDValue Ops[] = { N1, N2, N3 }; 7949 return getNode(Opcode, DL, VTList, Ops); 7950 } 7951 7952 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList, 7953 SDValue N1, SDValue N2, SDValue N3, SDValue N4) { 7954 SDValue Ops[] = { N1, N2, N3, N4 }; 7955 return getNode(Opcode, DL, VTList, Ops); 7956 } 7957 7958 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList, 7959 SDValue N1, SDValue N2, SDValue N3, SDValue N4, 7960 SDValue N5) { 7961 SDValue Ops[] = { N1, N2, N3, N4, N5 }; 7962 return getNode(Opcode, DL, VTList, Ops); 7963 } 7964 7965 SDVTList SelectionDAG::getVTList(EVT VT) { 7966 return makeVTList(SDNode::getValueTypeList(VT), 1); 7967 } 7968 7969 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) { 7970 FoldingSetNodeID ID; 7971 ID.AddInteger(2U); 7972 ID.AddInteger(VT1.getRawBits()); 7973 ID.AddInteger(VT2.getRawBits()); 7974 7975 void *IP = nullptr; 7976 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP); 7977 if (!Result) { 7978 EVT *Array = Allocator.Allocate<EVT>(2); 7979 Array[0] = VT1; 7980 Array[1] = VT2; 7981 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 2); 7982 VTListMap.InsertNode(Result, IP); 7983 } 7984 return Result->getSDVTList(); 7985 } 7986 7987 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) { 7988 FoldingSetNodeID ID; 7989 ID.AddInteger(3U); 7990 ID.AddInteger(VT1.getRawBits()); 7991 ID.AddInteger(VT2.getRawBits()); 7992 ID.AddInteger(VT3.getRawBits()); 7993 7994 void *IP = nullptr; 7995 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP); 7996 if (!Result) { 7997 EVT *Array = Allocator.Allocate<EVT>(3); 7998 Array[0] = VT1; 7999 Array[1] = VT2; 8000 Array[2] = VT3; 8001 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 3); 8002 VTListMap.InsertNode(Result, IP); 8003 } 8004 return Result->getSDVTList(); 8005 } 8006 8007 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) { 8008 FoldingSetNodeID ID; 8009 ID.AddInteger(4U); 8010 ID.AddInteger(VT1.getRawBits()); 8011 ID.AddInteger(VT2.getRawBits()); 8012 ID.AddInteger(VT3.getRawBits()); 8013 ID.AddInteger(VT4.getRawBits()); 8014 8015 void *IP = nullptr; 8016 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP); 8017 if (!Result) { 8018 EVT *Array = Allocator.Allocate<EVT>(4); 8019 Array[0] = VT1; 8020 Array[1] = VT2; 8021 Array[2] = VT3; 8022 Array[3] = VT4; 8023 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 4); 8024 VTListMap.InsertNode(Result, IP); 8025 } 8026 return Result->getSDVTList(); 8027 } 8028 8029 SDVTList SelectionDAG::getVTList(ArrayRef<EVT> VTs) { 8030 unsigned NumVTs = VTs.size(); 8031 FoldingSetNodeID ID; 8032 ID.AddInteger(NumVTs); 8033 for (unsigned index = 0; index < NumVTs; index++) { 8034 ID.AddInteger(VTs[index].getRawBits()); 8035 } 8036 8037 void *IP = nullptr; 8038 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP); 8039 if (!Result) { 8040 EVT *Array = Allocator.Allocate<EVT>(NumVTs); 8041 llvm::copy(VTs, Array); 8042 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, NumVTs); 8043 VTListMap.InsertNode(Result, IP); 8044 } 8045 return Result->getSDVTList(); 8046 } 8047 8048 8049 /// UpdateNodeOperands - *Mutate* the specified node in-place to have the 8050 /// specified operands. If the resultant node already exists in the DAG, 8051 /// this does not modify the specified node, instead it returns the node that 8052 /// already exists. If the resultant node does not exist in the DAG, the 8053 /// input node is returned. As a degenerate case, if you specify the same 8054 /// input operands as the node already has, the input node is returned. 8055 SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op) { 8056 assert(N->getNumOperands() == 1 && "Update with wrong number of operands"); 8057 8058 // Check to see if there is no change. 8059 if (Op == N->getOperand(0)) return N; 8060 8061 // See if the modified node already exists. 8062 void *InsertPos = nullptr; 8063 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos)) 8064 return Existing; 8065 8066 // Nope it doesn't. Remove the node from its current place in the maps. 8067 if (InsertPos) 8068 if (!RemoveNodeFromCSEMaps(N)) 8069 InsertPos = nullptr; 8070 8071 // Now we update the operands. 8072 N->OperandList[0].set(Op); 8073 8074 updateDivergence(N); 8075 // If this gets put into a CSE map, add it. 8076 if (InsertPos) CSEMap.InsertNode(N, InsertPos); 8077 return N; 8078 } 8079 8080 SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2) { 8081 assert(N->getNumOperands() == 2 && "Update with wrong number of operands"); 8082 8083 // Check to see if there is no change. 8084 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1)) 8085 return N; // No operands changed, just return the input node. 8086 8087 // See if the modified node already exists. 8088 void *InsertPos = nullptr; 8089 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos)) 8090 return Existing; 8091 8092 // Nope it doesn't. Remove the node from its current place in the maps. 8093 if (InsertPos) 8094 if (!RemoveNodeFromCSEMaps(N)) 8095 InsertPos = nullptr; 8096 8097 // Now we update the operands. 8098 if (N->OperandList[0] != Op1) 8099 N->OperandList[0].set(Op1); 8100 if (N->OperandList[1] != Op2) 8101 N->OperandList[1].set(Op2); 8102 8103 updateDivergence(N); 8104 // If this gets put into a CSE map, add it. 8105 if (InsertPos) CSEMap.InsertNode(N, InsertPos); 8106 return N; 8107 } 8108 8109 SDNode *SelectionDAG:: 8110 UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, SDValue Op3) { 8111 SDValue Ops[] = { Op1, Op2, Op3 }; 8112 return UpdateNodeOperands(N, Ops); 8113 } 8114 8115 SDNode *SelectionDAG:: 8116 UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, 8117 SDValue Op3, SDValue Op4) { 8118 SDValue Ops[] = { Op1, Op2, Op3, Op4 }; 8119 return UpdateNodeOperands(N, Ops); 8120 } 8121 8122 SDNode *SelectionDAG:: 8123 UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, 8124 SDValue Op3, SDValue Op4, SDValue Op5) { 8125 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 }; 8126 return UpdateNodeOperands(N, Ops); 8127 } 8128 8129 SDNode *SelectionDAG:: 8130 UpdateNodeOperands(SDNode *N, ArrayRef<SDValue> Ops) { 8131 unsigned NumOps = Ops.size(); 8132 assert(N->getNumOperands() == NumOps && 8133 "Update with wrong number of operands"); 8134 8135 // If no operands changed just return the input node. 8136 if (std::equal(Ops.begin(), Ops.end(), N->op_begin())) 8137 return N; 8138 8139 // See if the modified node already exists. 8140 void *InsertPos = nullptr; 8141 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, InsertPos)) 8142 return Existing; 8143 8144 // Nope it doesn't. Remove the node from its current place in the maps. 8145 if (InsertPos) 8146 if (!RemoveNodeFromCSEMaps(N)) 8147 InsertPos = nullptr; 8148 8149 // Now we update the operands. 8150 for (unsigned i = 0; i != NumOps; ++i) 8151 if (N->OperandList[i] != Ops[i]) 8152 N->OperandList[i].set(Ops[i]); 8153 8154 updateDivergence(N); 8155 // If this gets put into a CSE map, add it. 8156 if (InsertPos) CSEMap.InsertNode(N, InsertPos); 8157 return N; 8158 } 8159 8160 /// DropOperands - Release the operands and set this node to have 8161 /// zero operands. 8162 void SDNode::DropOperands() { 8163 // Unlike the code in MorphNodeTo that does this, we don't need to 8164 // watch for dead nodes here. 8165 for (op_iterator I = op_begin(), E = op_end(); I != E; ) { 8166 SDUse &Use = *I++; 8167 Use.set(SDValue()); 8168 } 8169 } 8170 8171 void SelectionDAG::setNodeMemRefs(MachineSDNode *N, 8172 ArrayRef<MachineMemOperand *> NewMemRefs) { 8173 if (NewMemRefs.empty()) { 8174 N->clearMemRefs(); 8175 return; 8176 } 8177 8178 // Check if we can avoid allocating by storing a single reference directly. 8179 if (NewMemRefs.size() == 1) { 8180 N->MemRefs = NewMemRefs[0]; 8181 N->NumMemRefs = 1; 8182 return; 8183 } 8184 8185 MachineMemOperand **MemRefsBuffer = 8186 Allocator.template Allocate<MachineMemOperand *>(NewMemRefs.size()); 8187 llvm::copy(NewMemRefs, MemRefsBuffer); 8188 N->MemRefs = MemRefsBuffer; 8189 N->NumMemRefs = static_cast<int>(NewMemRefs.size()); 8190 } 8191 8192 /// SelectNodeTo - These are wrappers around MorphNodeTo that accept a 8193 /// machine opcode. 8194 /// 8195 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, 8196 EVT VT) { 8197 SDVTList VTs = getVTList(VT); 8198 return SelectNodeTo(N, MachineOpc, VTs, None); 8199 } 8200 8201 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, 8202 EVT VT, SDValue Op1) { 8203 SDVTList VTs = getVTList(VT); 8204 SDValue Ops[] = { Op1 }; 8205 return SelectNodeTo(N, MachineOpc, VTs, Ops); 8206 } 8207 8208 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, 8209 EVT VT, SDValue Op1, 8210 SDValue Op2) { 8211 SDVTList VTs = getVTList(VT); 8212 SDValue Ops[] = { Op1, Op2 }; 8213 return SelectNodeTo(N, MachineOpc, VTs, Ops); 8214 } 8215 8216 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, 8217 EVT VT, SDValue Op1, 8218 SDValue Op2, SDValue Op3) { 8219 SDVTList VTs = getVTList(VT); 8220 SDValue Ops[] = { Op1, Op2, Op3 }; 8221 return SelectNodeTo(N, MachineOpc, VTs, Ops); 8222 } 8223 8224 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, 8225 EVT VT, ArrayRef<SDValue> Ops) { 8226 SDVTList VTs = getVTList(VT); 8227 return SelectNodeTo(N, MachineOpc, VTs, Ops); 8228 } 8229 8230 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, 8231 EVT VT1, EVT VT2, ArrayRef<SDValue> Ops) { 8232 SDVTList VTs = getVTList(VT1, VT2); 8233 return SelectNodeTo(N, MachineOpc, VTs, Ops); 8234 } 8235 8236 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, 8237 EVT VT1, EVT VT2) { 8238 SDVTList VTs = getVTList(VT1, VT2); 8239 return SelectNodeTo(N, MachineOpc, VTs, None); 8240 } 8241 8242 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, 8243 EVT VT1, EVT VT2, EVT VT3, 8244 ArrayRef<SDValue> Ops) { 8245 SDVTList VTs = getVTList(VT1, VT2, VT3); 8246 return SelectNodeTo(N, MachineOpc, VTs, Ops); 8247 } 8248 8249 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, 8250 EVT VT1, EVT VT2, 8251 SDValue Op1, SDValue Op2) { 8252 SDVTList VTs = getVTList(VT1, VT2); 8253 SDValue Ops[] = { Op1, Op2 }; 8254 return SelectNodeTo(N, MachineOpc, VTs, Ops); 8255 } 8256 8257 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, 8258 SDVTList VTs,ArrayRef<SDValue> Ops) { 8259 SDNode *New = MorphNodeTo(N, ~MachineOpc, VTs, Ops); 8260 // Reset the NodeID to -1. 8261 New->setNodeId(-1); 8262 if (New != N) { 8263 ReplaceAllUsesWith(N, New); 8264 RemoveDeadNode(N); 8265 } 8266 return New; 8267 } 8268 8269 /// UpdateSDLocOnMergeSDNode - If the opt level is -O0 then it throws away 8270 /// the line number information on the merged node since it is not possible to 8271 /// preserve the information that operation is associated with multiple lines. 8272 /// This will make the debugger working better at -O0, were there is a higher 8273 /// probability having other instructions associated with that line. 8274 /// 8275 /// For IROrder, we keep the smaller of the two 8276 SDNode *SelectionDAG::UpdateSDLocOnMergeSDNode(SDNode *N, const SDLoc &OLoc) { 8277 DebugLoc NLoc = N->getDebugLoc(); 8278 if (NLoc && OptLevel == CodeGenOpt::None && OLoc.getDebugLoc() != NLoc) { 8279 N->setDebugLoc(DebugLoc()); 8280 } 8281 unsigned Order = std::min(N->getIROrder(), OLoc.getIROrder()); 8282 N->setIROrder(Order); 8283 return N; 8284 } 8285 8286 /// MorphNodeTo - This *mutates* the specified node to have the specified 8287 /// return type, opcode, and operands. 8288 /// 8289 /// Note that MorphNodeTo returns the resultant node. If there is already a 8290 /// node of the specified opcode and operands, it returns that node instead of 8291 /// the current one. Note that the SDLoc need not be the same. 8292 /// 8293 /// Using MorphNodeTo is faster than creating a new node and swapping it in 8294 /// with ReplaceAllUsesWith both because it often avoids allocating a new 8295 /// node, and because it doesn't require CSE recalculation for any of 8296 /// the node's users. 8297 /// 8298 /// However, note that MorphNodeTo recursively deletes dead nodes from the DAG. 8299 /// As a consequence it isn't appropriate to use from within the DAG combiner or 8300 /// the legalizer which maintain worklists that would need to be updated when 8301 /// deleting things. 8302 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc, 8303 SDVTList VTs, ArrayRef<SDValue> Ops) { 8304 // If an identical node already exists, use it. 8305 void *IP = nullptr; 8306 if (VTs.VTs[VTs.NumVTs-1] != MVT::Glue) { 8307 FoldingSetNodeID ID; 8308 AddNodeIDNode(ID, Opc, VTs, Ops); 8309 if (SDNode *ON = FindNodeOrInsertPos(ID, SDLoc(N), IP)) 8310 return UpdateSDLocOnMergeSDNode(ON, SDLoc(N)); 8311 } 8312 8313 if (!RemoveNodeFromCSEMaps(N)) 8314 IP = nullptr; 8315 8316 // Start the morphing. 8317 N->NodeType = Opc; 8318 N->ValueList = VTs.VTs; 8319 N->NumValues = VTs.NumVTs; 8320 8321 // Clear the operands list, updating used nodes to remove this from their 8322 // use list. Keep track of any operands that become dead as a result. 8323 SmallPtrSet<SDNode*, 16> DeadNodeSet; 8324 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) { 8325 SDUse &Use = *I++; 8326 SDNode *Used = Use.getNode(); 8327 Use.set(SDValue()); 8328 if (Used->use_empty()) 8329 DeadNodeSet.insert(Used); 8330 } 8331 8332 // For MachineNode, initialize the memory references information. 8333 if (MachineSDNode *MN = dyn_cast<MachineSDNode>(N)) 8334 MN->clearMemRefs(); 8335 8336 // Swap for an appropriately sized array from the recycler. 8337 removeOperands(N); 8338 createOperands(N, Ops); 8339 8340 // Delete any nodes that are still dead after adding the uses for the 8341 // new operands. 8342 if (!DeadNodeSet.empty()) { 8343 SmallVector<SDNode *, 16> DeadNodes; 8344 for (SDNode *N : DeadNodeSet) 8345 if (N->use_empty()) 8346 DeadNodes.push_back(N); 8347 RemoveDeadNodes(DeadNodes); 8348 } 8349 8350 if (IP) 8351 CSEMap.InsertNode(N, IP); // Memoize the new node. 8352 return N; 8353 } 8354 8355 SDNode* SelectionDAG::mutateStrictFPToFP(SDNode *Node) { 8356 unsigned OrigOpc = Node->getOpcode(); 8357 unsigned NewOpc; 8358 switch (OrigOpc) { 8359 default: 8360 llvm_unreachable("mutateStrictFPToFP called with unexpected opcode!"); 8361 #define DAG_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \ 8362 case ISD::STRICT_##DAGN: NewOpc = ISD::DAGN; break; 8363 #define CMP_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \ 8364 case ISD::STRICT_##DAGN: NewOpc = ISD::SETCC; break; 8365 #include "llvm/IR/ConstrainedOps.def" 8366 } 8367 8368 assert(Node->getNumValues() == 2 && "Unexpected number of results!"); 8369 8370 // We're taking this node out of the chain, so we need to re-link things. 8371 SDValue InputChain = Node->getOperand(0); 8372 SDValue OutputChain = SDValue(Node, 1); 8373 ReplaceAllUsesOfValueWith(OutputChain, InputChain); 8374 8375 SmallVector<SDValue, 3> Ops; 8376 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) 8377 Ops.push_back(Node->getOperand(i)); 8378 8379 SDVTList VTs = getVTList(Node->getValueType(0)); 8380 SDNode *Res = MorphNodeTo(Node, NewOpc, VTs, Ops); 8381 8382 // MorphNodeTo can operate in two ways: if an existing node with the 8383 // specified operands exists, it can just return it. Otherwise, it 8384 // updates the node in place to have the requested operands. 8385 if (Res == Node) { 8386 // If we updated the node in place, reset the node ID. To the isel, 8387 // this should be just like a newly allocated machine node. 8388 Res->setNodeId(-1); 8389 } else { 8390 ReplaceAllUsesWith(Node, Res); 8391 RemoveDeadNode(Node); 8392 } 8393 8394 return Res; 8395 } 8396 8397 /// getMachineNode - These are used for target selectors to create a new node 8398 /// with specified return type(s), MachineInstr opcode, and operands. 8399 /// 8400 /// Note that getMachineNode returns the resultant node. If there is already a 8401 /// node of the specified opcode and operands, it returns that node instead of 8402 /// the current one. 8403 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8404 EVT VT) { 8405 SDVTList VTs = getVTList(VT); 8406 return getMachineNode(Opcode, dl, VTs, None); 8407 } 8408 8409 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8410 EVT VT, SDValue Op1) { 8411 SDVTList VTs = getVTList(VT); 8412 SDValue Ops[] = { Op1 }; 8413 return getMachineNode(Opcode, dl, VTs, Ops); 8414 } 8415 8416 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8417 EVT VT, SDValue Op1, SDValue Op2) { 8418 SDVTList VTs = getVTList(VT); 8419 SDValue Ops[] = { Op1, Op2 }; 8420 return getMachineNode(Opcode, dl, VTs, Ops); 8421 } 8422 8423 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8424 EVT VT, SDValue Op1, SDValue Op2, 8425 SDValue Op3) { 8426 SDVTList VTs = getVTList(VT); 8427 SDValue Ops[] = { Op1, Op2, Op3 }; 8428 return getMachineNode(Opcode, dl, VTs, Ops); 8429 } 8430 8431 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8432 EVT VT, ArrayRef<SDValue> Ops) { 8433 SDVTList VTs = getVTList(VT); 8434 return getMachineNode(Opcode, dl, VTs, Ops); 8435 } 8436 8437 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8438 EVT VT1, EVT VT2, SDValue Op1, 8439 SDValue Op2) { 8440 SDVTList VTs = getVTList(VT1, VT2); 8441 SDValue Ops[] = { Op1, Op2 }; 8442 return getMachineNode(Opcode, dl, VTs, Ops); 8443 } 8444 8445 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8446 EVT VT1, EVT VT2, SDValue Op1, 8447 SDValue Op2, SDValue Op3) { 8448 SDVTList VTs = getVTList(VT1, VT2); 8449 SDValue Ops[] = { Op1, Op2, Op3 }; 8450 return getMachineNode(Opcode, dl, VTs, Ops); 8451 } 8452 8453 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8454 EVT VT1, EVT VT2, 8455 ArrayRef<SDValue> Ops) { 8456 SDVTList VTs = getVTList(VT1, VT2); 8457 return getMachineNode(Opcode, dl, VTs, Ops); 8458 } 8459 8460 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8461 EVT VT1, EVT VT2, EVT VT3, 8462 SDValue Op1, SDValue Op2) { 8463 SDVTList VTs = getVTList(VT1, VT2, VT3); 8464 SDValue Ops[] = { Op1, Op2 }; 8465 return getMachineNode(Opcode, dl, VTs, Ops); 8466 } 8467 8468 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8469 EVT VT1, EVT VT2, EVT VT3, 8470 SDValue Op1, SDValue Op2, 8471 SDValue Op3) { 8472 SDVTList VTs = getVTList(VT1, VT2, VT3); 8473 SDValue Ops[] = { Op1, Op2, Op3 }; 8474 return getMachineNode(Opcode, dl, VTs, Ops); 8475 } 8476 8477 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8478 EVT VT1, EVT VT2, EVT VT3, 8479 ArrayRef<SDValue> Ops) { 8480 SDVTList VTs = getVTList(VT1, VT2, VT3); 8481 return getMachineNode(Opcode, dl, VTs, Ops); 8482 } 8483 8484 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl, 8485 ArrayRef<EVT> ResultTys, 8486 ArrayRef<SDValue> Ops) { 8487 SDVTList VTs = getVTList(ResultTys); 8488 return getMachineNode(Opcode, dl, VTs, Ops); 8489 } 8490 8491 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &DL, 8492 SDVTList VTs, 8493 ArrayRef<SDValue> Ops) { 8494 bool DoCSE = VTs.VTs[VTs.NumVTs-1] != MVT::Glue; 8495 MachineSDNode *N; 8496 void *IP = nullptr; 8497 8498 if (DoCSE) { 8499 FoldingSetNodeID ID; 8500 AddNodeIDNode(ID, ~Opcode, VTs, Ops); 8501 IP = nullptr; 8502 if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) { 8503 return cast<MachineSDNode>(UpdateSDLocOnMergeSDNode(E, DL)); 8504 } 8505 } 8506 8507 // Allocate a new MachineSDNode. 8508 N = newSDNode<MachineSDNode>(~Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs); 8509 createOperands(N, Ops); 8510 8511 if (DoCSE) 8512 CSEMap.InsertNode(N, IP); 8513 8514 InsertNode(N); 8515 NewSDValueDbgMsg(SDValue(N, 0), "Creating new machine node: ", this); 8516 return N; 8517 } 8518 8519 /// getTargetExtractSubreg - A convenience function for creating 8520 /// TargetOpcode::EXTRACT_SUBREG nodes. 8521 SDValue SelectionDAG::getTargetExtractSubreg(int SRIdx, const SDLoc &DL, EVT VT, 8522 SDValue Operand) { 8523 SDValue SRIdxVal = getTargetConstant(SRIdx, DL, MVT::i32); 8524 SDNode *Subreg = getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL, 8525 VT, Operand, SRIdxVal); 8526 return SDValue(Subreg, 0); 8527 } 8528 8529 /// getTargetInsertSubreg - A convenience function for creating 8530 /// TargetOpcode::INSERT_SUBREG nodes. 8531 SDValue SelectionDAG::getTargetInsertSubreg(int SRIdx, const SDLoc &DL, EVT VT, 8532 SDValue Operand, SDValue Subreg) { 8533 SDValue SRIdxVal = getTargetConstant(SRIdx, DL, MVT::i32); 8534 SDNode *Result = getMachineNode(TargetOpcode::INSERT_SUBREG, DL, 8535 VT, Operand, Subreg, SRIdxVal); 8536 return SDValue(Result, 0); 8537 } 8538 8539 /// getNodeIfExists - Get the specified node if it's already available, or 8540 /// else return NULL. 8541 SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList, 8542 ArrayRef<SDValue> Ops) { 8543 SDNodeFlags Flags; 8544 if (Inserter) 8545 Flags = Inserter->getFlags(); 8546 return getNodeIfExists(Opcode, VTList, Ops, Flags); 8547 } 8548 8549 SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList, 8550 ArrayRef<SDValue> Ops, 8551 const SDNodeFlags Flags) { 8552 if (VTList.VTs[VTList.NumVTs - 1] != MVT::Glue) { 8553 FoldingSetNodeID ID; 8554 AddNodeIDNode(ID, Opcode, VTList, Ops); 8555 void *IP = nullptr; 8556 if (SDNode *E = FindNodeOrInsertPos(ID, SDLoc(), IP)) { 8557 E->intersectFlagsWith(Flags); 8558 return E; 8559 } 8560 } 8561 return nullptr; 8562 } 8563 8564 /// doesNodeExist - Check if a node exists without modifying its flags. 8565 bool SelectionDAG::doesNodeExist(unsigned Opcode, SDVTList VTList, 8566 ArrayRef<SDValue> Ops) { 8567 if (VTList.VTs[VTList.NumVTs - 1] != MVT::Glue) { 8568 FoldingSetNodeID ID; 8569 AddNodeIDNode(ID, Opcode, VTList, Ops); 8570 void *IP = nullptr; 8571 if (FindNodeOrInsertPos(ID, SDLoc(), IP)) 8572 return true; 8573 } 8574 return false; 8575 } 8576 8577 /// getDbgValue - Creates a SDDbgValue node. 8578 /// 8579 /// SDNode 8580 SDDbgValue *SelectionDAG::getDbgValue(DIVariable *Var, DIExpression *Expr, 8581 SDNode *N, unsigned R, bool IsIndirect, 8582 const DebugLoc &DL, unsigned O) { 8583 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) && 8584 "Expected inlined-at fields to agree"); 8585 return new (DbgInfo->getAlloc()) 8586 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromNode(N, R), 8587 {}, IsIndirect, DL, O, 8588 /*IsVariadic=*/false); 8589 } 8590 8591 /// Constant 8592 SDDbgValue *SelectionDAG::getConstantDbgValue(DIVariable *Var, 8593 DIExpression *Expr, 8594 const Value *C, 8595 const DebugLoc &DL, unsigned O) { 8596 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) && 8597 "Expected inlined-at fields to agree"); 8598 return new (DbgInfo->getAlloc()) 8599 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromConst(C), {}, 8600 /*IsIndirect=*/false, DL, O, 8601 /*IsVariadic=*/false); 8602 } 8603 8604 /// FrameIndex 8605 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var, 8606 DIExpression *Expr, unsigned FI, 8607 bool IsIndirect, 8608 const DebugLoc &DL, 8609 unsigned O) { 8610 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) && 8611 "Expected inlined-at fields to agree"); 8612 return getFrameIndexDbgValue(Var, Expr, FI, {}, IsIndirect, DL, O); 8613 } 8614 8615 /// FrameIndex with dependencies 8616 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var, 8617 DIExpression *Expr, unsigned FI, 8618 ArrayRef<SDNode *> Dependencies, 8619 bool IsIndirect, 8620 const DebugLoc &DL, 8621 unsigned O) { 8622 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) && 8623 "Expected inlined-at fields to agree"); 8624 return new (DbgInfo->getAlloc()) 8625 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromFrameIdx(FI), 8626 Dependencies, IsIndirect, DL, O, 8627 /*IsVariadic=*/false); 8628 } 8629 8630 /// VReg 8631 SDDbgValue *SelectionDAG::getVRegDbgValue(DIVariable *Var, DIExpression *Expr, 8632 unsigned VReg, bool IsIndirect, 8633 const DebugLoc &DL, unsigned O) { 8634 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) && 8635 "Expected inlined-at fields to agree"); 8636 return new (DbgInfo->getAlloc()) 8637 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromVReg(VReg), 8638 {}, IsIndirect, DL, O, 8639 /*IsVariadic=*/false); 8640 } 8641 8642 SDDbgValue *SelectionDAG::getDbgValueList(DIVariable *Var, DIExpression *Expr, 8643 ArrayRef<SDDbgOperand> Locs, 8644 ArrayRef<SDNode *> Dependencies, 8645 bool IsIndirect, const DebugLoc &DL, 8646 unsigned O, bool IsVariadic) { 8647 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) && 8648 "Expected inlined-at fields to agree"); 8649 return new (DbgInfo->getAlloc()) 8650 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, Locs, Dependencies, IsIndirect, 8651 DL, O, IsVariadic); 8652 } 8653 8654 void SelectionDAG::transferDbgValues(SDValue From, SDValue To, 8655 unsigned OffsetInBits, unsigned SizeInBits, 8656 bool InvalidateDbg) { 8657 SDNode *FromNode = From.getNode(); 8658 SDNode *ToNode = To.getNode(); 8659 assert(FromNode && ToNode && "Can't modify dbg values"); 8660 8661 // PR35338 8662 // TODO: assert(From != To && "Redundant dbg value transfer"); 8663 // TODO: assert(FromNode != ToNode && "Intranode dbg value transfer"); 8664 if (From == To || FromNode == ToNode) 8665 return; 8666 8667 if (!FromNode->getHasDebugValue()) 8668 return; 8669 8670 SDDbgOperand FromLocOp = 8671 SDDbgOperand::fromNode(From.getNode(), From.getResNo()); 8672 SDDbgOperand ToLocOp = SDDbgOperand::fromNode(To.getNode(), To.getResNo()); 8673 8674 SmallVector<SDDbgValue *, 2> ClonedDVs; 8675 for (SDDbgValue *Dbg : GetDbgValues(FromNode)) { 8676 if (Dbg->isInvalidated()) 8677 continue; 8678 8679 // TODO: assert(!Dbg->isInvalidated() && "Transfer of invalid dbg value"); 8680 8681 // Create a new location ops vector that is equal to the old vector, but 8682 // with each instance of FromLocOp replaced with ToLocOp. 8683 bool Changed = false; 8684 auto NewLocOps = Dbg->copyLocationOps(); 8685 std::replace_if( 8686 NewLocOps.begin(), NewLocOps.end(), 8687 [&Changed, FromLocOp](const SDDbgOperand &Op) { 8688 bool Match = Op == FromLocOp; 8689 Changed |= Match; 8690 return Match; 8691 }, 8692 ToLocOp); 8693 // Ignore this SDDbgValue if we didn't find a matching location. 8694 if (!Changed) 8695 continue; 8696 8697 DIVariable *Var = Dbg->getVariable(); 8698 auto *Expr = Dbg->getExpression(); 8699 // If a fragment is requested, update the expression. 8700 if (SizeInBits) { 8701 // When splitting a larger (e.g., sign-extended) value whose 8702 // lower bits are described with an SDDbgValue, do not attempt 8703 // to transfer the SDDbgValue to the upper bits. 8704 if (auto FI = Expr->getFragmentInfo()) 8705 if (OffsetInBits + SizeInBits > FI->SizeInBits) 8706 continue; 8707 auto Fragment = DIExpression::createFragmentExpression(Expr, OffsetInBits, 8708 SizeInBits); 8709 if (!Fragment) 8710 continue; 8711 Expr = *Fragment; 8712 } 8713 8714 auto AdditionalDependencies = Dbg->getAdditionalDependencies(); 8715 // Clone the SDDbgValue and move it to To. 8716 SDDbgValue *Clone = getDbgValueList( 8717 Var, Expr, NewLocOps, AdditionalDependencies, Dbg->isIndirect(), 8718 Dbg->getDebugLoc(), std::max(ToNode->getIROrder(), Dbg->getOrder()), 8719 Dbg->isVariadic()); 8720 ClonedDVs.push_back(Clone); 8721 8722 if (InvalidateDbg) { 8723 // Invalidate value and indicate the SDDbgValue should not be emitted. 8724 Dbg->setIsInvalidated(); 8725 Dbg->setIsEmitted(); 8726 } 8727 } 8728 8729 for (SDDbgValue *Dbg : ClonedDVs) { 8730 assert(is_contained(Dbg->getSDNodes(), ToNode) && 8731 "Transferred DbgValues should depend on the new SDNode"); 8732 AddDbgValue(Dbg, false); 8733 } 8734 } 8735 8736 void SelectionDAG::salvageDebugInfo(SDNode &N) { 8737 if (!N.getHasDebugValue()) 8738 return; 8739 8740 SmallVector<SDDbgValue *, 2> ClonedDVs; 8741 for (auto DV : GetDbgValues(&N)) { 8742 if (DV->isInvalidated()) 8743 continue; 8744 switch (N.getOpcode()) { 8745 default: 8746 break; 8747 case ISD::ADD: 8748 SDValue N0 = N.getOperand(0); 8749 SDValue N1 = N.getOperand(1); 8750 if (!isConstantIntBuildVectorOrConstantInt(N0) && 8751 isConstantIntBuildVectorOrConstantInt(N1)) { 8752 uint64_t Offset = N.getConstantOperandVal(1); 8753 8754 // Rewrite an ADD constant node into a DIExpression. Since we are 8755 // performing arithmetic to compute the variable's *value* in the 8756 // DIExpression, we need to mark the expression with a 8757 // DW_OP_stack_value. 8758 auto *DIExpr = DV->getExpression(); 8759 auto NewLocOps = DV->copyLocationOps(); 8760 bool Changed = false; 8761 for (size_t i = 0; i < NewLocOps.size(); ++i) { 8762 // We're not given a ResNo to compare against because the whole 8763 // node is going away. We know that any ISD::ADD only has one 8764 // result, so we can assume any node match is using the result. 8765 if (NewLocOps[i].getKind() != SDDbgOperand::SDNODE || 8766 NewLocOps[i].getSDNode() != &N) 8767 continue; 8768 NewLocOps[i] = SDDbgOperand::fromNode(N0.getNode(), N0.getResNo()); 8769 SmallVector<uint64_t, 3> ExprOps; 8770 DIExpression::appendOffset(ExprOps, Offset); 8771 DIExpr = DIExpression::appendOpsToArg(DIExpr, ExprOps, i, true); 8772 Changed = true; 8773 } 8774 (void)Changed; 8775 assert(Changed && "Salvage target doesn't use N"); 8776 8777 auto AdditionalDependencies = DV->getAdditionalDependencies(); 8778 SDDbgValue *Clone = getDbgValueList(DV->getVariable(), DIExpr, 8779 NewLocOps, AdditionalDependencies, 8780 DV->isIndirect(), DV->getDebugLoc(), 8781 DV->getOrder(), DV->isVariadic()); 8782 ClonedDVs.push_back(Clone); 8783 DV->setIsInvalidated(); 8784 DV->setIsEmitted(); 8785 LLVM_DEBUG(dbgs() << "SALVAGE: Rewriting"; 8786 N0.getNode()->dumprFull(this); 8787 dbgs() << " into " << *DIExpr << '\n'); 8788 } 8789 } 8790 } 8791 8792 for (SDDbgValue *Dbg : ClonedDVs) { 8793 assert(!Dbg->getSDNodes().empty() && 8794 "Salvaged DbgValue should depend on a new SDNode"); 8795 AddDbgValue(Dbg, false); 8796 } 8797 } 8798 8799 /// Creates a SDDbgLabel node. 8800 SDDbgLabel *SelectionDAG::getDbgLabel(DILabel *Label, 8801 const DebugLoc &DL, unsigned O) { 8802 assert(cast<DILabel>(Label)->isValidLocationForIntrinsic(DL) && 8803 "Expected inlined-at fields to agree"); 8804 return new (DbgInfo->getAlloc()) SDDbgLabel(Label, DL, O); 8805 } 8806 8807 namespace { 8808 8809 /// RAUWUpdateListener - Helper for ReplaceAllUsesWith - When the node 8810 /// pointed to by a use iterator is deleted, increment the use iterator 8811 /// so that it doesn't dangle. 8812 /// 8813 class RAUWUpdateListener : public SelectionDAG::DAGUpdateListener { 8814 SDNode::use_iterator &UI; 8815 SDNode::use_iterator &UE; 8816 8817 void NodeDeleted(SDNode *N, SDNode *E) override { 8818 // Increment the iterator as needed. 8819 while (UI != UE && N == *UI) 8820 ++UI; 8821 } 8822 8823 public: 8824 RAUWUpdateListener(SelectionDAG &d, 8825 SDNode::use_iterator &ui, 8826 SDNode::use_iterator &ue) 8827 : SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {} 8828 }; 8829 8830 } // end anonymous namespace 8831 8832 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead. 8833 /// This can cause recursive merging of nodes in the DAG. 8834 /// 8835 /// This version assumes From has a single result value. 8836 /// 8837 void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To) { 8838 SDNode *From = FromN.getNode(); 8839 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 && 8840 "Cannot replace with this method!"); 8841 assert(From != To.getNode() && "Cannot replace uses of with self"); 8842 8843 // Preserve Debug Values 8844 transferDbgValues(FromN, To); 8845 8846 // Iterate over all the existing uses of From. New uses will be added 8847 // to the beginning of the use list, which we avoid visiting. 8848 // This specifically avoids visiting uses of From that arise while the 8849 // replacement is happening, because any such uses would be the result 8850 // of CSE: If an existing node looks like From after one of its operands 8851 // is replaced by To, we don't want to replace of all its users with To 8852 // too. See PR3018 for more info. 8853 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end(); 8854 RAUWUpdateListener Listener(*this, UI, UE); 8855 while (UI != UE) { 8856 SDNode *User = *UI; 8857 8858 // This node is about to morph, remove its old self from the CSE maps. 8859 RemoveNodeFromCSEMaps(User); 8860 8861 // A user can appear in a use list multiple times, and when this 8862 // happens the uses are usually next to each other in the list. 8863 // To help reduce the number of CSE recomputations, process all 8864 // the uses of this user that we can find this way. 8865 do { 8866 SDUse &Use = UI.getUse(); 8867 ++UI; 8868 Use.set(To); 8869 if (To->isDivergent() != From->isDivergent()) 8870 updateDivergence(User); 8871 } while (UI != UE && *UI == User); 8872 // Now that we have modified User, add it back to the CSE maps. If it 8873 // already exists there, recursively merge the results together. 8874 AddModifiedNodeToCSEMaps(User); 8875 } 8876 8877 // If we just RAUW'd the root, take note. 8878 if (FromN == getRoot()) 8879 setRoot(To); 8880 } 8881 8882 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead. 8883 /// This can cause recursive merging of nodes in the DAG. 8884 /// 8885 /// This version assumes that for each value of From, there is a 8886 /// corresponding value in To in the same position with the same type. 8887 /// 8888 void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To) { 8889 #ifndef NDEBUG 8890 for (unsigned i = 0, e = From->getNumValues(); i != e; ++i) 8891 assert((!From->hasAnyUseOfValue(i) || 8892 From->getValueType(i) == To->getValueType(i)) && 8893 "Cannot use this version of ReplaceAllUsesWith!"); 8894 #endif 8895 8896 // Handle the trivial case. 8897 if (From == To) 8898 return; 8899 8900 // Preserve Debug Info. Only do this if there's a use. 8901 for (unsigned i = 0, e = From->getNumValues(); i != e; ++i) 8902 if (From->hasAnyUseOfValue(i)) { 8903 assert((i < To->getNumValues()) && "Invalid To location"); 8904 transferDbgValues(SDValue(From, i), SDValue(To, i)); 8905 } 8906 8907 // Iterate over just the existing users of From. See the comments in 8908 // the ReplaceAllUsesWith above. 8909 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end(); 8910 RAUWUpdateListener Listener(*this, UI, UE); 8911 while (UI != UE) { 8912 SDNode *User = *UI; 8913 8914 // This node is about to morph, remove its old self from the CSE maps. 8915 RemoveNodeFromCSEMaps(User); 8916 8917 // A user can appear in a use list multiple times, and when this 8918 // happens the uses are usually next to each other in the list. 8919 // To help reduce the number of CSE recomputations, process all 8920 // the uses of this user that we can find this way. 8921 do { 8922 SDUse &Use = UI.getUse(); 8923 ++UI; 8924 Use.setNode(To); 8925 if (To->isDivergent() != From->isDivergent()) 8926 updateDivergence(User); 8927 } while (UI != UE && *UI == User); 8928 8929 // Now that we have modified User, add it back to the CSE maps. If it 8930 // already exists there, recursively merge the results together. 8931 AddModifiedNodeToCSEMaps(User); 8932 } 8933 8934 // If we just RAUW'd the root, take note. 8935 if (From == getRoot().getNode()) 8936 setRoot(SDValue(To, getRoot().getResNo())); 8937 } 8938 8939 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead. 8940 /// This can cause recursive merging of nodes in the DAG. 8941 /// 8942 /// This version can replace From with any result values. To must match the 8943 /// number and types of values returned by From. 8944 void SelectionDAG::ReplaceAllUsesWith(SDNode *From, const SDValue *To) { 8945 if (From->getNumValues() == 1) // Handle the simple case efficiently. 8946 return ReplaceAllUsesWith(SDValue(From, 0), To[0]); 8947 8948 // Preserve Debug Info. 8949 for (unsigned i = 0, e = From->getNumValues(); i != e; ++i) 8950 transferDbgValues(SDValue(From, i), To[i]); 8951 8952 // Iterate over just the existing users of From. See the comments in 8953 // the ReplaceAllUsesWith above. 8954 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end(); 8955 RAUWUpdateListener Listener(*this, UI, UE); 8956 while (UI != UE) { 8957 SDNode *User = *UI; 8958 8959 // This node is about to morph, remove its old self from the CSE maps. 8960 RemoveNodeFromCSEMaps(User); 8961 8962 // A user can appear in a use list multiple times, and when this happens the 8963 // uses are usually next to each other in the list. To help reduce the 8964 // number of CSE and divergence recomputations, process all the uses of this 8965 // user that we can find this way. 8966 bool To_IsDivergent = false; 8967 do { 8968 SDUse &Use = UI.getUse(); 8969 const SDValue &ToOp = To[Use.getResNo()]; 8970 ++UI; 8971 Use.set(ToOp); 8972 To_IsDivergent |= ToOp->isDivergent(); 8973 } while (UI != UE && *UI == User); 8974 8975 if (To_IsDivergent != From->isDivergent()) 8976 updateDivergence(User); 8977 8978 // Now that we have modified User, add it back to the CSE maps. If it 8979 // already exists there, recursively merge the results together. 8980 AddModifiedNodeToCSEMaps(User); 8981 } 8982 8983 // If we just RAUW'd the root, take note. 8984 if (From == getRoot().getNode()) 8985 setRoot(SDValue(To[getRoot().getResNo()])); 8986 } 8987 8988 /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving 8989 /// uses of other values produced by From.getNode() alone. The Deleted 8990 /// vector is handled the same way as for ReplaceAllUsesWith. 8991 void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To){ 8992 // Handle the really simple, really trivial case efficiently. 8993 if (From == To) return; 8994 8995 // Handle the simple, trivial, case efficiently. 8996 if (From.getNode()->getNumValues() == 1) { 8997 ReplaceAllUsesWith(From, To); 8998 return; 8999 } 9000 9001 // Preserve Debug Info. 9002 transferDbgValues(From, To); 9003 9004 // Iterate over just the existing users of From. See the comments in 9005 // the ReplaceAllUsesWith above. 9006 SDNode::use_iterator UI = From.getNode()->use_begin(), 9007 UE = From.getNode()->use_end(); 9008 RAUWUpdateListener Listener(*this, UI, UE); 9009 while (UI != UE) { 9010 SDNode *User = *UI; 9011 bool UserRemovedFromCSEMaps = false; 9012 9013 // A user can appear in a use list multiple times, and when this 9014 // happens the uses are usually next to each other in the list. 9015 // To help reduce the number of CSE recomputations, process all 9016 // the uses of this user that we can find this way. 9017 do { 9018 SDUse &Use = UI.getUse(); 9019 9020 // Skip uses of different values from the same node. 9021 if (Use.getResNo() != From.getResNo()) { 9022 ++UI; 9023 continue; 9024 } 9025 9026 // If this node hasn't been modified yet, it's still in the CSE maps, 9027 // so remove its old self from the CSE maps. 9028 if (!UserRemovedFromCSEMaps) { 9029 RemoveNodeFromCSEMaps(User); 9030 UserRemovedFromCSEMaps = true; 9031 } 9032 9033 ++UI; 9034 Use.set(To); 9035 if (To->isDivergent() != From->isDivergent()) 9036 updateDivergence(User); 9037 } while (UI != UE && *UI == User); 9038 // We are iterating over all uses of the From node, so if a use 9039 // doesn't use the specific value, no changes are made. 9040 if (!UserRemovedFromCSEMaps) 9041 continue; 9042 9043 // Now that we have modified User, add it back to the CSE maps. If it 9044 // already exists there, recursively merge the results together. 9045 AddModifiedNodeToCSEMaps(User); 9046 } 9047 9048 // If we just RAUW'd the root, take note. 9049 if (From == getRoot()) 9050 setRoot(To); 9051 } 9052 9053 namespace { 9054 9055 /// UseMemo - This class is used by SelectionDAG::ReplaceAllUsesOfValuesWith 9056 /// to record information about a use. 9057 struct UseMemo { 9058 SDNode *User; 9059 unsigned Index; 9060 SDUse *Use; 9061 }; 9062 9063 /// operator< - Sort Memos by User. 9064 bool operator<(const UseMemo &L, const UseMemo &R) { 9065 return (intptr_t)L.User < (intptr_t)R.User; 9066 } 9067 9068 } // end anonymous namespace 9069 9070 bool SelectionDAG::calculateDivergence(SDNode *N) { 9071 if (TLI->isSDNodeAlwaysUniform(N)) { 9072 assert(!TLI->isSDNodeSourceOfDivergence(N, FLI, DA) && 9073 "Conflicting divergence information!"); 9074 return false; 9075 } 9076 if (TLI->isSDNodeSourceOfDivergence(N, FLI, DA)) 9077 return true; 9078 for (auto &Op : N->ops()) { 9079 if (Op.Val.getValueType() != MVT::Other && Op.getNode()->isDivergent()) 9080 return true; 9081 } 9082 return false; 9083 } 9084 9085 void SelectionDAG::updateDivergence(SDNode *N) { 9086 SmallVector<SDNode *, 16> Worklist(1, N); 9087 do { 9088 N = Worklist.pop_back_val(); 9089 bool IsDivergent = calculateDivergence(N); 9090 if (N->SDNodeBits.IsDivergent != IsDivergent) { 9091 N->SDNodeBits.IsDivergent = IsDivergent; 9092 llvm::append_range(Worklist, N->uses()); 9093 } 9094 } while (!Worklist.empty()); 9095 } 9096 9097 void SelectionDAG::CreateTopologicalOrder(std::vector<SDNode *> &Order) { 9098 DenseMap<SDNode *, unsigned> Degree; 9099 Order.reserve(AllNodes.size()); 9100 for (auto &N : allnodes()) { 9101 unsigned NOps = N.getNumOperands(); 9102 Degree[&N] = NOps; 9103 if (0 == NOps) 9104 Order.push_back(&N); 9105 } 9106 for (size_t I = 0; I != Order.size(); ++I) { 9107 SDNode *N = Order[I]; 9108 for (auto U : N->uses()) { 9109 unsigned &UnsortedOps = Degree[U]; 9110 if (0 == --UnsortedOps) 9111 Order.push_back(U); 9112 } 9113 } 9114 } 9115 9116 #ifndef NDEBUG 9117 void SelectionDAG::VerifyDAGDiverence() { 9118 std::vector<SDNode *> TopoOrder; 9119 CreateTopologicalOrder(TopoOrder); 9120 for (auto *N : TopoOrder) { 9121 assert(calculateDivergence(N) == N->isDivergent() && 9122 "Divergence bit inconsistency detected"); 9123 } 9124 } 9125 #endif 9126 9127 /// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving 9128 /// uses of other values produced by From.getNode() alone. The same value 9129 /// may appear in both the From and To list. The Deleted vector is 9130 /// handled the same way as for ReplaceAllUsesWith. 9131 void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From, 9132 const SDValue *To, 9133 unsigned Num){ 9134 // Handle the simple, trivial case efficiently. 9135 if (Num == 1) 9136 return ReplaceAllUsesOfValueWith(*From, *To); 9137 9138 transferDbgValues(*From, *To); 9139 9140 // Read up all the uses and make records of them. This helps 9141 // processing new uses that are introduced during the 9142 // replacement process. 9143 SmallVector<UseMemo, 4> Uses; 9144 for (unsigned i = 0; i != Num; ++i) { 9145 unsigned FromResNo = From[i].getResNo(); 9146 SDNode *FromNode = From[i].getNode(); 9147 for (SDNode::use_iterator UI = FromNode->use_begin(), 9148 E = FromNode->use_end(); UI != E; ++UI) { 9149 SDUse &Use = UI.getUse(); 9150 if (Use.getResNo() == FromResNo) { 9151 UseMemo Memo = { *UI, i, &Use }; 9152 Uses.push_back(Memo); 9153 } 9154 } 9155 } 9156 9157 // Sort the uses, so that all the uses from a given User are together. 9158 llvm::sort(Uses); 9159 9160 for (unsigned UseIndex = 0, UseIndexEnd = Uses.size(); 9161 UseIndex != UseIndexEnd; ) { 9162 // We know that this user uses some value of From. If it is the right 9163 // value, update it. 9164 SDNode *User = Uses[UseIndex].User; 9165 9166 // This node is about to morph, remove its old self from the CSE maps. 9167 RemoveNodeFromCSEMaps(User); 9168 9169 // The Uses array is sorted, so all the uses for a given User 9170 // are next to each other in the list. 9171 // To help reduce the number of CSE recomputations, process all 9172 // the uses of this user that we can find this way. 9173 do { 9174 unsigned i = Uses[UseIndex].Index; 9175 SDUse &Use = *Uses[UseIndex].Use; 9176 ++UseIndex; 9177 9178 Use.set(To[i]); 9179 } while (UseIndex != UseIndexEnd && Uses[UseIndex].User == User); 9180 9181 // Now that we have modified User, add it back to the CSE maps. If it 9182 // already exists there, recursively merge the results together. 9183 AddModifiedNodeToCSEMaps(User); 9184 } 9185 } 9186 9187 /// AssignTopologicalOrder - Assign a unique node id for each node in the DAG 9188 /// based on their topological order. It returns the maximum id and a vector 9189 /// of the SDNodes* in assigned order by reference. 9190 unsigned SelectionDAG::AssignTopologicalOrder() { 9191 unsigned DAGSize = 0; 9192 9193 // SortedPos tracks the progress of the algorithm. Nodes before it are 9194 // sorted, nodes after it are unsorted. When the algorithm completes 9195 // it is at the end of the list. 9196 allnodes_iterator SortedPos = allnodes_begin(); 9197 9198 // Visit all the nodes. Move nodes with no operands to the front of 9199 // the list immediately. Annotate nodes that do have operands with their 9200 // operand count. Before we do this, the Node Id fields of the nodes 9201 // may contain arbitrary values. After, the Node Id fields for nodes 9202 // before SortedPos will contain the topological sort index, and the 9203 // Node Id fields for nodes At SortedPos and after will contain the 9204 // count of outstanding operands. 9205 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) { 9206 SDNode *N = &*I++; 9207 checkForCycles(N, this); 9208 unsigned Degree = N->getNumOperands(); 9209 if (Degree == 0) { 9210 // A node with no uses, add it to the result array immediately. 9211 N->setNodeId(DAGSize++); 9212 allnodes_iterator Q(N); 9213 if (Q != SortedPos) 9214 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q)); 9215 assert(SortedPos != AllNodes.end() && "Overran node list"); 9216 ++SortedPos; 9217 } else { 9218 // Temporarily use the Node Id as scratch space for the degree count. 9219 N->setNodeId(Degree); 9220 } 9221 } 9222 9223 // Visit all the nodes. As we iterate, move nodes into sorted order, 9224 // such that by the time the end is reached all nodes will be sorted. 9225 for (SDNode &Node : allnodes()) { 9226 SDNode *N = &Node; 9227 checkForCycles(N, this); 9228 // N is in sorted position, so all its uses have one less operand 9229 // that needs to be sorted. 9230 for (SDNode *P : N->uses()) { 9231 unsigned Degree = P->getNodeId(); 9232 assert(Degree != 0 && "Invalid node degree"); 9233 --Degree; 9234 if (Degree == 0) { 9235 // All of P's operands are sorted, so P may sorted now. 9236 P->setNodeId(DAGSize++); 9237 if (P->getIterator() != SortedPos) 9238 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P)); 9239 assert(SortedPos != AllNodes.end() && "Overran node list"); 9240 ++SortedPos; 9241 } else { 9242 // Update P's outstanding operand count. 9243 P->setNodeId(Degree); 9244 } 9245 } 9246 if (Node.getIterator() == SortedPos) { 9247 #ifndef NDEBUG 9248 allnodes_iterator I(N); 9249 SDNode *S = &*++I; 9250 dbgs() << "Overran sorted position:\n"; 9251 S->dumprFull(this); dbgs() << "\n"; 9252 dbgs() << "Checking if this is due to cycles\n"; 9253 checkForCycles(this, true); 9254 #endif 9255 llvm_unreachable(nullptr); 9256 } 9257 } 9258 9259 assert(SortedPos == AllNodes.end() && 9260 "Topological sort incomplete!"); 9261 assert(AllNodes.front().getOpcode() == ISD::EntryToken && 9262 "First node in topological sort is not the entry token!"); 9263 assert(AllNodes.front().getNodeId() == 0 && 9264 "First node in topological sort has non-zero id!"); 9265 assert(AllNodes.front().getNumOperands() == 0 && 9266 "First node in topological sort has operands!"); 9267 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 && 9268 "Last node in topologic sort has unexpected id!"); 9269 assert(AllNodes.back().use_empty() && 9270 "Last node in topologic sort has users!"); 9271 assert(DAGSize == allnodes_size() && "Node count mismatch!"); 9272 return DAGSize; 9273 } 9274 9275 /// AddDbgValue - Add a dbg_value SDNode. If SD is non-null that means the 9276 /// value is produced by SD. 9277 void SelectionDAG::AddDbgValue(SDDbgValue *DB, bool isParameter) { 9278 for (SDNode *SD : DB->getSDNodes()) { 9279 if (!SD) 9280 continue; 9281 assert(DbgInfo->getSDDbgValues(SD).empty() || SD->getHasDebugValue()); 9282 SD->setHasDebugValue(true); 9283 } 9284 DbgInfo->add(DB, isParameter); 9285 } 9286 9287 void SelectionDAG::AddDbgLabel(SDDbgLabel *DB) { DbgInfo->add(DB); } 9288 9289 SDValue SelectionDAG::makeEquivalentMemoryOrdering(SDValue OldChain, 9290 SDValue NewMemOpChain) { 9291 assert(isa<MemSDNode>(NewMemOpChain) && "Expected a memop node"); 9292 assert(NewMemOpChain.getValueType() == MVT::Other && "Expected a token VT"); 9293 // The new memory operation must have the same position as the old load in 9294 // terms of memory dependency. Create a TokenFactor for the old load and new 9295 // memory operation and update uses of the old load's output chain to use that 9296 // TokenFactor. 9297 if (OldChain == NewMemOpChain || OldChain.use_empty()) 9298 return NewMemOpChain; 9299 9300 SDValue TokenFactor = getNode(ISD::TokenFactor, SDLoc(OldChain), MVT::Other, 9301 OldChain, NewMemOpChain); 9302 ReplaceAllUsesOfValueWith(OldChain, TokenFactor); 9303 UpdateNodeOperands(TokenFactor.getNode(), OldChain, NewMemOpChain); 9304 return TokenFactor; 9305 } 9306 9307 SDValue SelectionDAG::makeEquivalentMemoryOrdering(LoadSDNode *OldLoad, 9308 SDValue NewMemOp) { 9309 assert(isa<MemSDNode>(NewMemOp.getNode()) && "Expected a memop node"); 9310 SDValue OldChain = SDValue(OldLoad, 1); 9311 SDValue NewMemOpChain = NewMemOp.getValue(1); 9312 return makeEquivalentMemoryOrdering(OldChain, NewMemOpChain); 9313 } 9314 9315 SDValue SelectionDAG::getSymbolFunctionGlobalAddress(SDValue Op, 9316 Function **OutFunction) { 9317 assert(isa<ExternalSymbolSDNode>(Op) && "Node should be an ExternalSymbol"); 9318 9319 auto *Symbol = cast<ExternalSymbolSDNode>(Op)->getSymbol(); 9320 auto *Module = MF->getFunction().getParent(); 9321 auto *Function = Module->getFunction(Symbol); 9322 9323 if (OutFunction != nullptr) 9324 *OutFunction = Function; 9325 9326 if (Function != nullptr) { 9327 auto PtrTy = TLI->getPointerTy(getDataLayout(), Function->getAddressSpace()); 9328 return getGlobalAddress(Function, SDLoc(Op), PtrTy); 9329 } 9330 9331 std::string ErrorStr; 9332 raw_string_ostream ErrorFormatter(ErrorStr); 9333 9334 ErrorFormatter << "Undefined external symbol "; 9335 ErrorFormatter << '"' << Symbol << '"'; 9336 ErrorFormatter.flush(); 9337 9338 report_fatal_error(ErrorStr); 9339 } 9340 9341 //===----------------------------------------------------------------------===// 9342 // SDNode Class 9343 //===----------------------------------------------------------------------===// 9344 9345 bool llvm::isNullConstant(SDValue V) { 9346 ConstantSDNode *Const = dyn_cast<ConstantSDNode>(V); 9347 return Const != nullptr && Const->isNullValue(); 9348 } 9349 9350 bool llvm::isNullFPConstant(SDValue V) { 9351 ConstantFPSDNode *Const = dyn_cast<ConstantFPSDNode>(V); 9352 return Const != nullptr && Const->isZero() && !Const->isNegative(); 9353 } 9354 9355 bool llvm::isAllOnesConstant(SDValue V) { 9356 ConstantSDNode *Const = dyn_cast<ConstantSDNode>(V); 9357 return Const != nullptr && Const->isAllOnesValue(); 9358 } 9359 9360 bool llvm::isOneConstant(SDValue V) { 9361 ConstantSDNode *Const = dyn_cast<ConstantSDNode>(V); 9362 return Const != nullptr && Const->isOne(); 9363 } 9364 9365 SDValue llvm::peekThroughBitcasts(SDValue V) { 9366 while (V.getOpcode() == ISD::BITCAST) 9367 V = V.getOperand(0); 9368 return V; 9369 } 9370 9371 SDValue llvm::peekThroughOneUseBitcasts(SDValue V) { 9372 while (V.getOpcode() == ISD::BITCAST && V.getOperand(0).hasOneUse()) 9373 V = V.getOperand(0); 9374 return V; 9375 } 9376 9377 SDValue llvm::peekThroughExtractSubvectors(SDValue V) { 9378 while (V.getOpcode() == ISD::EXTRACT_SUBVECTOR) 9379 V = V.getOperand(0); 9380 return V; 9381 } 9382 9383 bool llvm::isBitwiseNot(SDValue V, bool AllowUndefs) { 9384 if (V.getOpcode() != ISD::XOR) 9385 return false; 9386 V = peekThroughBitcasts(V.getOperand(1)); 9387 unsigned NumBits = V.getScalarValueSizeInBits(); 9388 ConstantSDNode *C = 9389 isConstOrConstSplat(V, AllowUndefs, /*AllowTruncation*/ true); 9390 return C && (C->getAPIntValue().countTrailingOnes() >= NumBits); 9391 } 9392 9393 ConstantSDNode *llvm::isConstOrConstSplat(SDValue N, bool AllowUndefs, 9394 bool AllowTruncation) { 9395 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) 9396 return CN; 9397 9398 // SplatVectors can truncate their operands. Ignore that case here unless 9399 // AllowTruncation is set. 9400 if (N->getOpcode() == ISD::SPLAT_VECTOR) { 9401 EVT VecEltVT = N->getValueType(0).getVectorElementType(); 9402 if (auto *CN = dyn_cast<ConstantSDNode>(N->getOperand(0))) { 9403 EVT CVT = CN->getValueType(0); 9404 assert(CVT.bitsGE(VecEltVT) && "Illegal splat_vector element extension"); 9405 if (AllowTruncation || CVT == VecEltVT) 9406 return CN; 9407 } 9408 } 9409 9410 if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N)) { 9411 BitVector UndefElements; 9412 ConstantSDNode *CN = BV->getConstantSplatNode(&UndefElements); 9413 9414 // BuildVectors can truncate their operands. Ignore that case here unless 9415 // AllowTruncation is set. 9416 if (CN && (UndefElements.none() || AllowUndefs)) { 9417 EVT CVT = CN->getValueType(0); 9418 EVT NSVT = N.getValueType().getScalarType(); 9419 assert(CVT.bitsGE(NSVT) && "Illegal build vector element extension"); 9420 if (AllowTruncation || (CVT == NSVT)) 9421 return CN; 9422 } 9423 } 9424 9425 return nullptr; 9426 } 9427 9428 ConstantSDNode *llvm::isConstOrConstSplat(SDValue N, const APInt &DemandedElts, 9429 bool AllowUndefs, 9430 bool AllowTruncation) { 9431 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) 9432 return CN; 9433 9434 if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N)) { 9435 BitVector UndefElements; 9436 ConstantSDNode *CN = BV->getConstantSplatNode(DemandedElts, &UndefElements); 9437 9438 // BuildVectors can truncate their operands. Ignore that case here unless 9439 // AllowTruncation is set. 9440 if (CN && (UndefElements.none() || AllowUndefs)) { 9441 EVT CVT = CN->getValueType(0); 9442 EVT NSVT = N.getValueType().getScalarType(); 9443 assert(CVT.bitsGE(NSVT) && "Illegal build vector element extension"); 9444 if (AllowTruncation || (CVT == NSVT)) 9445 return CN; 9446 } 9447 } 9448 9449 return nullptr; 9450 } 9451 9452 ConstantFPSDNode *llvm::isConstOrConstSplatFP(SDValue N, bool AllowUndefs) { 9453 if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N)) 9454 return CN; 9455 9456 if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N)) { 9457 BitVector UndefElements; 9458 ConstantFPSDNode *CN = BV->getConstantFPSplatNode(&UndefElements); 9459 if (CN && (UndefElements.none() || AllowUndefs)) 9460 return CN; 9461 } 9462 9463 if (N.getOpcode() == ISD::SPLAT_VECTOR) 9464 if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N.getOperand(0))) 9465 return CN; 9466 9467 return nullptr; 9468 } 9469 9470 ConstantFPSDNode *llvm::isConstOrConstSplatFP(SDValue N, 9471 const APInt &DemandedElts, 9472 bool AllowUndefs) { 9473 if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N)) 9474 return CN; 9475 9476 if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N)) { 9477 BitVector UndefElements; 9478 ConstantFPSDNode *CN = 9479 BV->getConstantFPSplatNode(DemandedElts, &UndefElements); 9480 if (CN && (UndefElements.none() || AllowUndefs)) 9481 return CN; 9482 } 9483 9484 return nullptr; 9485 } 9486 9487 bool llvm::isNullOrNullSplat(SDValue N, bool AllowUndefs) { 9488 // TODO: may want to use peekThroughBitcast() here. 9489 ConstantSDNode *C = isConstOrConstSplat(N, AllowUndefs); 9490 return C && C->isNullValue(); 9491 } 9492 9493 bool llvm::isOneOrOneSplat(SDValue N, bool AllowUndefs) { 9494 // TODO: may want to use peekThroughBitcast() here. 9495 unsigned BitWidth = N.getScalarValueSizeInBits(); 9496 ConstantSDNode *C = isConstOrConstSplat(N, AllowUndefs); 9497 return C && C->isOne() && C->getValueSizeInBits(0) == BitWidth; 9498 } 9499 9500 bool llvm::isAllOnesOrAllOnesSplat(SDValue N, bool AllowUndefs) { 9501 N = peekThroughBitcasts(N); 9502 unsigned BitWidth = N.getScalarValueSizeInBits(); 9503 ConstantSDNode *C = isConstOrConstSplat(N, AllowUndefs); 9504 return C && C->isAllOnesValue() && C->getValueSizeInBits(0) == BitWidth; 9505 } 9506 9507 HandleSDNode::~HandleSDNode() { 9508 DropOperands(); 9509 } 9510 9511 GlobalAddressSDNode::GlobalAddressSDNode(unsigned Opc, unsigned Order, 9512 const DebugLoc &DL, 9513 const GlobalValue *GA, EVT VT, 9514 int64_t o, unsigned TF) 9515 : SDNode(Opc, Order, DL, getSDVTList(VT)), Offset(o), TargetFlags(TF) { 9516 TheGlobal = GA; 9517 } 9518 9519 AddrSpaceCastSDNode::AddrSpaceCastSDNode(unsigned Order, const DebugLoc &dl, 9520 EVT VT, unsigned SrcAS, 9521 unsigned DestAS) 9522 : SDNode(ISD::ADDRSPACECAST, Order, dl, getSDVTList(VT)), 9523 SrcAddrSpace(SrcAS), DestAddrSpace(DestAS) {} 9524 9525 MemSDNode::MemSDNode(unsigned Opc, unsigned Order, const DebugLoc &dl, 9526 SDVTList VTs, EVT memvt, MachineMemOperand *mmo) 9527 : SDNode(Opc, Order, dl, VTs), MemoryVT(memvt), MMO(mmo) { 9528 MemSDNodeBits.IsVolatile = MMO->isVolatile(); 9529 MemSDNodeBits.IsNonTemporal = MMO->isNonTemporal(); 9530 MemSDNodeBits.IsDereferenceable = MMO->isDereferenceable(); 9531 MemSDNodeBits.IsInvariant = MMO->isInvariant(); 9532 9533 // We check here that the size of the memory operand fits within the size of 9534 // the MMO. This is because the MMO might indicate only a possible address 9535 // range instead of specifying the affected memory addresses precisely. 9536 // TODO: Make MachineMemOperands aware of scalable vectors. 9537 assert(memvt.getStoreSize().getKnownMinSize() <= MMO->getSize() && 9538 "Size mismatch!"); 9539 } 9540 9541 /// Profile - Gather unique data for the node. 9542 /// 9543 void SDNode::Profile(FoldingSetNodeID &ID) const { 9544 AddNodeIDNode(ID, this); 9545 } 9546 9547 namespace { 9548 9549 struct EVTArray { 9550 std::vector<EVT> VTs; 9551 9552 EVTArray() { 9553 VTs.reserve(MVT::LAST_VALUETYPE); 9554 for (unsigned i = 0; i < MVT::LAST_VALUETYPE; ++i) 9555 VTs.push_back(MVT((MVT::SimpleValueType)i)); 9556 } 9557 }; 9558 9559 } // end anonymous namespace 9560 9561 static ManagedStatic<std::set<EVT, EVT::compareRawBits>> EVTs; 9562 static ManagedStatic<EVTArray> SimpleVTArray; 9563 static ManagedStatic<sys::SmartMutex<true>> VTMutex; 9564 9565 /// getValueTypeList - Return a pointer to the specified value type. 9566 /// 9567 const EVT *SDNode::getValueTypeList(EVT VT) { 9568 if (VT.isExtended()) { 9569 sys::SmartScopedLock<true> Lock(*VTMutex); 9570 return &(*EVTs->insert(VT).first); 9571 } else { 9572 assert(VT.getSimpleVT() < MVT::LAST_VALUETYPE && 9573 "Value type out of range!"); 9574 return &SimpleVTArray->VTs[VT.getSimpleVT().SimpleTy]; 9575 } 9576 } 9577 9578 /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the 9579 /// indicated value. This method ignores uses of other values defined by this 9580 /// operation. 9581 bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const { 9582 assert(Value < getNumValues() && "Bad value!"); 9583 9584 // TODO: Only iterate over uses of a given value of the node 9585 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) { 9586 if (UI.getUse().getResNo() == Value) { 9587 if (NUses == 0) 9588 return false; 9589 --NUses; 9590 } 9591 } 9592 9593 // Found exactly the right number of uses? 9594 return NUses == 0; 9595 } 9596 9597 /// hasAnyUseOfValue - Return true if there are any use of the indicated 9598 /// value. This method ignores uses of other values defined by this operation. 9599 bool SDNode::hasAnyUseOfValue(unsigned Value) const { 9600 assert(Value < getNumValues() && "Bad value!"); 9601 9602 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) 9603 if (UI.getUse().getResNo() == Value) 9604 return true; 9605 9606 return false; 9607 } 9608 9609 /// isOnlyUserOf - Return true if this node is the only use of N. 9610 bool SDNode::isOnlyUserOf(const SDNode *N) const { 9611 bool Seen = false; 9612 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) { 9613 SDNode *User = *I; 9614 if (User == this) 9615 Seen = true; 9616 else 9617 return false; 9618 } 9619 9620 return Seen; 9621 } 9622 9623 /// Return true if the only users of N are contained in Nodes. 9624 bool SDNode::areOnlyUsersOf(ArrayRef<const SDNode *> Nodes, const SDNode *N) { 9625 bool Seen = false; 9626 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) { 9627 SDNode *User = *I; 9628 if (llvm::is_contained(Nodes, User)) 9629 Seen = true; 9630 else 9631 return false; 9632 } 9633 9634 return Seen; 9635 } 9636 9637 /// isOperand - Return true if this node is an operand of N. 9638 bool SDValue::isOperandOf(const SDNode *N) const { 9639 return is_contained(N->op_values(), *this); 9640 } 9641 9642 bool SDNode::isOperandOf(const SDNode *N) const { 9643 return any_of(N->op_values(), 9644 [this](SDValue Op) { return this == Op.getNode(); }); 9645 } 9646 9647 /// reachesChainWithoutSideEffects - Return true if this operand (which must 9648 /// be a chain) reaches the specified operand without crossing any 9649 /// side-effecting instructions on any chain path. In practice, this looks 9650 /// through token factors and non-volatile loads. In order to remain efficient, 9651 /// this only looks a couple of nodes in, it does not do an exhaustive search. 9652 /// 9653 /// Note that we only need to examine chains when we're searching for 9654 /// side-effects; SelectionDAG requires that all side-effects are represented 9655 /// by chains, even if another operand would force a specific ordering. This 9656 /// constraint is necessary to allow transformations like splitting loads. 9657 bool SDValue::reachesChainWithoutSideEffects(SDValue Dest, 9658 unsigned Depth) const { 9659 if (*this == Dest) return true; 9660 9661 // Don't search too deeply, we just want to be able to see through 9662 // TokenFactor's etc. 9663 if (Depth == 0) return false; 9664 9665 // If this is a token factor, all inputs to the TF happen in parallel. 9666 if (getOpcode() == ISD::TokenFactor) { 9667 // First, try a shallow search. 9668 if (is_contained((*this)->ops(), Dest)) { 9669 // We found the chain we want as an operand of this TokenFactor. 9670 // Essentially, we reach the chain without side-effects if we could 9671 // serialize the TokenFactor into a simple chain of operations with 9672 // Dest as the last operation. This is automatically true if the 9673 // chain has one use: there are no other ordering constraints. 9674 // If the chain has more than one use, we give up: some other 9675 // use of Dest might force a side-effect between Dest and the current 9676 // node. 9677 if (Dest.hasOneUse()) 9678 return true; 9679 } 9680 // Next, try a deep search: check whether every operand of the TokenFactor 9681 // reaches Dest. 9682 return llvm::all_of((*this)->ops(), [=](SDValue Op) { 9683 return Op.reachesChainWithoutSideEffects(Dest, Depth - 1); 9684 }); 9685 } 9686 9687 // Loads don't have side effects, look through them. 9688 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) { 9689 if (Ld->isUnordered()) 9690 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1); 9691 } 9692 return false; 9693 } 9694 9695 bool SDNode::hasPredecessor(const SDNode *N) const { 9696 SmallPtrSet<const SDNode *, 32> Visited; 9697 SmallVector<const SDNode *, 16> Worklist; 9698 Worklist.push_back(this); 9699 return hasPredecessorHelper(N, Visited, Worklist); 9700 } 9701 9702 void SDNode::intersectFlagsWith(const SDNodeFlags Flags) { 9703 this->Flags.intersectWith(Flags); 9704 } 9705 9706 SDValue 9707 SelectionDAG::matchBinOpReduction(SDNode *Extract, ISD::NodeType &BinOp, 9708 ArrayRef<ISD::NodeType> CandidateBinOps, 9709 bool AllowPartials) { 9710 // The pattern must end in an extract from index 0. 9711 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT || 9712 !isNullConstant(Extract->getOperand(1))) 9713 return SDValue(); 9714 9715 // Match against one of the candidate binary ops. 9716 SDValue Op = Extract->getOperand(0); 9717 if (llvm::none_of(CandidateBinOps, [Op](ISD::NodeType BinOp) { 9718 return Op.getOpcode() == unsigned(BinOp); 9719 })) 9720 return SDValue(); 9721 9722 // Floating-point reductions may require relaxed constraints on the final step 9723 // of the reduction because they may reorder intermediate operations. 9724 unsigned CandidateBinOp = Op.getOpcode(); 9725 if (Op.getValueType().isFloatingPoint()) { 9726 SDNodeFlags Flags = Op->getFlags(); 9727 switch (CandidateBinOp) { 9728 case ISD::FADD: 9729 if (!Flags.hasNoSignedZeros() || !Flags.hasAllowReassociation()) 9730 return SDValue(); 9731 break; 9732 default: 9733 llvm_unreachable("Unhandled FP opcode for binop reduction"); 9734 } 9735 } 9736 9737 // Matching failed - attempt to see if we did enough stages that a partial 9738 // reduction from a subvector is possible. 9739 auto PartialReduction = [&](SDValue Op, unsigned NumSubElts) { 9740 if (!AllowPartials || !Op) 9741 return SDValue(); 9742 EVT OpVT = Op.getValueType(); 9743 EVT OpSVT = OpVT.getScalarType(); 9744 EVT SubVT = EVT::getVectorVT(*getContext(), OpSVT, NumSubElts); 9745 if (!TLI->isExtractSubvectorCheap(SubVT, OpVT, 0)) 9746 return SDValue(); 9747 BinOp = (ISD::NodeType)CandidateBinOp; 9748 return getNode(ISD::EXTRACT_SUBVECTOR, SDLoc(Op), SubVT, Op, 9749 getVectorIdxConstant(0, SDLoc(Op))); 9750 }; 9751 9752 // At each stage, we're looking for something that looks like: 9753 // %s = shufflevector <8 x i32> %op, <8 x i32> undef, 9754 // <8 x i32> <i32 2, i32 3, i32 undef, i32 undef, 9755 // i32 undef, i32 undef, i32 undef, i32 undef> 9756 // %a = binop <8 x i32> %op, %s 9757 // Where the mask changes according to the stage. E.g. for a 3-stage pyramid, 9758 // we expect something like: 9759 // <4,5,6,7,u,u,u,u> 9760 // <2,3,u,u,u,u,u,u> 9761 // <1,u,u,u,u,u,u,u> 9762 // While a partial reduction match would be: 9763 // <2,3,u,u,u,u,u,u> 9764 // <1,u,u,u,u,u,u,u> 9765 unsigned Stages = Log2_32(Op.getValueType().getVectorNumElements()); 9766 SDValue PrevOp; 9767 for (unsigned i = 0; i < Stages; ++i) { 9768 unsigned MaskEnd = (1 << i); 9769 9770 if (Op.getOpcode() != CandidateBinOp) 9771 return PartialReduction(PrevOp, MaskEnd); 9772 9773 SDValue Op0 = Op.getOperand(0); 9774 SDValue Op1 = Op.getOperand(1); 9775 9776 ShuffleVectorSDNode *Shuffle = dyn_cast<ShuffleVectorSDNode>(Op0); 9777 if (Shuffle) { 9778 Op = Op1; 9779 } else { 9780 Shuffle = dyn_cast<ShuffleVectorSDNode>(Op1); 9781 Op = Op0; 9782 } 9783 9784 // The first operand of the shuffle should be the same as the other operand 9785 // of the binop. 9786 if (!Shuffle || Shuffle->getOperand(0) != Op) 9787 return PartialReduction(PrevOp, MaskEnd); 9788 9789 // Verify the shuffle has the expected (at this stage of the pyramid) mask. 9790 for (int Index = 0; Index < (int)MaskEnd; ++Index) 9791 if (Shuffle->getMaskElt(Index) != (int)(MaskEnd + Index)) 9792 return PartialReduction(PrevOp, MaskEnd); 9793 9794 PrevOp = Op; 9795 } 9796 9797 // Handle subvector reductions, which tend to appear after the shuffle 9798 // reduction stages. 9799 while (Op.getOpcode() == CandidateBinOp) { 9800 unsigned NumElts = Op.getValueType().getVectorNumElements(); 9801 SDValue Op0 = Op.getOperand(0); 9802 SDValue Op1 = Op.getOperand(1); 9803 if (Op0.getOpcode() != ISD::EXTRACT_SUBVECTOR || 9804 Op1.getOpcode() != ISD::EXTRACT_SUBVECTOR || 9805 Op0.getOperand(0) != Op1.getOperand(0)) 9806 break; 9807 SDValue Src = Op0.getOperand(0); 9808 unsigned NumSrcElts = Src.getValueType().getVectorNumElements(); 9809 if (NumSrcElts != (2 * NumElts)) 9810 break; 9811 if (!(Op0.getConstantOperandAPInt(1) == 0 && 9812 Op1.getConstantOperandAPInt(1) == NumElts) && 9813 !(Op1.getConstantOperandAPInt(1) == 0 && 9814 Op0.getConstantOperandAPInt(1) == NumElts)) 9815 break; 9816 Op = Src; 9817 } 9818 9819 BinOp = (ISD::NodeType)CandidateBinOp; 9820 return Op; 9821 } 9822 9823 SDValue SelectionDAG::UnrollVectorOp(SDNode *N, unsigned ResNE) { 9824 assert(N->getNumValues() == 1 && 9825 "Can't unroll a vector with multiple results!"); 9826 9827 EVT VT = N->getValueType(0); 9828 unsigned NE = VT.getVectorNumElements(); 9829 EVT EltVT = VT.getVectorElementType(); 9830 SDLoc dl(N); 9831 9832 SmallVector<SDValue, 8> Scalars; 9833 SmallVector<SDValue, 4> Operands(N->getNumOperands()); 9834 9835 // If ResNE is 0, fully unroll the vector op. 9836 if (ResNE == 0) 9837 ResNE = NE; 9838 else if (NE > ResNE) 9839 NE = ResNE; 9840 9841 unsigned i; 9842 for (i= 0; i != NE; ++i) { 9843 for (unsigned j = 0, e = N->getNumOperands(); j != e; ++j) { 9844 SDValue Operand = N->getOperand(j); 9845 EVT OperandVT = Operand.getValueType(); 9846 if (OperandVT.isVector()) { 9847 // A vector operand; extract a single element. 9848 EVT OperandEltVT = OperandVT.getVectorElementType(); 9849 Operands[j] = getNode(ISD::EXTRACT_VECTOR_ELT, dl, OperandEltVT, 9850 Operand, getVectorIdxConstant(i, dl)); 9851 } else { 9852 // A scalar operand; just use it as is. 9853 Operands[j] = Operand; 9854 } 9855 } 9856 9857 switch (N->getOpcode()) { 9858 default: { 9859 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands, 9860 N->getFlags())); 9861 break; 9862 } 9863 case ISD::VSELECT: 9864 Scalars.push_back(getNode(ISD::SELECT, dl, EltVT, Operands)); 9865 break; 9866 case ISD::SHL: 9867 case ISD::SRA: 9868 case ISD::SRL: 9869 case ISD::ROTL: 9870 case ISD::ROTR: 9871 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0], 9872 getShiftAmountOperand(Operands[0].getValueType(), 9873 Operands[1]))); 9874 break; 9875 case ISD::SIGN_EXTEND_INREG: { 9876 EVT ExtVT = cast<VTSDNode>(Operands[1])->getVT().getVectorElementType(); 9877 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, 9878 Operands[0], 9879 getValueType(ExtVT))); 9880 } 9881 } 9882 } 9883 9884 for (; i < ResNE; ++i) 9885 Scalars.push_back(getUNDEF(EltVT)); 9886 9887 EVT VecVT = EVT::getVectorVT(*getContext(), EltVT, ResNE); 9888 return getBuildVector(VecVT, dl, Scalars); 9889 } 9890 9891 std::pair<SDValue, SDValue> SelectionDAG::UnrollVectorOverflowOp( 9892 SDNode *N, unsigned ResNE) { 9893 unsigned Opcode = N->getOpcode(); 9894 assert((Opcode == ISD::UADDO || Opcode == ISD::SADDO || 9895 Opcode == ISD::USUBO || Opcode == ISD::SSUBO || 9896 Opcode == ISD::UMULO || Opcode == ISD::SMULO) && 9897 "Expected an overflow opcode"); 9898 9899 EVT ResVT = N->getValueType(0); 9900 EVT OvVT = N->getValueType(1); 9901 EVT ResEltVT = ResVT.getVectorElementType(); 9902 EVT OvEltVT = OvVT.getVectorElementType(); 9903 SDLoc dl(N); 9904 9905 // If ResNE is 0, fully unroll the vector op. 9906 unsigned NE = ResVT.getVectorNumElements(); 9907 if (ResNE == 0) 9908 ResNE = NE; 9909 else if (NE > ResNE) 9910 NE = ResNE; 9911 9912 SmallVector<SDValue, 8> LHSScalars; 9913 SmallVector<SDValue, 8> RHSScalars; 9914 ExtractVectorElements(N->getOperand(0), LHSScalars, 0, NE); 9915 ExtractVectorElements(N->getOperand(1), RHSScalars, 0, NE); 9916 9917 EVT SVT = TLI->getSetCCResultType(getDataLayout(), *getContext(), ResEltVT); 9918 SDVTList VTs = getVTList(ResEltVT, SVT); 9919 SmallVector<SDValue, 8> ResScalars; 9920 SmallVector<SDValue, 8> OvScalars; 9921 for (unsigned i = 0; i < NE; ++i) { 9922 SDValue Res = getNode(Opcode, dl, VTs, LHSScalars[i], RHSScalars[i]); 9923 SDValue Ov = 9924 getSelect(dl, OvEltVT, Res.getValue(1), 9925 getBoolConstant(true, dl, OvEltVT, ResVT), 9926 getConstant(0, dl, OvEltVT)); 9927 9928 ResScalars.push_back(Res); 9929 OvScalars.push_back(Ov); 9930 } 9931 9932 ResScalars.append(ResNE - NE, getUNDEF(ResEltVT)); 9933 OvScalars.append(ResNE - NE, getUNDEF(OvEltVT)); 9934 9935 EVT NewResVT = EVT::getVectorVT(*getContext(), ResEltVT, ResNE); 9936 EVT NewOvVT = EVT::getVectorVT(*getContext(), OvEltVT, ResNE); 9937 return std::make_pair(getBuildVector(NewResVT, dl, ResScalars), 9938 getBuildVector(NewOvVT, dl, OvScalars)); 9939 } 9940 9941 bool SelectionDAG::areNonVolatileConsecutiveLoads(LoadSDNode *LD, 9942 LoadSDNode *Base, 9943 unsigned Bytes, 9944 int Dist) const { 9945 if (LD->isVolatile() || Base->isVolatile()) 9946 return false; 9947 // TODO: probably too restrictive for atomics, revisit 9948 if (!LD->isSimple()) 9949 return false; 9950 if (LD->isIndexed() || Base->isIndexed()) 9951 return false; 9952 if (LD->getChain() != Base->getChain()) 9953 return false; 9954 EVT VT = LD->getValueType(0); 9955 if (VT.getSizeInBits() / 8 != Bytes) 9956 return false; 9957 9958 auto BaseLocDecomp = BaseIndexOffset::match(Base, *this); 9959 auto LocDecomp = BaseIndexOffset::match(LD, *this); 9960 9961 int64_t Offset = 0; 9962 if (BaseLocDecomp.equalBaseIndex(LocDecomp, *this, Offset)) 9963 return (Dist * Bytes == Offset); 9964 return false; 9965 } 9966 9967 /// InferPtrAlignment - Infer alignment of a load / store address. Return None 9968 /// if it cannot be inferred. 9969 MaybeAlign SelectionDAG::InferPtrAlign(SDValue Ptr) const { 9970 // If this is a GlobalAddress + cst, return the alignment. 9971 const GlobalValue *GV = nullptr; 9972 int64_t GVOffset = 0; 9973 if (TLI->isGAPlusOffset(Ptr.getNode(), GV, GVOffset)) { 9974 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); 9975 KnownBits Known(PtrWidth); 9976 llvm::computeKnownBits(GV, Known, getDataLayout()); 9977 unsigned AlignBits = Known.countMinTrailingZeros(); 9978 if (AlignBits) 9979 return commonAlignment(Align(1ull << std::min(31U, AlignBits)), GVOffset); 9980 } 9981 9982 // If this is a direct reference to a stack slot, use information about the 9983 // stack slot's alignment. 9984 int FrameIdx = INT_MIN; 9985 int64_t FrameOffset = 0; 9986 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) { 9987 FrameIdx = FI->getIndex(); 9988 } else if (isBaseWithConstantOffset(Ptr) && 9989 isa<FrameIndexSDNode>(Ptr.getOperand(0))) { 9990 // Handle FI+Cst 9991 FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex(); 9992 FrameOffset = Ptr.getConstantOperandVal(1); 9993 } 9994 9995 if (FrameIdx != INT_MIN) { 9996 const MachineFrameInfo &MFI = getMachineFunction().getFrameInfo(); 9997 return commonAlignment(MFI.getObjectAlign(FrameIdx), FrameOffset); 9998 } 9999 10000 return None; 10001 } 10002 10003 /// GetSplitDestVTs - Compute the VTs needed for the low/hi parts of a type 10004 /// which is split (or expanded) into two not necessarily identical pieces. 10005 std::pair<EVT, EVT> SelectionDAG::GetSplitDestVTs(const EVT &VT) const { 10006 // Currently all types are split in half. 10007 EVT LoVT, HiVT; 10008 if (!VT.isVector()) 10009 LoVT = HiVT = TLI->getTypeToTransformTo(*getContext(), VT); 10010 else 10011 LoVT = HiVT = VT.getHalfNumVectorElementsVT(*getContext()); 10012 10013 return std::make_pair(LoVT, HiVT); 10014 } 10015 10016 /// GetDependentSplitDestVTs - Compute the VTs needed for the low/hi parts of a 10017 /// type, dependent on an enveloping VT that has been split into two identical 10018 /// pieces. Sets the HiIsEmpty flag when hi type has zero storage size. 10019 std::pair<EVT, EVT> 10020 SelectionDAG::GetDependentSplitDestVTs(const EVT &VT, const EVT &EnvVT, 10021 bool *HiIsEmpty) const { 10022 EVT EltTp = VT.getVectorElementType(); 10023 // Examples: 10024 // custom VL=8 with enveloping VL=8/8 yields 8/0 (hi empty) 10025 // custom VL=9 with enveloping VL=8/8 yields 8/1 10026 // custom VL=10 with enveloping VL=8/8 yields 8/2 10027 // etc. 10028 ElementCount VTNumElts = VT.getVectorElementCount(); 10029 ElementCount EnvNumElts = EnvVT.getVectorElementCount(); 10030 assert(VTNumElts.isScalable() == EnvNumElts.isScalable() && 10031 "Mixing fixed width and scalable vectors when enveloping a type"); 10032 EVT LoVT, HiVT; 10033 if (VTNumElts.getKnownMinValue() > EnvNumElts.getKnownMinValue()) { 10034 LoVT = EnvVT; 10035 HiVT = EVT::getVectorVT(*getContext(), EltTp, VTNumElts - EnvNumElts); 10036 *HiIsEmpty = false; 10037 } else { 10038 // Flag that hi type has zero storage size, but return split envelop type 10039 // (this would be easier if vector types with zero elements were allowed). 10040 LoVT = EVT::getVectorVT(*getContext(), EltTp, VTNumElts); 10041 HiVT = EnvVT; 10042 *HiIsEmpty = true; 10043 } 10044 return std::make_pair(LoVT, HiVT); 10045 } 10046 10047 /// SplitVector - Split the vector with EXTRACT_SUBVECTOR and return the 10048 /// low/high part. 10049 std::pair<SDValue, SDValue> 10050 SelectionDAG::SplitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT, 10051 const EVT &HiVT) { 10052 assert(LoVT.isScalableVector() == HiVT.isScalableVector() && 10053 LoVT.isScalableVector() == N.getValueType().isScalableVector() && 10054 "Splitting vector with an invalid mixture of fixed and scalable " 10055 "vector types"); 10056 assert(LoVT.getVectorMinNumElements() + HiVT.getVectorMinNumElements() <= 10057 N.getValueType().getVectorMinNumElements() && 10058 "More vector elements requested than available!"); 10059 SDValue Lo, Hi; 10060 Lo = 10061 getNode(ISD::EXTRACT_SUBVECTOR, DL, LoVT, N, getVectorIdxConstant(0, DL)); 10062 // For scalable vectors it is safe to use LoVT.getVectorMinNumElements() 10063 // (rather than having to use ElementCount), because EXTRACT_SUBVECTOR scales 10064 // IDX with the runtime scaling factor of the result vector type. For 10065 // fixed-width result vectors, that runtime scaling factor is 1. 10066 Hi = getNode(ISD::EXTRACT_SUBVECTOR, DL, HiVT, N, 10067 getVectorIdxConstant(LoVT.getVectorMinNumElements(), DL)); 10068 return std::make_pair(Lo, Hi); 10069 } 10070 10071 /// Widen the vector up to the next power of two using INSERT_SUBVECTOR. 10072 SDValue SelectionDAG::WidenVector(const SDValue &N, const SDLoc &DL) { 10073 EVT VT = N.getValueType(); 10074 EVT WideVT = EVT::getVectorVT(*getContext(), VT.getVectorElementType(), 10075 NextPowerOf2(VT.getVectorNumElements())); 10076 return getNode(ISD::INSERT_SUBVECTOR, DL, WideVT, getUNDEF(WideVT), N, 10077 getVectorIdxConstant(0, DL)); 10078 } 10079 10080 void SelectionDAG::ExtractVectorElements(SDValue Op, 10081 SmallVectorImpl<SDValue> &Args, 10082 unsigned Start, unsigned Count, 10083 EVT EltVT) { 10084 EVT VT = Op.getValueType(); 10085 if (Count == 0) 10086 Count = VT.getVectorNumElements(); 10087 if (EltVT == EVT()) 10088 EltVT = VT.getVectorElementType(); 10089 SDLoc SL(Op); 10090 for (unsigned i = Start, e = Start + Count; i != e; ++i) { 10091 Args.push_back(getNode(ISD::EXTRACT_VECTOR_ELT, SL, EltVT, Op, 10092 getVectorIdxConstant(i, SL))); 10093 } 10094 } 10095 10096 // getAddressSpace - Return the address space this GlobalAddress belongs to. 10097 unsigned GlobalAddressSDNode::getAddressSpace() const { 10098 return getGlobal()->getType()->getAddressSpace(); 10099 } 10100 10101 Type *ConstantPoolSDNode::getType() const { 10102 if (isMachineConstantPoolEntry()) 10103 return Val.MachineCPVal->getType(); 10104 return Val.ConstVal->getType(); 10105 } 10106 10107 bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue, APInt &SplatUndef, 10108 unsigned &SplatBitSize, 10109 bool &HasAnyUndefs, 10110 unsigned MinSplatBits, 10111 bool IsBigEndian) const { 10112 EVT VT = getValueType(0); 10113 assert(VT.isVector() && "Expected a vector type"); 10114 unsigned VecWidth = VT.getSizeInBits(); 10115 if (MinSplatBits > VecWidth) 10116 return false; 10117 10118 // FIXME: The widths are based on this node's type, but build vectors can 10119 // truncate their operands. 10120 SplatValue = APInt(VecWidth, 0); 10121 SplatUndef = APInt(VecWidth, 0); 10122 10123 // Get the bits. Bits with undefined values (when the corresponding element 10124 // of the vector is an ISD::UNDEF value) are set in SplatUndef and cleared 10125 // in SplatValue. If any of the values are not constant, give up and return 10126 // false. 10127 unsigned int NumOps = getNumOperands(); 10128 assert(NumOps > 0 && "isConstantSplat has 0-size build vector"); 10129 unsigned EltWidth = VT.getScalarSizeInBits(); 10130 10131 for (unsigned j = 0; j < NumOps; ++j) { 10132 unsigned i = IsBigEndian ? NumOps - 1 - j : j; 10133 SDValue OpVal = getOperand(i); 10134 unsigned BitPos = j * EltWidth; 10135 10136 if (OpVal.isUndef()) 10137 SplatUndef.setBits(BitPos, BitPos + EltWidth); 10138 else if (auto *CN = dyn_cast<ConstantSDNode>(OpVal)) 10139 SplatValue.insertBits(CN->getAPIntValue().zextOrTrunc(EltWidth), BitPos); 10140 else if (auto *CN = dyn_cast<ConstantFPSDNode>(OpVal)) 10141 SplatValue.insertBits(CN->getValueAPF().bitcastToAPInt(), BitPos); 10142 else 10143 return false; 10144 } 10145 10146 // The build_vector is all constants or undefs. Find the smallest element 10147 // size that splats the vector. 10148 HasAnyUndefs = (SplatUndef != 0); 10149 10150 // FIXME: This does not work for vectors with elements less than 8 bits. 10151 while (VecWidth > 8) { 10152 unsigned HalfSize = VecWidth / 2; 10153 APInt HighValue = SplatValue.lshr(HalfSize).trunc(HalfSize); 10154 APInt LowValue = SplatValue.trunc(HalfSize); 10155 APInt HighUndef = SplatUndef.lshr(HalfSize).trunc(HalfSize); 10156 APInt LowUndef = SplatUndef.trunc(HalfSize); 10157 10158 // If the two halves do not match (ignoring undef bits), stop here. 10159 if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) || 10160 MinSplatBits > HalfSize) 10161 break; 10162 10163 SplatValue = HighValue | LowValue; 10164 SplatUndef = HighUndef & LowUndef; 10165 10166 VecWidth = HalfSize; 10167 } 10168 10169 SplatBitSize = VecWidth; 10170 return true; 10171 } 10172 10173 SDValue BuildVectorSDNode::getSplatValue(const APInt &DemandedElts, 10174 BitVector *UndefElements) const { 10175 unsigned NumOps = getNumOperands(); 10176 if (UndefElements) { 10177 UndefElements->clear(); 10178 UndefElements->resize(NumOps); 10179 } 10180 assert(NumOps == DemandedElts.getBitWidth() && "Unexpected vector size"); 10181 if (!DemandedElts) 10182 return SDValue(); 10183 SDValue Splatted; 10184 for (unsigned i = 0; i != NumOps; ++i) { 10185 if (!DemandedElts[i]) 10186 continue; 10187 SDValue Op = getOperand(i); 10188 if (Op.isUndef()) { 10189 if (UndefElements) 10190 (*UndefElements)[i] = true; 10191 } else if (!Splatted) { 10192 Splatted = Op; 10193 } else if (Splatted != Op) { 10194 return SDValue(); 10195 } 10196 } 10197 10198 if (!Splatted) { 10199 unsigned FirstDemandedIdx = DemandedElts.countTrailingZeros(); 10200 assert(getOperand(FirstDemandedIdx).isUndef() && 10201 "Can only have a splat without a constant for all undefs."); 10202 return getOperand(FirstDemandedIdx); 10203 } 10204 10205 return Splatted; 10206 } 10207 10208 SDValue BuildVectorSDNode::getSplatValue(BitVector *UndefElements) const { 10209 APInt DemandedElts = APInt::getAllOnesValue(getNumOperands()); 10210 return getSplatValue(DemandedElts, UndefElements); 10211 } 10212 10213 bool BuildVectorSDNode::getRepeatedSequence(const APInt &DemandedElts, 10214 SmallVectorImpl<SDValue> &Sequence, 10215 BitVector *UndefElements) const { 10216 unsigned NumOps = getNumOperands(); 10217 Sequence.clear(); 10218 if (UndefElements) { 10219 UndefElements->clear(); 10220 UndefElements->resize(NumOps); 10221 } 10222 assert(NumOps == DemandedElts.getBitWidth() && "Unexpected vector size"); 10223 if (!DemandedElts || NumOps < 2 || !isPowerOf2_32(NumOps)) 10224 return false; 10225 10226 // Set the undefs even if we don't find a sequence (like getSplatValue). 10227 if (UndefElements) 10228 for (unsigned I = 0; I != NumOps; ++I) 10229 if (DemandedElts[I] && getOperand(I).isUndef()) 10230 (*UndefElements)[I] = true; 10231 10232 // Iteratively widen the sequence length looking for repetitions. 10233 for (unsigned SeqLen = 1; SeqLen < NumOps; SeqLen *= 2) { 10234 Sequence.append(SeqLen, SDValue()); 10235 for (unsigned I = 0; I != NumOps; ++I) { 10236 if (!DemandedElts[I]) 10237 continue; 10238 SDValue &SeqOp = Sequence[I % SeqLen]; 10239 SDValue Op = getOperand(I); 10240 if (Op.isUndef()) { 10241 if (!SeqOp) 10242 SeqOp = Op; 10243 continue; 10244 } 10245 if (SeqOp && !SeqOp.isUndef() && SeqOp != Op) { 10246 Sequence.clear(); 10247 break; 10248 } 10249 SeqOp = Op; 10250 } 10251 if (!Sequence.empty()) 10252 return true; 10253 } 10254 10255 assert(Sequence.empty() && "Failed to empty non-repeating sequence pattern"); 10256 return false; 10257 } 10258 10259 bool BuildVectorSDNode::getRepeatedSequence(SmallVectorImpl<SDValue> &Sequence, 10260 BitVector *UndefElements) const { 10261 APInt DemandedElts = APInt::getAllOnesValue(getNumOperands()); 10262 return getRepeatedSequence(DemandedElts, Sequence, UndefElements); 10263 } 10264 10265 ConstantSDNode * 10266 BuildVectorSDNode::getConstantSplatNode(const APInt &DemandedElts, 10267 BitVector *UndefElements) const { 10268 return dyn_cast_or_null<ConstantSDNode>( 10269 getSplatValue(DemandedElts, UndefElements)); 10270 } 10271 10272 ConstantSDNode * 10273 BuildVectorSDNode::getConstantSplatNode(BitVector *UndefElements) const { 10274 return dyn_cast_or_null<ConstantSDNode>(getSplatValue(UndefElements)); 10275 } 10276 10277 ConstantFPSDNode * 10278 BuildVectorSDNode::getConstantFPSplatNode(const APInt &DemandedElts, 10279 BitVector *UndefElements) const { 10280 return dyn_cast_or_null<ConstantFPSDNode>( 10281 getSplatValue(DemandedElts, UndefElements)); 10282 } 10283 10284 ConstantFPSDNode * 10285 BuildVectorSDNode::getConstantFPSplatNode(BitVector *UndefElements) const { 10286 return dyn_cast_or_null<ConstantFPSDNode>(getSplatValue(UndefElements)); 10287 } 10288 10289 int32_t 10290 BuildVectorSDNode::getConstantFPSplatPow2ToLog2Int(BitVector *UndefElements, 10291 uint32_t BitWidth) const { 10292 if (ConstantFPSDNode *CN = 10293 dyn_cast_or_null<ConstantFPSDNode>(getSplatValue(UndefElements))) { 10294 bool IsExact; 10295 APSInt IntVal(BitWidth); 10296 const APFloat &APF = CN->getValueAPF(); 10297 if (APF.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact) != 10298 APFloat::opOK || 10299 !IsExact) 10300 return -1; 10301 10302 return IntVal.exactLogBase2(); 10303 } 10304 return -1; 10305 } 10306 10307 bool BuildVectorSDNode::isConstant() const { 10308 for (const SDValue &Op : op_values()) { 10309 unsigned Opc = Op.getOpcode(); 10310 if (Opc != ISD::UNDEF && Opc != ISD::Constant && Opc != ISD::ConstantFP) 10311 return false; 10312 } 10313 return true; 10314 } 10315 10316 bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) { 10317 // Find the first non-undef value in the shuffle mask. 10318 unsigned i, e; 10319 for (i = 0, e = VT.getVectorNumElements(); i != e && Mask[i] < 0; ++i) 10320 /* search */; 10321 10322 // If all elements are undefined, this shuffle can be considered a splat 10323 // (although it should eventually get simplified away completely). 10324 if (i == e) 10325 return true; 10326 10327 // Make sure all remaining elements are either undef or the same as the first 10328 // non-undef value. 10329 for (int Idx = Mask[i]; i != e; ++i) 10330 if (Mask[i] >= 0 && Mask[i] != Idx) 10331 return false; 10332 return true; 10333 } 10334 10335 // Returns the SDNode if it is a constant integer BuildVector 10336 // or constant integer. 10337 SDNode *SelectionDAG::isConstantIntBuildVectorOrConstantInt(SDValue N) const { 10338 if (isa<ConstantSDNode>(N)) 10339 return N.getNode(); 10340 if (ISD::isBuildVectorOfConstantSDNodes(N.getNode())) 10341 return N.getNode(); 10342 // Treat a GlobalAddress supporting constant offset folding as a 10343 // constant integer. 10344 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N)) 10345 if (GA->getOpcode() == ISD::GlobalAddress && 10346 TLI->isOffsetFoldingLegal(GA)) 10347 return GA; 10348 if ((N.getOpcode() == ISD::SPLAT_VECTOR) && 10349 isa<ConstantSDNode>(N.getOperand(0))) 10350 return N.getNode(); 10351 return nullptr; 10352 } 10353 10354 // Returns the SDNode if it is a constant float BuildVector 10355 // or constant float. 10356 SDNode *SelectionDAG::isConstantFPBuildVectorOrConstantFP(SDValue N) const { 10357 if (isa<ConstantFPSDNode>(N)) 10358 return N.getNode(); 10359 10360 if (ISD::isBuildVectorOfConstantFPSDNodes(N.getNode())) 10361 return N.getNode(); 10362 10363 return nullptr; 10364 } 10365 10366 void SelectionDAG::createOperands(SDNode *Node, ArrayRef<SDValue> Vals) { 10367 assert(!Node->OperandList && "Node already has operands"); 10368 assert(SDNode::getMaxNumOperands() >= Vals.size() && 10369 "too many operands to fit into SDNode"); 10370 SDUse *Ops = OperandRecycler.allocate( 10371 ArrayRecycler<SDUse>::Capacity::get(Vals.size()), OperandAllocator); 10372 10373 bool IsDivergent = false; 10374 for (unsigned I = 0; I != Vals.size(); ++I) { 10375 Ops[I].setUser(Node); 10376 Ops[I].setInitial(Vals[I]); 10377 if (Ops[I].Val.getValueType() != MVT::Other) // Skip Chain. It does not carry divergence. 10378 IsDivergent |= Ops[I].getNode()->isDivergent(); 10379 } 10380 Node->NumOperands = Vals.size(); 10381 Node->OperandList = Ops; 10382 if (!TLI->isSDNodeAlwaysUniform(Node)) { 10383 IsDivergent |= TLI->isSDNodeSourceOfDivergence(Node, FLI, DA); 10384 Node->SDNodeBits.IsDivergent = IsDivergent; 10385 } 10386 checkForCycles(Node); 10387 } 10388 10389 SDValue SelectionDAG::getTokenFactor(const SDLoc &DL, 10390 SmallVectorImpl<SDValue> &Vals) { 10391 size_t Limit = SDNode::getMaxNumOperands(); 10392 while (Vals.size() > Limit) { 10393 unsigned SliceIdx = Vals.size() - Limit; 10394 auto ExtractedTFs = ArrayRef<SDValue>(Vals).slice(SliceIdx, Limit); 10395 SDValue NewTF = getNode(ISD::TokenFactor, DL, MVT::Other, ExtractedTFs); 10396 Vals.erase(Vals.begin() + SliceIdx, Vals.end()); 10397 Vals.emplace_back(NewTF); 10398 } 10399 return getNode(ISD::TokenFactor, DL, MVT::Other, Vals); 10400 } 10401 10402 SDValue SelectionDAG::getNeutralElement(unsigned Opcode, const SDLoc &DL, 10403 EVT VT, SDNodeFlags Flags) { 10404 switch (Opcode) { 10405 default: 10406 return SDValue(); 10407 case ISD::ADD: 10408 case ISD::OR: 10409 case ISD::XOR: 10410 case ISD::UMAX: 10411 return getConstant(0, DL, VT); 10412 case ISD::MUL: 10413 return getConstant(1, DL, VT); 10414 case ISD::AND: 10415 case ISD::UMIN: 10416 return getAllOnesConstant(DL, VT); 10417 case ISD::SMAX: 10418 return getConstant(APInt::getSignedMinValue(VT.getSizeInBits()), DL, VT); 10419 case ISD::SMIN: 10420 return getConstant(APInt::getSignedMaxValue(VT.getSizeInBits()), DL, VT); 10421 case ISD::FADD: 10422 return getConstantFP(-0.0, DL, VT); 10423 case ISD::FMUL: 10424 return getConstantFP(1.0, DL, VT); 10425 case ISD::FMINNUM: 10426 case ISD::FMAXNUM: { 10427 // Neutral element for fminnum is NaN, Inf or FLT_MAX, depending on FMF. 10428 const fltSemantics &Semantics = EVTToAPFloatSemantics(VT); 10429 APFloat NeutralAF = !Flags.hasNoNaNs() ? APFloat::getQNaN(Semantics) : 10430 !Flags.hasNoInfs() ? APFloat::getInf(Semantics) : 10431 APFloat::getLargest(Semantics); 10432 if (Opcode == ISD::FMAXNUM) 10433 NeutralAF.changeSign(); 10434 10435 return getConstantFP(NeutralAF, DL, VT); 10436 } 10437 } 10438 } 10439 10440 #ifndef NDEBUG 10441 static void checkForCyclesHelper(const SDNode *N, 10442 SmallPtrSetImpl<const SDNode*> &Visited, 10443 SmallPtrSetImpl<const SDNode*> &Checked, 10444 const llvm::SelectionDAG *DAG) { 10445 // If this node has already been checked, don't check it again. 10446 if (Checked.count(N)) 10447 return; 10448 10449 // If a node has already been visited on this depth-first walk, reject it as 10450 // a cycle. 10451 if (!Visited.insert(N).second) { 10452 errs() << "Detected cycle in SelectionDAG\n"; 10453 dbgs() << "Offending node:\n"; 10454 N->dumprFull(DAG); dbgs() << "\n"; 10455 abort(); 10456 } 10457 10458 for (const SDValue &Op : N->op_values()) 10459 checkForCyclesHelper(Op.getNode(), Visited, Checked, DAG); 10460 10461 Checked.insert(N); 10462 Visited.erase(N); 10463 } 10464 #endif 10465 10466 void llvm::checkForCycles(const llvm::SDNode *N, 10467 const llvm::SelectionDAG *DAG, 10468 bool force) { 10469 #ifndef NDEBUG 10470 bool check = force; 10471 #ifdef EXPENSIVE_CHECKS 10472 check = true; 10473 #endif // EXPENSIVE_CHECKS 10474 if (check) { 10475 assert(N && "Checking nonexistent SDNode"); 10476 SmallPtrSet<const SDNode*, 32> visited; 10477 SmallPtrSet<const SDNode*, 32> checked; 10478 checkForCyclesHelper(N, visited, checked, DAG); 10479 } 10480 #endif // !NDEBUG 10481 } 10482 10483 void llvm::checkForCycles(const llvm::SelectionDAG *DAG, bool force) { 10484 checkForCycles(DAG->getRoot().getNode(), DAG, force); 10485 } 10486