1 //===-- TargetLowering.cpp - Implement the TargetLowering class -----------===// 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 TargetLowering class. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "llvm/CodeGen/TargetLowering.h" 14 #include "llvm/ADT/BitVector.h" 15 #include "llvm/ADT/STLExtras.h" 16 #include "llvm/CodeGen/CallingConvLower.h" 17 #include "llvm/CodeGen/MachineFrameInfo.h" 18 #include "llvm/CodeGen/MachineFunction.h" 19 #include "llvm/CodeGen/MachineJumpTableInfo.h" 20 #include "llvm/CodeGen/MachineRegisterInfo.h" 21 #include "llvm/CodeGen/SelectionDAG.h" 22 #include "llvm/CodeGen/TargetRegisterInfo.h" 23 #include "llvm/CodeGen/TargetSubtargetInfo.h" 24 #include "llvm/IR/DataLayout.h" 25 #include "llvm/IR/DerivedTypes.h" 26 #include "llvm/IR/GlobalVariable.h" 27 #include "llvm/IR/LLVMContext.h" 28 #include "llvm/MC/MCAsmInfo.h" 29 #include "llvm/MC/MCExpr.h" 30 #include "llvm/Support/ErrorHandling.h" 31 #include "llvm/Support/KnownBits.h" 32 #include "llvm/Support/MathExtras.h" 33 #include "llvm/Target/TargetLoweringObjectFile.h" 34 #include "llvm/Target/TargetMachine.h" 35 #include <cctype> 36 using namespace llvm; 37 38 /// NOTE: The TargetMachine owns TLOF. 39 TargetLowering::TargetLowering(const TargetMachine &tm) 40 : TargetLoweringBase(tm) {} 41 42 const char *TargetLowering::getTargetNodeName(unsigned Opcode) const { 43 return nullptr; 44 } 45 46 bool TargetLowering::isPositionIndependent() const { 47 return getTargetMachine().isPositionIndependent(); 48 } 49 50 /// Check whether a given call node is in tail position within its function. If 51 /// so, it sets Chain to the input chain of the tail call. 52 bool TargetLowering::isInTailCallPosition(SelectionDAG &DAG, SDNode *Node, 53 SDValue &Chain) const { 54 const Function &F = DAG.getMachineFunction().getFunction(); 55 56 // Conservatively require the attributes of the call to match those of 57 // the return. Ignore NoAlias and NonNull because they don't affect the 58 // call sequence. 59 AttributeList CallerAttrs = F.getAttributes(); 60 if (AttrBuilder(CallerAttrs, AttributeList::ReturnIndex) 61 .removeAttribute(Attribute::NoAlias) 62 .removeAttribute(Attribute::NonNull) 63 .hasAttributes()) 64 return false; 65 66 // It's not safe to eliminate the sign / zero extension of the return value. 67 if (CallerAttrs.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt) || 68 CallerAttrs.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt)) 69 return false; 70 71 // Check if the only use is a function return node. 72 return isUsedByReturnOnly(Node, Chain); 73 } 74 75 bool TargetLowering::parametersInCSRMatch(const MachineRegisterInfo &MRI, 76 const uint32_t *CallerPreservedMask, 77 const SmallVectorImpl<CCValAssign> &ArgLocs, 78 const SmallVectorImpl<SDValue> &OutVals) const { 79 for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) { 80 const CCValAssign &ArgLoc = ArgLocs[I]; 81 if (!ArgLoc.isRegLoc()) 82 continue; 83 unsigned Reg = ArgLoc.getLocReg(); 84 // Only look at callee saved registers. 85 if (MachineOperand::clobbersPhysReg(CallerPreservedMask, Reg)) 86 continue; 87 // Check that we pass the value used for the caller. 88 // (We look for a CopyFromReg reading a virtual register that is used 89 // for the function live-in value of register Reg) 90 SDValue Value = OutVals[I]; 91 if (Value->getOpcode() != ISD::CopyFromReg) 92 return false; 93 unsigned ArgReg = cast<RegisterSDNode>(Value->getOperand(1))->getReg(); 94 if (MRI.getLiveInPhysReg(ArgReg) != Reg) 95 return false; 96 } 97 return true; 98 } 99 100 /// Set CallLoweringInfo attribute flags based on a call instruction 101 /// and called function attributes. 102 void TargetLoweringBase::ArgListEntry::setAttributes(const CallBase *Call, 103 unsigned ArgIdx) { 104 IsSExt = Call->paramHasAttr(ArgIdx, Attribute::SExt); 105 IsZExt = Call->paramHasAttr(ArgIdx, Attribute::ZExt); 106 IsInReg = Call->paramHasAttr(ArgIdx, Attribute::InReg); 107 IsSRet = Call->paramHasAttr(ArgIdx, Attribute::StructRet); 108 IsNest = Call->paramHasAttr(ArgIdx, Attribute::Nest); 109 IsByVal = Call->paramHasAttr(ArgIdx, Attribute::ByVal); 110 IsInAlloca = Call->paramHasAttr(ArgIdx, Attribute::InAlloca); 111 IsReturned = Call->paramHasAttr(ArgIdx, Attribute::Returned); 112 IsSwiftSelf = Call->paramHasAttr(ArgIdx, Attribute::SwiftSelf); 113 IsSwiftError = Call->paramHasAttr(ArgIdx, Attribute::SwiftError); 114 Alignment = Call->getParamAlignment(ArgIdx); 115 ByValType = nullptr; 116 if (Call->paramHasAttr(ArgIdx, Attribute::ByVal)) 117 ByValType = Call->getParamByValType(ArgIdx); 118 } 119 120 /// Generate a libcall taking the given operands as arguments and returning a 121 /// result of type RetVT. 122 std::pair<SDValue, SDValue> 123 TargetLowering::makeLibCall(SelectionDAG &DAG, RTLIB::Libcall LC, EVT RetVT, 124 ArrayRef<SDValue> Ops, bool isSigned, 125 const SDLoc &dl, bool doesNotReturn, 126 bool isReturnValueUsed, 127 bool isPostTypeLegalization) const { 128 TargetLowering::ArgListTy Args; 129 Args.reserve(Ops.size()); 130 131 TargetLowering::ArgListEntry Entry; 132 for (SDValue Op : Ops) { 133 Entry.Node = Op; 134 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext()); 135 Entry.IsSExt = shouldSignExtendTypeInLibCall(Op.getValueType(), isSigned); 136 Entry.IsZExt = !shouldSignExtendTypeInLibCall(Op.getValueType(), isSigned); 137 Args.push_back(Entry); 138 } 139 140 if (LC == RTLIB::UNKNOWN_LIBCALL) 141 report_fatal_error("Unsupported library call operation!"); 142 SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC), 143 getPointerTy(DAG.getDataLayout())); 144 145 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); 146 TargetLowering::CallLoweringInfo CLI(DAG); 147 bool signExtend = shouldSignExtendTypeInLibCall(RetVT, isSigned); 148 CLI.setDebugLoc(dl) 149 .setChain(DAG.getEntryNode()) 150 .setLibCallee(getLibcallCallingConv(LC), RetTy, Callee, std::move(Args)) 151 .setNoReturn(doesNotReturn) 152 .setDiscardResult(!isReturnValueUsed) 153 .setIsPostTypeLegalization(isPostTypeLegalization) 154 .setSExtResult(signExtend) 155 .setZExtResult(!signExtend); 156 return LowerCallTo(CLI); 157 } 158 159 bool 160 TargetLowering::findOptimalMemOpLowering(std::vector<EVT> &MemOps, 161 unsigned Limit, uint64_t Size, 162 unsigned DstAlign, unsigned SrcAlign, 163 bool IsMemset, 164 bool ZeroMemset, 165 bool MemcpyStrSrc, 166 bool AllowOverlap, 167 unsigned DstAS, unsigned SrcAS, 168 const AttributeList &FuncAttributes) const { 169 // If 'SrcAlign' is zero, that means the memory operation does not need to 170 // load the value, i.e. memset or memcpy from constant string. Otherwise, 171 // it's the inferred alignment of the source. 'DstAlign', on the other hand, 172 // is the specified alignment of the memory operation. If it is zero, that 173 // means it's possible to change the alignment of the destination. 174 // 'MemcpyStrSrc' indicates whether the memcpy source is constant so it does 175 // not need to be loaded. 176 if (!(SrcAlign == 0 || SrcAlign >= DstAlign)) 177 return false; 178 179 EVT VT = getOptimalMemOpType(Size, DstAlign, SrcAlign, 180 IsMemset, ZeroMemset, MemcpyStrSrc, 181 FuncAttributes); 182 183 if (VT == MVT::Other) { 184 // Use the largest integer type whose alignment constraints are satisfied. 185 // We only need to check DstAlign here as SrcAlign is always greater or 186 // equal to DstAlign (or zero). 187 VT = MVT::i64; 188 while (DstAlign && DstAlign < VT.getSizeInBits() / 8 && 189 !allowsMisalignedMemoryAccesses(VT, DstAS, DstAlign)) 190 VT = (MVT::SimpleValueType)(VT.getSimpleVT().SimpleTy - 1); 191 assert(VT.isInteger()); 192 193 // Find the largest legal integer type. 194 MVT LVT = MVT::i64; 195 while (!isTypeLegal(LVT)) 196 LVT = (MVT::SimpleValueType)(LVT.SimpleTy - 1); 197 assert(LVT.isInteger()); 198 199 // If the type we've chosen is larger than the largest legal integer type 200 // then use that instead. 201 if (VT.bitsGT(LVT)) 202 VT = LVT; 203 } 204 205 unsigned NumMemOps = 0; 206 while (Size != 0) { 207 unsigned VTSize = VT.getSizeInBits() / 8; 208 while (VTSize > Size) { 209 // For now, only use non-vector load / store's for the left-over pieces. 210 EVT NewVT = VT; 211 unsigned NewVTSize; 212 213 bool Found = false; 214 if (VT.isVector() || VT.isFloatingPoint()) { 215 NewVT = (VT.getSizeInBits() > 64) ? MVT::i64 : MVT::i32; 216 if (isOperationLegalOrCustom(ISD::STORE, NewVT) && 217 isSafeMemOpType(NewVT.getSimpleVT())) 218 Found = true; 219 else if (NewVT == MVT::i64 && 220 isOperationLegalOrCustom(ISD::STORE, MVT::f64) && 221 isSafeMemOpType(MVT::f64)) { 222 // i64 is usually not legal on 32-bit targets, but f64 may be. 223 NewVT = MVT::f64; 224 Found = true; 225 } 226 } 227 228 if (!Found) { 229 do { 230 NewVT = (MVT::SimpleValueType)(NewVT.getSimpleVT().SimpleTy - 1); 231 if (NewVT == MVT::i8) 232 break; 233 } while (!isSafeMemOpType(NewVT.getSimpleVT())); 234 } 235 NewVTSize = NewVT.getSizeInBits() / 8; 236 237 // If the new VT cannot cover all of the remaining bits, then consider 238 // issuing a (or a pair of) unaligned and overlapping load / store. 239 bool Fast; 240 if (NumMemOps && AllowOverlap && NewVTSize < Size && 241 allowsMisalignedMemoryAccesses(VT, DstAS, DstAlign, 242 MachineMemOperand::MONone, &Fast) && 243 Fast) 244 VTSize = Size; 245 else { 246 VT = NewVT; 247 VTSize = NewVTSize; 248 } 249 } 250 251 if (++NumMemOps > Limit) 252 return false; 253 254 MemOps.push_back(VT); 255 Size -= VTSize; 256 } 257 258 return true; 259 } 260 261 /// Soften the operands of a comparison. This code is shared among BR_CC, 262 /// SELECT_CC, and SETCC handlers. 263 void TargetLowering::softenSetCCOperands(SelectionDAG &DAG, EVT VT, 264 SDValue &NewLHS, SDValue &NewRHS, 265 ISD::CondCode &CCCode, 266 const SDLoc &dl) const { 267 assert((VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f128 || VT == MVT::ppcf128) 268 && "Unsupported setcc type!"); 269 270 // Expand into one or more soft-fp libcall(s). 271 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL; 272 bool ShouldInvertCC = false; 273 switch (CCCode) { 274 case ISD::SETEQ: 275 case ISD::SETOEQ: 276 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : 277 (VT == MVT::f64) ? RTLIB::OEQ_F64 : 278 (VT == MVT::f128) ? RTLIB::OEQ_F128 : RTLIB::OEQ_PPCF128; 279 break; 280 case ISD::SETNE: 281 case ISD::SETUNE: 282 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : 283 (VT == MVT::f64) ? RTLIB::UNE_F64 : 284 (VT == MVT::f128) ? RTLIB::UNE_F128 : RTLIB::UNE_PPCF128; 285 break; 286 case ISD::SETGE: 287 case ISD::SETOGE: 288 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : 289 (VT == MVT::f64) ? RTLIB::OGE_F64 : 290 (VT == MVT::f128) ? RTLIB::OGE_F128 : RTLIB::OGE_PPCF128; 291 break; 292 case ISD::SETLT: 293 case ISD::SETOLT: 294 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : 295 (VT == MVT::f64) ? RTLIB::OLT_F64 : 296 (VT == MVT::f128) ? RTLIB::OLT_F128 : RTLIB::OLT_PPCF128; 297 break; 298 case ISD::SETLE: 299 case ISD::SETOLE: 300 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : 301 (VT == MVT::f64) ? RTLIB::OLE_F64 : 302 (VT == MVT::f128) ? RTLIB::OLE_F128 : RTLIB::OLE_PPCF128; 303 break; 304 case ISD::SETGT: 305 case ISD::SETOGT: 306 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : 307 (VT == MVT::f64) ? RTLIB::OGT_F64 : 308 (VT == MVT::f128) ? RTLIB::OGT_F128 : RTLIB::OGT_PPCF128; 309 break; 310 case ISD::SETUO: 311 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : 312 (VT == MVT::f64) ? RTLIB::UO_F64 : 313 (VT == MVT::f128) ? RTLIB::UO_F128 : RTLIB::UO_PPCF128; 314 break; 315 case ISD::SETO: 316 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : 317 (VT == MVT::f64) ? RTLIB::O_F64 : 318 (VT == MVT::f128) ? RTLIB::O_F128 : RTLIB::O_PPCF128; 319 break; 320 case ISD::SETONE: 321 // SETONE = SETOLT | SETOGT 322 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : 323 (VT == MVT::f64) ? RTLIB::OLT_F64 : 324 (VT == MVT::f128) ? RTLIB::OLT_F128 : RTLIB::OLT_PPCF128; 325 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : 326 (VT == MVT::f64) ? RTLIB::OGT_F64 : 327 (VT == MVT::f128) ? RTLIB::OGT_F128 : RTLIB::OGT_PPCF128; 328 break; 329 case ISD::SETUEQ: 330 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : 331 (VT == MVT::f64) ? RTLIB::UO_F64 : 332 (VT == MVT::f128) ? RTLIB::UO_F128 : RTLIB::UO_PPCF128; 333 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : 334 (VT == MVT::f64) ? RTLIB::OEQ_F64 : 335 (VT == MVT::f128) ? RTLIB::OEQ_F128 : RTLIB::OEQ_PPCF128; 336 break; 337 default: 338 // Invert CC for unordered comparisons 339 ShouldInvertCC = true; 340 switch (CCCode) { 341 case ISD::SETULT: 342 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : 343 (VT == MVT::f64) ? RTLIB::OGE_F64 : 344 (VT == MVT::f128) ? RTLIB::OGE_F128 : RTLIB::OGE_PPCF128; 345 break; 346 case ISD::SETULE: 347 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : 348 (VT == MVT::f64) ? RTLIB::OGT_F64 : 349 (VT == MVT::f128) ? RTLIB::OGT_F128 : RTLIB::OGT_PPCF128; 350 break; 351 case ISD::SETUGT: 352 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : 353 (VT == MVT::f64) ? RTLIB::OLE_F64 : 354 (VT == MVT::f128) ? RTLIB::OLE_F128 : RTLIB::OLE_PPCF128; 355 break; 356 case ISD::SETUGE: 357 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : 358 (VT == MVT::f64) ? RTLIB::OLT_F64 : 359 (VT == MVT::f128) ? RTLIB::OLT_F128 : RTLIB::OLT_PPCF128; 360 break; 361 default: llvm_unreachable("Do not know how to soften this setcc!"); 362 } 363 } 364 365 // Use the target specific return value for comparions lib calls. 366 EVT RetVT = getCmpLibcallReturnType(); 367 SDValue Ops[2] = {NewLHS, NewRHS}; 368 NewLHS = makeLibCall(DAG, LC1, RetVT, Ops, false /*sign irrelevant*/, 369 dl).first; 370 NewRHS = DAG.getConstant(0, dl, RetVT); 371 372 CCCode = getCmpLibcallCC(LC1); 373 if (ShouldInvertCC) 374 CCCode = getSetCCInverse(CCCode, /*isInteger=*/true); 375 376 if (LC2 != RTLIB::UNKNOWN_LIBCALL) { 377 SDValue Tmp = DAG.getNode( 378 ISD::SETCC, dl, 379 getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), RetVT), 380 NewLHS, NewRHS, DAG.getCondCode(CCCode)); 381 NewLHS = makeLibCall(DAG, LC2, RetVT, Ops, false/*sign irrelevant*/, 382 dl).first; 383 NewLHS = DAG.getNode( 384 ISD::SETCC, dl, 385 getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), RetVT), 386 NewLHS, NewRHS, DAG.getCondCode(getCmpLibcallCC(LC2))); 387 NewLHS = DAG.getNode(ISD::OR, dl, Tmp.getValueType(), Tmp, NewLHS); 388 NewRHS = SDValue(); 389 } 390 } 391 392 /// Return the entry encoding for a jump table in the current function. The 393 /// returned value is a member of the MachineJumpTableInfo::JTEntryKind enum. 394 unsigned TargetLowering::getJumpTableEncoding() const { 395 // In non-pic modes, just use the address of a block. 396 if (!isPositionIndependent()) 397 return MachineJumpTableInfo::EK_BlockAddress; 398 399 // In PIC mode, if the target supports a GPRel32 directive, use it. 400 if (getTargetMachine().getMCAsmInfo()->getGPRel32Directive() != nullptr) 401 return MachineJumpTableInfo::EK_GPRel32BlockAddress; 402 403 // Otherwise, use a label difference. 404 return MachineJumpTableInfo::EK_LabelDifference32; 405 } 406 407 SDValue TargetLowering::getPICJumpTableRelocBase(SDValue Table, 408 SelectionDAG &DAG) const { 409 // If our PIC model is GP relative, use the global offset table as the base. 410 unsigned JTEncoding = getJumpTableEncoding(); 411 412 if ((JTEncoding == MachineJumpTableInfo::EK_GPRel64BlockAddress) || 413 (JTEncoding == MachineJumpTableInfo::EK_GPRel32BlockAddress)) 414 return DAG.getGLOBAL_OFFSET_TABLE(getPointerTy(DAG.getDataLayout())); 415 416 return Table; 417 } 418 419 /// This returns the relocation base for the given PIC jumptable, the same as 420 /// getPICJumpTableRelocBase, but as an MCExpr. 421 const MCExpr * 422 TargetLowering::getPICJumpTableRelocBaseExpr(const MachineFunction *MF, 423 unsigned JTI,MCContext &Ctx) const{ 424 // The normal PIC reloc base is the label at the start of the jump table. 425 return MCSymbolRefExpr::create(MF->getJTISymbol(JTI, Ctx), Ctx); 426 } 427 428 bool 429 TargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { 430 const TargetMachine &TM = getTargetMachine(); 431 const GlobalValue *GV = GA->getGlobal(); 432 433 // If the address is not even local to this DSO we will have to load it from 434 // a got and then add the offset. 435 if (!TM.shouldAssumeDSOLocal(*GV->getParent(), GV)) 436 return false; 437 438 // If the code is position independent we will have to add a base register. 439 if (isPositionIndependent()) 440 return false; 441 442 // Otherwise we can do it. 443 return true; 444 } 445 446 //===----------------------------------------------------------------------===// 447 // Optimization Methods 448 //===----------------------------------------------------------------------===// 449 450 /// If the specified instruction has a constant integer operand and there are 451 /// bits set in that constant that are not demanded, then clear those bits and 452 /// return true. 453 bool TargetLowering::ShrinkDemandedConstant(SDValue Op, const APInt &Demanded, 454 TargetLoweringOpt &TLO) const { 455 SDLoc DL(Op); 456 unsigned Opcode = Op.getOpcode(); 457 458 // Do target-specific constant optimization. 459 if (targetShrinkDemandedConstant(Op, Demanded, TLO)) 460 return TLO.New.getNode(); 461 462 // FIXME: ISD::SELECT, ISD::SELECT_CC 463 switch (Opcode) { 464 default: 465 break; 466 case ISD::XOR: 467 case ISD::AND: 468 case ISD::OR: { 469 auto *Op1C = dyn_cast<ConstantSDNode>(Op.getOperand(1)); 470 if (!Op1C) 471 return false; 472 473 // If this is a 'not' op, don't touch it because that's a canonical form. 474 const APInt &C = Op1C->getAPIntValue(); 475 if (Opcode == ISD::XOR && Demanded.isSubsetOf(C)) 476 return false; 477 478 if (!C.isSubsetOf(Demanded)) { 479 EVT VT = Op.getValueType(); 480 SDValue NewC = TLO.DAG.getConstant(Demanded & C, DL, VT); 481 SDValue NewOp = TLO.DAG.getNode(Opcode, DL, VT, Op.getOperand(0), NewC); 482 return TLO.CombineTo(Op, NewOp); 483 } 484 485 break; 486 } 487 } 488 489 return false; 490 } 491 492 /// Convert x+y to (VT)((SmallVT)x+(SmallVT)y) if the casts are free. 493 /// This uses isZExtFree and ZERO_EXTEND for the widening cast, but it could be 494 /// generalized for targets with other types of implicit widening casts. 495 bool TargetLowering::ShrinkDemandedOp(SDValue Op, unsigned BitWidth, 496 const APInt &Demanded, 497 TargetLoweringOpt &TLO) const { 498 assert(Op.getNumOperands() == 2 && 499 "ShrinkDemandedOp only supports binary operators!"); 500 assert(Op.getNode()->getNumValues() == 1 && 501 "ShrinkDemandedOp only supports nodes with one result!"); 502 503 SelectionDAG &DAG = TLO.DAG; 504 SDLoc dl(Op); 505 506 // Early return, as this function cannot handle vector types. 507 if (Op.getValueType().isVector()) 508 return false; 509 510 // Don't do this if the node has another user, which may require the 511 // full value. 512 if (!Op.getNode()->hasOneUse()) 513 return false; 514 515 // Search for the smallest integer type with free casts to and from 516 // Op's type. For expedience, just check power-of-2 integer types. 517 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 518 unsigned DemandedSize = Demanded.getActiveBits(); 519 unsigned SmallVTBits = DemandedSize; 520 if (!isPowerOf2_32(SmallVTBits)) 521 SmallVTBits = NextPowerOf2(SmallVTBits); 522 for (; SmallVTBits < BitWidth; SmallVTBits = NextPowerOf2(SmallVTBits)) { 523 EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), SmallVTBits); 524 if (TLI.isTruncateFree(Op.getValueType(), SmallVT) && 525 TLI.isZExtFree(SmallVT, Op.getValueType())) { 526 // We found a type with free casts. 527 SDValue X = DAG.getNode( 528 Op.getOpcode(), dl, SmallVT, 529 DAG.getNode(ISD::TRUNCATE, dl, SmallVT, Op.getOperand(0)), 530 DAG.getNode(ISD::TRUNCATE, dl, SmallVT, Op.getOperand(1))); 531 assert(DemandedSize <= SmallVTBits && "Narrowed below demanded bits?"); 532 SDValue Z = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), X); 533 return TLO.CombineTo(Op, Z); 534 } 535 } 536 return false; 537 } 538 539 bool TargetLowering::SimplifyDemandedBits(SDValue Op, const APInt &DemandedBits, 540 DAGCombinerInfo &DCI) const { 541 SelectionDAG &DAG = DCI.DAG; 542 TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(), 543 !DCI.isBeforeLegalizeOps()); 544 KnownBits Known; 545 546 bool Simplified = SimplifyDemandedBits(Op, DemandedBits, Known, TLO); 547 if (Simplified) { 548 DCI.AddToWorklist(Op.getNode()); 549 DCI.CommitTargetLoweringOpt(TLO); 550 } 551 return Simplified; 552 } 553 554 bool TargetLowering::SimplifyDemandedBits(SDValue Op, const APInt &DemandedBits, 555 KnownBits &Known, 556 TargetLoweringOpt &TLO, 557 unsigned Depth, 558 bool AssumeSingleUse) const { 559 EVT VT = Op.getValueType(); 560 APInt DemandedElts = VT.isVector() 561 ? APInt::getAllOnesValue(VT.getVectorNumElements()) 562 : APInt(1, 1); 563 return SimplifyDemandedBits(Op, DemandedBits, DemandedElts, Known, TLO, Depth, 564 AssumeSingleUse); 565 } 566 567 /// Look at Op. At this point, we know that only the OriginalDemandedBits of the 568 /// result of Op are ever used downstream. If we can use this information to 569 /// simplify Op, create a new simplified DAG node and return true, returning the 570 /// original and new nodes in Old and New. Otherwise, analyze the expression and 571 /// return a mask of Known bits for the expression (used to simplify the 572 /// caller). The Known bits may only be accurate for those bits in the 573 /// OriginalDemandedBits and OriginalDemandedElts. 574 bool TargetLowering::SimplifyDemandedBits( 575 SDValue Op, const APInt &OriginalDemandedBits, 576 const APInt &OriginalDemandedElts, KnownBits &Known, TargetLoweringOpt &TLO, 577 unsigned Depth, bool AssumeSingleUse) const { 578 unsigned BitWidth = OriginalDemandedBits.getBitWidth(); 579 assert(Op.getScalarValueSizeInBits() == BitWidth && 580 "Mask size mismatches value type size!"); 581 582 unsigned NumElts = OriginalDemandedElts.getBitWidth(); 583 assert((!Op.getValueType().isVector() || 584 NumElts == Op.getValueType().getVectorNumElements()) && 585 "Unexpected vector size"); 586 587 APInt DemandedBits = OriginalDemandedBits; 588 APInt DemandedElts = OriginalDemandedElts; 589 SDLoc dl(Op); 590 auto &DL = TLO.DAG.getDataLayout(); 591 592 // Don't know anything. 593 Known = KnownBits(BitWidth); 594 595 // Undef operand. 596 if (Op.isUndef()) 597 return false; 598 599 if (Op.getOpcode() == ISD::Constant) { 600 // We know all of the bits for a constant! 601 Known.One = cast<ConstantSDNode>(Op)->getAPIntValue(); 602 Known.Zero = ~Known.One; 603 return false; 604 } 605 606 // Other users may use these bits. 607 EVT VT = Op.getValueType(); 608 if (!Op.getNode()->hasOneUse() && !AssumeSingleUse) { 609 if (Depth != 0) { 610 // If not at the root, Just compute the Known bits to 611 // simplify things downstream. 612 Known = TLO.DAG.computeKnownBits(Op, DemandedElts, Depth); 613 return false; 614 } 615 // If this is the root being simplified, allow it to have multiple uses, 616 // just set the DemandedBits/Elts to all bits. 617 DemandedBits = APInt::getAllOnesValue(BitWidth); 618 DemandedElts = APInt::getAllOnesValue(NumElts); 619 } else if (OriginalDemandedBits == 0 || OriginalDemandedElts == 0) { 620 // Not demanding any bits/elts from Op. 621 return TLO.CombineTo(Op, TLO.DAG.getUNDEF(VT)); 622 } else if (Depth == 6) { // Limit search depth. 623 return false; 624 } 625 626 KnownBits Known2, KnownOut; 627 switch (Op.getOpcode()) { 628 case ISD::SCALAR_TO_VECTOR: { 629 if (!DemandedElts[0]) 630 return TLO.CombineTo(Op, TLO.DAG.getUNDEF(VT)); 631 632 KnownBits SrcKnown; 633 SDValue Src = Op.getOperand(0); 634 unsigned SrcBitWidth = Src.getScalarValueSizeInBits(); 635 APInt SrcDemandedBits = DemandedBits.zextOrSelf(SrcBitWidth); 636 if (SimplifyDemandedBits(Src, SrcDemandedBits, SrcKnown, TLO, Depth + 1)) 637 return true; 638 Known = SrcKnown.zextOrTrunc(BitWidth, false); 639 break; 640 } 641 case ISD::BUILD_VECTOR: 642 // Collect the known bits that are shared by every demanded element. 643 // TODO: Call SimplifyDemandedBits for non-constant demanded elements. 644 Known = TLO.DAG.computeKnownBits(Op, DemandedElts, Depth); 645 return false; // Don't fall through, will infinitely loop. 646 case ISD::LOAD: { 647 LoadSDNode *LD = cast<LoadSDNode>(Op); 648 if (getTargetConstantFromLoad(LD)) { 649 Known = TLO.DAG.computeKnownBits(Op, DemandedElts, Depth); 650 return false; // Don't fall through, will infinitely loop. 651 } 652 break; 653 } 654 case ISD::INSERT_VECTOR_ELT: { 655 SDValue Vec = Op.getOperand(0); 656 SDValue Scl = Op.getOperand(1); 657 auto *CIdx = dyn_cast<ConstantSDNode>(Op.getOperand(2)); 658 EVT VecVT = Vec.getValueType(); 659 660 // If index isn't constant, assume we need all vector elements AND the 661 // inserted element. 662 APInt DemandedVecElts(DemandedElts); 663 if (CIdx && CIdx->getAPIntValue().ult(VecVT.getVectorNumElements())) { 664 unsigned Idx = CIdx->getZExtValue(); 665 DemandedVecElts.clearBit(Idx); 666 667 // Inserted element is not required. 668 if (!DemandedElts[Idx]) 669 return TLO.CombineTo(Op, Vec); 670 } 671 672 KnownBits KnownScl; 673 unsigned NumSclBits = Scl.getScalarValueSizeInBits(); 674 APInt DemandedSclBits = DemandedBits.zextOrTrunc(NumSclBits); 675 if (SimplifyDemandedBits(Scl, DemandedSclBits, KnownScl, TLO, Depth + 1)) 676 return true; 677 678 Known = KnownScl.zextOrTrunc(BitWidth, false); 679 680 KnownBits KnownVec; 681 if (SimplifyDemandedBits(Vec, DemandedBits, DemandedVecElts, KnownVec, TLO, 682 Depth + 1)) 683 return true; 684 685 if (!!DemandedVecElts) { 686 Known.One &= KnownVec.One; 687 Known.Zero &= KnownVec.Zero; 688 } 689 690 return false; 691 } 692 case ISD::INSERT_SUBVECTOR: { 693 SDValue Base = Op.getOperand(0); 694 SDValue Sub = Op.getOperand(1); 695 EVT SubVT = Sub.getValueType(); 696 unsigned NumSubElts = SubVT.getVectorNumElements(); 697 698 // If index isn't constant, assume we need the original demanded base 699 // elements and ALL the inserted subvector elements. 700 APInt BaseElts = DemandedElts; 701 APInt SubElts = APInt::getAllOnesValue(NumSubElts); 702 if (isa<ConstantSDNode>(Op.getOperand(2))) { 703 const APInt &Idx = Op.getConstantOperandAPInt(2); 704 if (Idx.ule(NumElts - NumSubElts)) { 705 unsigned SubIdx = Idx.getZExtValue(); 706 SubElts = DemandedElts.extractBits(NumSubElts, SubIdx); 707 BaseElts.insertBits(APInt::getNullValue(NumSubElts), SubIdx); 708 } 709 } 710 711 KnownBits KnownSub, KnownBase; 712 if (SimplifyDemandedBits(Sub, DemandedBits, SubElts, KnownSub, TLO, 713 Depth + 1)) 714 return true; 715 if (SimplifyDemandedBits(Base, DemandedBits, BaseElts, KnownBase, TLO, 716 Depth + 1)) 717 return true; 718 719 Known.Zero.setAllBits(); 720 Known.One.setAllBits(); 721 if (!!SubElts) { 722 Known.One &= KnownSub.One; 723 Known.Zero &= KnownSub.Zero; 724 } 725 if (!!BaseElts) { 726 Known.One &= KnownBase.One; 727 Known.Zero &= KnownBase.Zero; 728 } 729 break; 730 } 731 case ISD::CONCAT_VECTORS: { 732 Known.Zero.setAllBits(); 733 Known.One.setAllBits(); 734 EVT SubVT = Op.getOperand(0).getValueType(); 735 unsigned NumSubVecs = Op.getNumOperands(); 736 unsigned NumSubElts = SubVT.getVectorNumElements(); 737 for (unsigned i = 0; i != NumSubVecs; ++i) { 738 APInt DemandedSubElts = 739 DemandedElts.extractBits(NumSubElts, i * NumSubElts); 740 if (SimplifyDemandedBits(Op.getOperand(i), DemandedBits, DemandedSubElts, 741 Known2, TLO, Depth + 1)) 742 return true; 743 // Known bits are shared by every demanded subvector element. 744 if (!!DemandedSubElts) { 745 Known.One &= Known2.One; 746 Known.Zero &= Known2.Zero; 747 } 748 } 749 break; 750 } 751 case ISD::VECTOR_SHUFFLE: { 752 ArrayRef<int> ShuffleMask = cast<ShuffleVectorSDNode>(Op)->getMask(); 753 754 // Collect demanded elements from shuffle operands.. 755 APInt DemandedLHS(NumElts, 0); 756 APInt DemandedRHS(NumElts, 0); 757 for (unsigned i = 0; i != NumElts; ++i) { 758 if (!DemandedElts[i]) 759 continue; 760 int M = ShuffleMask[i]; 761 if (M < 0) { 762 // For UNDEF elements, we don't know anything about the common state of 763 // the shuffle result. 764 DemandedLHS.clearAllBits(); 765 DemandedRHS.clearAllBits(); 766 break; 767 } 768 assert(0 <= M && M < (int)(2 * NumElts) && "Shuffle index out of range"); 769 if (M < (int)NumElts) 770 DemandedLHS.setBit(M); 771 else 772 DemandedRHS.setBit(M - NumElts); 773 } 774 775 if (!!DemandedLHS || !!DemandedRHS) { 776 Known.Zero.setAllBits(); 777 Known.One.setAllBits(); 778 if (!!DemandedLHS) { 779 if (SimplifyDemandedBits(Op.getOperand(0), DemandedBits, DemandedLHS, 780 Known2, TLO, Depth + 1)) 781 return true; 782 Known.One &= Known2.One; 783 Known.Zero &= Known2.Zero; 784 } 785 if (!!DemandedRHS) { 786 if (SimplifyDemandedBits(Op.getOperand(1), DemandedBits, DemandedRHS, 787 Known2, TLO, Depth + 1)) 788 return true; 789 Known.One &= Known2.One; 790 Known.Zero &= Known2.Zero; 791 } 792 } 793 break; 794 } 795 case ISD::AND: { 796 SDValue Op0 = Op.getOperand(0); 797 SDValue Op1 = Op.getOperand(1); 798 799 // If the RHS is a constant, check to see if the LHS would be zero without 800 // using the bits from the RHS. Below, we use knowledge about the RHS to 801 // simplify the LHS, here we're using information from the LHS to simplify 802 // the RHS. 803 if (ConstantSDNode *RHSC = isConstOrConstSplat(Op1)) { 804 // Do not increment Depth here; that can cause an infinite loop. 805 KnownBits LHSKnown = TLO.DAG.computeKnownBits(Op0, DemandedElts, Depth); 806 // If the LHS already has zeros where RHSC does, this 'and' is dead. 807 if ((LHSKnown.Zero & DemandedBits) == 808 (~RHSC->getAPIntValue() & DemandedBits)) 809 return TLO.CombineTo(Op, Op0); 810 811 // If any of the set bits in the RHS are known zero on the LHS, shrink 812 // the constant. 813 if (ShrinkDemandedConstant(Op, ~LHSKnown.Zero & DemandedBits, TLO)) 814 return true; 815 816 // Bitwise-not (xor X, -1) is a special case: we don't usually shrink its 817 // constant, but if this 'and' is only clearing bits that were just set by 818 // the xor, then this 'and' can be eliminated by shrinking the mask of 819 // the xor. For example, for a 32-bit X: 820 // and (xor (srl X, 31), -1), 1 --> xor (srl X, 31), 1 821 if (isBitwiseNot(Op0) && Op0.hasOneUse() && 822 LHSKnown.One == ~RHSC->getAPIntValue()) { 823 SDValue Xor = TLO.DAG.getNode(ISD::XOR, dl, VT, Op0.getOperand(0), Op1); 824 return TLO.CombineTo(Op, Xor); 825 } 826 } 827 828 if (SimplifyDemandedBits(Op1, DemandedBits, DemandedElts, Known, TLO, 829 Depth + 1)) 830 return true; 831 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 832 if (SimplifyDemandedBits(Op0, ~Known.Zero & DemandedBits, DemandedElts, 833 Known2, TLO, Depth + 1)) 834 return true; 835 assert(!Known2.hasConflict() && "Bits known to be one AND zero?"); 836 837 // If all of the demanded bits are known one on one side, return the other. 838 // These bits cannot contribute to the result of the 'and'. 839 if (DemandedBits.isSubsetOf(Known2.Zero | Known.One)) 840 return TLO.CombineTo(Op, Op0); 841 if (DemandedBits.isSubsetOf(Known.Zero | Known2.One)) 842 return TLO.CombineTo(Op, Op1); 843 // If all of the demanded bits in the inputs are known zeros, return zero. 844 if (DemandedBits.isSubsetOf(Known.Zero | Known2.Zero)) 845 return TLO.CombineTo(Op, TLO.DAG.getConstant(0, dl, VT)); 846 // If the RHS is a constant, see if we can simplify it. 847 if (ShrinkDemandedConstant(Op, ~Known2.Zero & DemandedBits, TLO)) 848 return true; 849 // If the operation can be done in a smaller type, do so. 850 if (ShrinkDemandedOp(Op, BitWidth, DemandedBits, TLO)) 851 return true; 852 853 // Output known-1 bits are only known if set in both the LHS & RHS. 854 Known.One &= Known2.One; 855 // Output known-0 are known to be clear if zero in either the LHS | RHS. 856 Known.Zero |= Known2.Zero; 857 break; 858 } 859 case ISD::OR: { 860 SDValue Op0 = Op.getOperand(0); 861 SDValue Op1 = Op.getOperand(1); 862 863 if (SimplifyDemandedBits(Op1, DemandedBits, DemandedElts, Known, TLO, 864 Depth + 1)) 865 return true; 866 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 867 if (SimplifyDemandedBits(Op0, ~Known.One & DemandedBits, DemandedElts, 868 Known2, TLO, Depth + 1)) 869 return true; 870 assert(!Known2.hasConflict() && "Bits known to be one AND zero?"); 871 872 // If all of the demanded bits are known zero on one side, return the other. 873 // These bits cannot contribute to the result of the 'or'. 874 if (DemandedBits.isSubsetOf(Known2.One | Known.Zero)) 875 return TLO.CombineTo(Op, Op0); 876 if (DemandedBits.isSubsetOf(Known.One | Known2.Zero)) 877 return TLO.CombineTo(Op, Op1); 878 // If the RHS is a constant, see if we can simplify it. 879 if (ShrinkDemandedConstant(Op, DemandedBits, TLO)) 880 return true; 881 // If the operation can be done in a smaller type, do so. 882 if (ShrinkDemandedOp(Op, BitWidth, DemandedBits, TLO)) 883 return true; 884 885 // Output known-0 bits are only known if clear in both the LHS & RHS. 886 Known.Zero &= Known2.Zero; 887 // Output known-1 are known to be set if set in either the LHS | RHS. 888 Known.One |= Known2.One; 889 break; 890 } 891 case ISD::XOR: { 892 SDValue Op0 = Op.getOperand(0); 893 SDValue Op1 = Op.getOperand(1); 894 895 if (SimplifyDemandedBits(Op1, DemandedBits, DemandedElts, Known, TLO, 896 Depth + 1)) 897 return true; 898 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 899 if (SimplifyDemandedBits(Op0, DemandedBits, DemandedElts, Known2, TLO, 900 Depth + 1)) 901 return true; 902 assert(!Known2.hasConflict() && "Bits known to be one AND zero?"); 903 904 // If all of the demanded bits are known zero on one side, return the other. 905 // These bits cannot contribute to the result of the 'xor'. 906 if (DemandedBits.isSubsetOf(Known.Zero)) 907 return TLO.CombineTo(Op, Op0); 908 if (DemandedBits.isSubsetOf(Known2.Zero)) 909 return TLO.CombineTo(Op, Op1); 910 // If the operation can be done in a smaller type, do so. 911 if (ShrinkDemandedOp(Op, BitWidth, DemandedBits, TLO)) 912 return true; 913 914 // If all of the unknown bits are known to be zero on one side or the other 915 // (but not both) turn this into an *inclusive* or. 916 // e.g. (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0 917 if (DemandedBits.isSubsetOf(Known.Zero | Known2.Zero)) 918 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::OR, dl, VT, Op0, Op1)); 919 920 // Output known-0 bits are known if clear or set in both the LHS & RHS. 921 KnownOut.Zero = (Known.Zero & Known2.Zero) | (Known.One & Known2.One); 922 // Output known-1 are known to be set if set in only one of the LHS, RHS. 923 KnownOut.One = (Known.Zero & Known2.One) | (Known.One & Known2.Zero); 924 925 if (ConstantSDNode *C = isConstOrConstSplat(Op1)) { 926 // If one side is a constant, and all of the known set bits on the other 927 // side are also set in the constant, turn this into an AND, as we know 928 // the bits will be cleared. 929 // e.g. (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2 930 // NB: it is okay if more bits are known than are requested 931 if (C->getAPIntValue() == Known2.One) { 932 SDValue ANDC = 933 TLO.DAG.getConstant(~C->getAPIntValue() & DemandedBits, dl, VT); 934 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::AND, dl, VT, Op0, ANDC)); 935 } 936 937 // If the RHS is a constant, see if we can change it. Don't alter a -1 938 // constant because that's a 'not' op, and that is better for combining 939 // and codegen. 940 if (!C->isAllOnesValue()) { 941 if (DemandedBits.isSubsetOf(C->getAPIntValue())) { 942 // We're flipping all demanded bits. Flip the undemanded bits too. 943 SDValue New = TLO.DAG.getNOT(dl, Op0, VT); 944 return TLO.CombineTo(Op, New); 945 } 946 // If we can't turn this into a 'not', try to shrink the constant. 947 if (ShrinkDemandedConstant(Op, DemandedBits, TLO)) 948 return true; 949 } 950 } 951 952 Known = std::move(KnownOut); 953 break; 954 } 955 case ISD::SELECT: 956 if (SimplifyDemandedBits(Op.getOperand(2), DemandedBits, Known, TLO, 957 Depth + 1)) 958 return true; 959 if (SimplifyDemandedBits(Op.getOperand(1), DemandedBits, Known2, TLO, 960 Depth + 1)) 961 return true; 962 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 963 assert(!Known2.hasConflict() && "Bits known to be one AND zero?"); 964 965 // If the operands are constants, see if we can simplify them. 966 if (ShrinkDemandedConstant(Op, DemandedBits, TLO)) 967 return true; 968 969 // Only known if known in both the LHS and RHS. 970 Known.One &= Known2.One; 971 Known.Zero &= Known2.Zero; 972 break; 973 case ISD::SELECT_CC: 974 if (SimplifyDemandedBits(Op.getOperand(3), DemandedBits, Known, TLO, 975 Depth + 1)) 976 return true; 977 if (SimplifyDemandedBits(Op.getOperand(2), DemandedBits, Known2, TLO, 978 Depth + 1)) 979 return true; 980 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 981 assert(!Known2.hasConflict() && "Bits known to be one AND zero?"); 982 983 // If the operands are constants, see if we can simplify them. 984 if (ShrinkDemandedConstant(Op, DemandedBits, TLO)) 985 return true; 986 987 // Only known if known in both the LHS and RHS. 988 Known.One &= Known2.One; 989 Known.Zero &= Known2.Zero; 990 break; 991 case ISD::SETCC: { 992 SDValue Op0 = Op.getOperand(0); 993 SDValue Op1 = Op.getOperand(1); 994 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); 995 // If (1) we only need the sign-bit, (2) the setcc operands are the same 996 // width as the setcc result, and (3) the result of a setcc conforms to 0 or 997 // -1, we may be able to bypass the setcc. 998 if (DemandedBits.isSignMask() && 999 Op0.getScalarValueSizeInBits() == BitWidth && 1000 getBooleanContents(VT) == 1001 BooleanContent::ZeroOrNegativeOneBooleanContent) { 1002 // If we're testing X < 0, then this compare isn't needed - just use X! 1003 // FIXME: We're limiting to integer types here, but this should also work 1004 // if we don't care about FP signed-zero. The use of SETLT with FP means 1005 // that we don't care about NaNs. 1006 if (CC == ISD::SETLT && Op1.getValueType().isInteger() && 1007 (isNullConstant(Op1) || ISD::isBuildVectorAllZeros(Op1.getNode()))) 1008 return TLO.CombineTo(Op, Op0); 1009 1010 // TODO: Should we check for other forms of sign-bit comparisons? 1011 // Examples: X <= -1, X >= 0 1012 } 1013 if (getBooleanContents(Op0.getValueType()) == 1014 TargetLowering::ZeroOrOneBooleanContent && 1015 BitWidth > 1) 1016 Known.Zero.setBitsFrom(1); 1017 break; 1018 } 1019 case ISD::SHL: { 1020 SDValue Op0 = Op.getOperand(0); 1021 SDValue Op1 = Op.getOperand(1); 1022 1023 if (ConstantSDNode *SA = isConstOrConstSplat(Op1, DemandedElts)) { 1024 // If the shift count is an invalid immediate, don't do anything. 1025 if (SA->getAPIntValue().uge(BitWidth)) 1026 break; 1027 1028 unsigned ShAmt = SA->getZExtValue(); 1029 if (ShAmt == 0) 1030 return TLO.CombineTo(Op, Op0); 1031 1032 // If this is ((X >>u C1) << ShAmt), see if we can simplify this into a 1033 // single shift. We can do this if the bottom bits (which are shifted 1034 // out) are never demanded. 1035 // TODO - support non-uniform vector amounts. 1036 if (Op0.getOpcode() == ISD::SRL) { 1037 if ((DemandedBits & APInt::getLowBitsSet(BitWidth, ShAmt)) == 0) { 1038 if (ConstantSDNode *SA2 = 1039 isConstOrConstSplat(Op0.getOperand(1), DemandedElts)) { 1040 if (SA2->getAPIntValue().ult(BitWidth)) { 1041 unsigned C1 = SA2->getZExtValue(); 1042 unsigned Opc = ISD::SHL; 1043 int Diff = ShAmt - C1; 1044 if (Diff < 0) { 1045 Diff = -Diff; 1046 Opc = ISD::SRL; 1047 } 1048 1049 SDValue NewSA = TLO.DAG.getConstant(Diff, dl, Op1.getValueType()); 1050 return TLO.CombineTo( 1051 Op, TLO.DAG.getNode(Opc, dl, VT, Op0.getOperand(0), NewSA)); 1052 } 1053 } 1054 } 1055 } 1056 1057 if (SimplifyDemandedBits(Op0, DemandedBits.lshr(ShAmt), DemandedElts, 1058 Known, TLO, Depth + 1)) 1059 return true; 1060 1061 // Try shrinking the operation as long as the shift amount will still be 1062 // in range. 1063 if ((ShAmt < DemandedBits.getActiveBits()) && 1064 ShrinkDemandedOp(Op, BitWidth, DemandedBits, TLO)) 1065 return true; 1066 1067 // Convert (shl (anyext x, c)) to (anyext (shl x, c)) if the high bits 1068 // are not demanded. This will likely allow the anyext to be folded away. 1069 if (Op0.getOpcode() == ISD::ANY_EXTEND) { 1070 SDValue InnerOp = Op0.getOperand(0); 1071 EVT InnerVT = InnerOp.getValueType(); 1072 unsigned InnerBits = InnerVT.getScalarSizeInBits(); 1073 if (ShAmt < InnerBits && DemandedBits.getActiveBits() <= InnerBits && 1074 isTypeDesirableForOp(ISD::SHL, InnerVT)) { 1075 EVT ShTy = getShiftAmountTy(InnerVT, DL); 1076 if (!APInt(BitWidth, ShAmt).isIntN(ShTy.getSizeInBits())) 1077 ShTy = InnerVT; 1078 SDValue NarrowShl = 1079 TLO.DAG.getNode(ISD::SHL, dl, InnerVT, InnerOp, 1080 TLO.DAG.getConstant(ShAmt, dl, ShTy)); 1081 return TLO.CombineTo( 1082 Op, TLO.DAG.getNode(ISD::ANY_EXTEND, dl, VT, NarrowShl)); 1083 } 1084 // Repeat the SHL optimization above in cases where an extension 1085 // intervenes: (shl (anyext (shr x, c1)), c2) to 1086 // (shl (anyext x), c2-c1). This requires that the bottom c1 bits 1087 // aren't demanded (as above) and that the shifted upper c1 bits of 1088 // x aren't demanded. 1089 if (Op0.hasOneUse() && InnerOp.getOpcode() == ISD::SRL && 1090 InnerOp.hasOneUse()) { 1091 if (ConstantSDNode *SA2 = 1092 isConstOrConstSplat(InnerOp.getOperand(1))) { 1093 unsigned InnerShAmt = SA2->getLimitedValue(InnerBits); 1094 if (InnerShAmt < ShAmt && InnerShAmt < InnerBits && 1095 DemandedBits.getActiveBits() <= 1096 (InnerBits - InnerShAmt + ShAmt) && 1097 DemandedBits.countTrailingZeros() >= ShAmt) { 1098 SDValue NewSA = TLO.DAG.getConstant(ShAmt - InnerShAmt, dl, 1099 Op1.getValueType()); 1100 SDValue NewExt = TLO.DAG.getNode(ISD::ANY_EXTEND, dl, VT, 1101 InnerOp.getOperand(0)); 1102 return TLO.CombineTo( 1103 Op, TLO.DAG.getNode(ISD::SHL, dl, VT, NewExt, NewSA)); 1104 } 1105 } 1106 } 1107 } 1108 1109 Known.Zero <<= ShAmt; 1110 Known.One <<= ShAmt; 1111 // low bits known zero. 1112 Known.Zero.setLowBits(ShAmt); 1113 } 1114 break; 1115 } 1116 case ISD::SRL: { 1117 SDValue Op0 = Op.getOperand(0); 1118 SDValue Op1 = Op.getOperand(1); 1119 1120 if (ConstantSDNode *SA = isConstOrConstSplat(Op1, DemandedElts)) { 1121 // If the shift count is an invalid immediate, don't do anything. 1122 if (SA->getAPIntValue().uge(BitWidth)) 1123 break; 1124 1125 unsigned ShAmt = SA->getZExtValue(); 1126 if (ShAmt == 0) 1127 return TLO.CombineTo(Op, Op0); 1128 1129 EVT ShiftVT = Op1.getValueType(); 1130 APInt InDemandedMask = (DemandedBits << ShAmt); 1131 1132 // If the shift is exact, then it does demand the low bits (and knows that 1133 // they are zero). 1134 if (Op->getFlags().hasExact()) 1135 InDemandedMask.setLowBits(ShAmt); 1136 1137 // If this is ((X << C1) >>u ShAmt), see if we can simplify this into a 1138 // single shift. We can do this if the top bits (which are shifted out) 1139 // are never demanded. 1140 // TODO - support non-uniform vector amounts. 1141 if (Op0.getOpcode() == ISD::SHL) { 1142 if (ConstantSDNode *SA2 = 1143 isConstOrConstSplat(Op0.getOperand(1), DemandedElts)) { 1144 if ((DemandedBits & APInt::getHighBitsSet(BitWidth, ShAmt)) == 0) { 1145 if (SA2->getAPIntValue().ult(BitWidth)) { 1146 unsigned C1 = SA2->getZExtValue(); 1147 unsigned Opc = ISD::SRL; 1148 int Diff = ShAmt - C1; 1149 if (Diff < 0) { 1150 Diff = -Diff; 1151 Opc = ISD::SHL; 1152 } 1153 1154 SDValue NewSA = TLO.DAG.getConstant(Diff, dl, ShiftVT); 1155 return TLO.CombineTo( 1156 Op, TLO.DAG.getNode(Opc, dl, VT, Op0.getOperand(0), NewSA)); 1157 } 1158 } 1159 } 1160 } 1161 1162 // Compute the new bits that are at the top now. 1163 if (SimplifyDemandedBits(Op0, InDemandedMask, DemandedElts, Known, TLO, 1164 Depth + 1)) 1165 return true; 1166 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 1167 Known.Zero.lshrInPlace(ShAmt); 1168 Known.One.lshrInPlace(ShAmt); 1169 1170 Known.Zero.setHighBits(ShAmt); // High bits known zero. 1171 } 1172 break; 1173 } 1174 case ISD::SRA: { 1175 SDValue Op0 = Op.getOperand(0); 1176 SDValue Op1 = Op.getOperand(1); 1177 1178 // If this is an arithmetic shift right and only the low-bit is set, we can 1179 // always convert this into a logical shr, even if the shift amount is 1180 // variable. The low bit of the shift cannot be an input sign bit unless 1181 // the shift amount is >= the size of the datatype, which is undefined. 1182 if (DemandedBits.isOneValue()) 1183 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SRL, dl, VT, Op0, Op1)); 1184 1185 if (ConstantSDNode *SA = isConstOrConstSplat(Op1, DemandedElts)) { 1186 // If the shift count is an invalid immediate, don't do anything. 1187 if (SA->getAPIntValue().uge(BitWidth)) 1188 break; 1189 1190 unsigned ShAmt = SA->getZExtValue(); 1191 if (ShAmt == 0) 1192 return TLO.CombineTo(Op, Op0); 1193 1194 APInt InDemandedMask = (DemandedBits << ShAmt); 1195 1196 // If the shift is exact, then it does demand the low bits (and knows that 1197 // they are zero). 1198 if (Op->getFlags().hasExact()) 1199 InDemandedMask.setLowBits(ShAmt); 1200 1201 // If any of the demanded bits are produced by the sign extension, we also 1202 // demand the input sign bit. 1203 if (DemandedBits.countLeadingZeros() < ShAmt) 1204 InDemandedMask.setSignBit(); 1205 1206 if (SimplifyDemandedBits(Op0, InDemandedMask, DemandedElts, Known, TLO, 1207 Depth + 1)) 1208 return true; 1209 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 1210 Known.Zero.lshrInPlace(ShAmt); 1211 Known.One.lshrInPlace(ShAmt); 1212 1213 // If the input sign bit is known to be zero, or if none of the top bits 1214 // are demanded, turn this into an unsigned shift right. 1215 if (Known.Zero[BitWidth - ShAmt - 1] || 1216 DemandedBits.countLeadingZeros() >= ShAmt) { 1217 SDNodeFlags Flags; 1218 Flags.setExact(Op->getFlags().hasExact()); 1219 return TLO.CombineTo( 1220 Op, TLO.DAG.getNode(ISD::SRL, dl, VT, Op0, Op1, Flags)); 1221 } 1222 1223 int Log2 = DemandedBits.exactLogBase2(); 1224 if (Log2 >= 0) { 1225 // The bit must come from the sign. 1226 SDValue NewSA = 1227 TLO.DAG.getConstant(BitWidth - 1 - Log2, dl, Op1.getValueType()); 1228 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SRL, dl, VT, Op0, NewSA)); 1229 } 1230 1231 if (Known.One[BitWidth - ShAmt - 1]) 1232 // New bits are known one. 1233 Known.One.setHighBits(ShAmt); 1234 } 1235 break; 1236 } 1237 case ISD::FSHL: 1238 case ISD::FSHR: { 1239 SDValue Op0 = Op.getOperand(0); 1240 SDValue Op1 = Op.getOperand(1); 1241 SDValue Op2 = Op.getOperand(2); 1242 bool IsFSHL = (Op.getOpcode() == ISD::FSHL); 1243 1244 if (ConstantSDNode *SA = isConstOrConstSplat(Op2, DemandedElts)) { 1245 unsigned Amt = SA->getAPIntValue().urem(BitWidth); 1246 1247 // For fshl, 0-shift returns the 1st arg. 1248 // For fshr, 0-shift returns the 2nd arg. 1249 if (Amt == 0) { 1250 if (SimplifyDemandedBits(IsFSHL ? Op0 : Op1, DemandedBits, DemandedElts, 1251 Known, TLO, Depth + 1)) 1252 return true; 1253 break; 1254 } 1255 1256 // fshl: (Op0 << Amt) | (Op1 >> (BW - Amt)) 1257 // fshr: (Op0 << (BW - Amt)) | (Op1 >> Amt) 1258 APInt Demanded0 = DemandedBits.lshr(IsFSHL ? Amt : (BitWidth - Amt)); 1259 APInt Demanded1 = DemandedBits << (IsFSHL ? (BitWidth - Amt) : Amt); 1260 if (SimplifyDemandedBits(Op0, Demanded0, DemandedElts, Known2, TLO, 1261 Depth + 1)) 1262 return true; 1263 if (SimplifyDemandedBits(Op1, Demanded1, DemandedElts, Known, TLO, 1264 Depth + 1)) 1265 return true; 1266 1267 Known2.One <<= (IsFSHL ? Amt : (BitWidth - Amt)); 1268 Known2.Zero <<= (IsFSHL ? Amt : (BitWidth - Amt)); 1269 Known.One.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt); 1270 Known.Zero.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt); 1271 Known.One |= Known2.One; 1272 Known.Zero |= Known2.Zero; 1273 } 1274 break; 1275 } 1276 case ISD::BITREVERSE: { 1277 SDValue Src = Op.getOperand(0); 1278 APInt DemandedSrcBits = DemandedBits.reverseBits(); 1279 if (SimplifyDemandedBits(Src, DemandedSrcBits, DemandedElts, Known2, TLO, 1280 Depth + 1)) 1281 return true; 1282 Known.One = Known2.One.reverseBits(); 1283 Known.Zero = Known2.Zero.reverseBits(); 1284 break; 1285 } 1286 case ISD::SIGN_EXTEND_INREG: { 1287 SDValue Op0 = Op.getOperand(0); 1288 EVT ExVT = cast<VTSDNode>(Op.getOperand(1))->getVT(); 1289 unsigned ExVTBits = ExVT.getScalarSizeInBits(); 1290 1291 // If we only care about the highest bit, don't bother shifting right. 1292 if (DemandedBits.isSignMask()) { 1293 unsigned NumSignBits = TLO.DAG.ComputeNumSignBits(Op0); 1294 bool AlreadySignExtended = NumSignBits >= BitWidth - ExVTBits + 1; 1295 // However if the input is already sign extended we expect the sign 1296 // extension to be dropped altogether later and do not simplify. 1297 if (!AlreadySignExtended) { 1298 // Compute the correct shift amount type, which must be getShiftAmountTy 1299 // for scalar types after legalization. 1300 EVT ShiftAmtTy = VT; 1301 if (TLO.LegalTypes() && !ShiftAmtTy.isVector()) 1302 ShiftAmtTy = getShiftAmountTy(ShiftAmtTy, DL); 1303 1304 SDValue ShiftAmt = 1305 TLO.DAG.getConstant(BitWidth - ExVTBits, dl, ShiftAmtTy); 1306 return TLO.CombineTo(Op, 1307 TLO.DAG.getNode(ISD::SHL, dl, VT, Op0, ShiftAmt)); 1308 } 1309 } 1310 1311 // If none of the extended bits are demanded, eliminate the sextinreg. 1312 if (DemandedBits.getActiveBits() <= ExVTBits) 1313 return TLO.CombineTo(Op, Op0); 1314 1315 APInt InputDemandedBits = DemandedBits.getLoBits(ExVTBits); 1316 1317 // Since the sign extended bits are demanded, we know that the sign 1318 // bit is demanded. 1319 InputDemandedBits.setBit(ExVTBits - 1); 1320 1321 if (SimplifyDemandedBits(Op0, InputDemandedBits, Known, TLO, Depth + 1)) 1322 return true; 1323 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 1324 1325 // If the sign bit of the input is known set or clear, then we know the 1326 // top bits of the result. 1327 1328 // If the input sign bit is known zero, convert this into a zero extension. 1329 if (Known.Zero[ExVTBits - 1]) 1330 return TLO.CombineTo( 1331 Op, TLO.DAG.getZeroExtendInReg(Op0, dl, ExVT.getScalarType())); 1332 1333 APInt Mask = APInt::getLowBitsSet(BitWidth, ExVTBits); 1334 if (Known.One[ExVTBits - 1]) { // Input sign bit known set 1335 Known.One.setBitsFrom(ExVTBits); 1336 Known.Zero &= Mask; 1337 } else { // Input sign bit unknown 1338 Known.Zero &= Mask; 1339 Known.One &= Mask; 1340 } 1341 break; 1342 } 1343 case ISD::BUILD_PAIR: { 1344 EVT HalfVT = Op.getOperand(0).getValueType(); 1345 unsigned HalfBitWidth = HalfVT.getScalarSizeInBits(); 1346 1347 APInt MaskLo = DemandedBits.getLoBits(HalfBitWidth).trunc(HalfBitWidth); 1348 APInt MaskHi = DemandedBits.getHiBits(HalfBitWidth).trunc(HalfBitWidth); 1349 1350 KnownBits KnownLo, KnownHi; 1351 1352 if (SimplifyDemandedBits(Op.getOperand(0), MaskLo, KnownLo, TLO, Depth + 1)) 1353 return true; 1354 1355 if (SimplifyDemandedBits(Op.getOperand(1), MaskHi, KnownHi, TLO, Depth + 1)) 1356 return true; 1357 1358 Known.Zero = KnownLo.Zero.zext(BitWidth) | 1359 KnownHi.Zero.zext(BitWidth).shl(HalfBitWidth); 1360 1361 Known.One = KnownLo.One.zext(BitWidth) | 1362 KnownHi.One.zext(BitWidth).shl(HalfBitWidth); 1363 break; 1364 } 1365 case ISD::ZERO_EXTEND: 1366 case ISD::ZERO_EXTEND_VECTOR_INREG: { 1367 SDValue Src = Op.getOperand(0); 1368 EVT SrcVT = Src.getValueType(); 1369 unsigned InBits = SrcVT.getScalarSizeInBits(); 1370 unsigned InElts = SrcVT.isVector() ? SrcVT.getVectorNumElements() : 1; 1371 bool IsVecInReg = Op.getOpcode() == ISD::ZERO_EXTEND_VECTOR_INREG; 1372 1373 // If none of the top bits are demanded, convert this into an any_extend. 1374 if (DemandedBits.getActiveBits() <= InBits) { 1375 // If we only need the non-extended bits of the bottom element 1376 // then we can just bitcast to the result. 1377 if (IsVecInReg && DemandedElts == 1 && 1378 VT.getSizeInBits() == SrcVT.getSizeInBits() && 1379 TLO.DAG.getDataLayout().isLittleEndian()) 1380 return TLO.CombineTo(Op, TLO.DAG.getBitcast(VT, Src)); 1381 1382 unsigned Opc = 1383 IsVecInReg ? ISD::ANY_EXTEND_VECTOR_INREG : ISD::ANY_EXTEND; 1384 if (!TLO.LegalOperations() || isOperationLegal(Opc, VT)) 1385 return TLO.CombineTo(Op, TLO.DAG.getNode(Opc, dl, VT, Src)); 1386 } 1387 1388 APInt InDemandedBits = DemandedBits.trunc(InBits); 1389 APInt InDemandedElts = DemandedElts.zextOrSelf(InElts); 1390 if (SimplifyDemandedBits(Src, InDemandedBits, InDemandedElts, Known, TLO, 1391 Depth + 1)) 1392 return true; 1393 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 1394 assert(Known.getBitWidth() == InBits && "Src width has changed?"); 1395 Known = Known.zext(BitWidth, true /* ExtendedBitsAreKnownZero */); 1396 break; 1397 } 1398 case ISD::SIGN_EXTEND: 1399 case ISD::SIGN_EXTEND_VECTOR_INREG: { 1400 SDValue Src = Op.getOperand(0); 1401 EVT SrcVT = Src.getValueType(); 1402 unsigned InBits = SrcVT.getScalarSizeInBits(); 1403 unsigned InElts = SrcVT.isVector() ? SrcVT.getVectorNumElements() : 1; 1404 bool IsVecInReg = Op.getOpcode() == ISD::SIGN_EXTEND_VECTOR_INREG; 1405 1406 // If none of the top bits are demanded, convert this into an any_extend. 1407 if (DemandedBits.getActiveBits() <= InBits) { 1408 // If we only need the non-extended bits of the bottom element 1409 // then we can just bitcast to the result. 1410 if (IsVecInReg && DemandedElts == 1 && 1411 VT.getSizeInBits() == SrcVT.getSizeInBits() && 1412 TLO.DAG.getDataLayout().isLittleEndian()) 1413 return TLO.CombineTo(Op, TLO.DAG.getBitcast(VT, Src)); 1414 1415 unsigned Opc = 1416 IsVecInReg ? ISD::ANY_EXTEND_VECTOR_INREG : ISD::ANY_EXTEND; 1417 if (!TLO.LegalOperations() || isOperationLegal(Opc, VT)) 1418 return TLO.CombineTo(Op, TLO.DAG.getNode(Opc, dl, VT, Src)); 1419 } 1420 1421 APInt InDemandedBits = DemandedBits.trunc(InBits); 1422 APInt InDemandedElts = DemandedElts.zextOrSelf(InElts); 1423 1424 // Since some of the sign extended bits are demanded, we know that the sign 1425 // bit is demanded. 1426 InDemandedBits.setBit(InBits - 1); 1427 1428 if (SimplifyDemandedBits(Src, InDemandedBits, InDemandedElts, Known, TLO, 1429 Depth + 1)) 1430 return true; 1431 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 1432 assert(Known.getBitWidth() == InBits && "Src width has changed?"); 1433 1434 // If the sign bit is known one, the top bits match. 1435 Known = Known.sext(BitWidth); 1436 1437 // If the sign bit is known zero, convert this to a zero extend. 1438 if (Known.isNonNegative()) { 1439 unsigned Opc = 1440 IsVecInReg ? ISD::ZERO_EXTEND_VECTOR_INREG : ISD::ZERO_EXTEND; 1441 if (!TLO.LegalOperations() || isOperationLegal(Opc, VT)) 1442 return TLO.CombineTo(Op, TLO.DAG.getNode(Opc, dl, VT, Src)); 1443 } 1444 break; 1445 } 1446 case ISD::ANY_EXTEND: 1447 case ISD::ANY_EXTEND_VECTOR_INREG: { 1448 SDValue Src = Op.getOperand(0); 1449 EVT SrcVT = Src.getValueType(); 1450 unsigned InBits = SrcVT.getScalarSizeInBits(); 1451 unsigned InElts = SrcVT.isVector() ? SrcVT.getVectorNumElements() : 1; 1452 bool IsVecInReg = Op.getOpcode() == ISD::ANY_EXTEND_VECTOR_INREG; 1453 1454 // If we only need the bottom element then we can just bitcast. 1455 // TODO: Handle ANY_EXTEND? 1456 if (IsVecInReg && DemandedElts == 1 && 1457 VT.getSizeInBits() == SrcVT.getSizeInBits() && 1458 TLO.DAG.getDataLayout().isLittleEndian()) 1459 return TLO.CombineTo(Op, TLO.DAG.getBitcast(VT, Src)); 1460 1461 APInt InDemandedBits = DemandedBits.trunc(InBits); 1462 APInt InDemandedElts = DemandedElts.zextOrSelf(InElts); 1463 if (SimplifyDemandedBits(Src, InDemandedBits, InDemandedElts, Known, TLO, 1464 Depth + 1)) 1465 return true; 1466 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 1467 assert(Known.getBitWidth() == InBits && "Src width has changed?"); 1468 Known = Known.zext(BitWidth, false /* => any extend */); 1469 break; 1470 } 1471 case ISD::TRUNCATE: { 1472 SDValue Src = Op.getOperand(0); 1473 1474 // Simplify the input, using demanded bit information, and compute the known 1475 // zero/one bits live out. 1476 unsigned OperandBitWidth = Src.getScalarValueSizeInBits(); 1477 APInt TruncMask = DemandedBits.zext(OperandBitWidth); 1478 if (SimplifyDemandedBits(Src, TruncMask, Known, TLO, Depth + 1)) 1479 return true; 1480 Known = Known.trunc(BitWidth); 1481 1482 // If the input is only used by this truncate, see if we can shrink it based 1483 // on the known demanded bits. 1484 if (Src.getNode()->hasOneUse()) { 1485 switch (Src.getOpcode()) { 1486 default: 1487 break; 1488 case ISD::SRL: 1489 // Shrink SRL by a constant if none of the high bits shifted in are 1490 // demanded. 1491 if (TLO.LegalTypes() && !isTypeDesirableForOp(ISD::SRL, VT)) 1492 // Do not turn (vt1 truncate (vt2 srl)) into (vt1 srl) if vt1 is 1493 // undesirable. 1494 break; 1495 1496 auto *ShAmt = dyn_cast<ConstantSDNode>(Src.getOperand(1)); 1497 if (!ShAmt || ShAmt->getAPIntValue().uge(BitWidth)) 1498 break; 1499 1500 SDValue Shift = Src.getOperand(1); 1501 uint64_t ShVal = ShAmt->getZExtValue(); 1502 1503 if (TLO.LegalTypes()) 1504 Shift = TLO.DAG.getConstant(ShVal, dl, getShiftAmountTy(VT, DL)); 1505 1506 APInt HighBits = 1507 APInt::getHighBitsSet(OperandBitWidth, OperandBitWidth - BitWidth); 1508 HighBits.lshrInPlace(ShVal); 1509 HighBits = HighBits.trunc(BitWidth); 1510 1511 if (!(HighBits & DemandedBits)) { 1512 // None of the shifted in bits are needed. Add a truncate of the 1513 // shift input, then shift it. 1514 SDValue NewTrunc = 1515 TLO.DAG.getNode(ISD::TRUNCATE, dl, VT, Src.getOperand(0)); 1516 return TLO.CombineTo( 1517 Op, TLO.DAG.getNode(ISD::SRL, dl, VT, NewTrunc, Shift)); 1518 } 1519 break; 1520 } 1521 } 1522 1523 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 1524 break; 1525 } 1526 case ISD::AssertZext: { 1527 // AssertZext demands all of the high bits, plus any of the low bits 1528 // demanded by its users. 1529 EVT ZVT = cast<VTSDNode>(Op.getOperand(1))->getVT(); 1530 APInt InMask = APInt::getLowBitsSet(BitWidth, ZVT.getSizeInBits()); 1531 if (SimplifyDemandedBits(Op.getOperand(0), ~InMask | DemandedBits, Known, 1532 TLO, Depth + 1)) 1533 return true; 1534 assert(!Known.hasConflict() && "Bits known to be one AND zero?"); 1535 1536 Known.Zero |= ~InMask; 1537 break; 1538 } 1539 case ISD::EXTRACT_VECTOR_ELT: { 1540 SDValue Src = Op.getOperand(0); 1541 SDValue Idx = Op.getOperand(1); 1542 unsigned NumSrcElts = Src.getValueType().getVectorNumElements(); 1543 unsigned EltBitWidth = Src.getScalarValueSizeInBits(); 1544 1545 // Demand the bits from every vector element without a constant index. 1546 APInt DemandedSrcElts = APInt::getAllOnesValue(NumSrcElts); 1547 if (auto *CIdx = dyn_cast<ConstantSDNode>(Idx)) 1548 if (CIdx->getAPIntValue().ult(NumSrcElts)) 1549 DemandedSrcElts = APInt::getOneBitSet(NumSrcElts, CIdx->getZExtValue()); 1550 1551 // If BitWidth > EltBitWidth the value is anyext:ed. So we do not know 1552 // anything about the extended bits. 1553 APInt DemandedSrcBits = DemandedBits; 1554 if (BitWidth > EltBitWidth) 1555 DemandedSrcBits = DemandedSrcBits.trunc(EltBitWidth); 1556 1557 if (SimplifyDemandedBits(Src, DemandedSrcBits, DemandedSrcElts, Known2, TLO, 1558 Depth + 1)) 1559 return true; 1560 1561 Known = Known2; 1562 if (BitWidth > EltBitWidth) 1563 Known = Known.zext(BitWidth, false /* => any extend */); 1564 break; 1565 } 1566 case ISD::BITCAST: { 1567 SDValue Src = Op.getOperand(0); 1568 EVT SrcVT = Src.getValueType(); 1569 unsigned NumSrcEltBits = SrcVT.getScalarSizeInBits(); 1570 1571 // If this is an FP->Int bitcast and if the sign bit is the only 1572 // thing demanded, turn this into a FGETSIGN. 1573 if (!TLO.LegalOperations() && !VT.isVector() && !SrcVT.isVector() && 1574 DemandedBits == APInt::getSignMask(Op.getValueSizeInBits()) && 1575 SrcVT.isFloatingPoint()) { 1576 bool OpVTLegal = isOperationLegalOrCustom(ISD::FGETSIGN, VT); 1577 bool i32Legal = isOperationLegalOrCustom(ISD::FGETSIGN, MVT::i32); 1578 if ((OpVTLegal || i32Legal) && VT.isSimple() && SrcVT != MVT::f16 && 1579 SrcVT != MVT::f128) { 1580 // Cannot eliminate/lower SHL for f128 yet. 1581 EVT Ty = OpVTLegal ? VT : MVT::i32; 1582 // Make a FGETSIGN + SHL to move the sign bit into the appropriate 1583 // place. We expect the SHL to be eliminated by other optimizations. 1584 SDValue Sign = TLO.DAG.getNode(ISD::FGETSIGN, dl, Ty, Src); 1585 unsigned OpVTSizeInBits = Op.getValueSizeInBits(); 1586 if (!OpVTLegal && OpVTSizeInBits > 32) 1587 Sign = TLO.DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Sign); 1588 unsigned ShVal = Op.getValueSizeInBits() - 1; 1589 SDValue ShAmt = TLO.DAG.getConstant(ShVal, dl, VT); 1590 return TLO.CombineTo(Op, 1591 TLO.DAG.getNode(ISD::SHL, dl, VT, Sign, ShAmt)); 1592 } 1593 } 1594 1595 // Bitcast from a vector using SimplifyDemanded Bits/VectorElts. 1596 // Demand the elt/bit if any of the original elts/bits are demanded. 1597 // TODO - bigendian once we have test coverage. 1598 // TODO - bool vectors once SimplifyDemandedVectorElts has SETCC support. 1599 if (SrcVT.isVector() && NumSrcEltBits > 1 && 1600 (BitWidth % NumSrcEltBits) == 0 && 1601 TLO.DAG.getDataLayout().isLittleEndian()) { 1602 unsigned Scale = BitWidth / NumSrcEltBits; 1603 unsigned NumSrcElts = SrcVT.getVectorNumElements(); 1604 APInt DemandedSrcBits = APInt::getNullValue(NumSrcEltBits); 1605 APInt DemandedSrcElts = APInt::getNullValue(NumSrcElts); 1606 for (unsigned i = 0; i != Scale; ++i) { 1607 unsigned Offset = i * NumSrcEltBits; 1608 APInt Sub = DemandedBits.extractBits(NumSrcEltBits, Offset); 1609 if (!Sub.isNullValue()) { 1610 DemandedSrcBits |= Sub; 1611 for (unsigned j = 0; j != NumElts; ++j) 1612 if (DemandedElts[j]) 1613 DemandedSrcElts.setBit((j * Scale) + i); 1614 } 1615 } 1616 1617 APInt KnownSrcUndef, KnownSrcZero; 1618 if (SimplifyDemandedVectorElts(Src, DemandedSrcElts, KnownSrcUndef, 1619 KnownSrcZero, TLO, Depth + 1)) 1620 return true; 1621 1622 KnownBits KnownSrcBits; 1623 if (SimplifyDemandedBits(Src, DemandedSrcBits, DemandedSrcElts, 1624 KnownSrcBits, TLO, Depth + 1)) 1625 return true; 1626 } else if ((NumSrcEltBits % BitWidth) == 0 && 1627 TLO.DAG.getDataLayout().isLittleEndian()) { 1628 unsigned Scale = NumSrcEltBits / BitWidth; 1629 unsigned NumSrcElts = SrcVT.isVector() ? SrcVT.getVectorNumElements() : 1; 1630 APInt DemandedSrcBits = APInt::getNullValue(NumSrcEltBits); 1631 APInt DemandedSrcElts = APInt::getNullValue(NumSrcElts); 1632 for (unsigned i = 0; i != NumElts; ++i) 1633 if (DemandedElts[i]) { 1634 unsigned Offset = (i % Scale) * BitWidth; 1635 DemandedSrcBits.insertBits(DemandedBits, Offset); 1636 DemandedSrcElts.setBit(i / Scale); 1637 } 1638 1639 if (SrcVT.isVector()) { 1640 APInt KnownSrcUndef, KnownSrcZero; 1641 if (SimplifyDemandedVectorElts(Src, DemandedSrcElts, KnownSrcUndef, 1642 KnownSrcZero, TLO, Depth + 1)) 1643 return true; 1644 } 1645 1646 KnownBits KnownSrcBits; 1647 if (SimplifyDemandedBits(Src, DemandedSrcBits, DemandedSrcElts, 1648 KnownSrcBits, TLO, Depth + 1)) 1649 return true; 1650 } 1651 1652 // If this is a bitcast, let computeKnownBits handle it. Only do this on a 1653 // recursive call where Known may be useful to the caller. 1654 if (Depth > 0) { 1655 Known = TLO.DAG.computeKnownBits(Op, DemandedElts, Depth); 1656 return false; 1657 } 1658 break; 1659 } 1660 case ISD::ADD: 1661 case ISD::MUL: 1662 case ISD::SUB: { 1663 // Add, Sub, and Mul don't demand any bits in positions beyond that 1664 // of the highest bit demanded of them. 1665 SDValue Op0 = Op.getOperand(0), Op1 = Op.getOperand(1); 1666 unsigned DemandedBitsLZ = DemandedBits.countLeadingZeros(); 1667 APInt LoMask = APInt::getLowBitsSet(BitWidth, BitWidth - DemandedBitsLZ); 1668 if (SimplifyDemandedBits(Op0, LoMask, DemandedElts, Known2, TLO, 1669 Depth + 1) || 1670 SimplifyDemandedBits(Op1, LoMask, DemandedElts, Known2, TLO, 1671 Depth + 1) || 1672 // See if the operation should be performed at a smaller bit width. 1673 ShrinkDemandedOp(Op, BitWidth, DemandedBits, TLO)) { 1674 SDNodeFlags Flags = Op.getNode()->getFlags(); 1675 if (Flags.hasNoSignedWrap() || Flags.hasNoUnsignedWrap()) { 1676 // Disable the nsw and nuw flags. We can no longer guarantee that we 1677 // won't wrap after simplification. 1678 Flags.setNoSignedWrap(false); 1679 Flags.setNoUnsignedWrap(false); 1680 SDValue NewOp = 1681 TLO.DAG.getNode(Op.getOpcode(), dl, VT, Op0, Op1, Flags); 1682 return TLO.CombineTo(Op, NewOp); 1683 } 1684 return true; 1685 } 1686 1687 // If we have a constant operand, we may be able to turn it into -1 if we 1688 // do not demand the high bits. This can make the constant smaller to 1689 // encode, allow more general folding, or match specialized instruction 1690 // patterns (eg, 'blsr' on x86). Don't bother changing 1 to -1 because that 1691 // is probably not useful (and could be detrimental). 1692 ConstantSDNode *C = isConstOrConstSplat(Op1); 1693 APInt HighMask = APInt::getHighBitsSet(BitWidth, DemandedBitsLZ); 1694 if (C && !C->isAllOnesValue() && !C->isOne() && 1695 (C->getAPIntValue() | HighMask).isAllOnesValue()) { 1696 SDValue Neg1 = TLO.DAG.getAllOnesConstant(dl, VT); 1697 // We can't guarantee that the new math op doesn't wrap, so explicitly 1698 // clear those flags to prevent folding with a potential existing node 1699 // that has those flags set. 1700 SDNodeFlags Flags; 1701 Flags.setNoSignedWrap(false); 1702 Flags.setNoUnsignedWrap(false); 1703 SDValue NewOp = TLO.DAG.getNode(Op.getOpcode(), dl, VT, Op0, Neg1, Flags); 1704 return TLO.CombineTo(Op, NewOp); 1705 } 1706 1707 LLVM_FALLTHROUGH; 1708 } 1709 default: 1710 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) { 1711 if (SimplifyDemandedBitsForTargetNode(Op, DemandedBits, DemandedElts, 1712 Known, TLO, Depth)) 1713 return true; 1714 break; 1715 } 1716 1717 // Just use computeKnownBits to compute output bits. 1718 Known = TLO.DAG.computeKnownBits(Op, DemandedElts, Depth); 1719 break; 1720 } 1721 1722 // If we know the value of all of the demanded bits, return this as a 1723 // constant. 1724 if (DemandedBits.isSubsetOf(Known.Zero | Known.One)) { 1725 // Avoid folding to a constant if any OpaqueConstant is involved. 1726 const SDNode *N = Op.getNode(); 1727 for (SDNodeIterator I = SDNodeIterator::begin(N), 1728 E = SDNodeIterator::end(N); 1729 I != E; ++I) { 1730 SDNode *Op = *I; 1731 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) 1732 if (C->isOpaque()) 1733 return false; 1734 } 1735 // TODO: Handle float bits as well. 1736 if (VT.isInteger()) 1737 return TLO.CombineTo(Op, TLO.DAG.getConstant(Known.One, dl, VT)); 1738 } 1739 1740 return false; 1741 } 1742 1743 bool TargetLowering::SimplifyDemandedVectorElts(SDValue Op, 1744 const APInt &DemandedElts, 1745 APInt &KnownUndef, 1746 APInt &KnownZero, 1747 DAGCombinerInfo &DCI) const { 1748 SelectionDAG &DAG = DCI.DAG; 1749 TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(), 1750 !DCI.isBeforeLegalizeOps()); 1751 1752 bool Simplified = 1753 SimplifyDemandedVectorElts(Op, DemandedElts, KnownUndef, KnownZero, TLO); 1754 if (Simplified) { 1755 DCI.AddToWorklist(Op.getNode()); 1756 DCI.CommitTargetLoweringOpt(TLO); 1757 } 1758 1759 return Simplified; 1760 } 1761 1762 /// Given a vector binary operation and known undefined elements for each input 1763 /// operand, compute whether each element of the output is undefined. 1764 static APInt getKnownUndefForVectorBinop(SDValue BO, SelectionDAG &DAG, 1765 const APInt &UndefOp0, 1766 const APInt &UndefOp1) { 1767 EVT VT = BO.getValueType(); 1768 assert(DAG.getTargetLoweringInfo().isBinOp(BO.getOpcode()) && VT.isVector() && 1769 "Vector binop only"); 1770 1771 EVT EltVT = VT.getVectorElementType(); 1772 unsigned NumElts = VT.getVectorNumElements(); 1773 assert(UndefOp0.getBitWidth() == NumElts && 1774 UndefOp1.getBitWidth() == NumElts && "Bad type for undef analysis"); 1775 1776 auto getUndefOrConstantElt = [&](SDValue V, unsigned Index, 1777 const APInt &UndefVals) { 1778 if (UndefVals[Index]) 1779 return DAG.getUNDEF(EltVT); 1780 1781 if (auto *BV = dyn_cast<BuildVectorSDNode>(V)) { 1782 // Try hard to make sure that the getNode() call is not creating temporary 1783 // nodes. Ignore opaque integers because they do not constant fold. 1784 SDValue Elt = BV->getOperand(Index); 1785 auto *C = dyn_cast<ConstantSDNode>(Elt); 1786 if (isa<ConstantFPSDNode>(Elt) || Elt.isUndef() || (C && !C->isOpaque())) 1787 return Elt; 1788 } 1789 1790 return SDValue(); 1791 }; 1792 1793 APInt KnownUndef = APInt::getNullValue(NumElts); 1794 for (unsigned i = 0; i != NumElts; ++i) { 1795 // If both inputs for this element are either constant or undef and match 1796 // the element type, compute the constant/undef result for this element of 1797 // the vector. 1798 // TODO: Ideally we would use FoldConstantArithmetic() here, but that does 1799 // not handle FP constants. The code within getNode() should be refactored 1800 // to avoid the danger of creating a bogus temporary node here. 1801 SDValue C0 = getUndefOrConstantElt(BO.getOperand(0), i, UndefOp0); 1802 SDValue C1 = getUndefOrConstantElt(BO.getOperand(1), i, UndefOp1); 1803 if (C0 && C1 && C0.getValueType() == EltVT && C1.getValueType() == EltVT) 1804 if (DAG.getNode(BO.getOpcode(), SDLoc(BO), EltVT, C0, C1).isUndef()) 1805 KnownUndef.setBit(i); 1806 } 1807 return KnownUndef; 1808 } 1809 1810 bool TargetLowering::SimplifyDemandedVectorElts( 1811 SDValue Op, const APInt &OriginalDemandedElts, APInt &KnownUndef, 1812 APInt &KnownZero, TargetLoweringOpt &TLO, unsigned Depth, 1813 bool AssumeSingleUse) const { 1814 EVT VT = Op.getValueType(); 1815 APInt DemandedElts = OriginalDemandedElts; 1816 unsigned NumElts = DemandedElts.getBitWidth(); 1817 assert(VT.isVector() && "Expected vector op"); 1818 assert(VT.getVectorNumElements() == NumElts && 1819 "Mask size mismatches value type element count!"); 1820 1821 KnownUndef = KnownZero = APInt::getNullValue(NumElts); 1822 1823 // Undef operand. 1824 if (Op.isUndef()) { 1825 KnownUndef.setAllBits(); 1826 return false; 1827 } 1828 1829 // If Op has other users, assume that all elements are needed. 1830 if (!Op.getNode()->hasOneUse() && !AssumeSingleUse) 1831 DemandedElts.setAllBits(); 1832 1833 // Not demanding any elements from Op. 1834 if (DemandedElts == 0) { 1835 KnownUndef.setAllBits(); 1836 return TLO.CombineTo(Op, TLO.DAG.getUNDEF(VT)); 1837 } 1838 1839 // Limit search depth. 1840 if (Depth >= 6) 1841 return false; 1842 1843 SDLoc DL(Op); 1844 unsigned EltSizeInBits = VT.getScalarSizeInBits(); 1845 1846 switch (Op.getOpcode()) { 1847 case ISD::SCALAR_TO_VECTOR: { 1848 if (!DemandedElts[0]) { 1849 KnownUndef.setAllBits(); 1850 return TLO.CombineTo(Op, TLO.DAG.getUNDEF(VT)); 1851 } 1852 KnownUndef.setHighBits(NumElts - 1); 1853 break; 1854 } 1855 case ISD::BITCAST: { 1856 SDValue Src = Op.getOperand(0); 1857 EVT SrcVT = Src.getValueType(); 1858 1859 // We only handle vectors here. 1860 // TODO - investigate calling SimplifyDemandedBits/ComputeKnownBits? 1861 if (!SrcVT.isVector()) 1862 break; 1863 1864 // Fast handling of 'identity' bitcasts. 1865 unsigned NumSrcElts = SrcVT.getVectorNumElements(); 1866 if (NumSrcElts == NumElts) 1867 return SimplifyDemandedVectorElts(Src, DemandedElts, KnownUndef, 1868 KnownZero, TLO, Depth + 1); 1869 1870 APInt SrcZero, SrcUndef; 1871 APInt SrcDemandedElts = APInt::getNullValue(NumSrcElts); 1872 1873 // Bitcast from 'large element' src vector to 'small element' vector, we 1874 // must demand a source element if any DemandedElt maps to it. 1875 if ((NumElts % NumSrcElts) == 0) { 1876 unsigned Scale = NumElts / NumSrcElts; 1877 for (unsigned i = 0; i != NumElts; ++i) 1878 if (DemandedElts[i]) 1879 SrcDemandedElts.setBit(i / Scale); 1880 1881 if (SimplifyDemandedVectorElts(Src, SrcDemandedElts, SrcUndef, SrcZero, 1882 TLO, Depth + 1)) 1883 return true; 1884 1885 // Try calling SimplifyDemandedBits, converting demanded elts to the bits 1886 // of the large element. 1887 // TODO - bigendian once we have test coverage. 1888 if (TLO.DAG.getDataLayout().isLittleEndian()) { 1889 unsigned SrcEltSizeInBits = SrcVT.getScalarSizeInBits(); 1890 APInt SrcDemandedBits = APInt::getNullValue(SrcEltSizeInBits); 1891 for (unsigned i = 0; i != NumElts; ++i) 1892 if (DemandedElts[i]) { 1893 unsigned Ofs = (i % Scale) * EltSizeInBits; 1894 SrcDemandedBits.setBits(Ofs, Ofs + EltSizeInBits); 1895 } 1896 1897 KnownBits Known; 1898 if (SimplifyDemandedBits(Src, SrcDemandedBits, Known, TLO, Depth + 1)) 1899 return true; 1900 } 1901 1902 // If the src element is zero/undef then all the output elements will be - 1903 // only demanded elements are guaranteed to be correct. 1904 for (unsigned i = 0; i != NumSrcElts; ++i) { 1905 if (SrcDemandedElts[i]) { 1906 if (SrcZero[i]) 1907 KnownZero.setBits(i * Scale, (i + 1) * Scale); 1908 if (SrcUndef[i]) 1909 KnownUndef.setBits(i * Scale, (i + 1) * Scale); 1910 } 1911 } 1912 } 1913 1914 // Bitcast from 'small element' src vector to 'large element' vector, we 1915 // demand all smaller source elements covered by the larger demanded element 1916 // of this vector. 1917 if ((NumSrcElts % NumElts) == 0) { 1918 unsigned Scale = NumSrcElts / NumElts; 1919 for (unsigned i = 0; i != NumElts; ++i) 1920 if (DemandedElts[i]) 1921 SrcDemandedElts.setBits(i * Scale, (i + 1) * Scale); 1922 1923 if (SimplifyDemandedVectorElts(Src, SrcDemandedElts, SrcUndef, SrcZero, 1924 TLO, Depth + 1)) 1925 return true; 1926 1927 // If all the src elements covering an output element are zero/undef, then 1928 // the output element will be as well, assuming it was demanded. 1929 for (unsigned i = 0; i != NumElts; ++i) { 1930 if (DemandedElts[i]) { 1931 if (SrcZero.extractBits(Scale, i * Scale).isAllOnesValue()) 1932 KnownZero.setBit(i); 1933 if (SrcUndef.extractBits(Scale, i * Scale).isAllOnesValue()) 1934 KnownUndef.setBit(i); 1935 } 1936 } 1937 } 1938 break; 1939 } 1940 case ISD::BUILD_VECTOR: { 1941 // Check all elements and simplify any unused elements with UNDEF. 1942 if (!DemandedElts.isAllOnesValue()) { 1943 // Don't simplify BROADCASTS. 1944 if (llvm::any_of(Op->op_values(), 1945 [&](SDValue Elt) { return Op.getOperand(0) != Elt; })) { 1946 SmallVector<SDValue, 32> Ops(Op->op_begin(), Op->op_end()); 1947 bool Updated = false; 1948 for (unsigned i = 0; i != NumElts; ++i) { 1949 if (!DemandedElts[i] && !Ops[i].isUndef()) { 1950 Ops[i] = TLO.DAG.getUNDEF(Ops[0].getValueType()); 1951 KnownUndef.setBit(i); 1952 Updated = true; 1953 } 1954 } 1955 if (Updated) 1956 return TLO.CombineTo(Op, TLO.DAG.getBuildVector(VT, DL, Ops)); 1957 } 1958 } 1959 for (unsigned i = 0; i != NumElts; ++i) { 1960 SDValue SrcOp = Op.getOperand(i); 1961 if (SrcOp.isUndef()) { 1962 KnownUndef.setBit(i); 1963 } else if (EltSizeInBits == SrcOp.getScalarValueSizeInBits() && 1964 (isNullConstant(SrcOp) || isNullFPConstant(SrcOp))) { 1965 KnownZero.setBit(i); 1966 } 1967 } 1968 break; 1969 } 1970 case ISD::CONCAT_VECTORS: { 1971 EVT SubVT = Op.getOperand(0).getValueType(); 1972 unsigned NumSubVecs = Op.getNumOperands(); 1973 unsigned NumSubElts = SubVT.getVectorNumElements(); 1974 for (unsigned i = 0; i != NumSubVecs; ++i) { 1975 SDValue SubOp = Op.getOperand(i); 1976 APInt SubElts = DemandedElts.extractBits(NumSubElts, i * NumSubElts); 1977 APInt SubUndef, SubZero; 1978 if (SimplifyDemandedVectorElts(SubOp, SubElts, SubUndef, SubZero, TLO, 1979 Depth + 1)) 1980 return true; 1981 KnownUndef.insertBits(SubUndef, i * NumSubElts); 1982 KnownZero.insertBits(SubZero, i * NumSubElts); 1983 } 1984 break; 1985 } 1986 case ISD::INSERT_SUBVECTOR: { 1987 if (!isa<ConstantSDNode>(Op.getOperand(2))) 1988 break; 1989 SDValue Base = Op.getOperand(0); 1990 SDValue Sub = Op.getOperand(1); 1991 EVT SubVT = Sub.getValueType(); 1992 unsigned NumSubElts = SubVT.getVectorNumElements(); 1993 const APInt &Idx = Op.getConstantOperandAPInt(2); 1994 if (Idx.ugt(NumElts - NumSubElts)) 1995 break; 1996 unsigned SubIdx = Idx.getZExtValue(); 1997 APInt SubElts = DemandedElts.extractBits(NumSubElts, SubIdx); 1998 APInt SubUndef, SubZero; 1999 if (SimplifyDemandedVectorElts(Sub, SubElts, SubUndef, SubZero, TLO, 2000 Depth + 1)) 2001 return true; 2002 APInt BaseElts = DemandedElts; 2003 BaseElts.insertBits(APInt::getNullValue(NumSubElts), SubIdx); 2004 if (SimplifyDemandedVectorElts(Base, BaseElts, KnownUndef, KnownZero, TLO, 2005 Depth + 1)) 2006 return true; 2007 KnownUndef.insertBits(SubUndef, SubIdx); 2008 KnownZero.insertBits(SubZero, SubIdx); 2009 break; 2010 } 2011 case ISD::EXTRACT_SUBVECTOR: { 2012 SDValue Src = Op.getOperand(0); 2013 ConstantSDNode *SubIdx = dyn_cast<ConstantSDNode>(Op.getOperand(1)); 2014 unsigned NumSrcElts = Src.getValueType().getVectorNumElements(); 2015 if (SubIdx && SubIdx->getAPIntValue().ule(NumSrcElts - NumElts)) { 2016 // Offset the demanded elts by the subvector index. 2017 uint64_t Idx = SubIdx->getZExtValue(); 2018 APInt SrcElts = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx); 2019 APInt SrcUndef, SrcZero; 2020 if (SimplifyDemandedVectorElts(Src, SrcElts, SrcUndef, SrcZero, TLO, 2021 Depth + 1)) 2022 return true; 2023 KnownUndef = SrcUndef.extractBits(NumElts, Idx); 2024 KnownZero = SrcZero.extractBits(NumElts, Idx); 2025 } 2026 break; 2027 } 2028 case ISD::INSERT_VECTOR_ELT: { 2029 SDValue Vec = Op.getOperand(0); 2030 SDValue Scl = Op.getOperand(1); 2031 auto *CIdx = dyn_cast<ConstantSDNode>(Op.getOperand(2)); 2032 2033 // For a legal, constant insertion index, if we don't need this insertion 2034 // then strip it, else remove it from the demanded elts. 2035 if (CIdx && CIdx->getAPIntValue().ult(NumElts)) { 2036 unsigned Idx = CIdx->getZExtValue(); 2037 if (!DemandedElts[Idx]) 2038 return TLO.CombineTo(Op, Vec); 2039 2040 APInt DemandedVecElts(DemandedElts); 2041 DemandedVecElts.clearBit(Idx); 2042 if (SimplifyDemandedVectorElts(Vec, DemandedVecElts, KnownUndef, 2043 KnownZero, TLO, Depth + 1)) 2044 return true; 2045 2046 KnownUndef.clearBit(Idx); 2047 if (Scl.isUndef()) 2048 KnownUndef.setBit(Idx); 2049 2050 KnownZero.clearBit(Idx); 2051 if (isNullConstant(Scl) || isNullFPConstant(Scl)) 2052 KnownZero.setBit(Idx); 2053 break; 2054 } 2055 2056 APInt VecUndef, VecZero; 2057 if (SimplifyDemandedVectorElts(Vec, DemandedElts, VecUndef, VecZero, TLO, 2058 Depth + 1)) 2059 return true; 2060 // Without knowing the insertion index we can't set KnownUndef/KnownZero. 2061 break; 2062 } 2063 case ISD::VSELECT: { 2064 // Try to transform the select condition based on the current demanded 2065 // elements. 2066 // TODO: If a condition element is undef, we can choose from one arm of the 2067 // select (and if one arm is undef, then we can propagate that to the 2068 // result). 2069 // TODO - add support for constant vselect masks (see IR version of this). 2070 APInt UnusedUndef, UnusedZero; 2071 if (SimplifyDemandedVectorElts(Op.getOperand(0), DemandedElts, UnusedUndef, 2072 UnusedZero, TLO, Depth + 1)) 2073 return true; 2074 2075 // See if we can simplify either vselect operand. 2076 APInt DemandedLHS(DemandedElts); 2077 APInt DemandedRHS(DemandedElts); 2078 APInt UndefLHS, ZeroLHS; 2079 APInt UndefRHS, ZeroRHS; 2080 if (SimplifyDemandedVectorElts(Op.getOperand(1), DemandedLHS, UndefLHS, 2081 ZeroLHS, TLO, Depth + 1)) 2082 return true; 2083 if (SimplifyDemandedVectorElts(Op.getOperand(2), DemandedRHS, UndefRHS, 2084 ZeroRHS, TLO, Depth + 1)) 2085 return true; 2086 2087 KnownUndef = UndefLHS & UndefRHS; 2088 KnownZero = ZeroLHS & ZeroRHS; 2089 break; 2090 } 2091 case ISD::VECTOR_SHUFFLE: { 2092 ArrayRef<int> ShuffleMask = cast<ShuffleVectorSDNode>(Op)->getMask(); 2093 2094 // Collect demanded elements from shuffle operands.. 2095 APInt DemandedLHS(NumElts, 0); 2096 APInt DemandedRHS(NumElts, 0); 2097 for (unsigned i = 0; i != NumElts; ++i) { 2098 int M = ShuffleMask[i]; 2099 if (M < 0 || !DemandedElts[i]) 2100 continue; 2101 assert(0 <= M && M < (int)(2 * NumElts) && "Shuffle index out of range"); 2102 if (M < (int)NumElts) 2103 DemandedLHS.setBit(M); 2104 else 2105 DemandedRHS.setBit(M - NumElts); 2106 } 2107 2108 // See if we can simplify either shuffle operand. 2109 APInt UndefLHS, ZeroLHS; 2110 APInt UndefRHS, ZeroRHS; 2111 if (SimplifyDemandedVectorElts(Op.getOperand(0), DemandedLHS, UndefLHS, 2112 ZeroLHS, TLO, Depth + 1)) 2113 return true; 2114 if (SimplifyDemandedVectorElts(Op.getOperand(1), DemandedRHS, UndefRHS, 2115 ZeroRHS, TLO, Depth + 1)) 2116 return true; 2117 2118 // Simplify mask using undef elements from LHS/RHS. 2119 bool Updated = false; 2120 bool IdentityLHS = true, IdentityRHS = true; 2121 SmallVector<int, 32> NewMask(ShuffleMask.begin(), ShuffleMask.end()); 2122 for (unsigned i = 0; i != NumElts; ++i) { 2123 int &M = NewMask[i]; 2124 if (M < 0) 2125 continue; 2126 if (!DemandedElts[i] || (M < (int)NumElts && UndefLHS[M]) || 2127 (M >= (int)NumElts && UndefRHS[M - NumElts])) { 2128 Updated = true; 2129 M = -1; 2130 } 2131 IdentityLHS &= (M < 0) || (M == (int)i); 2132 IdentityRHS &= (M < 0) || ((M - NumElts) == i); 2133 } 2134 2135 // Update legal shuffle masks based on demanded elements if it won't reduce 2136 // to Identity which can cause premature removal of the shuffle mask. 2137 if (Updated && !IdentityLHS && !IdentityRHS && !TLO.LegalOps && 2138 isShuffleMaskLegal(NewMask, VT)) 2139 return TLO.CombineTo(Op, 2140 TLO.DAG.getVectorShuffle(VT, DL, Op.getOperand(0), 2141 Op.getOperand(1), NewMask)); 2142 2143 // Propagate undef/zero elements from LHS/RHS. 2144 for (unsigned i = 0; i != NumElts; ++i) { 2145 int M = ShuffleMask[i]; 2146 if (M < 0) { 2147 KnownUndef.setBit(i); 2148 } else if (M < (int)NumElts) { 2149 if (UndefLHS[M]) 2150 KnownUndef.setBit(i); 2151 if (ZeroLHS[M]) 2152 KnownZero.setBit(i); 2153 } else { 2154 if (UndefRHS[M - NumElts]) 2155 KnownUndef.setBit(i); 2156 if (ZeroRHS[M - NumElts]) 2157 KnownZero.setBit(i); 2158 } 2159 } 2160 break; 2161 } 2162 case ISD::ANY_EXTEND_VECTOR_INREG: 2163 case ISD::SIGN_EXTEND_VECTOR_INREG: 2164 case ISD::ZERO_EXTEND_VECTOR_INREG: { 2165 APInt SrcUndef, SrcZero; 2166 SDValue Src = Op.getOperand(0); 2167 unsigned NumSrcElts = Src.getValueType().getVectorNumElements(); 2168 APInt DemandedSrcElts = DemandedElts.zextOrSelf(NumSrcElts); 2169 if (SimplifyDemandedVectorElts(Src, DemandedSrcElts, SrcUndef, SrcZero, TLO, 2170 Depth + 1)) 2171 return true; 2172 KnownZero = SrcZero.zextOrTrunc(NumElts); 2173 KnownUndef = SrcUndef.zextOrTrunc(NumElts); 2174 2175 if (Op.getOpcode() == ISD::ANY_EXTEND_VECTOR_INREG && 2176 Op.getValueSizeInBits() == Src.getValueSizeInBits() && 2177 DemandedSrcElts == 1 && TLO.DAG.getDataLayout().isLittleEndian()) { 2178 // aext - if we just need the bottom element then we can bitcast. 2179 return TLO.CombineTo(Op, TLO.DAG.getBitcast(VT, Src)); 2180 } 2181 2182 if (Op.getOpcode() == ISD::ZERO_EXTEND_VECTOR_INREG) { 2183 // zext(undef) upper bits are guaranteed to be zero. 2184 if (DemandedElts.isSubsetOf(KnownUndef)) 2185 return TLO.CombineTo(Op, TLO.DAG.getConstant(0, SDLoc(Op), VT)); 2186 KnownUndef.clearAllBits(); 2187 } 2188 break; 2189 } 2190 2191 // TODO: There are more binop opcodes that could be handled here - MUL, MIN, 2192 // MAX, saturated math, etc. 2193 case ISD::OR: 2194 case ISD::XOR: 2195 case ISD::ADD: 2196 case ISD::SUB: 2197 case ISD::FADD: 2198 case ISD::FSUB: 2199 case ISD::FMUL: 2200 case ISD::FDIV: 2201 case ISD::FREM: { 2202 APInt UndefRHS, ZeroRHS; 2203 if (SimplifyDemandedVectorElts(Op.getOperand(1), DemandedElts, UndefRHS, 2204 ZeroRHS, TLO, Depth + 1)) 2205 return true; 2206 APInt UndefLHS, ZeroLHS; 2207 if (SimplifyDemandedVectorElts(Op.getOperand(0), DemandedElts, UndefLHS, 2208 ZeroLHS, TLO, Depth + 1)) 2209 return true; 2210 2211 KnownZero = ZeroLHS & ZeroRHS; 2212 KnownUndef = getKnownUndefForVectorBinop(Op, TLO.DAG, UndefLHS, UndefRHS); 2213 break; 2214 } 2215 case ISD::SHL: 2216 case ISD::SRL: 2217 case ISD::SRA: 2218 case ISD::ROTL: 2219 case ISD::ROTR: { 2220 APInt UndefRHS, ZeroRHS; 2221 if (SimplifyDemandedVectorElts(Op.getOperand(1), DemandedElts, UndefRHS, 2222 ZeroRHS, TLO, Depth + 1)) 2223 return true; 2224 APInt UndefLHS, ZeroLHS; 2225 if (SimplifyDemandedVectorElts(Op.getOperand(0), DemandedElts, UndefLHS, 2226 ZeroLHS, TLO, Depth + 1)) 2227 return true; 2228 2229 KnownZero = ZeroLHS; 2230 KnownUndef = UndefLHS & UndefRHS; // TODO: use getKnownUndefForVectorBinop? 2231 break; 2232 } 2233 case ISD::MUL: 2234 case ISD::AND: { 2235 APInt SrcUndef, SrcZero; 2236 if (SimplifyDemandedVectorElts(Op.getOperand(1), DemandedElts, SrcUndef, 2237 SrcZero, TLO, Depth + 1)) 2238 return true; 2239 if (SimplifyDemandedVectorElts(Op.getOperand(0), DemandedElts, KnownUndef, 2240 KnownZero, TLO, Depth + 1)) 2241 return true; 2242 2243 // If either side has a zero element, then the result element is zero, even 2244 // if the other is an UNDEF. 2245 // TODO: Extend getKnownUndefForVectorBinop to also deal with known zeros 2246 // and then handle 'and' nodes with the rest of the binop opcodes. 2247 KnownZero |= SrcZero; 2248 KnownUndef &= SrcUndef; 2249 KnownUndef &= ~KnownZero; 2250 break; 2251 } 2252 case ISD::TRUNCATE: 2253 case ISD::SIGN_EXTEND: 2254 case ISD::ZERO_EXTEND: 2255 if (SimplifyDemandedVectorElts(Op.getOperand(0), DemandedElts, KnownUndef, 2256 KnownZero, TLO, Depth + 1)) 2257 return true; 2258 2259 if (Op.getOpcode() == ISD::ZERO_EXTEND) { 2260 // zext(undef) upper bits are guaranteed to be zero. 2261 if (DemandedElts.isSubsetOf(KnownUndef)) 2262 return TLO.CombineTo(Op, TLO.DAG.getConstant(0, SDLoc(Op), VT)); 2263 KnownUndef.clearAllBits(); 2264 } 2265 break; 2266 default: { 2267 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) { 2268 if (SimplifyDemandedVectorEltsForTargetNode(Op, DemandedElts, KnownUndef, 2269 KnownZero, TLO, Depth)) 2270 return true; 2271 } else { 2272 KnownBits Known; 2273 APInt DemandedBits = APInt::getAllOnesValue(EltSizeInBits); 2274 if (SimplifyDemandedBits(Op, DemandedBits, OriginalDemandedElts, Known, 2275 TLO, Depth, AssumeSingleUse)) 2276 return true; 2277 } 2278 break; 2279 } 2280 } 2281 assert((KnownUndef & KnownZero) == 0 && "Elements flagged as undef AND zero"); 2282 2283 // Constant fold all undef cases. 2284 // TODO: Handle zero cases as well. 2285 if (DemandedElts.isSubsetOf(KnownUndef)) 2286 return TLO.CombineTo(Op, TLO.DAG.getUNDEF(VT)); 2287 2288 return false; 2289 } 2290 2291 /// Determine which of the bits specified in Mask are known to be either zero or 2292 /// one and return them in the Known. 2293 void TargetLowering::computeKnownBitsForTargetNode(const SDValue Op, 2294 KnownBits &Known, 2295 const APInt &DemandedElts, 2296 const SelectionDAG &DAG, 2297 unsigned Depth) const { 2298 assert((Op.getOpcode() >= ISD::BUILTIN_OP_END || 2299 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN || 2300 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN || 2301 Op.getOpcode() == ISD::INTRINSIC_VOID) && 2302 "Should use MaskedValueIsZero if you don't know whether Op" 2303 " is a target node!"); 2304 Known.resetAll(); 2305 } 2306 2307 void TargetLowering::computeKnownBitsForFrameIndex(const SDValue Op, 2308 KnownBits &Known, 2309 const APInt &DemandedElts, 2310 const SelectionDAG &DAG, 2311 unsigned Depth) const { 2312 assert(isa<FrameIndexSDNode>(Op) && "expected FrameIndex"); 2313 2314 if (unsigned Align = DAG.InferPtrAlignment(Op)) { 2315 // The low bits are known zero if the pointer is aligned. 2316 Known.Zero.setLowBits(Log2_32(Align)); 2317 } 2318 } 2319 2320 /// This method can be implemented by targets that want to expose additional 2321 /// information about sign bits to the DAG Combiner. 2322 unsigned TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op, 2323 const APInt &, 2324 const SelectionDAG &, 2325 unsigned Depth) const { 2326 assert((Op.getOpcode() >= ISD::BUILTIN_OP_END || 2327 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN || 2328 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN || 2329 Op.getOpcode() == ISD::INTRINSIC_VOID) && 2330 "Should use ComputeNumSignBits if you don't know whether Op" 2331 " is a target node!"); 2332 return 1; 2333 } 2334 2335 bool TargetLowering::SimplifyDemandedVectorEltsForTargetNode( 2336 SDValue Op, const APInt &DemandedElts, APInt &KnownUndef, APInt &KnownZero, 2337 TargetLoweringOpt &TLO, unsigned Depth) const { 2338 assert((Op.getOpcode() >= ISD::BUILTIN_OP_END || 2339 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN || 2340 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN || 2341 Op.getOpcode() == ISD::INTRINSIC_VOID) && 2342 "Should use SimplifyDemandedVectorElts if you don't know whether Op" 2343 " is a target node!"); 2344 return false; 2345 } 2346 2347 bool TargetLowering::SimplifyDemandedBitsForTargetNode( 2348 SDValue Op, const APInt &DemandedBits, const APInt &DemandedElts, 2349 KnownBits &Known, TargetLoweringOpt &TLO, unsigned Depth) const { 2350 assert((Op.getOpcode() >= ISD::BUILTIN_OP_END || 2351 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN || 2352 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN || 2353 Op.getOpcode() == ISD::INTRINSIC_VOID) && 2354 "Should use SimplifyDemandedBits if you don't know whether Op" 2355 " is a target node!"); 2356 computeKnownBitsForTargetNode(Op, Known, DemandedElts, TLO.DAG, Depth); 2357 return false; 2358 } 2359 2360 const Constant *TargetLowering::getTargetConstantFromLoad(LoadSDNode*) const { 2361 return nullptr; 2362 } 2363 2364 bool TargetLowering::isKnownNeverNaNForTargetNode(SDValue Op, 2365 const SelectionDAG &DAG, 2366 bool SNaN, 2367 unsigned Depth) const { 2368 assert((Op.getOpcode() >= ISD::BUILTIN_OP_END || 2369 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN || 2370 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN || 2371 Op.getOpcode() == ISD::INTRINSIC_VOID) && 2372 "Should use isKnownNeverNaN if you don't know whether Op" 2373 " is a target node!"); 2374 return false; 2375 } 2376 2377 // FIXME: Ideally, this would use ISD::isConstantSplatVector(), but that must 2378 // work with truncating build vectors and vectors with elements of less than 2379 // 8 bits. 2380 bool TargetLowering::isConstTrueVal(const SDNode *N) const { 2381 if (!N) 2382 return false; 2383 2384 APInt CVal; 2385 if (auto *CN = dyn_cast<ConstantSDNode>(N)) { 2386 CVal = CN->getAPIntValue(); 2387 } else if (auto *BV = dyn_cast<BuildVectorSDNode>(N)) { 2388 auto *CN = BV->getConstantSplatNode(); 2389 if (!CN) 2390 return false; 2391 2392 // If this is a truncating build vector, truncate the splat value. 2393 // Otherwise, we may fail to match the expected values below. 2394 unsigned BVEltWidth = BV->getValueType(0).getScalarSizeInBits(); 2395 CVal = CN->getAPIntValue(); 2396 if (BVEltWidth < CVal.getBitWidth()) 2397 CVal = CVal.trunc(BVEltWidth); 2398 } else { 2399 return false; 2400 } 2401 2402 switch (getBooleanContents(N->getValueType(0))) { 2403 case UndefinedBooleanContent: 2404 return CVal[0]; 2405 case ZeroOrOneBooleanContent: 2406 return CVal.isOneValue(); 2407 case ZeroOrNegativeOneBooleanContent: 2408 return CVal.isAllOnesValue(); 2409 } 2410 2411 llvm_unreachable("Invalid boolean contents"); 2412 } 2413 2414 bool TargetLowering::isConstFalseVal(const SDNode *N) const { 2415 if (!N) 2416 return false; 2417 2418 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N); 2419 if (!CN) { 2420 const BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N); 2421 if (!BV) 2422 return false; 2423 2424 // Only interested in constant splats, we don't care about undef 2425 // elements in identifying boolean constants and getConstantSplatNode 2426 // returns NULL if all ops are undef; 2427 CN = BV->getConstantSplatNode(); 2428 if (!CN) 2429 return false; 2430 } 2431 2432 if (getBooleanContents(N->getValueType(0)) == UndefinedBooleanContent) 2433 return !CN->getAPIntValue()[0]; 2434 2435 return CN->isNullValue(); 2436 } 2437 2438 bool TargetLowering::isExtendedTrueVal(const ConstantSDNode *N, EVT VT, 2439 bool SExt) const { 2440 if (VT == MVT::i1) 2441 return N->isOne(); 2442 2443 TargetLowering::BooleanContent Cnt = getBooleanContents(VT); 2444 switch (Cnt) { 2445 case TargetLowering::ZeroOrOneBooleanContent: 2446 // An extended value of 1 is always true, unless its original type is i1, 2447 // in which case it will be sign extended to -1. 2448 return (N->isOne() && !SExt) || (SExt && (N->getValueType(0) != MVT::i1)); 2449 case TargetLowering::UndefinedBooleanContent: 2450 case TargetLowering::ZeroOrNegativeOneBooleanContent: 2451 return N->isAllOnesValue() && SExt; 2452 } 2453 llvm_unreachable("Unexpected enumeration."); 2454 } 2455 2456 /// This helper function of SimplifySetCC tries to optimize the comparison when 2457 /// either operand of the SetCC node is a bitwise-and instruction. 2458 SDValue TargetLowering::foldSetCCWithAnd(EVT VT, SDValue N0, SDValue N1, 2459 ISD::CondCode Cond, const SDLoc &DL, 2460 DAGCombinerInfo &DCI) const { 2461 // Match these patterns in any of their permutations: 2462 // (X & Y) == Y 2463 // (X & Y) != Y 2464 if (N1.getOpcode() == ISD::AND && N0.getOpcode() != ISD::AND) 2465 std::swap(N0, N1); 2466 2467 EVT OpVT = N0.getValueType(); 2468 if (N0.getOpcode() != ISD::AND || !OpVT.isInteger() || 2469 (Cond != ISD::SETEQ && Cond != ISD::SETNE)) 2470 return SDValue(); 2471 2472 SDValue X, Y; 2473 if (N0.getOperand(0) == N1) { 2474 X = N0.getOperand(1); 2475 Y = N0.getOperand(0); 2476 } else if (N0.getOperand(1) == N1) { 2477 X = N0.getOperand(0); 2478 Y = N0.getOperand(1); 2479 } else { 2480 return SDValue(); 2481 } 2482 2483 SelectionDAG &DAG = DCI.DAG; 2484 SDValue Zero = DAG.getConstant(0, DL, OpVT); 2485 if (DAG.isKnownToBeAPowerOfTwo(Y)) { 2486 // Simplify X & Y == Y to X & Y != 0 if Y has exactly one bit set. 2487 // Note that where Y is variable and is known to have at most one bit set 2488 // (for example, if it is Z & 1) we cannot do this; the expressions are not 2489 // equivalent when Y == 0. 2490 Cond = ISD::getSetCCInverse(Cond, /*isInteger=*/true); 2491 if (DCI.isBeforeLegalizeOps() || 2492 isCondCodeLegal(Cond, N0.getSimpleValueType())) 2493 return DAG.getSetCC(DL, VT, N0, Zero, Cond); 2494 } else if (N0.hasOneUse() && hasAndNotCompare(Y)) { 2495 // If the target supports an 'and-not' or 'and-complement' logic operation, 2496 // try to use that to make a comparison operation more efficient. 2497 // But don't do this transform if the mask is a single bit because there are 2498 // more efficient ways to deal with that case (for example, 'bt' on x86 or 2499 // 'rlwinm' on PPC). 2500 2501 // Bail out if the compare operand that we want to turn into a zero is 2502 // already a zero (otherwise, infinite loop). 2503 auto *YConst = dyn_cast<ConstantSDNode>(Y); 2504 if (YConst && YConst->isNullValue()) 2505 return SDValue(); 2506 2507 // Transform this into: ~X & Y == 0. 2508 SDValue NotX = DAG.getNOT(SDLoc(X), X, OpVT); 2509 SDValue NewAnd = DAG.getNode(ISD::AND, SDLoc(N0), OpVT, NotX, Y); 2510 return DAG.getSetCC(DL, VT, NewAnd, Zero, Cond); 2511 } 2512 2513 return SDValue(); 2514 } 2515 2516 /// There are multiple IR patterns that could be checking whether certain 2517 /// truncation of a signed number would be lossy or not. The pattern which is 2518 /// best at IR level, may not lower optimally. Thus, we want to unfold it. 2519 /// We are looking for the following pattern: (KeptBits is a constant) 2520 /// (add %x, (1 << (KeptBits-1))) srccond (1 << KeptBits) 2521 /// KeptBits won't be bitwidth(x), that will be constant-folded to true/false. 2522 /// KeptBits also can't be 1, that would have been folded to %x dstcond 0 2523 /// We will unfold it into the natural trunc+sext pattern: 2524 /// ((%x << C) a>> C) dstcond %x 2525 /// Where C = bitwidth(x) - KeptBits and C u< bitwidth(x) 2526 SDValue TargetLowering::optimizeSetCCOfSignedTruncationCheck( 2527 EVT SCCVT, SDValue N0, SDValue N1, ISD::CondCode Cond, DAGCombinerInfo &DCI, 2528 const SDLoc &DL) const { 2529 // We must be comparing with a constant. 2530 ConstantSDNode *C1; 2531 if (!(C1 = dyn_cast<ConstantSDNode>(N1))) 2532 return SDValue(); 2533 2534 // N0 should be: add %x, (1 << (KeptBits-1)) 2535 if (N0->getOpcode() != ISD::ADD) 2536 return SDValue(); 2537 2538 // And we must be 'add'ing a constant. 2539 ConstantSDNode *C01; 2540 if (!(C01 = dyn_cast<ConstantSDNode>(N0->getOperand(1)))) 2541 return SDValue(); 2542 2543 SDValue X = N0->getOperand(0); 2544 EVT XVT = X.getValueType(); 2545 2546 // Validate constants ... 2547 2548 APInt I1 = C1->getAPIntValue(); 2549 2550 ISD::CondCode NewCond; 2551 if (Cond == ISD::CondCode::SETULT) { 2552 NewCond = ISD::CondCode::SETEQ; 2553 } else if (Cond == ISD::CondCode::SETULE) { 2554 NewCond = ISD::CondCode::SETEQ; 2555 // But need to 'canonicalize' the constant. 2556 I1 += 1; 2557 } else if (Cond == ISD::CondCode::SETUGT) { 2558 NewCond = ISD::CondCode::SETNE; 2559 // But need to 'canonicalize' the constant. 2560 I1 += 1; 2561 } else if (Cond == ISD::CondCode::SETUGE) { 2562 NewCond = ISD::CondCode::SETNE; 2563 } else 2564 return SDValue(); 2565 2566 APInt I01 = C01->getAPIntValue(); 2567 2568 auto checkConstants = [&I1, &I01]() -> bool { 2569 // Both of them must be power-of-two, and the constant from setcc is bigger. 2570 return I1.ugt(I01) && I1.isPowerOf2() && I01.isPowerOf2(); 2571 }; 2572 2573 if (checkConstants()) { 2574 // Great, e.g. got icmp ult i16 (add i16 %x, 128), 256 2575 } else { 2576 // What if we invert constants? (and the target predicate) 2577 I1.negate(); 2578 I01.negate(); 2579 NewCond = getSetCCInverse(NewCond, /*isInteger=*/true); 2580 if (!checkConstants()) 2581 return SDValue(); 2582 // Great, e.g. got icmp uge i16 (add i16 %x, -128), -256 2583 } 2584 2585 // They are power-of-two, so which bit is set? 2586 const unsigned KeptBits = I1.logBase2(); 2587 const unsigned KeptBitsMinusOne = I01.logBase2(); 2588 2589 // Magic! 2590 if (KeptBits != (KeptBitsMinusOne + 1)) 2591 return SDValue(); 2592 assert(KeptBits > 0 && KeptBits < XVT.getSizeInBits() && "unreachable"); 2593 2594 // We don't want to do this in every single case. 2595 SelectionDAG &DAG = DCI.DAG; 2596 if (!DAG.getTargetLoweringInfo().shouldTransformSignedTruncationCheck( 2597 XVT, KeptBits)) 2598 return SDValue(); 2599 2600 const unsigned MaskedBits = XVT.getSizeInBits() - KeptBits; 2601 assert(MaskedBits > 0 && MaskedBits < XVT.getSizeInBits() && "unreachable"); 2602 2603 // Unfold into: ((%x << C) a>> C) cond %x 2604 // Where 'cond' will be either 'eq' or 'ne'. 2605 SDValue ShiftAmt = DAG.getConstant(MaskedBits, DL, XVT); 2606 SDValue T0 = DAG.getNode(ISD::SHL, DL, XVT, X, ShiftAmt); 2607 SDValue T1 = DAG.getNode(ISD::SRA, DL, XVT, T0, ShiftAmt); 2608 SDValue T2 = DAG.getSetCC(DL, SCCVT, T1, X, NewCond); 2609 2610 return T2; 2611 } 2612 2613 /// Try to fold an equality comparison with a {add/sub/xor} binary operation as 2614 /// the 1st operand (N0). Callers are expected to swap the N0/N1 parameters to 2615 /// handle the commuted versions of these patterns. 2616 SDValue TargetLowering::foldSetCCWithBinOp(EVT VT, SDValue N0, SDValue N1, 2617 ISD::CondCode Cond, const SDLoc &DL, 2618 DAGCombinerInfo &DCI) const { 2619 unsigned BOpcode = N0.getOpcode(); 2620 assert((BOpcode == ISD::ADD || BOpcode == ISD::SUB || BOpcode == ISD::XOR) && 2621 "Unexpected binop"); 2622 assert((Cond == ISD::SETEQ || Cond == ISD::SETNE) && "Unexpected condcode"); 2623 2624 // (X + Y) == X --> Y == 0 2625 // (X - Y) == X --> Y == 0 2626 // (X ^ Y) == X --> Y == 0 2627 SelectionDAG &DAG = DCI.DAG; 2628 EVT OpVT = N0.getValueType(); 2629 SDValue X = N0.getOperand(0); 2630 SDValue Y = N0.getOperand(1); 2631 if (X == N1) 2632 return DAG.getSetCC(DL, VT, Y, DAG.getConstant(0, DL, OpVT), Cond); 2633 2634 if (Y != N1) 2635 return SDValue(); 2636 2637 // (X + Y) == Y --> X == 0 2638 // (X ^ Y) == Y --> X == 0 2639 if (BOpcode == ISD::ADD || BOpcode == ISD::XOR) 2640 return DAG.getSetCC(DL, VT, X, DAG.getConstant(0, DL, OpVT), Cond); 2641 2642 // The shift would not be valid if the operands are boolean (i1). 2643 if (!N0.hasOneUse() || OpVT.getScalarSizeInBits() == 1) 2644 return SDValue(); 2645 2646 // (X - Y) == Y --> X == Y << 1 2647 EVT ShiftVT = getShiftAmountTy(OpVT, DAG.getDataLayout(), 2648 !DCI.isBeforeLegalize()); 2649 SDValue One = DAG.getConstant(1, DL, ShiftVT); 2650 SDValue YShl1 = DAG.getNode(ISD::SHL, DL, N1.getValueType(), Y, One); 2651 if (!DCI.isCalledByLegalizer()) 2652 DCI.AddToWorklist(YShl1.getNode()); 2653 return DAG.getSetCC(DL, VT, X, YShl1, Cond); 2654 } 2655 2656 /// Try to simplify a setcc built with the specified operands and cc. If it is 2657 /// unable to simplify it, return a null SDValue. 2658 SDValue TargetLowering::SimplifySetCC(EVT VT, SDValue N0, SDValue N1, 2659 ISD::CondCode Cond, bool foldBooleans, 2660 DAGCombinerInfo &DCI, 2661 const SDLoc &dl) const { 2662 SelectionDAG &DAG = DCI.DAG; 2663 EVT OpVT = N0.getValueType(); 2664 2665 // Constant fold or commute setcc. 2666 if (SDValue Fold = DAG.FoldSetCC(VT, N0, N1, Cond, dl)) 2667 return Fold; 2668 2669 // Ensure that the constant occurs on the RHS and fold constant comparisons. 2670 // TODO: Handle non-splat vector constants. All undef causes trouble. 2671 ISD::CondCode SwappedCC = ISD::getSetCCSwappedOperands(Cond); 2672 if (isConstOrConstSplat(N0) && 2673 (DCI.isBeforeLegalizeOps() || 2674 isCondCodeLegal(SwappedCC, N0.getSimpleValueType()))) 2675 return DAG.getSetCC(dl, VT, N1, N0, SwappedCC); 2676 2677 if (auto *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) { 2678 const APInt &C1 = N1C->getAPIntValue(); 2679 2680 // If the LHS is '(srl (ctlz x), 5)', the RHS is 0/1, and this is an 2681 // equality comparison, then we're just comparing whether X itself is 2682 // zero. 2683 if (N0.getOpcode() == ISD::SRL && (C1.isNullValue() || C1.isOneValue()) && 2684 N0.getOperand(0).getOpcode() == ISD::CTLZ && 2685 N0.getOperand(1).getOpcode() == ISD::Constant) { 2686 const APInt &ShAmt = N0.getConstantOperandAPInt(1); 2687 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && 2688 ShAmt == Log2_32(N0.getValueSizeInBits())) { 2689 if ((C1 == 0) == (Cond == ISD::SETEQ)) { 2690 // (srl (ctlz x), 5) == 0 -> X != 0 2691 // (srl (ctlz x), 5) != 1 -> X != 0 2692 Cond = ISD::SETNE; 2693 } else { 2694 // (srl (ctlz x), 5) != 0 -> X == 0 2695 // (srl (ctlz x), 5) == 1 -> X == 0 2696 Cond = ISD::SETEQ; 2697 } 2698 SDValue Zero = DAG.getConstant(0, dl, N0.getValueType()); 2699 return DAG.getSetCC(dl, VT, N0.getOperand(0).getOperand(0), 2700 Zero, Cond); 2701 } 2702 } 2703 2704 SDValue CTPOP = N0; 2705 // Look through truncs that don't change the value of a ctpop. 2706 if (N0.hasOneUse() && N0.getOpcode() == ISD::TRUNCATE) 2707 CTPOP = N0.getOperand(0); 2708 2709 if (CTPOP.hasOneUse() && CTPOP.getOpcode() == ISD::CTPOP && 2710 (N0 == CTPOP || 2711 N0.getValueSizeInBits() > Log2_32_Ceil(CTPOP.getValueSizeInBits()))) { 2712 EVT CTVT = CTPOP.getValueType(); 2713 SDValue CTOp = CTPOP.getOperand(0); 2714 2715 // (ctpop x) u< 2 -> (x & x-1) == 0 2716 // (ctpop x) u> 1 -> (x & x-1) != 0 2717 if ((Cond == ISD::SETULT && C1 == 2) || (Cond == ISD::SETUGT && C1 == 1)){ 2718 SDValue Sub = DAG.getNode(ISD::SUB, dl, CTVT, CTOp, 2719 DAG.getConstant(1, dl, CTVT)); 2720 SDValue And = DAG.getNode(ISD::AND, dl, CTVT, CTOp, Sub); 2721 ISD::CondCode CC = Cond == ISD::SETULT ? ISD::SETEQ : ISD::SETNE; 2722 return DAG.getSetCC(dl, VT, And, DAG.getConstant(0, dl, CTVT), CC); 2723 } 2724 2725 // If ctpop is not supported, expand a power-of-2 comparison based on it. 2726 if (C1 == 1 && !isOperationLegalOrCustom(ISD::CTPOP, CTVT) && 2727 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) { 2728 // (ctpop x) == 1 --> (x != 0) && ((x & x-1) == 0) 2729 // (ctpop x) != 1 --> (x == 0) || ((x & x-1) != 0) 2730 SDValue Zero = DAG.getConstant(0, dl, CTVT); 2731 SDValue NegOne = DAG.getAllOnesConstant(dl, CTVT); 2732 ISD::CondCode InvCond = ISD::getSetCCInverse(Cond, true); 2733 SDValue Add = DAG.getNode(ISD::ADD, dl, CTVT, CTOp, NegOne); 2734 SDValue And = DAG.getNode(ISD::AND, dl, CTVT, CTOp, Add); 2735 SDValue LHS = DAG.getSetCC(dl, VT, CTOp, Zero, InvCond); 2736 SDValue RHS = DAG.getSetCC(dl, VT, And, Zero, Cond); 2737 unsigned LogicOpcode = Cond == ISD::SETEQ ? ISD::AND : ISD::OR; 2738 return DAG.getNode(LogicOpcode, dl, VT, LHS, RHS); 2739 } 2740 } 2741 2742 // (zext x) == C --> x == (trunc C) 2743 // (sext x) == C --> x == (trunc C) 2744 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && 2745 DCI.isBeforeLegalize() && N0->hasOneUse()) { 2746 unsigned MinBits = N0.getValueSizeInBits(); 2747 SDValue PreExt; 2748 bool Signed = false; 2749 if (N0->getOpcode() == ISD::ZERO_EXTEND) { 2750 // ZExt 2751 MinBits = N0->getOperand(0).getValueSizeInBits(); 2752 PreExt = N0->getOperand(0); 2753 } else if (N0->getOpcode() == ISD::AND) { 2754 // DAGCombine turns costly ZExts into ANDs 2755 if (auto *C = dyn_cast<ConstantSDNode>(N0->getOperand(1))) 2756 if ((C->getAPIntValue()+1).isPowerOf2()) { 2757 MinBits = C->getAPIntValue().countTrailingOnes(); 2758 PreExt = N0->getOperand(0); 2759 } 2760 } else if (N0->getOpcode() == ISD::SIGN_EXTEND) { 2761 // SExt 2762 MinBits = N0->getOperand(0).getValueSizeInBits(); 2763 PreExt = N0->getOperand(0); 2764 Signed = true; 2765 } else if (auto *LN0 = dyn_cast<LoadSDNode>(N0)) { 2766 // ZEXTLOAD / SEXTLOAD 2767 if (LN0->getExtensionType() == ISD::ZEXTLOAD) { 2768 MinBits = LN0->getMemoryVT().getSizeInBits(); 2769 PreExt = N0; 2770 } else if (LN0->getExtensionType() == ISD::SEXTLOAD) { 2771 Signed = true; 2772 MinBits = LN0->getMemoryVT().getSizeInBits(); 2773 PreExt = N0; 2774 } 2775 } 2776 2777 // Figure out how many bits we need to preserve this constant. 2778 unsigned ReqdBits = Signed ? 2779 C1.getBitWidth() - C1.getNumSignBits() + 1 : 2780 C1.getActiveBits(); 2781 2782 // Make sure we're not losing bits from the constant. 2783 if (MinBits > 0 && 2784 MinBits < C1.getBitWidth() && 2785 MinBits >= ReqdBits) { 2786 EVT MinVT = EVT::getIntegerVT(*DAG.getContext(), MinBits); 2787 if (isTypeDesirableForOp(ISD::SETCC, MinVT)) { 2788 // Will get folded away. 2789 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MinVT, PreExt); 2790 if (MinBits == 1 && C1 == 1) 2791 // Invert the condition. 2792 return DAG.getSetCC(dl, VT, Trunc, DAG.getConstant(0, dl, MVT::i1), 2793 Cond == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ); 2794 SDValue C = DAG.getConstant(C1.trunc(MinBits), dl, MinVT); 2795 return DAG.getSetCC(dl, VT, Trunc, C, Cond); 2796 } 2797 2798 // If truncating the setcc operands is not desirable, we can still 2799 // simplify the expression in some cases: 2800 // setcc ([sz]ext (setcc x, y, cc)), 0, setne) -> setcc (x, y, cc) 2801 // setcc ([sz]ext (setcc x, y, cc)), 0, seteq) -> setcc (x, y, inv(cc)) 2802 // setcc (zext (setcc x, y, cc)), 1, setne) -> setcc (x, y, inv(cc)) 2803 // setcc (zext (setcc x, y, cc)), 1, seteq) -> setcc (x, y, cc) 2804 // setcc (sext (setcc x, y, cc)), -1, setne) -> setcc (x, y, inv(cc)) 2805 // setcc (sext (setcc x, y, cc)), -1, seteq) -> setcc (x, y, cc) 2806 SDValue TopSetCC = N0->getOperand(0); 2807 unsigned N0Opc = N0->getOpcode(); 2808 bool SExt = (N0Opc == ISD::SIGN_EXTEND); 2809 if (TopSetCC.getValueType() == MVT::i1 && VT == MVT::i1 && 2810 TopSetCC.getOpcode() == ISD::SETCC && 2811 (N0Opc == ISD::ZERO_EXTEND || N0Opc == ISD::SIGN_EXTEND) && 2812 (isConstFalseVal(N1C) || 2813 isExtendedTrueVal(N1C, N0->getValueType(0), SExt))) { 2814 2815 bool Inverse = (N1C->isNullValue() && Cond == ISD::SETEQ) || 2816 (!N1C->isNullValue() && Cond == ISD::SETNE); 2817 2818 if (!Inverse) 2819 return TopSetCC; 2820 2821 ISD::CondCode InvCond = ISD::getSetCCInverse( 2822 cast<CondCodeSDNode>(TopSetCC.getOperand(2))->get(), 2823 TopSetCC.getOperand(0).getValueType().isInteger()); 2824 return DAG.getSetCC(dl, VT, TopSetCC.getOperand(0), 2825 TopSetCC.getOperand(1), 2826 InvCond); 2827 } 2828 } 2829 } 2830 2831 // If the LHS is '(and load, const)', the RHS is 0, the test is for 2832 // equality or unsigned, and all 1 bits of the const are in the same 2833 // partial word, see if we can shorten the load. 2834 if (DCI.isBeforeLegalize() && 2835 !ISD::isSignedIntSetCC(Cond) && 2836 N0.getOpcode() == ISD::AND && C1 == 0 && 2837 N0.getNode()->hasOneUse() && 2838 isa<LoadSDNode>(N0.getOperand(0)) && 2839 N0.getOperand(0).getNode()->hasOneUse() && 2840 isa<ConstantSDNode>(N0.getOperand(1))) { 2841 LoadSDNode *Lod = cast<LoadSDNode>(N0.getOperand(0)); 2842 APInt bestMask; 2843 unsigned bestWidth = 0, bestOffset = 0; 2844 if (!Lod->isVolatile() && Lod->isUnindexed()) { 2845 unsigned origWidth = N0.getValueSizeInBits(); 2846 unsigned maskWidth = origWidth; 2847 // We can narrow (e.g.) 16-bit extending loads on 32-bit target to 2848 // 8 bits, but have to be careful... 2849 if (Lod->getExtensionType() != ISD::NON_EXTLOAD) 2850 origWidth = Lod->getMemoryVT().getSizeInBits(); 2851 const APInt &Mask = N0.getConstantOperandAPInt(1); 2852 for (unsigned width = origWidth / 2; width>=8; width /= 2) { 2853 APInt newMask = APInt::getLowBitsSet(maskWidth, width); 2854 for (unsigned offset=0; offset<origWidth/width; offset++) { 2855 if (Mask.isSubsetOf(newMask)) { 2856 if (DAG.getDataLayout().isLittleEndian()) 2857 bestOffset = (uint64_t)offset * (width/8); 2858 else 2859 bestOffset = (origWidth/width - offset - 1) * (width/8); 2860 bestMask = Mask.lshr(offset * (width/8) * 8); 2861 bestWidth = width; 2862 break; 2863 } 2864 newMask <<= width; 2865 } 2866 } 2867 } 2868 if (bestWidth) { 2869 EVT newVT = EVT::getIntegerVT(*DAG.getContext(), bestWidth); 2870 if (newVT.isRound() && 2871 shouldReduceLoadWidth(Lod, ISD::NON_EXTLOAD, newVT)) { 2872 EVT PtrType = Lod->getOperand(1).getValueType(); 2873 SDValue Ptr = Lod->getBasePtr(); 2874 if (bestOffset != 0) 2875 Ptr = DAG.getNode(ISD::ADD, dl, PtrType, Lod->getBasePtr(), 2876 DAG.getConstant(bestOffset, dl, PtrType)); 2877 unsigned NewAlign = MinAlign(Lod->getAlignment(), bestOffset); 2878 SDValue NewLoad = DAG.getLoad( 2879 newVT, dl, Lod->getChain(), Ptr, 2880 Lod->getPointerInfo().getWithOffset(bestOffset), NewAlign); 2881 return DAG.getSetCC(dl, VT, 2882 DAG.getNode(ISD::AND, dl, newVT, NewLoad, 2883 DAG.getConstant(bestMask.trunc(bestWidth), 2884 dl, newVT)), 2885 DAG.getConstant(0LL, dl, newVT), Cond); 2886 } 2887 } 2888 } 2889 2890 // If the LHS is a ZERO_EXTEND, perform the comparison on the input. 2891 if (N0.getOpcode() == ISD::ZERO_EXTEND) { 2892 unsigned InSize = N0.getOperand(0).getValueSizeInBits(); 2893 2894 // If the comparison constant has bits in the upper part, the 2895 // zero-extended value could never match. 2896 if (C1.intersects(APInt::getHighBitsSet(C1.getBitWidth(), 2897 C1.getBitWidth() - InSize))) { 2898 switch (Cond) { 2899 case ISD::SETUGT: 2900 case ISD::SETUGE: 2901 case ISD::SETEQ: 2902 return DAG.getConstant(0, dl, VT); 2903 case ISD::SETULT: 2904 case ISD::SETULE: 2905 case ISD::SETNE: 2906 return DAG.getConstant(1, dl, VT); 2907 case ISD::SETGT: 2908 case ISD::SETGE: 2909 // True if the sign bit of C1 is set. 2910 return DAG.getConstant(C1.isNegative(), dl, VT); 2911 case ISD::SETLT: 2912 case ISD::SETLE: 2913 // True if the sign bit of C1 isn't set. 2914 return DAG.getConstant(C1.isNonNegative(), dl, VT); 2915 default: 2916 break; 2917 } 2918 } 2919 2920 // Otherwise, we can perform the comparison with the low bits. 2921 switch (Cond) { 2922 case ISD::SETEQ: 2923 case ISD::SETNE: 2924 case ISD::SETUGT: 2925 case ISD::SETUGE: 2926 case ISD::SETULT: 2927 case ISD::SETULE: { 2928 EVT newVT = N0.getOperand(0).getValueType(); 2929 if (DCI.isBeforeLegalizeOps() || 2930 (isOperationLegal(ISD::SETCC, newVT) && 2931 isCondCodeLegal(Cond, newVT.getSimpleVT()))) { 2932 EVT NewSetCCVT = 2933 getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), newVT); 2934 SDValue NewConst = DAG.getConstant(C1.trunc(InSize), dl, newVT); 2935 2936 SDValue NewSetCC = DAG.getSetCC(dl, NewSetCCVT, N0.getOperand(0), 2937 NewConst, Cond); 2938 return DAG.getBoolExtOrTrunc(NewSetCC, dl, VT, N0.getValueType()); 2939 } 2940 break; 2941 } 2942 default: 2943 break; // todo, be more careful with signed comparisons 2944 } 2945 } else if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG && 2946 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) { 2947 EVT ExtSrcTy = cast<VTSDNode>(N0.getOperand(1))->getVT(); 2948 unsigned ExtSrcTyBits = ExtSrcTy.getSizeInBits(); 2949 EVT ExtDstTy = N0.getValueType(); 2950 unsigned ExtDstTyBits = ExtDstTy.getSizeInBits(); 2951 2952 // If the constant doesn't fit into the number of bits for the source of 2953 // the sign extension, it is impossible for both sides to be equal. 2954 if (C1.getMinSignedBits() > ExtSrcTyBits) 2955 return DAG.getConstant(Cond == ISD::SETNE, dl, VT); 2956 2957 SDValue ZextOp; 2958 EVT Op0Ty = N0.getOperand(0).getValueType(); 2959 if (Op0Ty == ExtSrcTy) { 2960 ZextOp = N0.getOperand(0); 2961 } else { 2962 APInt Imm = APInt::getLowBitsSet(ExtDstTyBits, ExtSrcTyBits); 2963 ZextOp = DAG.getNode(ISD::AND, dl, Op0Ty, N0.getOperand(0), 2964 DAG.getConstant(Imm, dl, Op0Ty)); 2965 } 2966 if (!DCI.isCalledByLegalizer()) 2967 DCI.AddToWorklist(ZextOp.getNode()); 2968 // Otherwise, make this a use of a zext. 2969 return DAG.getSetCC(dl, VT, ZextOp, 2970 DAG.getConstant(C1 & APInt::getLowBitsSet( 2971 ExtDstTyBits, 2972 ExtSrcTyBits), 2973 dl, ExtDstTy), 2974 Cond); 2975 } else if ((N1C->isNullValue() || N1C->isOne()) && 2976 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) { 2977 // SETCC (SETCC), [0|1], [EQ|NE] -> SETCC 2978 if (N0.getOpcode() == ISD::SETCC && 2979 isTypeLegal(VT) && VT.bitsLE(N0.getValueType())) { 2980 bool TrueWhenTrue = (Cond == ISD::SETEQ) ^ (!N1C->isOne()); 2981 if (TrueWhenTrue) 2982 return DAG.getNode(ISD::TRUNCATE, dl, VT, N0); 2983 // Invert the condition. 2984 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get(); 2985 CC = ISD::getSetCCInverse(CC, 2986 N0.getOperand(0).getValueType().isInteger()); 2987 if (DCI.isBeforeLegalizeOps() || 2988 isCondCodeLegal(CC, N0.getOperand(0).getSimpleValueType())) 2989 return DAG.getSetCC(dl, VT, N0.getOperand(0), N0.getOperand(1), CC); 2990 } 2991 2992 if ((N0.getOpcode() == ISD::XOR || 2993 (N0.getOpcode() == ISD::AND && 2994 N0.getOperand(0).getOpcode() == ISD::XOR && 2995 N0.getOperand(1) == N0.getOperand(0).getOperand(1))) && 2996 isa<ConstantSDNode>(N0.getOperand(1)) && 2997 cast<ConstantSDNode>(N0.getOperand(1))->isOne()) { 2998 // If this is (X^1) == 0/1, swap the RHS and eliminate the xor. We 2999 // can only do this if the top bits are known zero. 3000 unsigned BitWidth = N0.getValueSizeInBits(); 3001 if (DAG.MaskedValueIsZero(N0, 3002 APInt::getHighBitsSet(BitWidth, 3003 BitWidth-1))) { 3004 // Okay, get the un-inverted input value. 3005 SDValue Val; 3006 if (N0.getOpcode() == ISD::XOR) { 3007 Val = N0.getOperand(0); 3008 } else { 3009 assert(N0.getOpcode() == ISD::AND && 3010 N0.getOperand(0).getOpcode() == ISD::XOR); 3011 // ((X^1)&1)^1 -> X & 1 3012 Val = DAG.getNode(ISD::AND, dl, N0.getValueType(), 3013 N0.getOperand(0).getOperand(0), 3014 N0.getOperand(1)); 3015 } 3016 3017 return DAG.getSetCC(dl, VT, Val, N1, 3018 Cond == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ); 3019 } 3020 } else if (N1C->isOne() && 3021 (VT == MVT::i1 || 3022 getBooleanContents(N0->getValueType(0)) == 3023 ZeroOrOneBooleanContent)) { 3024 SDValue Op0 = N0; 3025 if (Op0.getOpcode() == ISD::TRUNCATE) 3026 Op0 = Op0.getOperand(0); 3027 3028 if ((Op0.getOpcode() == ISD::XOR) && 3029 Op0.getOperand(0).getOpcode() == ISD::SETCC && 3030 Op0.getOperand(1).getOpcode() == ISD::SETCC) { 3031 // (xor (setcc), (setcc)) == / != 1 -> (setcc) != / == (setcc) 3032 Cond = (Cond == ISD::SETEQ) ? ISD::SETNE : ISD::SETEQ; 3033 return DAG.getSetCC(dl, VT, Op0.getOperand(0), Op0.getOperand(1), 3034 Cond); 3035 } 3036 if (Op0.getOpcode() == ISD::AND && 3037 isa<ConstantSDNode>(Op0.getOperand(1)) && 3038 cast<ConstantSDNode>(Op0.getOperand(1))->isOne()) { 3039 // If this is (X&1) == / != 1, normalize it to (X&1) != / == 0. 3040 if (Op0.getValueType().bitsGT(VT)) 3041 Op0 = DAG.getNode(ISD::AND, dl, VT, 3042 DAG.getNode(ISD::TRUNCATE, dl, VT, Op0.getOperand(0)), 3043 DAG.getConstant(1, dl, VT)); 3044 else if (Op0.getValueType().bitsLT(VT)) 3045 Op0 = DAG.getNode(ISD::AND, dl, VT, 3046 DAG.getNode(ISD::ANY_EXTEND, dl, VT, Op0.getOperand(0)), 3047 DAG.getConstant(1, dl, VT)); 3048 3049 return DAG.getSetCC(dl, VT, Op0, 3050 DAG.getConstant(0, dl, Op0.getValueType()), 3051 Cond == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ); 3052 } 3053 if (Op0.getOpcode() == ISD::AssertZext && 3054 cast<VTSDNode>(Op0.getOperand(1))->getVT() == MVT::i1) 3055 return DAG.getSetCC(dl, VT, Op0, 3056 DAG.getConstant(0, dl, Op0.getValueType()), 3057 Cond == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ); 3058 } 3059 } 3060 3061 // Given: 3062 // icmp eq/ne (urem %x, %y), 0 3063 // Iff %x has 0 or 1 bits set, and %y has at least 2 bits set, omit 'urem': 3064 // icmp eq/ne %x, 0 3065 if (N0.getOpcode() == ISD::UREM && N1C->isNullValue() && 3066 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) { 3067 KnownBits XKnown = DAG.computeKnownBits(N0.getOperand(0)); 3068 KnownBits YKnown = DAG.computeKnownBits(N0.getOperand(1)); 3069 if (XKnown.countMaxPopulation() == 1 && YKnown.countMinPopulation() >= 2) 3070 return DAG.getSetCC(dl, VT, N0.getOperand(0), N1, Cond); 3071 } 3072 3073 if (SDValue V = 3074 optimizeSetCCOfSignedTruncationCheck(VT, N0, N1, Cond, DCI, dl)) 3075 return V; 3076 } 3077 3078 // These simplifications apply to splat vectors as well. 3079 // TODO: Handle more splat vector cases. 3080 if (auto *N1C = isConstOrConstSplat(N1)) { 3081 const APInt &C1 = N1C->getAPIntValue(); 3082 3083 APInt MinVal, MaxVal; 3084 unsigned OperandBitSize = N1C->getValueType(0).getScalarSizeInBits(); 3085 if (ISD::isSignedIntSetCC(Cond)) { 3086 MinVal = APInt::getSignedMinValue(OperandBitSize); 3087 MaxVal = APInt::getSignedMaxValue(OperandBitSize); 3088 } else { 3089 MinVal = APInt::getMinValue(OperandBitSize); 3090 MaxVal = APInt::getMaxValue(OperandBitSize); 3091 } 3092 3093 // Canonicalize GE/LE comparisons to use GT/LT comparisons. 3094 if (Cond == ISD::SETGE || Cond == ISD::SETUGE) { 3095 // X >= MIN --> true 3096 if (C1 == MinVal) 3097 return DAG.getBoolConstant(true, dl, VT, OpVT); 3098 3099 if (!VT.isVector()) { // TODO: Support this for vectors. 3100 // X >= C0 --> X > (C0 - 1) 3101 APInt C = C1 - 1; 3102 ISD::CondCode NewCC = (Cond == ISD::SETGE) ? ISD::SETGT : ISD::SETUGT; 3103 if ((DCI.isBeforeLegalizeOps() || 3104 isCondCodeLegal(NewCC, VT.getSimpleVT())) && 3105 (!N1C->isOpaque() || (C.getBitWidth() <= 64 && 3106 isLegalICmpImmediate(C.getSExtValue())))) { 3107 return DAG.getSetCC(dl, VT, N0, 3108 DAG.getConstant(C, dl, N1.getValueType()), 3109 NewCC); 3110 } 3111 } 3112 } 3113 3114 if (Cond == ISD::SETLE || Cond == ISD::SETULE) { 3115 // X <= MAX --> true 3116 if (C1 == MaxVal) 3117 return DAG.getBoolConstant(true, dl, VT, OpVT); 3118 3119 // X <= C0 --> X < (C0 + 1) 3120 if (!VT.isVector()) { // TODO: Support this for vectors. 3121 APInt C = C1 + 1; 3122 ISD::CondCode NewCC = (Cond == ISD::SETLE) ? ISD::SETLT : ISD::SETULT; 3123 if ((DCI.isBeforeLegalizeOps() || 3124 isCondCodeLegal(NewCC, VT.getSimpleVT())) && 3125 (!N1C->isOpaque() || (C.getBitWidth() <= 64 && 3126 isLegalICmpImmediate(C.getSExtValue())))) { 3127 return DAG.getSetCC(dl, VT, N0, 3128 DAG.getConstant(C, dl, N1.getValueType()), 3129 NewCC); 3130 } 3131 } 3132 } 3133 3134 if (Cond == ISD::SETLT || Cond == ISD::SETULT) { 3135 if (C1 == MinVal) 3136 return DAG.getBoolConstant(false, dl, VT, OpVT); // X < MIN --> false 3137 3138 // TODO: Support this for vectors after legalize ops. 3139 if (!VT.isVector() || DCI.isBeforeLegalizeOps()) { 3140 // Canonicalize setlt X, Max --> setne X, Max 3141 if (C1 == MaxVal) 3142 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETNE); 3143 3144 // If we have setult X, 1, turn it into seteq X, 0 3145 if (C1 == MinVal+1) 3146 return DAG.getSetCC(dl, VT, N0, 3147 DAG.getConstant(MinVal, dl, N0.getValueType()), 3148 ISD::SETEQ); 3149 } 3150 } 3151 3152 if (Cond == ISD::SETGT || Cond == ISD::SETUGT) { 3153 if (C1 == MaxVal) 3154 return DAG.getBoolConstant(false, dl, VT, OpVT); // X > MAX --> false 3155 3156 // TODO: Support this for vectors after legalize ops. 3157 if (!VT.isVector() || DCI.isBeforeLegalizeOps()) { 3158 // Canonicalize setgt X, Min --> setne X, Min 3159 if (C1 == MinVal) 3160 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETNE); 3161 3162 // If we have setugt X, Max-1, turn it into seteq X, Max 3163 if (C1 == MaxVal-1) 3164 return DAG.getSetCC(dl, VT, N0, 3165 DAG.getConstant(MaxVal, dl, N0.getValueType()), 3166 ISD::SETEQ); 3167 } 3168 } 3169 3170 // If we have "setcc X, C0", check to see if we can shrink the immediate 3171 // by changing cc. 3172 // TODO: Support this for vectors after legalize ops. 3173 if (!VT.isVector() || DCI.isBeforeLegalizeOps()) { 3174 // SETUGT X, SINTMAX -> SETLT X, 0 3175 if (Cond == ISD::SETUGT && 3176 C1 == APInt::getSignedMaxValue(OperandBitSize)) 3177 return DAG.getSetCC(dl, VT, N0, 3178 DAG.getConstant(0, dl, N1.getValueType()), 3179 ISD::SETLT); 3180 3181 // SETULT X, SINTMIN -> SETGT X, -1 3182 if (Cond == ISD::SETULT && 3183 C1 == APInt::getSignedMinValue(OperandBitSize)) { 3184 SDValue ConstMinusOne = 3185 DAG.getConstant(APInt::getAllOnesValue(OperandBitSize), dl, 3186 N1.getValueType()); 3187 return DAG.getSetCC(dl, VT, N0, ConstMinusOne, ISD::SETGT); 3188 } 3189 } 3190 } 3191 3192 // Back to non-vector simplifications. 3193 // TODO: Can we do these for vector splats? 3194 if (auto *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) { 3195 const APInt &C1 = N1C->getAPIntValue(); 3196 3197 // Fold bit comparisons when we can. 3198 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && 3199 (VT == N0.getValueType() || 3200 (isTypeLegal(VT) && VT.bitsLE(N0.getValueType()))) && 3201 N0.getOpcode() == ISD::AND) { 3202 auto &DL = DAG.getDataLayout(); 3203 if (auto *AndRHS = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 3204 EVT ShiftTy = getShiftAmountTy(N0.getValueType(), DL, 3205 !DCI.isBeforeLegalize()); 3206 if (Cond == ISD::SETNE && C1 == 0) {// (X & 8) != 0 --> (X & 8) >> 3 3207 // Perform the xform if the AND RHS is a single bit. 3208 if (AndRHS->getAPIntValue().isPowerOf2()) { 3209 return DAG.getNode(ISD::TRUNCATE, dl, VT, 3210 DAG.getNode(ISD::SRL, dl, N0.getValueType(), N0, 3211 DAG.getConstant(AndRHS->getAPIntValue().logBase2(), dl, 3212 ShiftTy))); 3213 } 3214 } else if (Cond == ISD::SETEQ && C1 == AndRHS->getAPIntValue()) { 3215 // (X & 8) == 8 --> (X & 8) >> 3 3216 // Perform the xform if C1 is a single bit. 3217 if (C1.isPowerOf2()) { 3218 return DAG.getNode(ISD::TRUNCATE, dl, VT, 3219 DAG.getNode(ISD::SRL, dl, N0.getValueType(), N0, 3220 DAG.getConstant(C1.logBase2(), dl, 3221 ShiftTy))); 3222 } 3223 } 3224 } 3225 } 3226 3227 if (C1.getMinSignedBits() <= 64 && 3228 !isLegalICmpImmediate(C1.getSExtValue())) { 3229 // (X & -256) == 256 -> (X >> 8) == 1 3230 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && 3231 N0.getOpcode() == ISD::AND && N0.hasOneUse()) { 3232 if (auto *AndRHS = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 3233 const APInt &AndRHSC = AndRHS->getAPIntValue(); 3234 if ((-AndRHSC).isPowerOf2() && (AndRHSC & C1) == C1) { 3235 unsigned ShiftBits = AndRHSC.countTrailingZeros(); 3236 auto &DL = DAG.getDataLayout(); 3237 EVT ShiftTy = getShiftAmountTy(N0.getValueType(), DL, 3238 !DCI.isBeforeLegalize()); 3239 EVT CmpTy = N0.getValueType(); 3240 SDValue Shift = DAG.getNode(ISD::SRL, dl, CmpTy, N0.getOperand(0), 3241 DAG.getConstant(ShiftBits, dl, 3242 ShiftTy)); 3243 SDValue CmpRHS = DAG.getConstant(C1.lshr(ShiftBits), dl, CmpTy); 3244 return DAG.getSetCC(dl, VT, Shift, CmpRHS, Cond); 3245 } 3246 } 3247 } else if (Cond == ISD::SETULT || Cond == ISD::SETUGE || 3248 Cond == ISD::SETULE || Cond == ISD::SETUGT) { 3249 bool AdjOne = (Cond == ISD::SETULE || Cond == ISD::SETUGT); 3250 // X < 0x100000000 -> (X >> 32) < 1 3251 // X >= 0x100000000 -> (X >> 32) >= 1 3252 // X <= 0x0ffffffff -> (X >> 32) < 1 3253 // X > 0x0ffffffff -> (X >> 32) >= 1 3254 unsigned ShiftBits; 3255 APInt NewC = C1; 3256 ISD::CondCode NewCond = Cond; 3257 if (AdjOne) { 3258 ShiftBits = C1.countTrailingOnes(); 3259 NewC = NewC + 1; 3260 NewCond = (Cond == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE; 3261 } else { 3262 ShiftBits = C1.countTrailingZeros(); 3263 } 3264 NewC.lshrInPlace(ShiftBits); 3265 if (ShiftBits && NewC.getMinSignedBits() <= 64 && 3266 isLegalICmpImmediate(NewC.getSExtValue())) { 3267 auto &DL = DAG.getDataLayout(); 3268 EVT ShiftTy = getShiftAmountTy(N0.getValueType(), DL, 3269 !DCI.isBeforeLegalize()); 3270 EVT CmpTy = N0.getValueType(); 3271 SDValue Shift = DAG.getNode(ISD::SRL, dl, CmpTy, N0, 3272 DAG.getConstant(ShiftBits, dl, ShiftTy)); 3273 SDValue CmpRHS = DAG.getConstant(NewC, dl, CmpTy); 3274 return DAG.getSetCC(dl, VT, Shift, CmpRHS, NewCond); 3275 } 3276 } 3277 } 3278 } 3279 3280 if (!isa<ConstantFPSDNode>(N0) && isa<ConstantFPSDNode>(N1)) { 3281 auto *CFP = cast<ConstantFPSDNode>(N1); 3282 assert(!CFP->getValueAPF().isNaN() && "Unexpected NaN value"); 3283 3284 // Otherwise, we know the RHS is not a NaN. Simplify the node to drop the 3285 // constant if knowing that the operand is non-nan is enough. We prefer to 3286 // have SETO(x,x) instead of SETO(x, 0.0) because this avoids having to 3287 // materialize 0.0. 3288 if (Cond == ISD::SETO || Cond == ISD::SETUO) 3289 return DAG.getSetCC(dl, VT, N0, N0, Cond); 3290 3291 // setcc (fneg x), C -> setcc swap(pred) x, -C 3292 if (N0.getOpcode() == ISD::FNEG) { 3293 ISD::CondCode SwapCond = ISD::getSetCCSwappedOperands(Cond); 3294 if (DCI.isBeforeLegalizeOps() || 3295 isCondCodeLegal(SwapCond, N0.getSimpleValueType())) { 3296 SDValue NegN1 = DAG.getNode(ISD::FNEG, dl, N0.getValueType(), N1); 3297 return DAG.getSetCC(dl, VT, N0.getOperand(0), NegN1, SwapCond); 3298 } 3299 } 3300 3301 // If the condition is not legal, see if we can find an equivalent one 3302 // which is legal. 3303 if (!isCondCodeLegal(Cond, N0.getSimpleValueType())) { 3304 // If the comparison was an awkward floating-point == or != and one of 3305 // the comparison operands is infinity or negative infinity, convert the 3306 // condition to a less-awkward <= or >=. 3307 if (CFP->getValueAPF().isInfinity()) { 3308 if (CFP->getValueAPF().isNegative()) { 3309 if (Cond == ISD::SETOEQ && 3310 isCondCodeLegal(ISD::SETOLE, N0.getSimpleValueType())) 3311 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETOLE); 3312 if (Cond == ISD::SETUEQ && 3313 isCondCodeLegal(ISD::SETOLE, N0.getSimpleValueType())) 3314 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETULE); 3315 if (Cond == ISD::SETUNE && 3316 isCondCodeLegal(ISD::SETUGT, N0.getSimpleValueType())) 3317 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETUGT); 3318 if (Cond == ISD::SETONE && 3319 isCondCodeLegal(ISD::SETUGT, N0.getSimpleValueType())) 3320 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETOGT); 3321 } else { 3322 if (Cond == ISD::SETOEQ && 3323 isCondCodeLegal(ISD::SETOGE, N0.getSimpleValueType())) 3324 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETOGE); 3325 if (Cond == ISD::SETUEQ && 3326 isCondCodeLegal(ISD::SETOGE, N0.getSimpleValueType())) 3327 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETUGE); 3328 if (Cond == ISD::SETUNE && 3329 isCondCodeLegal(ISD::SETULT, N0.getSimpleValueType())) 3330 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETULT); 3331 if (Cond == ISD::SETONE && 3332 isCondCodeLegal(ISD::SETULT, N0.getSimpleValueType())) 3333 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETOLT); 3334 } 3335 } 3336 } 3337 } 3338 3339 if (N0 == N1) { 3340 // The sext(setcc()) => setcc() optimization relies on the appropriate 3341 // constant being emitted. 3342 assert(!N0.getValueType().isInteger() && 3343 "Integer types should be handled by FoldSetCC"); 3344 3345 bool EqTrue = ISD::isTrueWhenEqual(Cond); 3346 unsigned UOF = ISD::getUnorderedFlavor(Cond); 3347 if (UOF == 2) // FP operators that are undefined on NaNs. 3348 return DAG.getBoolConstant(EqTrue, dl, VT, OpVT); 3349 if (UOF == unsigned(EqTrue)) 3350 return DAG.getBoolConstant(EqTrue, dl, VT, OpVT); 3351 // Otherwise, we can't fold it. However, we can simplify it to SETUO/SETO 3352 // if it is not already. 3353 ISD::CondCode NewCond = UOF == 0 ? ISD::SETO : ISD::SETUO; 3354 if (NewCond != Cond && 3355 (DCI.isBeforeLegalizeOps() || 3356 isCondCodeLegal(NewCond, N0.getSimpleValueType()))) 3357 return DAG.getSetCC(dl, VT, N0, N1, NewCond); 3358 } 3359 3360 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && 3361 N0.getValueType().isInteger()) { 3362 if (N0.getOpcode() == ISD::ADD || N0.getOpcode() == ISD::SUB || 3363 N0.getOpcode() == ISD::XOR) { 3364 // Simplify (X+Y) == (X+Z) --> Y == Z 3365 if (N0.getOpcode() == N1.getOpcode()) { 3366 if (N0.getOperand(0) == N1.getOperand(0)) 3367 return DAG.getSetCC(dl, VT, N0.getOperand(1), N1.getOperand(1), Cond); 3368 if (N0.getOperand(1) == N1.getOperand(1)) 3369 return DAG.getSetCC(dl, VT, N0.getOperand(0), N1.getOperand(0), Cond); 3370 if (isCommutativeBinOp(N0.getOpcode())) { 3371 // If X op Y == Y op X, try other combinations. 3372 if (N0.getOperand(0) == N1.getOperand(1)) 3373 return DAG.getSetCC(dl, VT, N0.getOperand(1), N1.getOperand(0), 3374 Cond); 3375 if (N0.getOperand(1) == N1.getOperand(0)) 3376 return DAG.getSetCC(dl, VT, N0.getOperand(0), N1.getOperand(1), 3377 Cond); 3378 } 3379 } 3380 3381 // If RHS is a legal immediate value for a compare instruction, we need 3382 // to be careful about increasing register pressure needlessly. 3383 bool LegalRHSImm = false; 3384 3385 if (auto *RHSC = dyn_cast<ConstantSDNode>(N1)) { 3386 if (auto *LHSR = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 3387 // Turn (X+C1) == C2 --> X == C2-C1 3388 if (N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse()) { 3389 return DAG.getSetCC(dl, VT, N0.getOperand(0), 3390 DAG.getConstant(RHSC->getAPIntValue()- 3391 LHSR->getAPIntValue(), 3392 dl, N0.getValueType()), Cond); 3393 } 3394 3395 // Turn (X^C1) == C2 into X == C1^C2 iff X&~C1 = 0. 3396 if (N0.getOpcode() == ISD::XOR) 3397 // If we know that all of the inverted bits are zero, don't bother 3398 // performing the inversion. 3399 if (DAG.MaskedValueIsZero(N0.getOperand(0), ~LHSR->getAPIntValue())) 3400 return 3401 DAG.getSetCC(dl, VT, N0.getOperand(0), 3402 DAG.getConstant(LHSR->getAPIntValue() ^ 3403 RHSC->getAPIntValue(), 3404 dl, N0.getValueType()), 3405 Cond); 3406 } 3407 3408 // Turn (C1-X) == C2 --> X == C1-C2 3409 if (auto *SUBC = dyn_cast<ConstantSDNode>(N0.getOperand(0))) { 3410 if (N0.getOpcode() == ISD::SUB && N0.getNode()->hasOneUse()) { 3411 return 3412 DAG.getSetCC(dl, VT, N0.getOperand(1), 3413 DAG.getConstant(SUBC->getAPIntValue() - 3414 RHSC->getAPIntValue(), 3415 dl, N0.getValueType()), 3416 Cond); 3417 } 3418 } 3419 3420 // Could RHSC fold directly into a compare? 3421 if (RHSC->getValueType(0).getSizeInBits() <= 64) 3422 LegalRHSImm = isLegalICmpImmediate(RHSC->getSExtValue()); 3423 } 3424 3425 // (X+Y) == X --> Y == 0 and similar folds. 3426 // Don't do this if X is an immediate that can fold into a cmp 3427 // instruction and X+Y has other uses. It could be an induction variable 3428 // chain, and the transform would increase register pressure. 3429 if (!LegalRHSImm || N0.hasOneUse()) 3430 if (SDValue V = foldSetCCWithBinOp(VT, N0, N1, Cond, dl, DCI)) 3431 return V; 3432 } 3433 3434 if (N1.getOpcode() == ISD::ADD || N1.getOpcode() == ISD::SUB || 3435 N1.getOpcode() == ISD::XOR) 3436 if (SDValue V = foldSetCCWithBinOp(VT, N1, N0, Cond, dl, DCI)) 3437 return V; 3438 3439 if (SDValue V = foldSetCCWithAnd(VT, N0, N1, Cond, dl, DCI)) 3440 return V; 3441 } 3442 3443 // Fold remainder of division by a constant. 3444 if (N0.getOpcode() == ISD::UREM && N0.hasOneUse() && 3445 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) { 3446 AttributeList Attr = DAG.getMachineFunction().getFunction().getAttributes(); 3447 3448 // When division is cheap or optimizing for minimum size, 3449 // fall through to DIVREM creation by skipping this fold. 3450 if (!isIntDivCheap(VT, Attr) && !Attr.hasFnAttribute(Attribute::MinSize)) 3451 if (SDValue Folded = buildUREMEqFold(VT, N0, N1, Cond, DCI, dl)) 3452 return Folded; 3453 } 3454 3455 // Fold away ALL boolean setcc's. 3456 if (N0.getValueType().getScalarType() == MVT::i1 && foldBooleans) { 3457 SDValue Temp; 3458 switch (Cond) { 3459 default: llvm_unreachable("Unknown integer setcc!"); 3460 case ISD::SETEQ: // X == Y -> ~(X^Y) 3461 Temp = DAG.getNode(ISD::XOR, dl, OpVT, N0, N1); 3462 N0 = DAG.getNOT(dl, Temp, OpVT); 3463 if (!DCI.isCalledByLegalizer()) 3464 DCI.AddToWorklist(Temp.getNode()); 3465 break; 3466 case ISD::SETNE: // X != Y --> (X^Y) 3467 N0 = DAG.getNode(ISD::XOR, dl, OpVT, N0, N1); 3468 break; 3469 case ISD::SETGT: // X >s Y --> X == 0 & Y == 1 --> ~X & Y 3470 case ISD::SETULT: // X <u Y --> X == 0 & Y == 1 --> ~X & Y 3471 Temp = DAG.getNOT(dl, N0, OpVT); 3472 N0 = DAG.getNode(ISD::AND, dl, OpVT, N1, Temp); 3473 if (!DCI.isCalledByLegalizer()) 3474 DCI.AddToWorklist(Temp.getNode()); 3475 break; 3476 case ISD::SETLT: // X <s Y --> X == 1 & Y == 0 --> ~Y & X 3477 case ISD::SETUGT: // X >u Y --> X == 1 & Y == 0 --> ~Y & X 3478 Temp = DAG.getNOT(dl, N1, OpVT); 3479 N0 = DAG.getNode(ISD::AND, dl, OpVT, N0, Temp); 3480 if (!DCI.isCalledByLegalizer()) 3481 DCI.AddToWorklist(Temp.getNode()); 3482 break; 3483 case ISD::SETULE: // X <=u Y --> X == 0 | Y == 1 --> ~X | Y 3484 case ISD::SETGE: // X >=s Y --> X == 0 | Y == 1 --> ~X | Y 3485 Temp = DAG.getNOT(dl, N0, OpVT); 3486 N0 = DAG.getNode(ISD::OR, dl, OpVT, N1, Temp); 3487 if (!DCI.isCalledByLegalizer()) 3488 DCI.AddToWorklist(Temp.getNode()); 3489 break; 3490 case ISD::SETUGE: // X >=u Y --> X == 1 | Y == 0 --> ~Y | X 3491 case ISD::SETLE: // X <=s Y --> X == 1 | Y == 0 --> ~Y | X 3492 Temp = DAG.getNOT(dl, N1, OpVT); 3493 N0 = DAG.getNode(ISD::OR, dl, OpVT, N0, Temp); 3494 break; 3495 } 3496 if (VT.getScalarType() != MVT::i1) { 3497 if (!DCI.isCalledByLegalizer()) 3498 DCI.AddToWorklist(N0.getNode()); 3499 // FIXME: If running after legalize, we probably can't do this. 3500 ISD::NodeType ExtendCode = getExtendForContent(getBooleanContents(OpVT)); 3501 N0 = DAG.getNode(ExtendCode, dl, VT, N0); 3502 } 3503 return N0; 3504 } 3505 3506 // Could not fold it. 3507 return SDValue(); 3508 } 3509 3510 /// Returns true (and the GlobalValue and the offset) if the node is a 3511 /// GlobalAddress + offset. 3512 bool TargetLowering::isGAPlusOffset(SDNode *WN, const GlobalValue *&GA, 3513 int64_t &Offset) const { 3514 3515 SDNode *N = unwrapAddress(SDValue(WN, 0)).getNode(); 3516 3517 if (auto *GASD = dyn_cast<GlobalAddressSDNode>(N)) { 3518 GA = GASD->getGlobal(); 3519 Offset += GASD->getOffset(); 3520 return true; 3521 } 3522 3523 if (N->getOpcode() == ISD::ADD) { 3524 SDValue N1 = N->getOperand(0); 3525 SDValue N2 = N->getOperand(1); 3526 if (isGAPlusOffset(N1.getNode(), GA, Offset)) { 3527 if (auto *V = dyn_cast<ConstantSDNode>(N2)) { 3528 Offset += V->getSExtValue(); 3529 return true; 3530 } 3531 } else if (isGAPlusOffset(N2.getNode(), GA, Offset)) { 3532 if (auto *V = dyn_cast<ConstantSDNode>(N1)) { 3533 Offset += V->getSExtValue(); 3534 return true; 3535 } 3536 } 3537 } 3538 3539 return false; 3540 } 3541 3542 SDValue TargetLowering::PerformDAGCombine(SDNode *N, 3543 DAGCombinerInfo &DCI) const { 3544 // Default implementation: no optimization. 3545 return SDValue(); 3546 } 3547 3548 //===----------------------------------------------------------------------===// 3549 // Inline Assembler Implementation Methods 3550 //===----------------------------------------------------------------------===// 3551 3552 TargetLowering::ConstraintType 3553 TargetLowering::getConstraintType(StringRef Constraint) const { 3554 unsigned S = Constraint.size(); 3555 3556 if (S == 1) { 3557 switch (Constraint[0]) { 3558 default: break; 3559 case 'r': return C_RegisterClass; 3560 case 'm': // memory 3561 case 'o': // offsetable 3562 case 'V': // not offsetable 3563 return C_Memory; 3564 case 'i': // Simple Integer or Relocatable Constant 3565 case 'n': // Simple Integer 3566 case 'E': // Floating Point Constant 3567 case 'F': // Floating Point Constant 3568 case 's': // Relocatable Constant 3569 case 'p': // Address. 3570 case 'X': // Allow ANY value. 3571 case 'I': // Target registers. 3572 case 'J': 3573 case 'K': 3574 case 'L': 3575 case 'M': 3576 case 'N': 3577 case 'O': 3578 case 'P': 3579 case '<': 3580 case '>': 3581 return C_Other; 3582 } 3583 } 3584 3585 if (S > 1 && Constraint[0] == '{' && Constraint[S - 1] == '}') { 3586 if (S == 8 && Constraint.substr(1, 6) == "memory") // "{memory}" 3587 return C_Memory; 3588 return C_Register; 3589 } 3590 return C_Unknown; 3591 } 3592 3593 /// Try to replace an X constraint, which matches anything, with another that 3594 /// has more specific requirements based on the type of the corresponding 3595 /// operand. 3596 const char *TargetLowering::LowerXConstraint(EVT ConstraintVT) const { 3597 if (ConstraintVT.isInteger()) 3598 return "r"; 3599 if (ConstraintVT.isFloatingPoint()) 3600 return "f"; // works for many targets 3601 return nullptr; 3602 } 3603 3604 SDValue TargetLowering::LowerAsmOutputForConstraint( 3605 SDValue &Chain, SDValue &Flag, SDLoc DL, const AsmOperandInfo &OpInfo, 3606 SelectionDAG &DAG) const { 3607 return SDValue(); 3608 } 3609 3610 /// Lower the specified operand into the Ops vector. 3611 /// If it is invalid, don't add anything to Ops. 3612 void TargetLowering::LowerAsmOperandForConstraint(SDValue Op, 3613 std::string &Constraint, 3614 std::vector<SDValue> &Ops, 3615 SelectionDAG &DAG) const { 3616 3617 if (Constraint.length() > 1) return; 3618 3619 char ConstraintLetter = Constraint[0]; 3620 switch (ConstraintLetter) { 3621 default: break; 3622 case 'X': // Allows any operand; labels (basic block) use this. 3623 if (Op.getOpcode() == ISD::BasicBlock || 3624 Op.getOpcode() == ISD::TargetBlockAddress) { 3625 Ops.push_back(Op); 3626 return; 3627 } 3628 LLVM_FALLTHROUGH; 3629 case 'i': // Simple Integer or Relocatable Constant 3630 case 'n': // Simple Integer 3631 case 's': { // Relocatable Constant 3632 3633 GlobalAddressSDNode *GA; 3634 ConstantSDNode *C; 3635 BlockAddressSDNode *BA; 3636 uint64_t Offset = 0; 3637 3638 // Match (GA) or (C) or (GA+C) or (GA-C) or ((GA+C)+C) or (((GA+C)+C)+C), 3639 // etc., since getelementpointer is variadic. We can't use 3640 // SelectionDAG::FoldSymbolOffset because it expects the GA to be accessible 3641 // while in this case the GA may be furthest from the root node which is 3642 // likely an ISD::ADD. 3643 while (1) { 3644 if ((GA = dyn_cast<GlobalAddressSDNode>(Op)) && ConstraintLetter != 'n') { 3645 Ops.push_back(DAG.getTargetGlobalAddress(GA->getGlobal(), SDLoc(Op), 3646 GA->getValueType(0), 3647 Offset + GA->getOffset())); 3648 return; 3649 } else if ((C = dyn_cast<ConstantSDNode>(Op)) && 3650 ConstraintLetter != 's') { 3651 // gcc prints these as sign extended. Sign extend value to 64 bits 3652 // now; without this it would get ZExt'd later in 3653 // ScheduleDAGSDNodes::EmitNode, which is very generic. 3654 bool IsBool = C->getConstantIntValue()->getBitWidth() == 1; 3655 BooleanContent BCont = getBooleanContents(MVT::i64); 3656 ISD::NodeType ExtOpc = IsBool ? getExtendForContent(BCont) 3657 : ISD::SIGN_EXTEND; 3658 int64_t ExtVal = ExtOpc == ISD::ZERO_EXTEND ? C->getZExtValue() 3659 : C->getSExtValue(); 3660 Ops.push_back(DAG.getTargetConstant(Offset + ExtVal, 3661 SDLoc(C), MVT::i64)); 3662 return; 3663 } else if ((BA = dyn_cast<BlockAddressSDNode>(Op)) && 3664 ConstraintLetter != 'n') { 3665 Ops.push_back(DAG.getTargetBlockAddress( 3666 BA->getBlockAddress(), BA->getValueType(0), 3667 Offset + BA->getOffset(), BA->getTargetFlags())); 3668 return; 3669 } else { 3670 const unsigned OpCode = Op.getOpcode(); 3671 if (OpCode == ISD::ADD || OpCode == ISD::SUB) { 3672 if ((C = dyn_cast<ConstantSDNode>(Op.getOperand(0)))) 3673 Op = Op.getOperand(1); 3674 // Subtraction is not commutative. 3675 else if (OpCode == ISD::ADD && 3676 (C = dyn_cast<ConstantSDNode>(Op.getOperand(1)))) 3677 Op = Op.getOperand(0); 3678 else 3679 return; 3680 Offset += (OpCode == ISD::ADD ? 1 : -1) * C->getSExtValue(); 3681 continue; 3682 } 3683 } 3684 return; 3685 } 3686 break; 3687 } 3688 } 3689 } 3690 3691 std::pair<unsigned, const TargetRegisterClass *> 3692 TargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *RI, 3693 StringRef Constraint, 3694 MVT VT) const { 3695 if (Constraint.empty() || Constraint[0] != '{') 3696 return std::make_pair(0u, static_cast<TargetRegisterClass *>(nullptr)); 3697 assert(*(Constraint.end() - 1) == '}' && "Not a brace enclosed constraint?"); 3698 3699 // Remove the braces from around the name. 3700 StringRef RegName(Constraint.data() + 1, Constraint.size() - 2); 3701 3702 std::pair<unsigned, const TargetRegisterClass *> R = 3703 std::make_pair(0u, static_cast<const TargetRegisterClass *>(nullptr)); 3704 3705 // Figure out which register class contains this reg. 3706 for (const TargetRegisterClass *RC : RI->regclasses()) { 3707 // If none of the value types for this register class are valid, we 3708 // can't use it. For example, 64-bit reg classes on 32-bit targets. 3709 if (!isLegalRC(*RI, *RC)) 3710 continue; 3711 3712 for (TargetRegisterClass::iterator I = RC->begin(), E = RC->end(); 3713 I != E; ++I) { 3714 if (RegName.equals_lower(RI->getRegAsmName(*I))) { 3715 std::pair<unsigned, const TargetRegisterClass *> S = 3716 std::make_pair(*I, RC); 3717 3718 // If this register class has the requested value type, return it, 3719 // otherwise keep searching and return the first class found 3720 // if no other is found which explicitly has the requested type. 3721 if (RI->isTypeLegalForClass(*RC, VT)) 3722 return S; 3723 if (!R.second) 3724 R = S; 3725 } 3726 } 3727 } 3728 3729 return R; 3730 } 3731 3732 //===----------------------------------------------------------------------===// 3733 // Constraint Selection. 3734 3735 /// Return true of this is an input operand that is a matching constraint like 3736 /// "4". 3737 bool TargetLowering::AsmOperandInfo::isMatchingInputConstraint() const { 3738 assert(!ConstraintCode.empty() && "No known constraint!"); 3739 return isdigit(static_cast<unsigned char>(ConstraintCode[0])); 3740 } 3741 3742 /// If this is an input matching constraint, this method returns the output 3743 /// operand it matches. 3744 unsigned TargetLowering::AsmOperandInfo::getMatchedOperand() const { 3745 assert(!ConstraintCode.empty() && "No known constraint!"); 3746 return atoi(ConstraintCode.c_str()); 3747 } 3748 3749 /// Split up the constraint string from the inline assembly value into the 3750 /// specific constraints and their prefixes, and also tie in the associated 3751 /// operand values. 3752 /// If this returns an empty vector, and if the constraint string itself 3753 /// isn't empty, there was an error parsing. 3754 TargetLowering::AsmOperandInfoVector 3755 TargetLowering::ParseConstraints(const DataLayout &DL, 3756 const TargetRegisterInfo *TRI, 3757 ImmutableCallSite CS) const { 3758 /// Information about all of the constraints. 3759 AsmOperandInfoVector ConstraintOperands; 3760 const InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); 3761 unsigned maCount = 0; // Largest number of multiple alternative constraints. 3762 3763 // Do a prepass over the constraints, canonicalizing them, and building up the 3764 // ConstraintOperands list. 3765 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. 3766 unsigned ResNo = 0; // ResNo - The result number of the next output. 3767 3768 for (InlineAsm::ConstraintInfo &CI : IA->ParseConstraints()) { 3769 ConstraintOperands.emplace_back(std::move(CI)); 3770 AsmOperandInfo &OpInfo = ConstraintOperands.back(); 3771 3772 // Update multiple alternative constraint count. 3773 if (OpInfo.multipleAlternatives.size() > maCount) 3774 maCount = OpInfo.multipleAlternatives.size(); 3775 3776 OpInfo.ConstraintVT = MVT::Other; 3777 3778 // Compute the value type for each operand. 3779 switch (OpInfo.Type) { 3780 case InlineAsm::isOutput: 3781 // Indirect outputs just consume an argument. 3782 if (OpInfo.isIndirect) { 3783 OpInfo.CallOperandVal = const_cast<Value *>(CS.getArgument(ArgNo++)); 3784 break; 3785 } 3786 3787 // The return value of the call is this value. As such, there is no 3788 // corresponding argument. 3789 assert(!CS.getType()->isVoidTy() && 3790 "Bad inline asm!"); 3791 if (StructType *STy = dyn_cast<StructType>(CS.getType())) { 3792 OpInfo.ConstraintVT = 3793 getSimpleValueType(DL, STy->getElementType(ResNo)); 3794 } else { 3795 assert(ResNo == 0 && "Asm only has one result!"); 3796 OpInfo.ConstraintVT = getSimpleValueType(DL, CS.getType()); 3797 } 3798 ++ResNo; 3799 break; 3800 case InlineAsm::isInput: 3801 OpInfo.CallOperandVal = const_cast<Value *>(CS.getArgument(ArgNo++)); 3802 break; 3803 case InlineAsm::isClobber: 3804 // Nothing to do. 3805 break; 3806 } 3807 3808 if (OpInfo.CallOperandVal) { 3809 llvm::Type *OpTy = OpInfo.CallOperandVal->getType(); 3810 if (OpInfo.isIndirect) { 3811 llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy); 3812 if (!PtrTy) 3813 report_fatal_error("Indirect operand for inline asm not a pointer!"); 3814 OpTy = PtrTy->getElementType(); 3815 } 3816 3817 // Look for vector wrapped in a struct. e.g. { <16 x i8> }. 3818 if (StructType *STy = dyn_cast<StructType>(OpTy)) 3819 if (STy->getNumElements() == 1) 3820 OpTy = STy->getElementType(0); 3821 3822 // If OpTy is not a single value, it may be a struct/union that we 3823 // can tile with integers. 3824 if (!OpTy->isSingleValueType() && OpTy->isSized()) { 3825 unsigned BitSize = DL.getTypeSizeInBits(OpTy); 3826 switch (BitSize) { 3827 default: break; 3828 case 1: 3829 case 8: 3830 case 16: 3831 case 32: 3832 case 64: 3833 case 128: 3834 OpInfo.ConstraintVT = 3835 MVT::getVT(IntegerType::get(OpTy->getContext(), BitSize), true); 3836 break; 3837 } 3838 } else if (PointerType *PT = dyn_cast<PointerType>(OpTy)) { 3839 unsigned PtrSize = DL.getPointerSizeInBits(PT->getAddressSpace()); 3840 OpInfo.ConstraintVT = MVT::getIntegerVT(PtrSize); 3841 } else { 3842 OpInfo.ConstraintVT = MVT::getVT(OpTy, true); 3843 } 3844 } 3845 } 3846 3847 // If we have multiple alternative constraints, select the best alternative. 3848 if (!ConstraintOperands.empty()) { 3849 if (maCount) { 3850 unsigned bestMAIndex = 0; 3851 int bestWeight = -1; 3852 // weight: -1 = invalid match, and 0 = so-so match to 5 = good match. 3853 int weight = -1; 3854 unsigned maIndex; 3855 // Compute the sums of the weights for each alternative, keeping track 3856 // of the best (highest weight) one so far. 3857 for (maIndex = 0; maIndex < maCount; ++maIndex) { 3858 int weightSum = 0; 3859 for (unsigned cIndex = 0, eIndex = ConstraintOperands.size(); 3860 cIndex != eIndex; ++cIndex) { 3861 AsmOperandInfo &OpInfo = ConstraintOperands[cIndex]; 3862 if (OpInfo.Type == InlineAsm::isClobber) 3863 continue; 3864 3865 // If this is an output operand with a matching input operand, 3866 // look up the matching input. If their types mismatch, e.g. one 3867 // is an integer, the other is floating point, or their sizes are 3868 // different, flag it as an maCantMatch. 3869 if (OpInfo.hasMatchingInput()) { 3870 AsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; 3871 if (OpInfo.ConstraintVT != Input.ConstraintVT) { 3872 if ((OpInfo.ConstraintVT.isInteger() != 3873 Input.ConstraintVT.isInteger()) || 3874 (OpInfo.ConstraintVT.getSizeInBits() != 3875 Input.ConstraintVT.getSizeInBits())) { 3876 weightSum = -1; // Can't match. 3877 break; 3878 } 3879 } 3880 } 3881 weight = getMultipleConstraintMatchWeight(OpInfo, maIndex); 3882 if (weight == -1) { 3883 weightSum = -1; 3884 break; 3885 } 3886 weightSum += weight; 3887 } 3888 // Update best. 3889 if (weightSum > bestWeight) { 3890 bestWeight = weightSum; 3891 bestMAIndex = maIndex; 3892 } 3893 } 3894 3895 // Now select chosen alternative in each constraint. 3896 for (unsigned cIndex = 0, eIndex = ConstraintOperands.size(); 3897 cIndex != eIndex; ++cIndex) { 3898 AsmOperandInfo &cInfo = ConstraintOperands[cIndex]; 3899 if (cInfo.Type == InlineAsm::isClobber) 3900 continue; 3901 cInfo.selectAlternative(bestMAIndex); 3902 } 3903 } 3904 } 3905 3906 // Check and hook up tied operands, choose constraint code to use. 3907 for (unsigned cIndex = 0, eIndex = ConstraintOperands.size(); 3908 cIndex != eIndex; ++cIndex) { 3909 AsmOperandInfo &OpInfo = ConstraintOperands[cIndex]; 3910 3911 // If this is an output operand with a matching input operand, look up the 3912 // matching input. If their types mismatch, e.g. one is an integer, the 3913 // other is floating point, or their sizes are different, flag it as an 3914 // error. 3915 if (OpInfo.hasMatchingInput()) { 3916 AsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; 3917 3918 if (OpInfo.ConstraintVT != Input.ConstraintVT) { 3919 std::pair<unsigned, const TargetRegisterClass *> MatchRC = 3920 getRegForInlineAsmConstraint(TRI, OpInfo.ConstraintCode, 3921 OpInfo.ConstraintVT); 3922 std::pair<unsigned, const TargetRegisterClass *> InputRC = 3923 getRegForInlineAsmConstraint(TRI, Input.ConstraintCode, 3924 Input.ConstraintVT); 3925 if ((OpInfo.ConstraintVT.isInteger() != 3926 Input.ConstraintVT.isInteger()) || 3927 (MatchRC.second != InputRC.second)) { 3928 report_fatal_error("Unsupported asm: input constraint" 3929 " with a matching output constraint of" 3930 " incompatible type!"); 3931 } 3932 } 3933 } 3934 } 3935 3936 return ConstraintOperands; 3937 } 3938 3939 /// Return an integer indicating how general CT is. 3940 static unsigned getConstraintGenerality(TargetLowering::ConstraintType CT) { 3941 switch (CT) { 3942 case TargetLowering::C_Other: 3943 case TargetLowering::C_Unknown: 3944 return 0; 3945 case TargetLowering::C_Register: 3946 return 1; 3947 case TargetLowering::C_RegisterClass: 3948 return 2; 3949 case TargetLowering::C_Memory: 3950 return 3; 3951 } 3952 llvm_unreachable("Invalid constraint type"); 3953 } 3954 3955 /// Examine constraint type and operand type and determine a weight value. 3956 /// This object must already have been set up with the operand type 3957 /// and the current alternative constraint selected. 3958 TargetLowering::ConstraintWeight 3959 TargetLowering::getMultipleConstraintMatchWeight( 3960 AsmOperandInfo &info, int maIndex) const { 3961 InlineAsm::ConstraintCodeVector *rCodes; 3962 if (maIndex >= (int)info.multipleAlternatives.size()) 3963 rCodes = &info.Codes; 3964 else 3965 rCodes = &info.multipleAlternatives[maIndex].Codes; 3966 ConstraintWeight BestWeight = CW_Invalid; 3967 3968 // Loop over the options, keeping track of the most general one. 3969 for (unsigned i = 0, e = rCodes->size(); i != e; ++i) { 3970 ConstraintWeight weight = 3971 getSingleConstraintMatchWeight(info, (*rCodes)[i].c_str()); 3972 if (weight > BestWeight) 3973 BestWeight = weight; 3974 } 3975 3976 return BestWeight; 3977 } 3978 3979 /// Examine constraint type and operand type and determine a weight value. 3980 /// This object must already have been set up with the operand type 3981 /// and the current alternative constraint selected. 3982 TargetLowering::ConstraintWeight 3983 TargetLowering::getSingleConstraintMatchWeight( 3984 AsmOperandInfo &info, const char *constraint) const { 3985 ConstraintWeight weight = CW_Invalid; 3986 Value *CallOperandVal = info.CallOperandVal; 3987 // If we don't have a value, we can't do a match, 3988 // but allow it at the lowest weight. 3989 if (!CallOperandVal) 3990 return CW_Default; 3991 // Look at the constraint type. 3992 switch (*constraint) { 3993 case 'i': // immediate integer. 3994 case 'n': // immediate integer with a known value. 3995 if (isa<ConstantInt>(CallOperandVal)) 3996 weight = CW_Constant; 3997 break; 3998 case 's': // non-explicit intregal immediate. 3999 if (isa<GlobalValue>(CallOperandVal)) 4000 weight = CW_Constant; 4001 break; 4002 case 'E': // immediate float if host format. 4003 case 'F': // immediate float. 4004 if (isa<ConstantFP>(CallOperandVal)) 4005 weight = CW_Constant; 4006 break; 4007 case '<': // memory operand with autodecrement. 4008 case '>': // memory operand with autoincrement. 4009 case 'm': // memory operand. 4010 case 'o': // offsettable memory operand 4011 case 'V': // non-offsettable memory operand 4012 weight = CW_Memory; 4013 break; 4014 case 'r': // general register. 4015 case 'g': // general register, memory operand or immediate integer. 4016 // note: Clang converts "g" to "imr". 4017 if (CallOperandVal->getType()->isIntegerTy()) 4018 weight = CW_Register; 4019 break; 4020 case 'X': // any operand. 4021 default: 4022 weight = CW_Default; 4023 break; 4024 } 4025 return weight; 4026 } 4027 4028 /// If there are multiple different constraints that we could pick for this 4029 /// operand (e.g. "imr") try to pick the 'best' one. 4030 /// This is somewhat tricky: constraints fall into four classes: 4031 /// Other -> immediates and magic values 4032 /// Register -> one specific register 4033 /// RegisterClass -> a group of regs 4034 /// Memory -> memory 4035 /// Ideally, we would pick the most specific constraint possible: if we have 4036 /// something that fits into a register, we would pick it. The problem here 4037 /// is that if we have something that could either be in a register or in 4038 /// memory that use of the register could cause selection of *other* 4039 /// operands to fail: they might only succeed if we pick memory. Because of 4040 /// this the heuristic we use is: 4041 /// 4042 /// 1) If there is an 'other' constraint, and if the operand is valid for 4043 /// that constraint, use it. This makes us take advantage of 'i' 4044 /// constraints when available. 4045 /// 2) Otherwise, pick the most general constraint present. This prefers 4046 /// 'm' over 'r', for example. 4047 /// 4048 static void ChooseConstraint(TargetLowering::AsmOperandInfo &OpInfo, 4049 const TargetLowering &TLI, 4050 SDValue Op, SelectionDAG *DAG) { 4051 assert(OpInfo.Codes.size() > 1 && "Doesn't have multiple constraint options"); 4052 unsigned BestIdx = 0; 4053 TargetLowering::ConstraintType BestType = TargetLowering::C_Unknown; 4054 int BestGenerality = -1; 4055 4056 // Loop over the options, keeping track of the most general one. 4057 for (unsigned i = 0, e = OpInfo.Codes.size(); i != e; ++i) { 4058 TargetLowering::ConstraintType CType = 4059 TLI.getConstraintType(OpInfo.Codes[i]); 4060 4061 // If this is an 'other' constraint, see if the operand is valid for it. 4062 // For example, on X86 we might have an 'rI' constraint. If the operand 4063 // is an integer in the range [0..31] we want to use I (saving a load 4064 // of a register), otherwise we must use 'r'. 4065 if (CType == TargetLowering::C_Other && Op.getNode()) { 4066 assert(OpInfo.Codes[i].size() == 1 && 4067 "Unhandled multi-letter 'other' constraint"); 4068 std::vector<SDValue> ResultOps; 4069 TLI.LowerAsmOperandForConstraint(Op, OpInfo.Codes[i], 4070 ResultOps, *DAG); 4071 if (!ResultOps.empty()) { 4072 BestType = CType; 4073 BestIdx = i; 4074 break; 4075 } 4076 } 4077 4078 // Things with matching constraints can only be registers, per gcc 4079 // documentation. This mainly affects "g" constraints. 4080 if (CType == TargetLowering::C_Memory && OpInfo.hasMatchingInput()) 4081 continue; 4082 4083 // This constraint letter is more general than the previous one, use it. 4084 int Generality = getConstraintGenerality(CType); 4085 if (Generality > BestGenerality) { 4086 BestType = CType; 4087 BestIdx = i; 4088 BestGenerality = Generality; 4089 } 4090 } 4091 4092 OpInfo.ConstraintCode = OpInfo.Codes[BestIdx]; 4093 OpInfo.ConstraintType = BestType; 4094 } 4095 4096 /// Determines the constraint code and constraint type to use for the specific 4097 /// AsmOperandInfo, setting OpInfo.ConstraintCode and OpInfo.ConstraintType. 4098 void TargetLowering::ComputeConstraintToUse(AsmOperandInfo &OpInfo, 4099 SDValue Op, 4100 SelectionDAG *DAG) const { 4101 assert(!OpInfo.Codes.empty() && "Must have at least one constraint"); 4102 4103 // Single-letter constraints ('r') are very common. 4104 if (OpInfo.Codes.size() == 1) { 4105 OpInfo.ConstraintCode = OpInfo.Codes[0]; 4106 OpInfo.ConstraintType = getConstraintType(OpInfo.ConstraintCode); 4107 } else { 4108 ChooseConstraint(OpInfo, *this, Op, DAG); 4109 } 4110 4111 // 'X' matches anything. 4112 if (OpInfo.ConstraintCode == "X" && OpInfo.CallOperandVal) { 4113 // Labels and constants are handled elsewhere ('X' is the only thing 4114 // that matches labels). For Functions, the type here is the type of 4115 // the result, which is not what we want to look at; leave them alone. 4116 Value *v = OpInfo.CallOperandVal; 4117 if (isa<BasicBlock>(v) || isa<ConstantInt>(v) || isa<Function>(v)) { 4118 OpInfo.CallOperandVal = v; 4119 return; 4120 } 4121 4122 if (Op.getNode() && Op.getOpcode() == ISD::TargetBlockAddress) 4123 return; 4124 4125 // Otherwise, try to resolve it to something we know about by looking at 4126 // the actual operand type. 4127 if (const char *Repl = LowerXConstraint(OpInfo.ConstraintVT)) { 4128 OpInfo.ConstraintCode = Repl; 4129 OpInfo.ConstraintType = getConstraintType(OpInfo.ConstraintCode); 4130 } 4131 } 4132 } 4133 4134 /// Given an exact SDIV by a constant, create a multiplication 4135 /// with the multiplicative inverse of the constant. 4136 static SDValue BuildExactSDIV(const TargetLowering &TLI, SDNode *N, 4137 const SDLoc &dl, SelectionDAG &DAG, 4138 SmallVectorImpl<SDNode *> &Created) { 4139 SDValue Op0 = N->getOperand(0); 4140 SDValue Op1 = N->getOperand(1); 4141 EVT VT = N->getValueType(0); 4142 EVT SVT = VT.getScalarType(); 4143 EVT ShVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout()); 4144 EVT ShSVT = ShVT.getScalarType(); 4145 4146 bool UseSRA = false; 4147 SmallVector<SDValue, 16> Shifts, Factors; 4148 4149 auto BuildSDIVPattern = [&](ConstantSDNode *C) { 4150 if (C->isNullValue()) 4151 return false; 4152 APInt Divisor = C->getAPIntValue(); 4153 unsigned Shift = Divisor.countTrailingZeros(); 4154 if (Shift) { 4155 Divisor.ashrInPlace(Shift); 4156 UseSRA = true; 4157 } 4158 // Calculate the multiplicative inverse, using Newton's method. 4159 APInt t; 4160 APInt Factor = Divisor; 4161 while ((t = Divisor * Factor) != 1) 4162 Factor *= APInt(Divisor.getBitWidth(), 2) - t; 4163 Shifts.push_back(DAG.getConstant(Shift, dl, ShSVT)); 4164 Factors.push_back(DAG.getConstant(Factor, dl, SVT)); 4165 return true; 4166 }; 4167 4168 // Collect all magic values from the build vector. 4169 if (!ISD::matchUnaryPredicate(Op1, BuildSDIVPattern)) 4170 return SDValue(); 4171 4172 SDValue Shift, Factor; 4173 if (VT.isVector()) { 4174 Shift = DAG.getBuildVector(ShVT, dl, Shifts); 4175 Factor = DAG.getBuildVector(VT, dl, Factors); 4176 } else { 4177 Shift = Shifts[0]; 4178 Factor = Factors[0]; 4179 } 4180 4181 SDValue Res = Op0; 4182 4183 // Shift the value upfront if it is even, so the LSB is one. 4184 if (UseSRA) { 4185 // TODO: For UDIV use SRL instead of SRA. 4186 SDNodeFlags Flags; 4187 Flags.setExact(true); 4188 Res = DAG.getNode(ISD::SRA, dl, VT, Res, Shift, Flags); 4189 Created.push_back(Res.getNode()); 4190 } 4191 4192 return DAG.getNode(ISD::MUL, dl, VT, Res, Factor); 4193 } 4194 4195 SDValue TargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor, 4196 SelectionDAG &DAG, 4197 SmallVectorImpl<SDNode *> &Created) const { 4198 AttributeList Attr = DAG.getMachineFunction().getFunction().getAttributes(); 4199 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 4200 if (TLI.isIntDivCheap(N->getValueType(0), Attr)) 4201 return SDValue(N, 0); // Lower SDIV as SDIV 4202 return SDValue(); 4203 } 4204 4205 /// Given an ISD::SDIV node expressing a divide by constant, 4206 /// return a DAG expression to select that will generate the same value by 4207 /// multiplying by a magic number. 4208 /// Ref: "Hacker's Delight" or "The PowerPC Compiler Writer's Guide". 4209 SDValue TargetLowering::BuildSDIV(SDNode *N, SelectionDAG &DAG, 4210 bool IsAfterLegalization, 4211 SmallVectorImpl<SDNode *> &Created) const { 4212 SDLoc dl(N); 4213 EVT VT = N->getValueType(0); 4214 EVT SVT = VT.getScalarType(); 4215 EVT ShVT = getShiftAmountTy(VT, DAG.getDataLayout()); 4216 EVT ShSVT = ShVT.getScalarType(); 4217 unsigned EltBits = VT.getScalarSizeInBits(); 4218 4219 // Check to see if we can do this. 4220 // FIXME: We should be more aggressive here. 4221 if (!isTypeLegal(VT)) 4222 return SDValue(); 4223 4224 // If the sdiv has an 'exact' bit we can use a simpler lowering. 4225 if (N->getFlags().hasExact()) 4226 return BuildExactSDIV(*this, N, dl, DAG, Created); 4227 4228 SmallVector<SDValue, 16> MagicFactors, Factors, Shifts, ShiftMasks; 4229 4230 auto BuildSDIVPattern = [&](ConstantSDNode *C) { 4231 if (C->isNullValue()) 4232 return false; 4233 4234 const APInt &Divisor = C->getAPIntValue(); 4235 APInt::ms magics = Divisor.magic(); 4236 int NumeratorFactor = 0; 4237 int ShiftMask = -1; 4238 4239 if (Divisor.isOneValue() || Divisor.isAllOnesValue()) { 4240 // If d is +1/-1, we just multiply the numerator by +1/-1. 4241 NumeratorFactor = Divisor.getSExtValue(); 4242 magics.m = 0; 4243 magics.s = 0; 4244 ShiftMask = 0; 4245 } else if (Divisor.isStrictlyPositive() && magics.m.isNegative()) { 4246 // If d > 0 and m < 0, add the numerator. 4247 NumeratorFactor = 1; 4248 } else if (Divisor.isNegative() && magics.m.isStrictlyPositive()) { 4249 // If d < 0 and m > 0, subtract the numerator. 4250 NumeratorFactor = -1; 4251 } 4252 4253 MagicFactors.push_back(DAG.getConstant(magics.m, dl, SVT)); 4254 Factors.push_back(DAG.getConstant(NumeratorFactor, dl, SVT)); 4255 Shifts.push_back(DAG.getConstant(magics.s, dl, ShSVT)); 4256 ShiftMasks.push_back(DAG.getConstant(ShiftMask, dl, SVT)); 4257 return true; 4258 }; 4259 4260 SDValue N0 = N->getOperand(0); 4261 SDValue N1 = N->getOperand(1); 4262 4263 // Collect the shifts / magic values from each element. 4264 if (!ISD::matchUnaryPredicate(N1, BuildSDIVPattern)) 4265 return SDValue(); 4266 4267 SDValue MagicFactor, Factor, Shift, ShiftMask; 4268 if (VT.isVector()) { 4269 MagicFactor = DAG.getBuildVector(VT, dl, MagicFactors); 4270 Factor = DAG.getBuildVector(VT, dl, Factors); 4271 Shift = DAG.getBuildVector(ShVT, dl, Shifts); 4272 ShiftMask = DAG.getBuildVector(VT, dl, ShiftMasks); 4273 } else { 4274 MagicFactor = MagicFactors[0]; 4275 Factor = Factors[0]; 4276 Shift = Shifts[0]; 4277 ShiftMask = ShiftMasks[0]; 4278 } 4279 4280 // Multiply the numerator (operand 0) by the magic value. 4281 // FIXME: We should support doing a MUL in a wider type. 4282 SDValue Q; 4283 if (IsAfterLegalization ? isOperationLegal(ISD::MULHS, VT) 4284 : isOperationLegalOrCustom(ISD::MULHS, VT)) 4285 Q = DAG.getNode(ISD::MULHS, dl, VT, N0, MagicFactor); 4286 else if (IsAfterLegalization ? isOperationLegal(ISD::SMUL_LOHI, VT) 4287 : isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) { 4288 SDValue LoHi = 4289 DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(VT, VT), N0, MagicFactor); 4290 Q = SDValue(LoHi.getNode(), 1); 4291 } else 4292 return SDValue(); // No mulhs or equivalent. 4293 Created.push_back(Q.getNode()); 4294 4295 // (Optionally) Add/subtract the numerator using Factor. 4296 Factor = DAG.getNode(ISD::MUL, dl, VT, N0, Factor); 4297 Created.push_back(Factor.getNode()); 4298 Q = DAG.getNode(ISD::ADD, dl, VT, Q, Factor); 4299 Created.push_back(Q.getNode()); 4300 4301 // Shift right algebraic by shift value. 4302 Q = DAG.getNode(ISD::SRA, dl, VT, Q, Shift); 4303 Created.push_back(Q.getNode()); 4304 4305 // Extract the sign bit, mask it and add it to the quotient. 4306 SDValue SignShift = DAG.getConstant(EltBits - 1, dl, ShVT); 4307 SDValue T = DAG.getNode(ISD::SRL, dl, VT, Q, SignShift); 4308 Created.push_back(T.getNode()); 4309 T = DAG.getNode(ISD::AND, dl, VT, T, ShiftMask); 4310 Created.push_back(T.getNode()); 4311 return DAG.getNode(ISD::ADD, dl, VT, Q, T); 4312 } 4313 4314 /// Given an ISD::UDIV node expressing a divide by constant, 4315 /// return a DAG expression to select that will generate the same value by 4316 /// multiplying by a magic number. 4317 /// Ref: "Hacker's Delight" or "The PowerPC Compiler Writer's Guide". 4318 SDValue TargetLowering::BuildUDIV(SDNode *N, SelectionDAG &DAG, 4319 bool IsAfterLegalization, 4320 SmallVectorImpl<SDNode *> &Created) const { 4321 SDLoc dl(N); 4322 EVT VT = N->getValueType(0); 4323 EVT SVT = VT.getScalarType(); 4324 EVT ShVT = getShiftAmountTy(VT, DAG.getDataLayout()); 4325 EVT ShSVT = ShVT.getScalarType(); 4326 unsigned EltBits = VT.getScalarSizeInBits(); 4327 4328 // Check to see if we can do this. 4329 // FIXME: We should be more aggressive here. 4330 if (!isTypeLegal(VT)) 4331 return SDValue(); 4332 4333 bool UseNPQ = false; 4334 SmallVector<SDValue, 16> PreShifts, PostShifts, MagicFactors, NPQFactors; 4335 4336 auto BuildUDIVPattern = [&](ConstantSDNode *C) { 4337 if (C->isNullValue()) 4338 return false; 4339 // FIXME: We should use a narrower constant when the upper 4340 // bits are known to be zero. 4341 APInt Divisor = C->getAPIntValue(); 4342 APInt::mu magics = Divisor.magicu(); 4343 unsigned PreShift = 0, PostShift = 0; 4344 4345 // If the divisor is even, we can avoid using the expensive fixup by 4346 // shifting the divided value upfront. 4347 if (magics.a != 0 && !Divisor[0]) { 4348 PreShift = Divisor.countTrailingZeros(); 4349 // Get magic number for the shifted divisor. 4350 magics = Divisor.lshr(PreShift).magicu(PreShift); 4351 assert(magics.a == 0 && "Should use cheap fixup now"); 4352 } 4353 4354 APInt Magic = magics.m; 4355 4356 unsigned SelNPQ; 4357 if (magics.a == 0 || Divisor.isOneValue()) { 4358 assert(magics.s < Divisor.getBitWidth() && 4359 "We shouldn't generate an undefined shift!"); 4360 PostShift = magics.s; 4361 SelNPQ = false; 4362 } else { 4363 PostShift = magics.s - 1; 4364 SelNPQ = true; 4365 } 4366 4367 PreShifts.push_back(DAG.getConstant(PreShift, dl, ShSVT)); 4368 MagicFactors.push_back(DAG.getConstant(Magic, dl, SVT)); 4369 NPQFactors.push_back( 4370 DAG.getConstant(SelNPQ ? APInt::getOneBitSet(EltBits, EltBits - 1) 4371 : APInt::getNullValue(EltBits), 4372 dl, SVT)); 4373 PostShifts.push_back(DAG.getConstant(PostShift, dl, ShSVT)); 4374 UseNPQ |= SelNPQ; 4375 return true; 4376 }; 4377 4378 SDValue N0 = N->getOperand(0); 4379 SDValue N1 = N->getOperand(1); 4380 4381 // Collect the shifts/magic values from each element. 4382 if (!ISD::matchUnaryPredicate(N1, BuildUDIVPattern)) 4383 return SDValue(); 4384 4385 SDValue PreShift, PostShift, MagicFactor, NPQFactor; 4386 if (VT.isVector()) { 4387 PreShift = DAG.getBuildVector(ShVT, dl, PreShifts); 4388 MagicFactor = DAG.getBuildVector(VT, dl, MagicFactors); 4389 NPQFactor = DAG.getBuildVector(VT, dl, NPQFactors); 4390 PostShift = DAG.getBuildVector(ShVT, dl, PostShifts); 4391 } else { 4392 PreShift = PreShifts[0]; 4393 MagicFactor = MagicFactors[0]; 4394 PostShift = PostShifts[0]; 4395 } 4396 4397 SDValue Q = N0; 4398 Q = DAG.getNode(ISD::SRL, dl, VT, Q, PreShift); 4399 Created.push_back(Q.getNode()); 4400 4401 // FIXME: We should support doing a MUL in a wider type. 4402 auto GetMULHU = [&](SDValue X, SDValue Y) { 4403 if (IsAfterLegalization ? isOperationLegal(ISD::MULHU, VT) 4404 : isOperationLegalOrCustom(ISD::MULHU, VT)) 4405 return DAG.getNode(ISD::MULHU, dl, VT, X, Y); 4406 if (IsAfterLegalization ? isOperationLegal(ISD::UMUL_LOHI, VT) 4407 : isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) { 4408 SDValue LoHi = 4409 DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(VT, VT), X, Y); 4410 return SDValue(LoHi.getNode(), 1); 4411 } 4412 return SDValue(); // No mulhu or equivalent 4413 }; 4414 4415 // Multiply the numerator (operand 0) by the magic value. 4416 Q = GetMULHU(Q, MagicFactor); 4417 if (!Q) 4418 return SDValue(); 4419 4420 Created.push_back(Q.getNode()); 4421 4422 if (UseNPQ) { 4423 SDValue NPQ = DAG.getNode(ISD::SUB, dl, VT, N0, Q); 4424 Created.push_back(NPQ.getNode()); 4425 4426 // For vectors we might have a mix of non-NPQ/NPQ paths, so use 4427 // MULHU to act as a SRL-by-1 for NPQ, else multiply by zero. 4428 if (VT.isVector()) 4429 NPQ = GetMULHU(NPQ, NPQFactor); 4430 else 4431 NPQ = DAG.getNode(ISD::SRL, dl, VT, NPQ, DAG.getConstant(1, dl, ShVT)); 4432 4433 Created.push_back(NPQ.getNode()); 4434 4435 Q = DAG.getNode(ISD::ADD, dl, VT, NPQ, Q); 4436 Created.push_back(Q.getNode()); 4437 } 4438 4439 Q = DAG.getNode(ISD::SRL, dl, VT, Q, PostShift); 4440 Created.push_back(Q.getNode()); 4441 4442 SDValue One = DAG.getConstant(1, dl, VT); 4443 SDValue IsOne = DAG.getSetCC(dl, VT, N1, One, ISD::SETEQ); 4444 return DAG.getSelect(dl, VT, IsOne, N0, Q); 4445 } 4446 4447 /// Given an ISD::UREM used only by an ISD::SETEQ or ISD::SETNE 4448 /// where the divisor is constant and the comparison target is zero, 4449 /// return a DAG expression that will generate the same comparison result 4450 /// using only multiplications, additions and shifts/rotations. 4451 /// Ref: "Hacker's Delight" 10-17. 4452 SDValue TargetLowering::buildUREMEqFold(EVT SETCCVT, SDValue REMNode, 4453 SDValue CompTargetNode, 4454 ISD::CondCode Cond, 4455 DAGCombinerInfo &DCI, 4456 const SDLoc &DL) const { 4457 SmallVector<SDNode *, 2> Built; 4458 if (SDValue Folded = prepareUREMEqFold(SETCCVT, REMNode, CompTargetNode, Cond, 4459 DCI, DL, Built)) { 4460 for (SDNode *N : Built) 4461 DCI.AddToWorklist(N); 4462 return Folded; 4463 } 4464 4465 return SDValue(); 4466 } 4467 4468 SDValue 4469 TargetLowering::prepareUREMEqFold(EVT SETCCVT, SDValue REMNode, 4470 SDValue CompTargetNode, ISD::CondCode Cond, 4471 DAGCombinerInfo &DCI, const SDLoc &DL, 4472 SmallVectorImpl<SDNode *> &Created) const { 4473 // fold (seteq/ne (urem N, D), 0) -> (setule/ugt (rotr (mul N, P), K), Q) 4474 // - D must be constant with D = D0 * 2^K where D0 is odd and D0 != 1 4475 // - P is the multiplicative inverse of D0 modulo 2^W 4476 // - Q = floor((2^W - 1) / D0) 4477 // where W is the width of the common type of N and D. 4478 assert((Cond == ISD::SETEQ || Cond == ISD::SETNE) && 4479 "Only applicable for (in)equality comparisons."); 4480 4481 EVT VT = REMNode.getValueType(); 4482 4483 // If MUL is unavailable, we cannot proceed in any case. 4484 if (!isOperationLegalOrCustom(ISD::MUL, VT)) 4485 return SDValue(); 4486 4487 // TODO: Add non-uniform constant support. 4488 ConstantSDNode *Divisor = isConstOrConstSplat(REMNode->getOperand(1)); 4489 ConstantSDNode *CompTarget = isConstOrConstSplat(CompTargetNode); 4490 if (!Divisor || !CompTarget || Divisor->isNullValue() || 4491 !CompTarget->isNullValue()) 4492 return SDValue(); 4493 4494 const APInt &D = Divisor->getAPIntValue(); 4495 4496 // Decompose D into D0 * 2^K 4497 unsigned K = D.countTrailingZeros(); 4498 bool DivisorIsEven = (K != 0); 4499 APInt D0 = D.lshr(K); 4500 4501 // The fold is invalid when D0 == 1. 4502 // This is reachable because visitSetCC happens before visitREM. 4503 if (D0.isOneValue()) 4504 return SDValue(); 4505 4506 // P = inv(D0, 2^W) 4507 // 2^W requires W + 1 bits, so we have to extend and then truncate. 4508 unsigned W = D.getBitWidth(); 4509 APInt P = D0.zext(W + 1) 4510 .multiplicativeInverse(APInt::getSignedMinValue(W + 1)) 4511 .trunc(W); 4512 assert(!P.isNullValue() && "No multiplicative inverse!"); // unreachable 4513 assert((D0 * P).isOneValue() && "Multiplicative inverse sanity check."); 4514 4515 // Q = floor((2^W - 1) / D) 4516 APInt Q = APInt::getAllOnesValue(W).udiv(D); 4517 4518 SelectionDAG &DAG = DCI.DAG; 4519 4520 SDValue PVal = DAG.getConstant(P, DL, VT); 4521 SDValue QVal = DAG.getConstant(Q, DL, VT); 4522 // (mul N, P) 4523 SDValue Op1 = DAG.getNode(ISD::MUL, DL, VT, REMNode->getOperand(0), PVal); 4524 Created.push_back(Op1.getNode()); 4525 4526 // Rotate right only if D was even. 4527 if (DivisorIsEven) { 4528 // We need ROTR to do this. 4529 if (!isOperationLegalOrCustom(ISD::ROTR, VT)) 4530 return SDValue(); 4531 SDValue ShAmt = 4532 DAG.getConstant(K, DL, getShiftAmountTy(VT, DAG.getDataLayout())); 4533 SDNodeFlags Flags; 4534 Flags.setExact(true); 4535 // UREM: (rotr (mul N, P), K) 4536 Op1 = DAG.getNode(ISD::ROTR, DL, VT, Op1, ShAmt, Flags); 4537 Created.push_back(Op1.getNode()); 4538 } 4539 4540 // UREM: (setule/setugt (rotr (mul N, P), K), Q) 4541 return DAG.getSetCC(DL, SETCCVT, Op1, QVal, 4542 ((Cond == ISD::SETEQ) ? ISD::SETULE : ISD::SETUGT)); 4543 } 4544 4545 bool TargetLowering:: 4546 verifyReturnAddressArgumentIsConstant(SDValue Op, SelectionDAG &DAG) const { 4547 if (!isa<ConstantSDNode>(Op.getOperand(0))) { 4548 DAG.getContext()->emitError("argument to '__builtin_return_address' must " 4549 "be a constant integer"); 4550 return true; 4551 } 4552 4553 return false; 4554 } 4555 4556 //===----------------------------------------------------------------------===// 4557 // Legalization Utilities 4558 //===----------------------------------------------------------------------===// 4559 4560 bool TargetLowering::expandMUL_LOHI(unsigned Opcode, EVT VT, SDLoc dl, 4561 SDValue LHS, SDValue RHS, 4562 SmallVectorImpl<SDValue> &Result, 4563 EVT HiLoVT, SelectionDAG &DAG, 4564 MulExpansionKind Kind, SDValue LL, 4565 SDValue LH, SDValue RL, SDValue RH) const { 4566 assert(Opcode == ISD::MUL || Opcode == ISD::UMUL_LOHI || 4567 Opcode == ISD::SMUL_LOHI); 4568 4569 bool HasMULHS = (Kind == MulExpansionKind::Always) || 4570 isOperationLegalOrCustom(ISD::MULHS, HiLoVT); 4571 bool HasMULHU = (Kind == MulExpansionKind::Always) || 4572 isOperationLegalOrCustom(ISD::MULHU, HiLoVT); 4573 bool HasSMUL_LOHI = (Kind == MulExpansionKind::Always) || 4574 isOperationLegalOrCustom(ISD::SMUL_LOHI, HiLoVT); 4575 bool HasUMUL_LOHI = (Kind == MulExpansionKind::Always) || 4576 isOperationLegalOrCustom(ISD::UMUL_LOHI, HiLoVT); 4577 4578 if (!HasMULHU && !HasMULHS && !HasUMUL_LOHI && !HasSMUL_LOHI) 4579 return false; 4580 4581 unsigned OuterBitSize = VT.getScalarSizeInBits(); 4582 unsigned InnerBitSize = HiLoVT.getScalarSizeInBits(); 4583 unsigned LHSSB = DAG.ComputeNumSignBits(LHS); 4584 unsigned RHSSB = DAG.ComputeNumSignBits(RHS); 4585 4586 // LL, LH, RL, and RH must be either all NULL or all set to a value. 4587 assert((LL.getNode() && LH.getNode() && RL.getNode() && RH.getNode()) || 4588 (!LL.getNode() && !LH.getNode() && !RL.getNode() && !RH.getNode())); 4589 4590 SDVTList VTs = DAG.getVTList(HiLoVT, HiLoVT); 4591 auto MakeMUL_LOHI = [&](SDValue L, SDValue R, SDValue &Lo, SDValue &Hi, 4592 bool Signed) -> bool { 4593 if ((Signed && HasSMUL_LOHI) || (!Signed && HasUMUL_LOHI)) { 4594 Lo = DAG.getNode(Signed ? ISD::SMUL_LOHI : ISD::UMUL_LOHI, dl, VTs, L, R); 4595 Hi = SDValue(Lo.getNode(), 1); 4596 return true; 4597 } 4598 if ((Signed && HasMULHS) || (!Signed && HasMULHU)) { 4599 Lo = DAG.getNode(ISD::MUL, dl, HiLoVT, L, R); 4600 Hi = DAG.getNode(Signed ? ISD::MULHS : ISD::MULHU, dl, HiLoVT, L, R); 4601 return true; 4602 } 4603 return false; 4604 }; 4605 4606 SDValue Lo, Hi; 4607 4608 if (!LL.getNode() && !RL.getNode() && 4609 isOperationLegalOrCustom(ISD::TRUNCATE, HiLoVT)) { 4610 LL = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, LHS); 4611 RL = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, RHS); 4612 } 4613 4614 if (!LL.getNode()) 4615 return false; 4616 4617 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize); 4618 if (DAG.MaskedValueIsZero(LHS, HighMask) && 4619 DAG.MaskedValueIsZero(RHS, HighMask)) { 4620 // The inputs are both zero-extended. 4621 if (MakeMUL_LOHI(LL, RL, Lo, Hi, false)) { 4622 Result.push_back(Lo); 4623 Result.push_back(Hi); 4624 if (Opcode != ISD::MUL) { 4625 SDValue Zero = DAG.getConstant(0, dl, HiLoVT); 4626 Result.push_back(Zero); 4627 Result.push_back(Zero); 4628 } 4629 return true; 4630 } 4631 } 4632 4633 if (!VT.isVector() && Opcode == ISD::MUL && LHSSB > InnerBitSize && 4634 RHSSB > InnerBitSize) { 4635 // The input values are both sign-extended. 4636 // TODO non-MUL case? 4637 if (MakeMUL_LOHI(LL, RL, Lo, Hi, true)) { 4638 Result.push_back(Lo); 4639 Result.push_back(Hi); 4640 return true; 4641 } 4642 } 4643 4644 unsigned ShiftAmount = OuterBitSize - InnerBitSize; 4645 EVT ShiftAmountTy = getShiftAmountTy(VT, DAG.getDataLayout()); 4646 if (APInt::getMaxValue(ShiftAmountTy.getSizeInBits()).ult(ShiftAmount)) { 4647 // FIXME getShiftAmountTy does not always return a sensible result when VT 4648 // is an illegal type, and so the type may be too small to fit the shift 4649 // amount. Override it with i32. The shift will have to be legalized. 4650 ShiftAmountTy = MVT::i32; 4651 } 4652 SDValue Shift = DAG.getConstant(ShiftAmount, dl, ShiftAmountTy); 4653 4654 if (!LH.getNode() && !RH.getNode() && 4655 isOperationLegalOrCustom(ISD::SRL, VT) && 4656 isOperationLegalOrCustom(ISD::TRUNCATE, HiLoVT)) { 4657 LH = DAG.getNode(ISD::SRL, dl, VT, LHS, Shift); 4658 LH = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, LH); 4659 RH = DAG.getNode(ISD::SRL, dl, VT, RHS, Shift); 4660 RH = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, RH); 4661 } 4662 4663 if (!LH.getNode()) 4664 return false; 4665 4666 if (!MakeMUL_LOHI(LL, RL, Lo, Hi, false)) 4667 return false; 4668 4669 Result.push_back(Lo); 4670 4671 if (Opcode == ISD::MUL) { 4672 RH = DAG.getNode(ISD::MUL, dl, HiLoVT, LL, RH); 4673 LH = DAG.getNode(ISD::MUL, dl, HiLoVT, LH, RL); 4674 Hi = DAG.getNode(ISD::ADD, dl, HiLoVT, Hi, RH); 4675 Hi = DAG.getNode(ISD::ADD, dl, HiLoVT, Hi, LH); 4676 Result.push_back(Hi); 4677 return true; 4678 } 4679 4680 // Compute the full width result. 4681 auto Merge = [&](SDValue Lo, SDValue Hi) -> SDValue { 4682 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Lo); 4683 Hi = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Hi); 4684 Hi = DAG.getNode(ISD::SHL, dl, VT, Hi, Shift); 4685 return DAG.getNode(ISD::OR, dl, VT, Lo, Hi); 4686 }; 4687 4688 SDValue Next = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Hi); 4689 if (!MakeMUL_LOHI(LL, RH, Lo, Hi, false)) 4690 return false; 4691 4692 // This is effectively the add part of a multiply-add of half-sized operands, 4693 // so it cannot overflow. 4694 Next = DAG.getNode(ISD::ADD, dl, VT, Next, Merge(Lo, Hi)); 4695 4696 if (!MakeMUL_LOHI(LH, RL, Lo, Hi, false)) 4697 return false; 4698 4699 SDValue Zero = DAG.getConstant(0, dl, HiLoVT); 4700 EVT BoolType = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); 4701 4702 bool UseGlue = (isOperationLegalOrCustom(ISD::ADDC, VT) && 4703 isOperationLegalOrCustom(ISD::ADDE, VT)); 4704 if (UseGlue) 4705 Next = DAG.getNode(ISD::ADDC, dl, DAG.getVTList(VT, MVT::Glue), Next, 4706 Merge(Lo, Hi)); 4707 else 4708 Next = DAG.getNode(ISD::ADDCARRY, dl, DAG.getVTList(VT, BoolType), Next, 4709 Merge(Lo, Hi), DAG.getConstant(0, dl, BoolType)); 4710 4711 SDValue Carry = Next.getValue(1); 4712 Result.push_back(DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, Next)); 4713 Next = DAG.getNode(ISD::SRL, dl, VT, Next, Shift); 4714 4715 if (!MakeMUL_LOHI(LH, RH, Lo, Hi, Opcode == ISD::SMUL_LOHI)) 4716 return false; 4717 4718 if (UseGlue) 4719 Hi = DAG.getNode(ISD::ADDE, dl, DAG.getVTList(HiLoVT, MVT::Glue), Hi, Zero, 4720 Carry); 4721 else 4722 Hi = DAG.getNode(ISD::ADDCARRY, dl, DAG.getVTList(HiLoVT, BoolType), Hi, 4723 Zero, Carry); 4724 4725 Next = DAG.getNode(ISD::ADD, dl, VT, Next, Merge(Lo, Hi)); 4726 4727 if (Opcode == ISD::SMUL_LOHI) { 4728 SDValue NextSub = DAG.getNode(ISD::SUB, dl, VT, Next, 4729 DAG.getNode(ISD::ZERO_EXTEND, dl, VT, RL)); 4730 Next = DAG.getSelectCC(dl, LH, Zero, NextSub, Next, ISD::SETLT); 4731 4732 NextSub = DAG.getNode(ISD::SUB, dl, VT, Next, 4733 DAG.getNode(ISD::ZERO_EXTEND, dl, VT, LL)); 4734 Next = DAG.getSelectCC(dl, RH, Zero, NextSub, Next, ISD::SETLT); 4735 } 4736 4737 Result.push_back(DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, Next)); 4738 Next = DAG.getNode(ISD::SRL, dl, VT, Next, Shift); 4739 Result.push_back(DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, Next)); 4740 return true; 4741 } 4742 4743 bool TargetLowering::expandMUL(SDNode *N, SDValue &Lo, SDValue &Hi, EVT HiLoVT, 4744 SelectionDAG &DAG, MulExpansionKind Kind, 4745 SDValue LL, SDValue LH, SDValue RL, 4746 SDValue RH) const { 4747 SmallVector<SDValue, 2> Result; 4748 bool Ok = expandMUL_LOHI(N->getOpcode(), N->getValueType(0), N, 4749 N->getOperand(0), N->getOperand(1), Result, HiLoVT, 4750 DAG, Kind, LL, LH, RL, RH); 4751 if (Ok) { 4752 assert(Result.size() == 2); 4753 Lo = Result[0]; 4754 Hi = Result[1]; 4755 } 4756 return Ok; 4757 } 4758 4759 bool TargetLowering::expandFunnelShift(SDNode *Node, SDValue &Result, 4760 SelectionDAG &DAG) const { 4761 EVT VT = Node->getValueType(0); 4762 4763 if (VT.isVector() && (!isOperationLegalOrCustom(ISD::SHL, VT) || 4764 !isOperationLegalOrCustom(ISD::SRL, VT) || 4765 !isOperationLegalOrCustom(ISD::SUB, VT) || 4766 !isOperationLegalOrCustomOrPromote(ISD::OR, VT))) 4767 return false; 4768 4769 // fshl: (X << (Z % BW)) | (Y >> (BW - (Z % BW))) 4770 // fshr: (X << (BW - (Z % BW))) | (Y >> (Z % BW)) 4771 SDValue X = Node->getOperand(0); 4772 SDValue Y = Node->getOperand(1); 4773 SDValue Z = Node->getOperand(2); 4774 4775 unsigned EltSizeInBits = VT.getScalarSizeInBits(); 4776 bool IsFSHL = Node->getOpcode() == ISD::FSHL; 4777 SDLoc DL(SDValue(Node, 0)); 4778 4779 EVT ShVT = Z.getValueType(); 4780 SDValue BitWidthC = DAG.getConstant(EltSizeInBits, DL, ShVT); 4781 SDValue Zero = DAG.getConstant(0, DL, ShVT); 4782 4783 SDValue ShAmt; 4784 if (isPowerOf2_32(EltSizeInBits)) { 4785 SDValue Mask = DAG.getConstant(EltSizeInBits - 1, DL, ShVT); 4786 ShAmt = DAG.getNode(ISD::AND, DL, ShVT, Z, Mask); 4787 } else { 4788 ShAmt = DAG.getNode(ISD::UREM, DL, ShVT, Z, BitWidthC); 4789 } 4790 4791 SDValue InvShAmt = DAG.getNode(ISD::SUB, DL, ShVT, BitWidthC, ShAmt); 4792 SDValue ShX = DAG.getNode(ISD::SHL, DL, VT, X, IsFSHL ? ShAmt : InvShAmt); 4793 SDValue ShY = DAG.getNode(ISD::SRL, DL, VT, Y, IsFSHL ? InvShAmt : ShAmt); 4794 SDValue Or = DAG.getNode(ISD::OR, DL, VT, ShX, ShY); 4795 4796 // If (Z % BW == 0), then the opposite direction shift is shift-by-bitwidth, 4797 // and that is undefined. We must compare and select to avoid UB. 4798 EVT CCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), ShVT); 4799 4800 // For fshl, 0-shift returns the 1st arg (X). 4801 // For fshr, 0-shift returns the 2nd arg (Y). 4802 SDValue IsZeroShift = DAG.getSetCC(DL, CCVT, ShAmt, Zero, ISD::SETEQ); 4803 Result = DAG.getSelect(DL, VT, IsZeroShift, IsFSHL ? X : Y, Or); 4804 return true; 4805 } 4806 4807 // TODO: Merge with expandFunnelShift. 4808 bool TargetLowering::expandROT(SDNode *Node, SDValue &Result, 4809 SelectionDAG &DAG) const { 4810 EVT VT = Node->getValueType(0); 4811 unsigned EltSizeInBits = VT.getScalarSizeInBits(); 4812 bool IsLeft = Node->getOpcode() == ISD::ROTL; 4813 SDValue Op0 = Node->getOperand(0); 4814 SDValue Op1 = Node->getOperand(1); 4815 SDLoc DL(SDValue(Node, 0)); 4816 4817 EVT ShVT = Op1.getValueType(); 4818 SDValue BitWidthC = DAG.getConstant(EltSizeInBits, DL, ShVT); 4819 4820 // If a rotate in the other direction is legal, use it. 4821 unsigned RevRot = IsLeft ? ISD::ROTR : ISD::ROTL; 4822 if (isOperationLegal(RevRot, VT)) { 4823 SDValue Sub = DAG.getNode(ISD::SUB, DL, ShVT, BitWidthC, Op1); 4824 Result = DAG.getNode(RevRot, DL, VT, Op0, Sub); 4825 return true; 4826 } 4827 4828 if (VT.isVector() && (!isOperationLegalOrCustom(ISD::SHL, VT) || 4829 !isOperationLegalOrCustom(ISD::SRL, VT) || 4830 !isOperationLegalOrCustom(ISD::SUB, VT) || 4831 !isOperationLegalOrCustomOrPromote(ISD::OR, VT) || 4832 !isOperationLegalOrCustomOrPromote(ISD::AND, VT))) 4833 return false; 4834 4835 // Otherwise, 4836 // (rotl x, c) -> (or (shl x, (and c, w-1)), (srl x, (and w-c, w-1))) 4837 // (rotr x, c) -> (or (srl x, (and c, w-1)), (shl x, (and w-c, w-1))) 4838 // 4839 assert(isPowerOf2_32(EltSizeInBits) && EltSizeInBits > 1 && 4840 "Expecting the type bitwidth to be a power of 2"); 4841 unsigned ShOpc = IsLeft ? ISD::SHL : ISD::SRL; 4842 unsigned HsOpc = IsLeft ? ISD::SRL : ISD::SHL; 4843 SDValue BitWidthMinusOneC = DAG.getConstant(EltSizeInBits - 1, DL, ShVT); 4844 SDValue NegOp1 = DAG.getNode(ISD::SUB, DL, ShVT, BitWidthC, Op1); 4845 SDValue And0 = DAG.getNode(ISD::AND, DL, ShVT, Op1, BitWidthMinusOneC); 4846 SDValue And1 = DAG.getNode(ISD::AND, DL, ShVT, NegOp1, BitWidthMinusOneC); 4847 Result = DAG.getNode(ISD::OR, DL, VT, DAG.getNode(ShOpc, DL, VT, Op0, And0), 4848 DAG.getNode(HsOpc, DL, VT, Op0, And1)); 4849 return true; 4850 } 4851 4852 bool TargetLowering::expandFP_TO_SINT(SDNode *Node, SDValue &Result, 4853 SelectionDAG &DAG) const { 4854 SDValue Src = Node->getOperand(0); 4855 EVT SrcVT = Src.getValueType(); 4856 EVT DstVT = Node->getValueType(0); 4857 SDLoc dl(SDValue(Node, 0)); 4858 4859 // FIXME: Only f32 to i64 conversions are supported. 4860 if (SrcVT != MVT::f32 || DstVT != MVT::i64) 4861 return false; 4862 4863 // Expand f32 -> i64 conversion 4864 // This algorithm comes from compiler-rt's implementation of fixsfdi: 4865 // https://github.com/llvm/llvm-project/blob/master/compiler-rt/lib/builtins/fixsfdi.c 4866 unsigned SrcEltBits = SrcVT.getScalarSizeInBits(); 4867 EVT IntVT = SrcVT.changeTypeToInteger(); 4868 EVT IntShVT = getShiftAmountTy(IntVT, DAG.getDataLayout()); 4869 4870 SDValue ExponentMask = DAG.getConstant(0x7F800000, dl, IntVT); 4871 SDValue ExponentLoBit = DAG.getConstant(23, dl, IntVT); 4872 SDValue Bias = DAG.getConstant(127, dl, IntVT); 4873 SDValue SignMask = DAG.getConstant(APInt::getSignMask(SrcEltBits), dl, IntVT); 4874 SDValue SignLowBit = DAG.getConstant(SrcEltBits - 1, dl, IntVT); 4875 SDValue MantissaMask = DAG.getConstant(0x007FFFFF, dl, IntVT); 4876 4877 SDValue Bits = DAG.getNode(ISD::BITCAST, dl, IntVT, Src); 4878 4879 SDValue ExponentBits = DAG.getNode( 4880 ISD::SRL, dl, IntVT, DAG.getNode(ISD::AND, dl, IntVT, Bits, ExponentMask), 4881 DAG.getZExtOrTrunc(ExponentLoBit, dl, IntShVT)); 4882 SDValue Exponent = DAG.getNode(ISD::SUB, dl, IntVT, ExponentBits, Bias); 4883 4884 SDValue Sign = DAG.getNode(ISD::SRA, dl, IntVT, 4885 DAG.getNode(ISD::AND, dl, IntVT, Bits, SignMask), 4886 DAG.getZExtOrTrunc(SignLowBit, dl, IntShVT)); 4887 Sign = DAG.getSExtOrTrunc(Sign, dl, DstVT); 4888 4889 SDValue R = DAG.getNode(ISD::OR, dl, IntVT, 4890 DAG.getNode(ISD::AND, dl, IntVT, Bits, MantissaMask), 4891 DAG.getConstant(0x00800000, dl, IntVT)); 4892 4893 R = DAG.getZExtOrTrunc(R, dl, DstVT); 4894 4895 R = DAG.getSelectCC( 4896 dl, Exponent, ExponentLoBit, 4897 DAG.getNode(ISD::SHL, dl, DstVT, R, 4898 DAG.getZExtOrTrunc( 4899 DAG.getNode(ISD::SUB, dl, IntVT, Exponent, ExponentLoBit), 4900 dl, IntShVT)), 4901 DAG.getNode(ISD::SRL, dl, DstVT, R, 4902 DAG.getZExtOrTrunc( 4903 DAG.getNode(ISD::SUB, dl, IntVT, ExponentLoBit, Exponent), 4904 dl, IntShVT)), 4905 ISD::SETGT); 4906 4907 SDValue Ret = DAG.getNode(ISD::SUB, dl, DstVT, 4908 DAG.getNode(ISD::XOR, dl, DstVT, R, Sign), Sign); 4909 4910 Result = DAG.getSelectCC(dl, Exponent, DAG.getConstant(0, dl, IntVT), 4911 DAG.getConstant(0, dl, DstVT), Ret, ISD::SETLT); 4912 return true; 4913 } 4914 4915 bool TargetLowering::expandFP_TO_UINT(SDNode *Node, SDValue &Result, 4916 SelectionDAG &DAG) const { 4917 SDLoc dl(SDValue(Node, 0)); 4918 SDValue Src = Node->getOperand(0); 4919 4920 EVT SrcVT = Src.getValueType(); 4921 EVT DstVT = Node->getValueType(0); 4922 EVT SetCCVT = 4923 getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), SrcVT); 4924 4925 // Only expand vector types if we have the appropriate vector bit operations. 4926 if (DstVT.isVector() && (!isOperationLegalOrCustom(ISD::FP_TO_SINT, DstVT) || 4927 !isOperationLegalOrCustomOrPromote(ISD::XOR, SrcVT))) 4928 return false; 4929 4930 // If the maximum float value is smaller then the signed integer range, 4931 // the destination signmask can't be represented by the float, so we can 4932 // just use FP_TO_SINT directly. 4933 const fltSemantics &APFSem = DAG.EVTToAPFloatSemantics(SrcVT); 4934 APFloat APF(APFSem, APInt::getNullValue(SrcVT.getScalarSizeInBits())); 4935 APInt SignMask = APInt::getSignMask(DstVT.getScalarSizeInBits()); 4936 if (APFloat::opOverflow & 4937 APF.convertFromAPInt(SignMask, false, APFloat::rmNearestTiesToEven)) { 4938 Result = DAG.getNode(ISD::FP_TO_SINT, dl, DstVT, Src); 4939 return true; 4940 } 4941 4942 SDValue Cst = DAG.getConstantFP(APF, dl, SrcVT); 4943 SDValue Sel = DAG.getSetCC(dl, SetCCVT, Src, Cst, ISD::SETLT); 4944 4945 bool Strict = shouldUseStrictFP_TO_INT(SrcVT, DstVT, /*IsSigned*/ false); 4946 if (Strict) { 4947 // Expand based on maximum range of FP_TO_SINT, if the value exceeds the 4948 // signmask then offset (the result of which should be fully representable). 4949 // Sel = Src < 0x8000000000000000 4950 // Val = select Sel, Src, Src - 0x8000000000000000 4951 // Ofs = select Sel, 0, 0x8000000000000000 4952 // Result = fp_to_sint(Val) ^ Ofs 4953 4954 // TODO: Should any fast-math-flags be set for the FSUB? 4955 SDValue Val = DAG.getSelect(dl, SrcVT, Sel, Src, 4956 DAG.getNode(ISD::FSUB, dl, SrcVT, Src, Cst)); 4957 SDValue Ofs = DAG.getSelect(dl, DstVT, Sel, DAG.getConstant(0, dl, DstVT), 4958 DAG.getConstant(SignMask, dl, DstVT)); 4959 Result = DAG.getNode(ISD::XOR, dl, DstVT, 4960 DAG.getNode(ISD::FP_TO_SINT, dl, DstVT, Val), Ofs); 4961 } else { 4962 // Expand based on maximum range of FP_TO_SINT: 4963 // True = fp_to_sint(Src) 4964 // False = 0x8000000000000000 + fp_to_sint(Src - 0x8000000000000000) 4965 // Result = select (Src < 0x8000000000000000), True, False 4966 4967 SDValue True = DAG.getNode(ISD::FP_TO_SINT, dl, DstVT, Src); 4968 // TODO: Should any fast-math-flags be set for the FSUB? 4969 SDValue False = DAG.getNode(ISD::FP_TO_SINT, dl, DstVT, 4970 DAG.getNode(ISD::FSUB, dl, SrcVT, Src, Cst)); 4971 False = DAG.getNode(ISD::XOR, dl, DstVT, False, 4972 DAG.getConstant(SignMask, dl, DstVT)); 4973 Result = DAG.getSelect(dl, DstVT, Sel, True, False); 4974 } 4975 return true; 4976 } 4977 4978 bool TargetLowering::expandUINT_TO_FP(SDNode *Node, SDValue &Result, 4979 SelectionDAG &DAG) const { 4980 SDValue Src = Node->getOperand(0); 4981 EVT SrcVT = Src.getValueType(); 4982 EVT DstVT = Node->getValueType(0); 4983 4984 if (SrcVT.getScalarType() != MVT::i64) 4985 return false; 4986 4987 SDLoc dl(SDValue(Node, 0)); 4988 EVT ShiftVT = getShiftAmountTy(SrcVT, DAG.getDataLayout()); 4989 4990 if (DstVT.getScalarType() == MVT::f32) { 4991 // Only expand vector types if we have the appropriate vector bit 4992 // operations. 4993 if (SrcVT.isVector() && 4994 (!isOperationLegalOrCustom(ISD::SRL, SrcVT) || 4995 !isOperationLegalOrCustom(ISD::FADD, DstVT) || 4996 !isOperationLegalOrCustom(ISD::SINT_TO_FP, SrcVT) || 4997 !isOperationLegalOrCustomOrPromote(ISD::OR, SrcVT) || 4998 !isOperationLegalOrCustomOrPromote(ISD::AND, SrcVT))) 4999 return false; 5000 5001 // For unsigned conversions, convert them to signed conversions using the 5002 // algorithm from the x86_64 __floatundidf in compiler_rt. 5003 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, DstVT, Src); 5004 5005 SDValue ShiftConst = DAG.getConstant(1, dl, ShiftVT); 5006 SDValue Shr = DAG.getNode(ISD::SRL, dl, SrcVT, Src, ShiftConst); 5007 SDValue AndConst = DAG.getConstant(1, dl, SrcVT); 5008 SDValue And = DAG.getNode(ISD::AND, dl, SrcVT, Src, AndConst); 5009 SDValue Or = DAG.getNode(ISD::OR, dl, SrcVT, And, Shr); 5010 5011 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, DstVT, Or); 5012 SDValue Slow = DAG.getNode(ISD::FADD, dl, DstVT, SignCvt, SignCvt); 5013 5014 // TODO: This really should be implemented using a branch rather than a 5015 // select. We happen to get lucky and machinesink does the right 5016 // thing most of the time. This would be a good candidate for a 5017 // pseudo-op, or, even better, for whole-function isel. 5018 EVT SetCCVT = 5019 getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), SrcVT); 5020 5021 SDValue SignBitTest = DAG.getSetCC( 5022 dl, SetCCVT, Src, DAG.getConstant(0, dl, SrcVT), ISD::SETLT); 5023 Result = DAG.getSelect(dl, DstVT, SignBitTest, Slow, Fast); 5024 return true; 5025 } 5026 5027 if (DstVT.getScalarType() == MVT::f64) { 5028 // Only expand vector types if we have the appropriate vector bit 5029 // operations. 5030 if (SrcVT.isVector() && 5031 (!isOperationLegalOrCustom(ISD::SRL, SrcVT) || 5032 !isOperationLegalOrCustom(ISD::FADD, DstVT) || 5033 !isOperationLegalOrCustom(ISD::FSUB, DstVT) || 5034 !isOperationLegalOrCustomOrPromote(ISD::OR, SrcVT) || 5035 !isOperationLegalOrCustomOrPromote(ISD::AND, SrcVT))) 5036 return false; 5037 5038 // Implementation of unsigned i64 to f64 following the algorithm in 5039 // __floatundidf in compiler_rt. This implementation has the advantage 5040 // of performing rounding correctly, both in the default rounding mode 5041 // and in all alternate rounding modes. 5042 SDValue TwoP52 = DAG.getConstant(UINT64_C(0x4330000000000000), dl, SrcVT); 5043 SDValue TwoP84PlusTwoP52 = DAG.getConstantFP( 5044 BitsToDouble(UINT64_C(0x4530000000100000)), dl, DstVT); 5045 SDValue TwoP84 = DAG.getConstant(UINT64_C(0x4530000000000000), dl, SrcVT); 5046 SDValue LoMask = DAG.getConstant(UINT64_C(0x00000000FFFFFFFF), dl, SrcVT); 5047 SDValue HiShift = DAG.getConstant(32, dl, ShiftVT); 5048 5049 SDValue Lo = DAG.getNode(ISD::AND, dl, SrcVT, Src, LoMask); 5050 SDValue Hi = DAG.getNode(ISD::SRL, dl, SrcVT, Src, HiShift); 5051 SDValue LoOr = DAG.getNode(ISD::OR, dl, SrcVT, Lo, TwoP52); 5052 SDValue HiOr = DAG.getNode(ISD::OR, dl, SrcVT, Hi, TwoP84); 5053 SDValue LoFlt = DAG.getBitcast(DstVT, LoOr); 5054 SDValue HiFlt = DAG.getBitcast(DstVT, HiOr); 5055 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, DstVT, HiFlt, TwoP84PlusTwoP52); 5056 Result = DAG.getNode(ISD::FADD, dl, DstVT, LoFlt, HiSub); 5057 return true; 5058 } 5059 5060 return false; 5061 } 5062 5063 SDValue TargetLowering::expandFMINNUM_FMAXNUM(SDNode *Node, 5064 SelectionDAG &DAG) const { 5065 SDLoc dl(Node); 5066 unsigned NewOp = Node->getOpcode() == ISD::FMINNUM ? 5067 ISD::FMINNUM_IEEE : ISD::FMAXNUM_IEEE; 5068 EVT VT = Node->getValueType(0); 5069 if (isOperationLegalOrCustom(NewOp, VT)) { 5070 SDValue Quiet0 = Node->getOperand(0); 5071 SDValue Quiet1 = Node->getOperand(1); 5072 5073 if (!Node->getFlags().hasNoNaNs()) { 5074 // Insert canonicalizes if it's possible we need to quiet to get correct 5075 // sNaN behavior. 5076 if (!DAG.isKnownNeverSNaN(Quiet0)) { 5077 Quiet0 = DAG.getNode(ISD::FCANONICALIZE, dl, VT, Quiet0, 5078 Node->getFlags()); 5079 } 5080 if (!DAG.isKnownNeverSNaN(Quiet1)) { 5081 Quiet1 = DAG.getNode(ISD::FCANONICALIZE, dl, VT, Quiet1, 5082 Node->getFlags()); 5083 } 5084 } 5085 5086 return DAG.getNode(NewOp, dl, VT, Quiet0, Quiet1, Node->getFlags()); 5087 } 5088 5089 // If the target has FMINIMUM/FMAXIMUM but not FMINNUM/FMAXNUM use that 5090 // instead if there are no NaNs. 5091 if (Node->getFlags().hasNoNaNs()) { 5092 unsigned IEEE2018Op = 5093 Node->getOpcode() == ISD::FMINNUM ? ISD::FMINIMUM : ISD::FMAXIMUM; 5094 if (isOperationLegalOrCustom(IEEE2018Op, VT)) { 5095 return DAG.getNode(IEEE2018Op, dl, VT, Node->getOperand(0), 5096 Node->getOperand(1), Node->getFlags()); 5097 } 5098 } 5099 5100 return SDValue(); 5101 } 5102 5103 bool TargetLowering::expandCTPOP(SDNode *Node, SDValue &Result, 5104 SelectionDAG &DAG) const { 5105 SDLoc dl(Node); 5106 EVT VT = Node->getValueType(0); 5107 EVT ShVT = getShiftAmountTy(VT, DAG.getDataLayout()); 5108 SDValue Op = Node->getOperand(0); 5109 unsigned Len = VT.getScalarSizeInBits(); 5110 assert(VT.isInteger() && "CTPOP not implemented for this type."); 5111 5112 // TODO: Add support for irregular type lengths. 5113 if (!(Len <= 128 && Len % 8 == 0)) 5114 return false; 5115 5116 // Only expand vector types if we have the appropriate vector bit operations. 5117 if (VT.isVector() && (!isOperationLegalOrCustom(ISD::ADD, VT) || 5118 !isOperationLegalOrCustom(ISD::SUB, VT) || 5119 !isOperationLegalOrCustom(ISD::SRL, VT) || 5120 (Len != 8 && !isOperationLegalOrCustom(ISD::MUL, VT)) || 5121 !isOperationLegalOrCustomOrPromote(ISD::AND, VT))) 5122 return false; 5123 5124 // This is the "best" algorithm from 5125 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel 5126 SDValue Mask55 = 5127 DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), dl, VT); 5128 SDValue Mask33 = 5129 DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), dl, VT); 5130 SDValue Mask0F = 5131 DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), dl, VT); 5132 SDValue Mask01 = 5133 DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), dl, VT); 5134 5135 // v = v - ((v >> 1) & 0x55555555...) 5136 Op = DAG.getNode(ISD::SUB, dl, VT, Op, 5137 DAG.getNode(ISD::AND, dl, VT, 5138 DAG.getNode(ISD::SRL, dl, VT, Op, 5139 DAG.getConstant(1, dl, ShVT)), 5140 Mask55)); 5141 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...) 5142 Op = DAG.getNode(ISD::ADD, dl, VT, DAG.getNode(ISD::AND, dl, VT, Op, Mask33), 5143 DAG.getNode(ISD::AND, dl, VT, 5144 DAG.getNode(ISD::SRL, dl, VT, Op, 5145 DAG.getConstant(2, dl, ShVT)), 5146 Mask33)); 5147 // v = (v + (v >> 4)) & 0x0F0F0F0F... 5148 Op = DAG.getNode(ISD::AND, dl, VT, 5149 DAG.getNode(ISD::ADD, dl, VT, Op, 5150 DAG.getNode(ISD::SRL, dl, VT, Op, 5151 DAG.getConstant(4, dl, ShVT))), 5152 Mask0F); 5153 // v = (v * 0x01010101...) >> (Len - 8) 5154 if (Len > 8) 5155 Op = 5156 DAG.getNode(ISD::SRL, dl, VT, DAG.getNode(ISD::MUL, dl, VT, Op, Mask01), 5157 DAG.getConstant(Len - 8, dl, ShVT)); 5158 5159 Result = Op; 5160 return true; 5161 } 5162 5163 bool TargetLowering::expandCTLZ(SDNode *Node, SDValue &Result, 5164 SelectionDAG &DAG) const { 5165 SDLoc dl(Node); 5166 EVT VT = Node->getValueType(0); 5167 EVT ShVT = getShiftAmountTy(VT, DAG.getDataLayout()); 5168 SDValue Op = Node->getOperand(0); 5169 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); 5170 5171 // If the non-ZERO_UNDEF version is supported we can use that instead. 5172 if (Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF && 5173 isOperationLegalOrCustom(ISD::CTLZ, VT)) { 5174 Result = DAG.getNode(ISD::CTLZ, dl, VT, Op); 5175 return true; 5176 } 5177 5178 // If the ZERO_UNDEF version is supported use that and handle the zero case. 5179 if (isOperationLegalOrCustom(ISD::CTLZ_ZERO_UNDEF, VT)) { 5180 EVT SetCCVT = 5181 getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); 5182 SDValue CTLZ = DAG.getNode(ISD::CTLZ_ZERO_UNDEF, dl, VT, Op); 5183 SDValue Zero = DAG.getConstant(0, dl, VT); 5184 SDValue SrcIsZero = DAG.getSetCC(dl, SetCCVT, Op, Zero, ISD::SETEQ); 5185 Result = DAG.getNode(ISD::SELECT, dl, VT, SrcIsZero, 5186 DAG.getConstant(NumBitsPerElt, dl, VT), CTLZ); 5187 return true; 5188 } 5189 5190 // Only expand vector types if we have the appropriate vector bit operations. 5191 if (VT.isVector() && (!isPowerOf2_32(NumBitsPerElt) || 5192 !isOperationLegalOrCustom(ISD::CTPOP, VT) || 5193 !isOperationLegalOrCustom(ISD::SRL, VT) || 5194 !isOperationLegalOrCustomOrPromote(ISD::OR, VT))) 5195 return false; 5196 5197 // for now, we do this: 5198 // x = x | (x >> 1); 5199 // x = x | (x >> 2); 5200 // ... 5201 // x = x | (x >>16); 5202 // x = x | (x >>32); // for 64-bit input 5203 // return popcount(~x); 5204 // 5205 // Ref: "Hacker's Delight" by Henry Warren 5206 for (unsigned i = 0; (1U << i) <= (NumBitsPerElt / 2); ++i) { 5207 SDValue Tmp = DAG.getConstant(1ULL << i, dl, ShVT); 5208 Op = DAG.getNode(ISD::OR, dl, VT, Op, 5209 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp)); 5210 } 5211 Op = DAG.getNOT(dl, Op, VT); 5212 Result = DAG.getNode(ISD::CTPOP, dl, VT, Op); 5213 return true; 5214 } 5215 5216 bool TargetLowering::expandCTTZ(SDNode *Node, SDValue &Result, 5217 SelectionDAG &DAG) const { 5218 SDLoc dl(Node); 5219 EVT VT = Node->getValueType(0); 5220 SDValue Op = Node->getOperand(0); 5221 unsigned NumBitsPerElt = VT.getScalarSizeInBits(); 5222 5223 // If the non-ZERO_UNDEF version is supported we can use that instead. 5224 if (Node->getOpcode() == ISD::CTTZ_ZERO_UNDEF && 5225 isOperationLegalOrCustom(ISD::CTTZ, VT)) { 5226 Result = DAG.getNode(ISD::CTTZ, dl, VT, Op); 5227 return true; 5228 } 5229 5230 // If the ZERO_UNDEF version is supported use that and handle the zero case. 5231 if (isOperationLegalOrCustom(ISD::CTTZ_ZERO_UNDEF, VT)) { 5232 EVT SetCCVT = 5233 getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); 5234 SDValue CTTZ = DAG.getNode(ISD::CTTZ_ZERO_UNDEF, dl, VT, Op); 5235 SDValue Zero = DAG.getConstant(0, dl, VT); 5236 SDValue SrcIsZero = DAG.getSetCC(dl, SetCCVT, Op, Zero, ISD::SETEQ); 5237 Result = DAG.getNode(ISD::SELECT, dl, VT, SrcIsZero, 5238 DAG.getConstant(NumBitsPerElt, dl, VT), CTTZ); 5239 return true; 5240 } 5241 5242 // Only expand vector types if we have the appropriate vector bit operations. 5243 if (VT.isVector() && (!isPowerOf2_32(NumBitsPerElt) || 5244 (!isOperationLegalOrCustom(ISD::CTPOP, VT) && 5245 !isOperationLegalOrCustom(ISD::CTLZ, VT)) || 5246 !isOperationLegalOrCustom(ISD::SUB, VT) || 5247 !isOperationLegalOrCustomOrPromote(ISD::AND, VT) || 5248 !isOperationLegalOrCustomOrPromote(ISD::XOR, VT))) 5249 return false; 5250 5251 // for now, we use: { return popcount(~x & (x - 1)); } 5252 // unless the target has ctlz but not ctpop, in which case we use: 5253 // { return 32 - nlz(~x & (x-1)); } 5254 // Ref: "Hacker's Delight" by Henry Warren 5255 SDValue Tmp = DAG.getNode( 5256 ISD::AND, dl, VT, DAG.getNOT(dl, Op, VT), 5257 DAG.getNode(ISD::SUB, dl, VT, Op, DAG.getConstant(1, dl, VT))); 5258 5259 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead. 5260 if (isOperationLegal(ISD::CTLZ, VT) && !isOperationLegal(ISD::CTPOP, VT)) { 5261 Result = 5262 DAG.getNode(ISD::SUB, dl, VT, DAG.getConstant(NumBitsPerElt, dl, VT), 5263 DAG.getNode(ISD::CTLZ, dl, VT, Tmp)); 5264 return true; 5265 } 5266 5267 Result = DAG.getNode(ISD::CTPOP, dl, VT, Tmp); 5268 return true; 5269 } 5270 5271 bool TargetLowering::expandABS(SDNode *N, SDValue &Result, 5272 SelectionDAG &DAG) const { 5273 SDLoc dl(N); 5274 EVT VT = N->getValueType(0); 5275 EVT ShVT = getShiftAmountTy(VT, DAG.getDataLayout()); 5276 SDValue Op = N->getOperand(0); 5277 5278 // Only expand vector types if we have the appropriate vector operations. 5279 if (VT.isVector() && (!isOperationLegalOrCustom(ISD::SRA, VT) || 5280 !isOperationLegalOrCustom(ISD::ADD, VT) || 5281 !isOperationLegalOrCustomOrPromote(ISD::XOR, VT))) 5282 return false; 5283 5284 SDValue Shift = 5285 DAG.getNode(ISD::SRA, dl, VT, Op, 5286 DAG.getConstant(VT.getScalarSizeInBits() - 1, dl, ShVT)); 5287 SDValue Add = DAG.getNode(ISD::ADD, dl, VT, Op, Shift); 5288 Result = DAG.getNode(ISD::XOR, dl, VT, Add, Shift); 5289 return true; 5290 } 5291 5292 SDValue TargetLowering::scalarizeVectorLoad(LoadSDNode *LD, 5293 SelectionDAG &DAG) const { 5294 SDLoc SL(LD); 5295 SDValue Chain = LD->getChain(); 5296 SDValue BasePTR = LD->getBasePtr(); 5297 EVT SrcVT = LD->getMemoryVT(); 5298 ISD::LoadExtType ExtType = LD->getExtensionType(); 5299 5300 unsigned NumElem = SrcVT.getVectorNumElements(); 5301 5302 EVT SrcEltVT = SrcVT.getScalarType(); 5303 EVT DstEltVT = LD->getValueType(0).getScalarType(); 5304 5305 unsigned Stride = SrcEltVT.getSizeInBits() / 8; 5306 assert(SrcEltVT.isByteSized()); 5307 5308 SmallVector<SDValue, 8> Vals; 5309 SmallVector<SDValue, 8> LoadChains; 5310 5311 for (unsigned Idx = 0; Idx < NumElem; ++Idx) { 5312 SDValue ScalarLoad = 5313 DAG.getExtLoad(ExtType, SL, DstEltVT, Chain, BasePTR, 5314 LD->getPointerInfo().getWithOffset(Idx * Stride), 5315 SrcEltVT, MinAlign(LD->getAlignment(), Idx * Stride), 5316 LD->getMemOperand()->getFlags(), LD->getAAInfo()); 5317 5318 BasePTR = DAG.getObjectPtrOffset(SL, BasePTR, Stride); 5319 5320 Vals.push_back(ScalarLoad.getValue(0)); 5321 LoadChains.push_back(ScalarLoad.getValue(1)); 5322 } 5323 5324 SDValue NewChain = DAG.getNode(ISD::TokenFactor, SL, MVT::Other, LoadChains); 5325 SDValue Value = DAG.getBuildVector(LD->getValueType(0), SL, Vals); 5326 5327 return DAG.getMergeValues({Value, NewChain}, SL); 5328 } 5329 5330 SDValue TargetLowering::scalarizeVectorStore(StoreSDNode *ST, 5331 SelectionDAG &DAG) const { 5332 SDLoc SL(ST); 5333 5334 SDValue Chain = ST->getChain(); 5335 SDValue BasePtr = ST->getBasePtr(); 5336 SDValue Value = ST->getValue(); 5337 EVT StVT = ST->getMemoryVT(); 5338 5339 // The type of the data we want to save 5340 EVT RegVT = Value.getValueType(); 5341 EVT RegSclVT = RegVT.getScalarType(); 5342 5343 // The type of data as saved in memory. 5344 EVT MemSclVT = StVT.getScalarType(); 5345 5346 EVT IdxVT = getVectorIdxTy(DAG.getDataLayout()); 5347 unsigned NumElem = StVT.getVectorNumElements(); 5348 5349 // A vector must always be stored in memory as-is, i.e. without any padding 5350 // between the elements, since various code depend on it, e.g. in the 5351 // handling of a bitcast of a vector type to int, which may be done with a 5352 // vector store followed by an integer load. A vector that does not have 5353 // elements that are byte-sized must therefore be stored as an integer 5354 // built out of the extracted vector elements. 5355 if (!MemSclVT.isByteSized()) { 5356 unsigned NumBits = StVT.getSizeInBits(); 5357 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), NumBits); 5358 5359 SDValue CurrVal = DAG.getConstant(0, SL, IntVT); 5360 5361 for (unsigned Idx = 0; Idx < NumElem; ++Idx) { 5362 SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, RegSclVT, Value, 5363 DAG.getConstant(Idx, SL, IdxVT)); 5364 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SL, MemSclVT, Elt); 5365 SDValue ExtElt = DAG.getNode(ISD::ZERO_EXTEND, SL, IntVT, Trunc); 5366 unsigned ShiftIntoIdx = 5367 (DAG.getDataLayout().isBigEndian() ? (NumElem - 1) - Idx : Idx); 5368 SDValue ShiftAmount = 5369 DAG.getConstant(ShiftIntoIdx * MemSclVT.getSizeInBits(), SL, IntVT); 5370 SDValue ShiftedElt = 5371 DAG.getNode(ISD::SHL, SL, IntVT, ExtElt, ShiftAmount); 5372 CurrVal = DAG.getNode(ISD::OR, SL, IntVT, CurrVal, ShiftedElt); 5373 } 5374 5375 return DAG.getStore(Chain, SL, CurrVal, BasePtr, ST->getPointerInfo(), 5376 ST->getAlignment(), ST->getMemOperand()->getFlags(), 5377 ST->getAAInfo()); 5378 } 5379 5380 // Store Stride in bytes 5381 unsigned Stride = MemSclVT.getSizeInBits() / 8; 5382 assert(Stride && "Zero stride!"); 5383 // Extract each of the elements from the original vector and save them into 5384 // memory individually. 5385 SmallVector<SDValue, 8> Stores; 5386 for (unsigned Idx = 0; Idx < NumElem; ++Idx) { 5387 SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, RegSclVT, Value, 5388 DAG.getConstant(Idx, SL, IdxVT)); 5389 5390 SDValue Ptr = DAG.getObjectPtrOffset(SL, BasePtr, Idx * Stride); 5391 5392 // This scalar TruncStore may be illegal, but we legalize it later. 5393 SDValue Store = DAG.getTruncStore( 5394 Chain, SL, Elt, Ptr, ST->getPointerInfo().getWithOffset(Idx * Stride), 5395 MemSclVT, MinAlign(ST->getAlignment(), Idx * Stride), 5396 ST->getMemOperand()->getFlags(), ST->getAAInfo()); 5397 5398 Stores.push_back(Store); 5399 } 5400 5401 return DAG.getNode(ISD::TokenFactor, SL, MVT::Other, Stores); 5402 } 5403 5404 std::pair<SDValue, SDValue> 5405 TargetLowering::expandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG) const { 5406 assert(LD->getAddressingMode() == ISD::UNINDEXED && 5407 "unaligned indexed loads not implemented!"); 5408 SDValue Chain = LD->getChain(); 5409 SDValue Ptr = LD->getBasePtr(); 5410 EVT VT = LD->getValueType(0); 5411 EVT LoadedVT = LD->getMemoryVT(); 5412 SDLoc dl(LD); 5413 auto &MF = DAG.getMachineFunction(); 5414 5415 if (VT.isFloatingPoint() || VT.isVector()) { 5416 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits()); 5417 if (isTypeLegal(intVT) && isTypeLegal(LoadedVT)) { 5418 if (!isOperationLegalOrCustom(ISD::LOAD, intVT) && 5419 LoadedVT.isVector()) { 5420 // Scalarize the load and let the individual components be handled. 5421 SDValue Scalarized = scalarizeVectorLoad(LD, DAG); 5422 if (Scalarized->getOpcode() == ISD::MERGE_VALUES) 5423 return std::make_pair(Scalarized.getOperand(0), Scalarized.getOperand(1)); 5424 return std::make_pair(Scalarized.getValue(0), Scalarized.getValue(1)); 5425 } 5426 5427 // Expand to a (misaligned) integer load of the same size, 5428 // then bitconvert to floating point or vector. 5429 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, 5430 LD->getMemOperand()); 5431 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad); 5432 if (LoadedVT != VT) 5433 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND : 5434 ISD::ANY_EXTEND, dl, VT, Result); 5435 5436 return std::make_pair(Result, newLoad.getValue(1)); 5437 } 5438 5439 // Copy the value to a (aligned) stack slot using (unaligned) integer 5440 // loads and stores, then do a (aligned) load from the stack slot. 5441 MVT RegVT = getRegisterType(*DAG.getContext(), intVT); 5442 unsigned LoadedBytes = LoadedVT.getStoreSize(); 5443 unsigned RegBytes = RegVT.getSizeInBits() / 8; 5444 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes; 5445 5446 // Make sure the stack slot is also aligned for the register type. 5447 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT); 5448 auto FrameIndex = cast<FrameIndexSDNode>(StackBase.getNode())->getIndex(); 5449 SmallVector<SDValue, 8> Stores; 5450 SDValue StackPtr = StackBase; 5451 unsigned Offset = 0; 5452 5453 EVT PtrVT = Ptr.getValueType(); 5454 EVT StackPtrVT = StackPtr.getValueType(); 5455 5456 SDValue PtrIncrement = DAG.getConstant(RegBytes, dl, PtrVT); 5457 SDValue StackPtrIncrement = DAG.getConstant(RegBytes, dl, StackPtrVT); 5458 5459 // Do all but one copies using the full register width. 5460 for (unsigned i = 1; i < NumRegs; i++) { 5461 // Load one integer register's worth from the original location. 5462 SDValue Load = DAG.getLoad( 5463 RegVT, dl, Chain, Ptr, LD->getPointerInfo().getWithOffset(Offset), 5464 MinAlign(LD->getAlignment(), Offset), LD->getMemOperand()->getFlags(), 5465 LD->getAAInfo()); 5466 // Follow the load with a store to the stack slot. Remember the store. 5467 Stores.push_back(DAG.getStore( 5468 Load.getValue(1), dl, Load, StackPtr, 5469 MachinePointerInfo::getFixedStack(MF, FrameIndex, Offset))); 5470 // Increment the pointers. 5471 Offset += RegBytes; 5472 5473 Ptr = DAG.getObjectPtrOffset(dl, Ptr, PtrIncrement); 5474 StackPtr = DAG.getObjectPtrOffset(dl, StackPtr, StackPtrIncrement); 5475 } 5476 5477 // The last copy may be partial. Do an extending load. 5478 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), 5479 8 * (LoadedBytes - Offset)); 5480 SDValue Load = 5481 DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr, 5482 LD->getPointerInfo().getWithOffset(Offset), MemVT, 5483 MinAlign(LD->getAlignment(), Offset), 5484 LD->getMemOperand()->getFlags(), LD->getAAInfo()); 5485 // Follow the load with a store to the stack slot. Remember the store. 5486 // On big-endian machines this requires a truncating store to ensure 5487 // that the bits end up in the right place. 5488 Stores.push_back(DAG.getTruncStore( 5489 Load.getValue(1), dl, Load, StackPtr, 5490 MachinePointerInfo::getFixedStack(MF, FrameIndex, Offset), MemVT)); 5491 5492 // The order of the stores doesn't matter - say it with a TokenFactor. 5493 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); 5494 5495 // Finally, perform the original load only redirected to the stack slot. 5496 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase, 5497 MachinePointerInfo::getFixedStack(MF, FrameIndex, 0), 5498 LoadedVT); 5499 5500 // Callers expect a MERGE_VALUES node. 5501 return std::make_pair(Load, TF); 5502 } 5503 5504 assert(LoadedVT.isInteger() && !LoadedVT.isVector() && 5505 "Unaligned load of unsupported type."); 5506 5507 // Compute the new VT that is half the size of the old one. This is an 5508 // integer MVT. 5509 unsigned NumBits = LoadedVT.getSizeInBits(); 5510 EVT NewLoadedVT; 5511 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2); 5512 NumBits >>= 1; 5513 5514 unsigned Alignment = LD->getAlignment(); 5515 unsigned IncrementSize = NumBits / 8; 5516 ISD::LoadExtType HiExtType = LD->getExtensionType(); 5517 5518 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD. 5519 if (HiExtType == ISD::NON_EXTLOAD) 5520 HiExtType = ISD::ZEXTLOAD; 5521 5522 // Load the value in two parts 5523 SDValue Lo, Hi; 5524 if (DAG.getDataLayout().isLittleEndian()) { 5525 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(), 5526 NewLoadedVT, Alignment, LD->getMemOperand()->getFlags(), 5527 LD->getAAInfo()); 5528 5529 Ptr = DAG.getObjectPtrOffset(dl, Ptr, IncrementSize); 5530 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, 5531 LD->getPointerInfo().getWithOffset(IncrementSize), 5532 NewLoadedVT, MinAlign(Alignment, IncrementSize), 5533 LD->getMemOperand()->getFlags(), LD->getAAInfo()); 5534 } else { 5535 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(), 5536 NewLoadedVT, Alignment, LD->getMemOperand()->getFlags(), 5537 LD->getAAInfo()); 5538 5539 Ptr = DAG.getObjectPtrOffset(dl, Ptr, IncrementSize); 5540 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, 5541 LD->getPointerInfo().getWithOffset(IncrementSize), 5542 NewLoadedVT, MinAlign(Alignment, IncrementSize), 5543 LD->getMemOperand()->getFlags(), LD->getAAInfo()); 5544 } 5545 5546 // aggregate the two parts 5547 SDValue ShiftAmount = 5548 DAG.getConstant(NumBits, dl, getShiftAmountTy(Hi.getValueType(), 5549 DAG.getDataLayout())); 5550 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount); 5551 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo); 5552 5553 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1), 5554 Hi.getValue(1)); 5555 5556 return std::make_pair(Result, TF); 5557 } 5558 5559 SDValue TargetLowering::expandUnalignedStore(StoreSDNode *ST, 5560 SelectionDAG &DAG) const { 5561 assert(ST->getAddressingMode() == ISD::UNINDEXED && 5562 "unaligned indexed stores not implemented!"); 5563 SDValue Chain = ST->getChain(); 5564 SDValue Ptr = ST->getBasePtr(); 5565 SDValue Val = ST->getValue(); 5566 EVT VT = Val.getValueType(); 5567 int Alignment = ST->getAlignment(); 5568 auto &MF = DAG.getMachineFunction(); 5569 EVT StoreMemVT = ST->getMemoryVT(); 5570 5571 SDLoc dl(ST); 5572 if (StoreMemVT.isFloatingPoint() || StoreMemVT.isVector()) { 5573 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits()); 5574 if (isTypeLegal(intVT)) { 5575 if (!isOperationLegalOrCustom(ISD::STORE, intVT) && 5576 StoreMemVT.isVector()) { 5577 // Scalarize the store and let the individual components be handled. 5578 SDValue Result = scalarizeVectorStore(ST, DAG); 5579 return Result; 5580 } 5581 // Expand to a bitconvert of the value to the integer type of the 5582 // same size, then a (misaligned) int store. 5583 // FIXME: Does not handle truncating floating point stores! 5584 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val); 5585 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(), 5586 Alignment, ST->getMemOperand()->getFlags()); 5587 return Result; 5588 } 5589 // Do a (aligned) store to a stack slot, then copy from the stack slot 5590 // to the final destination using (unaligned) integer loads and stores. 5591 MVT RegVT = getRegisterType( 5592 *DAG.getContext(), 5593 EVT::getIntegerVT(*DAG.getContext(), StoreMemVT.getSizeInBits())); 5594 EVT PtrVT = Ptr.getValueType(); 5595 unsigned StoredBytes = StoreMemVT.getStoreSize(); 5596 unsigned RegBytes = RegVT.getSizeInBits() / 8; 5597 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes; 5598 5599 // Make sure the stack slot is also aligned for the register type. 5600 SDValue StackPtr = DAG.CreateStackTemporary(StoreMemVT, RegVT); 5601 auto FrameIndex = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex(); 5602 5603 // Perform the original store, only redirected to the stack slot. 5604 SDValue Store = DAG.getTruncStore( 5605 Chain, dl, Val, StackPtr, 5606 MachinePointerInfo::getFixedStack(MF, FrameIndex, 0), StoreMemVT); 5607 5608 EVT StackPtrVT = StackPtr.getValueType(); 5609 5610 SDValue PtrIncrement = DAG.getConstant(RegBytes, dl, PtrVT); 5611 SDValue StackPtrIncrement = DAG.getConstant(RegBytes, dl, StackPtrVT); 5612 SmallVector<SDValue, 8> Stores; 5613 unsigned Offset = 0; 5614 5615 // Do all but one copies using the full register width. 5616 for (unsigned i = 1; i < NumRegs; i++) { 5617 // Load one integer register's worth from the stack slot. 5618 SDValue Load = DAG.getLoad( 5619 RegVT, dl, Store, StackPtr, 5620 MachinePointerInfo::getFixedStack(MF, FrameIndex, Offset)); 5621 // Store it to the final location. Remember the store. 5622 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr, 5623 ST->getPointerInfo().getWithOffset(Offset), 5624 MinAlign(ST->getAlignment(), Offset), 5625 ST->getMemOperand()->getFlags())); 5626 // Increment the pointers. 5627 Offset += RegBytes; 5628 StackPtr = DAG.getObjectPtrOffset(dl, StackPtr, StackPtrIncrement); 5629 Ptr = DAG.getObjectPtrOffset(dl, Ptr, PtrIncrement); 5630 } 5631 5632 // The last store may be partial. Do a truncating store. On big-endian 5633 // machines this requires an extending load from the stack slot to ensure 5634 // that the bits are in the right place. 5635 EVT LoadMemVT = 5636 EVT::getIntegerVT(*DAG.getContext(), 8 * (StoredBytes - Offset)); 5637 5638 // Load from the stack slot. 5639 SDValue Load = DAG.getExtLoad( 5640 ISD::EXTLOAD, dl, RegVT, Store, StackPtr, 5641 MachinePointerInfo::getFixedStack(MF, FrameIndex, Offset), LoadMemVT); 5642 5643 Stores.push_back( 5644 DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr, 5645 ST->getPointerInfo().getWithOffset(Offset), LoadMemVT, 5646 MinAlign(ST->getAlignment(), Offset), 5647 ST->getMemOperand()->getFlags(), ST->getAAInfo())); 5648 // The order of the stores doesn't matter - say it with a TokenFactor. 5649 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); 5650 return Result; 5651 } 5652 5653 assert(StoreMemVT.isInteger() && !StoreMemVT.isVector() && 5654 "Unaligned store of unknown type."); 5655 // Get the half-size VT 5656 EVT NewStoredVT = StoreMemVT.getHalfSizedIntegerVT(*DAG.getContext()); 5657 int NumBits = NewStoredVT.getSizeInBits(); 5658 int IncrementSize = NumBits / 8; 5659 5660 // Divide the stored value in two parts. 5661 SDValue ShiftAmount = DAG.getConstant( 5662 NumBits, dl, getShiftAmountTy(Val.getValueType(), DAG.getDataLayout())); 5663 SDValue Lo = Val; 5664 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount); 5665 5666 // Store the two parts 5667 SDValue Store1, Store2; 5668 Store1 = DAG.getTruncStore(Chain, dl, 5669 DAG.getDataLayout().isLittleEndian() ? Lo : Hi, 5670 Ptr, ST->getPointerInfo(), NewStoredVT, Alignment, 5671 ST->getMemOperand()->getFlags()); 5672 5673 Ptr = DAG.getObjectPtrOffset(dl, Ptr, IncrementSize); 5674 Alignment = MinAlign(Alignment, IncrementSize); 5675 Store2 = DAG.getTruncStore( 5676 Chain, dl, DAG.getDataLayout().isLittleEndian() ? Hi : Lo, Ptr, 5677 ST->getPointerInfo().getWithOffset(IncrementSize), NewStoredVT, Alignment, 5678 ST->getMemOperand()->getFlags(), ST->getAAInfo()); 5679 5680 SDValue Result = 5681 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2); 5682 return Result; 5683 } 5684 5685 SDValue 5686 TargetLowering::IncrementMemoryAddress(SDValue Addr, SDValue Mask, 5687 const SDLoc &DL, EVT DataVT, 5688 SelectionDAG &DAG, 5689 bool IsCompressedMemory) const { 5690 SDValue Increment; 5691 EVT AddrVT = Addr.getValueType(); 5692 EVT MaskVT = Mask.getValueType(); 5693 assert(DataVT.getVectorNumElements() == MaskVT.getVectorNumElements() && 5694 "Incompatible types of Data and Mask"); 5695 if (IsCompressedMemory) { 5696 // Incrementing the pointer according to number of '1's in the mask. 5697 EVT MaskIntVT = EVT::getIntegerVT(*DAG.getContext(), MaskVT.getSizeInBits()); 5698 SDValue MaskInIntReg = DAG.getBitcast(MaskIntVT, Mask); 5699 if (MaskIntVT.getSizeInBits() < 32) { 5700 MaskInIntReg = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, MaskInIntReg); 5701 MaskIntVT = MVT::i32; 5702 } 5703 5704 // Count '1's with POPCNT. 5705 Increment = DAG.getNode(ISD::CTPOP, DL, MaskIntVT, MaskInIntReg); 5706 Increment = DAG.getZExtOrTrunc(Increment, DL, AddrVT); 5707 // Scale is an element size in bytes. 5708 SDValue Scale = DAG.getConstant(DataVT.getScalarSizeInBits() / 8, DL, 5709 AddrVT); 5710 Increment = DAG.getNode(ISD::MUL, DL, AddrVT, Increment, Scale); 5711 } else 5712 Increment = DAG.getConstant(DataVT.getStoreSize(), DL, AddrVT); 5713 5714 return DAG.getNode(ISD::ADD, DL, AddrVT, Addr, Increment); 5715 } 5716 5717 static SDValue clampDynamicVectorIndex(SelectionDAG &DAG, 5718 SDValue Idx, 5719 EVT VecVT, 5720 const SDLoc &dl) { 5721 if (isa<ConstantSDNode>(Idx)) 5722 return Idx; 5723 5724 EVT IdxVT = Idx.getValueType(); 5725 unsigned NElts = VecVT.getVectorNumElements(); 5726 if (isPowerOf2_32(NElts)) { 5727 APInt Imm = APInt::getLowBitsSet(IdxVT.getSizeInBits(), 5728 Log2_32(NElts)); 5729 return DAG.getNode(ISD::AND, dl, IdxVT, Idx, 5730 DAG.getConstant(Imm, dl, IdxVT)); 5731 } 5732 5733 return DAG.getNode(ISD::UMIN, dl, IdxVT, Idx, 5734 DAG.getConstant(NElts - 1, dl, IdxVT)); 5735 } 5736 5737 SDValue TargetLowering::getVectorElementPointer(SelectionDAG &DAG, 5738 SDValue VecPtr, EVT VecVT, 5739 SDValue Index) const { 5740 SDLoc dl(Index); 5741 // Make sure the index type is big enough to compute in. 5742 Index = DAG.getZExtOrTrunc(Index, dl, VecPtr.getValueType()); 5743 5744 EVT EltVT = VecVT.getVectorElementType(); 5745 5746 // Calculate the element offset and add it to the pointer. 5747 unsigned EltSize = EltVT.getSizeInBits() / 8; // FIXME: should be ABI size. 5748 assert(EltSize * 8 == EltVT.getSizeInBits() && 5749 "Converting bits to bytes lost precision"); 5750 5751 Index = clampDynamicVectorIndex(DAG, Index, VecVT, dl); 5752 5753 EVT IdxVT = Index.getValueType(); 5754 5755 Index = DAG.getNode(ISD::MUL, dl, IdxVT, Index, 5756 DAG.getConstant(EltSize, dl, IdxVT)); 5757 return DAG.getNode(ISD::ADD, dl, IdxVT, VecPtr, Index); 5758 } 5759 5760 //===----------------------------------------------------------------------===// 5761 // Implementation of Emulated TLS Model 5762 //===----------------------------------------------------------------------===// 5763 5764 SDValue TargetLowering::LowerToTLSEmulatedModel(const GlobalAddressSDNode *GA, 5765 SelectionDAG &DAG) const { 5766 // Access to address of TLS varialbe xyz is lowered to a function call: 5767 // __emutls_get_address( address of global variable named "__emutls_v.xyz" ) 5768 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 5769 PointerType *VoidPtrType = Type::getInt8PtrTy(*DAG.getContext()); 5770 SDLoc dl(GA); 5771 5772 ArgListTy Args; 5773 ArgListEntry Entry; 5774 std::string NameString = ("__emutls_v." + GA->getGlobal()->getName()).str(); 5775 Module *VariableModule = const_cast<Module*>(GA->getGlobal()->getParent()); 5776 StringRef EmuTlsVarName(NameString); 5777 GlobalVariable *EmuTlsVar = VariableModule->getNamedGlobal(EmuTlsVarName); 5778 assert(EmuTlsVar && "Cannot find EmuTlsVar "); 5779 Entry.Node = DAG.getGlobalAddress(EmuTlsVar, dl, PtrVT); 5780 Entry.Ty = VoidPtrType; 5781 Args.push_back(Entry); 5782 5783 SDValue EmuTlsGetAddr = DAG.getExternalSymbol("__emutls_get_address", PtrVT); 5784 5785 TargetLowering::CallLoweringInfo CLI(DAG); 5786 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode()); 5787 CLI.setLibCallee(CallingConv::C, VoidPtrType, EmuTlsGetAddr, std::move(Args)); 5788 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI); 5789 5790 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls. 5791 // At last for X86 targets, maybe good for other targets too? 5792 MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo(); 5793 MFI.setAdjustsStack(true); // Is this only for X86 target? 5794 MFI.setHasCalls(true); 5795 5796 assert((GA->getOffset() == 0) && 5797 "Emulated TLS must have zero offset in GlobalAddressSDNode"); 5798 return CallResult.first; 5799 } 5800 5801 SDValue TargetLowering::lowerCmpEqZeroToCtlzSrl(SDValue Op, 5802 SelectionDAG &DAG) const { 5803 assert((Op->getOpcode() == ISD::SETCC) && "Input has to be a SETCC node."); 5804 if (!isCtlzFast()) 5805 return SDValue(); 5806 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); 5807 SDLoc dl(Op); 5808 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { 5809 if (C->isNullValue() && CC == ISD::SETEQ) { 5810 EVT VT = Op.getOperand(0).getValueType(); 5811 SDValue Zext = Op.getOperand(0); 5812 if (VT.bitsLT(MVT::i32)) { 5813 VT = MVT::i32; 5814 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0)); 5815 } 5816 unsigned Log2b = Log2_32(VT.getSizeInBits()); 5817 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext); 5818 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz, 5819 DAG.getConstant(Log2b, dl, MVT::i32)); 5820 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc); 5821 } 5822 } 5823 return SDValue(); 5824 } 5825 5826 SDValue TargetLowering::expandAddSubSat(SDNode *Node, SelectionDAG &DAG) const { 5827 unsigned Opcode = Node->getOpcode(); 5828 SDValue LHS = Node->getOperand(0); 5829 SDValue RHS = Node->getOperand(1); 5830 EVT VT = LHS.getValueType(); 5831 SDLoc dl(Node); 5832 5833 assert(VT == RHS.getValueType() && "Expected operands to be the same type"); 5834 assert(VT.isInteger() && "Expected operands to be integers"); 5835 5836 // usub.sat(a, b) -> umax(a, b) - b 5837 if (Opcode == ISD::USUBSAT && isOperationLegalOrCustom(ISD::UMAX, VT)) { 5838 SDValue Max = DAG.getNode(ISD::UMAX, dl, VT, LHS, RHS); 5839 return DAG.getNode(ISD::SUB, dl, VT, Max, RHS); 5840 } 5841 5842 if (Opcode == ISD::UADDSAT && isOperationLegalOrCustom(ISD::UMIN, VT)) { 5843 SDValue InvRHS = DAG.getNOT(dl, RHS, VT); 5844 SDValue Min = DAG.getNode(ISD::UMIN, dl, VT, LHS, InvRHS); 5845 return DAG.getNode(ISD::ADD, dl, VT, Min, RHS); 5846 } 5847 5848 unsigned OverflowOp; 5849 switch (Opcode) { 5850 case ISD::SADDSAT: 5851 OverflowOp = ISD::SADDO; 5852 break; 5853 case ISD::UADDSAT: 5854 OverflowOp = ISD::UADDO; 5855 break; 5856 case ISD::SSUBSAT: 5857 OverflowOp = ISD::SSUBO; 5858 break; 5859 case ISD::USUBSAT: 5860 OverflowOp = ISD::USUBO; 5861 break; 5862 default: 5863 llvm_unreachable("Expected method to receive signed or unsigned saturation " 5864 "addition or subtraction node."); 5865 } 5866 5867 unsigned BitWidth = LHS.getScalarValueSizeInBits(); 5868 EVT BoolVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); 5869 SDValue Result = DAG.getNode(OverflowOp, dl, DAG.getVTList(VT, BoolVT), 5870 LHS, RHS); 5871 SDValue SumDiff = Result.getValue(0); 5872 SDValue Overflow = Result.getValue(1); 5873 SDValue Zero = DAG.getConstant(0, dl, VT); 5874 SDValue AllOnes = DAG.getAllOnesConstant(dl, VT); 5875 5876 if (Opcode == ISD::UADDSAT) { 5877 if (getBooleanContents(VT) == ZeroOrNegativeOneBooleanContent) { 5878 // (LHS + RHS) | OverflowMask 5879 SDValue OverflowMask = DAG.getSExtOrTrunc(Overflow, dl, VT); 5880 return DAG.getNode(ISD::OR, dl, VT, SumDiff, OverflowMask); 5881 } 5882 // Overflow ? 0xffff.... : (LHS + RHS) 5883 return DAG.getSelect(dl, VT, Overflow, AllOnes, SumDiff); 5884 } else if (Opcode == ISD::USUBSAT) { 5885 if (getBooleanContents(VT) == ZeroOrNegativeOneBooleanContent) { 5886 // (LHS - RHS) & ~OverflowMask 5887 SDValue OverflowMask = DAG.getSExtOrTrunc(Overflow, dl, VT); 5888 SDValue Not = DAG.getNOT(dl, OverflowMask, VT); 5889 return DAG.getNode(ISD::AND, dl, VT, SumDiff, Not); 5890 } 5891 // Overflow ? 0 : (LHS - RHS) 5892 return DAG.getSelect(dl, VT, Overflow, Zero, SumDiff); 5893 } else { 5894 // SatMax -> Overflow && SumDiff < 0 5895 // SatMin -> Overflow && SumDiff >= 0 5896 APInt MinVal = APInt::getSignedMinValue(BitWidth); 5897 APInt MaxVal = APInt::getSignedMaxValue(BitWidth); 5898 SDValue SatMin = DAG.getConstant(MinVal, dl, VT); 5899 SDValue SatMax = DAG.getConstant(MaxVal, dl, VT); 5900 SDValue SumNeg = DAG.getSetCC(dl, BoolVT, SumDiff, Zero, ISD::SETLT); 5901 Result = DAG.getSelect(dl, VT, SumNeg, SatMax, SatMin); 5902 return DAG.getSelect(dl, VT, Overflow, Result, SumDiff); 5903 } 5904 } 5905 5906 SDValue 5907 TargetLowering::expandFixedPointMul(SDNode *Node, SelectionDAG &DAG) const { 5908 assert((Node->getOpcode() == ISD::SMULFIX || 5909 Node->getOpcode() == ISD::UMULFIX || 5910 Node->getOpcode() == ISD::SMULFIXSAT) && 5911 "Expected a fixed point multiplication opcode"); 5912 5913 SDLoc dl(Node); 5914 SDValue LHS = Node->getOperand(0); 5915 SDValue RHS = Node->getOperand(1); 5916 EVT VT = LHS.getValueType(); 5917 unsigned Scale = Node->getConstantOperandVal(2); 5918 bool Saturating = Node->getOpcode() == ISD::SMULFIXSAT; 5919 EVT BoolVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); 5920 unsigned VTSize = VT.getScalarSizeInBits(); 5921 5922 if (!Scale) { 5923 // [us]mul.fix(a, b, 0) -> mul(a, b) 5924 if (!Saturating && isOperationLegalOrCustom(ISD::MUL, VT)) { 5925 return DAG.getNode(ISD::MUL, dl, VT, LHS, RHS); 5926 } else if (Saturating && isOperationLegalOrCustom(ISD::SMULO, VT)) { 5927 SDValue Result = 5928 DAG.getNode(ISD::SMULO, dl, DAG.getVTList(VT, BoolVT), LHS, RHS); 5929 SDValue Product = Result.getValue(0); 5930 SDValue Overflow = Result.getValue(1); 5931 SDValue Zero = DAG.getConstant(0, dl, VT); 5932 5933 APInt MinVal = APInt::getSignedMinValue(VTSize); 5934 APInt MaxVal = APInt::getSignedMaxValue(VTSize); 5935 SDValue SatMin = DAG.getConstant(MinVal, dl, VT); 5936 SDValue SatMax = DAG.getConstant(MaxVal, dl, VT); 5937 SDValue ProdNeg = DAG.getSetCC(dl, BoolVT, Product, Zero, ISD::SETLT); 5938 Result = DAG.getSelect(dl, VT, ProdNeg, SatMax, SatMin); 5939 return DAG.getSelect(dl, VT, Overflow, Result, Product); 5940 } 5941 } 5942 5943 bool Signed = 5944 Node->getOpcode() == ISD::SMULFIX || Node->getOpcode() == ISD::SMULFIXSAT; 5945 assert(((Signed && Scale < VTSize) || (!Signed && Scale <= VTSize)) && 5946 "Expected scale to be less than the number of bits if signed or at " 5947 "most the number of bits if unsigned."); 5948 assert(LHS.getValueType() == RHS.getValueType() && 5949 "Expected both operands to be the same type"); 5950 5951 // Get the upper and lower bits of the result. 5952 SDValue Lo, Hi; 5953 unsigned LoHiOp = Signed ? ISD::SMUL_LOHI : ISD::UMUL_LOHI; 5954 unsigned HiOp = Signed ? ISD::MULHS : ISD::MULHU; 5955 if (isOperationLegalOrCustom(LoHiOp, VT)) { 5956 SDValue Result = DAG.getNode(LoHiOp, dl, DAG.getVTList(VT, VT), LHS, RHS); 5957 Lo = Result.getValue(0); 5958 Hi = Result.getValue(1); 5959 } else if (isOperationLegalOrCustom(HiOp, VT)) { 5960 Lo = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS); 5961 Hi = DAG.getNode(HiOp, dl, VT, LHS, RHS); 5962 } else if (VT.isVector()) { 5963 return SDValue(); 5964 } else { 5965 report_fatal_error("Unable to expand fixed point multiplication."); 5966 } 5967 5968 if (Scale == VTSize) 5969 // Result is just the top half since we'd be shifting by the width of the 5970 // operand. 5971 return Hi; 5972 5973 // The result will need to be shifted right by the scale since both operands 5974 // are scaled. The result is given to us in 2 halves, so we only want part of 5975 // both in the result. 5976 EVT ShiftTy = getShiftAmountTy(VT, DAG.getDataLayout()); 5977 SDValue Result = DAG.getNode(ISD::FSHR, dl, VT, Hi, Lo, 5978 DAG.getConstant(Scale, dl, ShiftTy)); 5979 if (!Saturating) 5980 return Result; 5981 5982 unsigned OverflowBits = VTSize - Scale + 1; // +1 for the sign 5983 SDValue HiMask = 5984 DAG.getConstant(APInt::getHighBitsSet(VTSize, OverflowBits), dl, VT); 5985 SDValue LoMask = DAG.getConstant( 5986 APInt::getLowBitsSet(VTSize, VTSize - OverflowBits), dl, VT); 5987 APInt MaxVal = APInt::getSignedMaxValue(VTSize); 5988 APInt MinVal = APInt::getSignedMinValue(VTSize); 5989 5990 Result = DAG.getSelectCC(dl, Hi, LoMask, 5991 DAG.getConstant(MaxVal, dl, VT), Result, 5992 ISD::SETGT); 5993 return DAG.getSelectCC(dl, Hi, HiMask, 5994 DAG.getConstant(MinVal, dl, VT), Result, 5995 ISD::SETLT); 5996 } 5997 5998 void TargetLowering::expandUADDSUBO( 5999 SDNode *Node, SDValue &Result, SDValue &Overflow, SelectionDAG &DAG) const { 6000 SDLoc dl(Node); 6001 SDValue LHS = Node->getOperand(0); 6002 SDValue RHS = Node->getOperand(1); 6003 bool IsAdd = Node->getOpcode() == ISD::UADDO; 6004 6005 // If ADD/SUBCARRY is legal, use that instead. 6006 unsigned OpcCarry = IsAdd ? ISD::ADDCARRY : ISD::SUBCARRY; 6007 if (isOperationLegalOrCustom(OpcCarry, Node->getValueType(0))) { 6008 SDValue CarryIn = DAG.getConstant(0, dl, Node->getValueType(1)); 6009 SDValue NodeCarry = DAG.getNode(OpcCarry, dl, Node->getVTList(), 6010 { LHS, RHS, CarryIn }); 6011 Result = SDValue(NodeCarry.getNode(), 0); 6012 Overflow = SDValue(NodeCarry.getNode(), 1); 6013 return; 6014 } 6015 6016 Result = DAG.getNode(IsAdd ? ISD::ADD : ISD::SUB, dl, 6017 LHS.getValueType(), LHS, RHS); 6018 6019 EVT ResultType = Node->getValueType(1); 6020 EVT SetCCType = getSetCCResultType( 6021 DAG.getDataLayout(), *DAG.getContext(), Node->getValueType(0)); 6022 ISD::CondCode CC = IsAdd ? ISD::SETULT : ISD::SETUGT; 6023 SDValue SetCC = DAG.getSetCC(dl, SetCCType, Result, LHS, CC); 6024 Overflow = DAG.getBoolExtOrTrunc(SetCC, dl, ResultType, ResultType); 6025 } 6026 6027 void TargetLowering::expandSADDSUBO( 6028 SDNode *Node, SDValue &Result, SDValue &Overflow, SelectionDAG &DAG) const { 6029 SDLoc dl(Node); 6030 SDValue LHS = Node->getOperand(0); 6031 SDValue RHS = Node->getOperand(1); 6032 bool IsAdd = Node->getOpcode() == ISD::SADDO; 6033 6034 Result = DAG.getNode(IsAdd ? ISD::ADD : ISD::SUB, dl, 6035 LHS.getValueType(), LHS, RHS); 6036 6037 EVT ResultType = Node->getValueType(1); 6038 EVT OType = getSetCCResultType( 6039 DAG.getDataLayout(), *DAG.getContext(), Node->getValueType(0)); 6040 6041 // If SADDSAT/SSUBSAT is legal, compare results to detect overflow. 6042 unsigned OpcSat = IsAdd ? ISD::SADDSAT : ISD::SSUBSAT; 6043 if (isOperationLegalOrCustom(OpcSat, LHS.getValueType())) { 6044 SDValue Sat = DAG.getNode(OpcSat, dl, LHS.getValueType(), LHS, RHS); 6045 SDValue SetCC = DAG.getSetCC(dl, OType, Result, Sat, ISD::SETNE); 6046 Overflow = DAG.getBoolExtOrTrunc(SetCC, dl, ResultType, ResultType); 6047 return; 6048 } 6049 6050 SDValue Zero = DAG.getConstant(0, dl, LHS.getValueType()); 6051 6052 // LHSSign -> LHS >= 0 6053 // RHSSign -> RHS >= 0 6054 // SumSign -> Result >= 0 6055 // 6056 // Add: 6057 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign) 6058 // Sub: 6059 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign) 6060 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE); 6061 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE); 6062 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign, 6063 IsAdd ? ISD::SETEQ : ISD::SETNE); 6064 6065 SDValue SumSign = DAG.getSetCC(dl, OType, Result, Zero, ISD::SETGE); 6066 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE); 6067 6068 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE); 6069 Overflow = DAG.getBoolExtOrTrunc(Cmp, dl, ResultType, ResultType); 6070 } 6071 6072 bool TargetLowering::expandMULO(SDNode *Node, SDValue &Result, 6073 SDValue &Overflow, SelectionDAG &DAG) const { 6074 SDLoc dl(Node); 6075 EVT VT = Node->getValueType(0); 6076 EVT SetCCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); 6077 SDValue LHS = Node->getOperand(0); 6078 SDValue RHS = Node->getOperand(1); 6079 bool isSigned = Node->getOpcode() == ISD::SMULO; 6080 6081 // For power-of-two multiplications we can use a simpler shift expansion. 6082 if (ConstantSDNode *RHSC = isConstOrConstSplat(RHS)) { 6083 const APInt &C = RHSC->getAPIntValue(); 6084 // mulo(X, 1 << S) -> { X << S, (X << S) >> S != X } 6085 if (C.isPowerOf2()) { 6086 // smulo(x, signed_min) is same as umulo(x, signed_min). 6087 bool UseArithShift = isSigned && !C.isMinSignedValue(); 6088 EVT ShiftAmtTy = getShiftAmountTy(VT, DAG.getDataLayout()); 6089 SDValue ShiftAmt = DAG.getConstant(C.logBase2(), dl, ShiftAmtTy); 6090 Result = DAG.getNode(ISD::SHL, dl, VT, LHS, ShiftAmt); 6091 Overflow = DAG.getSetCC(dl, SetCCVT, 6092 DAG.getNode(UseArithShift ? ISD::SRA : ISD::SRL, 6093 dl, VT, Result, ShiftAmt), 6094 LHS, ISD::SETNE); 6095 return true; 6096 } 6097 } 6098 6099 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getScalarSizeInBits() * 2); 6100 if (VT.isVector()) 6101 WideVT = EVT::getVectorVT(*DAG.getContext(), WideVT, 6102 VT.getVectorNumElements()); 6103 6104 SDValue BottomHalf; 6105 SDValue TopHalf; 6106 static const unsigned Ops[2][3] = 6107 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND }, 6108 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }}; 6109 if (isOperationLegalOrCustom(Ops[isSigned][0], VT)) { 6110 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS); 6111 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS); 6112 } else if (isOperationLegalOrCustom(Ops[isSigned][1], VT)) { 6113 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS, 6114 RHS); 6115 TopHalf = BottomHalf.getValue(1); 6116 } else if (isTypeLegal(WideVT)) { 6117 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS); 6118 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS); 6119 SDValue Mul = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS); 6120 BottomHalf = DAG.getNode(ISD::TRUNCATE, dl, VT, Mul); 6121 SDValue ShiftAmt = DAG.getConstant(VT.getScalarSizeInBits(), dl, 6122 getShiftAmountTy(WideVT, DAG.getDataLayout())); 6123 TopHalf = DAG.getNode(ISD::TRUNCATE, dl, VT, 6124 DAG.getNode(ISD::SRL, dl, WideVT, Mul, ShiftAmt)); 6125 } else { 6126 if (VT.isVector()) 6127 return false; 6128 6129 // We can fall back to a libcall with an illegal type for the MUL if we 6130 // have a libcall big enough. 6131 // Also, we can fall back to a division in some cases, but that's a big 6132 // performance hit in the general case. 6133 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; 6134 if (WideVT == MVT::i16) 6135 LC = RTLIB::MUL_I16; 6136 else if (WideVT == MVT::i32) 6137 LC = RTLIB::MUL_I32; 6138 else if (WideVT == MVT::i64) 6139 LC = RTLIB::MUL_I64; 6140 else if (WideVT == MVT::i128) 6141 LC = RTLIB::MUL_I128; 6142 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!"); 6143 6144 SDValue HiLHS; 6145 SDValue HiRHS; 6146 if (isSigned) { 6147 // The high part is obtained by SRA'ing all but one of the bits of low 6148 // part. 6149 unsigned LoSize = VT.getSizeInBits(); 6150 HiLHS = 6151 DAG.getNode(ISD::SRA, dl, VT, LHS, 6152 DAG.getConstant(LoSize - 1, dl, 6153 getPointerTy(DAG.getDataLayout()))); 6154 HiRHS = 6155 DAG.getNode(ISD::SRA, dl, VT, RHS, 6156 DAG.getConstant(LoSize - 1, dl, 6157 getPointerTy(DAG.getDataLayout()))); 6158 } else { 6159 HiLHS = DAG.getConstant(0, dl, VT); 6160 HiRHS = DAG.getConstant(0, dl, VT); 6161 } 6162 6163 // Here we're passing the 2 arguments explicitly as 4 arguments that are 6164 // pre-lowered to the correct types. This all depends upon WideVT not 6165 // being a legal type for the architecture and thus has to be split to 6166 // two arguments. 6167 SDValue Ret; 6168 if (shouldSplitFunctionArgumentsAsLittleEndian(DAG.getDataLayout())) { 6169 // Halves of WideVT are packed into registers in different order 6170 // depending on platform endianness. This is usually handled by 6171 // the C calling convention, but we can't defer to it in 6172 // the legalizer. 6173 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS }; 6174 Ret = makeLibCall(DAG, LC, WideVT, Args, isSigned, dl, 6175 /* doesNotReturn */ false, /* isReturnValueUsed */ true, 6176 /* isPostTypeLegalization */ true).first; 6177 } else { 6178 SDValue Args[] = { HiLHS, LHS, HiRHS, RHS }; 6179 Ret = makeLibCall(DAG, LC, WideVT, Args, isSigned, dl, 6180 /* doesNotReturn */ false, /* isReturnValueUsed */ true, 6181 /* isPostTypeLegalization */ true).first; 6182 } 6183 assert(Ret.getOpcode() == ISD::MERGE_VALUES && 6184 "Ret value is a collection of constituent nodes holding result."); 6185 if (DAG.getDataLayout().isLittleEndian()) { 6186 // Same as above. 6187 BottomHalf = Ret.getOperand(0); 6188 TopHalf = Ret.getOperand(1); 6189 } else { 6190 BottomHalf = Ret.getOperand(1); 6191 TopHalf = Ret.getOperand(0); 6192 } 6193 } 6194 6195 Result = BottomHalf; 6196 if (isSigned) { 6197 SDValue ShiftAmt = DAG.getConstant( 6198 VT.getScalarSizeInBits() - 1, dl, 6199 getShiftAmountTy(BottomHalf.getValueType(), DAG.getDataLayout())); 6200 SDValue Sign = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, ShiftAmt); 6201 Overflow = DAG.getSetCC(dl, SetCCVT, TopHalf, Sign, ISD::SETNE); 6202 } else { 6203 Overflow = DAG.getSetCC(dl, SetCCVT, TopHalf, 6204 DAG.getConstant(0, dl, VT), ISD::SETNE); 6205 } 6206 6207 // Truncate the result if SetCC returns a larger type than needed. 6208 EVT RType = Node->getValueType(1); 6209 if (RType.getSizeInBits() < Overflow.getValueSizeInBits()) 6210 Overflow = DAG.getNode(ISD::TRUNCATE, dl, RType, Overflow); 6211 6212 assert(RType.getSizeInBits() == Overflow.getValueSizeInBits() && 6213 "Unexpected result type for S/UMULO legalization"); 6214 return true; 6215 } 6216 6217 SDValue TargetLowering::expandVecReduce(SDNode *Node, SelectionDAG &DAG) const { 6218 SDLoc dl(Node); 6219 bool NoNaN = Node->getFlags().hasNoNaNs(); 6220 unsigned BaseOpcode = 0; 6221 switch (Node->getOpcode()) { 6222 default: llvm_unreachable("Expected VECREDUCE opcode"); 6223 case ISD::VECREDUCE_FADD: BaseOpcode = ISD::FADD; break; 6224 case ISD::VECREDUCE_FMUL: BaseOpcode = ISD::FMUL; break; 6225 case ISD::VECREDUCE_ADD: BaseOpcode = ISD::ADD; break; 6226 case ISD::VECREDUCE_MUL: BaseOpcode = ISD::MUL; break; 6227 case ISD::VECREDUCE_AND: BaseOpcode = ISD::AND; break; 6228 case ISD::VECREDUCE_OR: BaseOpcode = ISD::OR; break; 6229 case ISD::VECREDUCE_XOR: BaseOpcode = ISD::XOR; break; 6230 case ISD::VECREDUCE_SMAX: BaseOpcode = ISD::SMAX; break; 6231 case ISD::VECREDUCE_SMIN: BaseOpcode = ISD::SMIN; break; 6232 case ISD::VECREDUCE_UMAX: BaseOpcode = ISD::UMAX; break; 6233 case ISD::VECREDUCE_UMIN: BaseOpcode = ISD::UMIN; break; 6234 case ISD::VECREDUCE_FMAX: 6235 BaseOpcode = NoNaN ? ISD::FMAXNUM : ISD::FMAXIMUM; 6236 break; 6237 case ISD::VECREDUCE_FMIN: 6238 BaseOpcode = NoNaN ? ISD::FMINNUM : ISD::FMINIMUM; 6239 break; 6240 } 6241 6242 SDValue Op = Node->getOperand(0); 6243 EVT VT = Op.getValueType(); 6244 6245 // Try to use a shuffle reduction for power of two vectors. 6246 if (VT.isPow2VectorType()) { 6247 while (VT.getVectorNumElements() > 1) { 6248 EVT HalfVT = VT.getHalfNumVectorElementsVT(*DAG.getContext()); 6249 if (!isOperationLegalOrCustom(BaseOpcode, HalfVT)) 6250 break; 6251 6252 SDValue Lo, Hi; 6253 std::tie(Lo, Hi) = DAG.SplitVector(Op, dl); 6254 Op = DAG.getNode(BaseOpcode, dl, HalfVT, Lo, Hi); 6255 VT = HalfVT; 6256 } 6257 } 6258 6259 EVT EltVT = VT.getVectorElementType(); 6260 unsigned NumElts = VT.getVectorNumElements(); 6261 6262 SmallVector<SDValue, 8> Ops; 6263 DAG.ExtractVectorElements(Op, Ops, 0, NumElts); 6264 6265 SDValue Res = Ops[0]; 6266 for (unsigned i = 1; i < NumElts; i++) 6267 Res = DAG.getNode(BaseOpcode, dl, EltVT, Res, Ops[i], Node->getFlags()); 6268 6269 // Result type may be wider than element type. 6270 if (EltVT != Node->getValueType(0)) 6271 Res = DAG.getNode(ISD::ANY_EXTEND, dl, Node->getValueType(0), Res); 6272 return Res; 6273 } 6274