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