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