1 //===- DAGCombiner.cpp - Implement a DAG node combiner --------------------===// 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 pass combines dag nodes to form fewer, simpler DAG nodes. It can be run 11 // both before and after the DAG is legalized. 12 // 13 // This pass is not a substitute for the LLVM IR instcombine pass. This pass is 14 // primarily intended to handle simplification opportunities that are implicit 15 // in the LLVM IR and exposed by the various codegen lowering phases. 16 // 17 //===----------------------------------------------------------------------===// 18 19 #include "llvm/ADT/APFloat.h" 20 #include "llvm/ADT/APInt.h" 21 #include "llvm/ADT/ArrayRef.h" 22 #include "llvm/ADT/DenseMap.h" 23 #include "llvm/ADT/None.h" 24 #include "llvm/ADT/Optional.h" 25 #include "llvm/ADT/STLExtras.h" 26 #include "llvm/ADT/SetVector.h" 27 #include "llvm/ADT/SmallBitVector.h" 28 #include "llvm/ADT/SmallPtrSet.h" 29 #include "llvm/ADT/SmallSet.h" 30 #include "llvm/ADT/SmallVector.h" 31 #include "llvm/ADT/Statistic.h" 32 #include "llvm/Analysis/AliasAnalysis.h" 33 #include "llvm/Analysis/MemoryLocation.h" 34 #include "llvm/CodeGen/DAGCombine.h" 35 #include "llvm/CodeGen/ISDOpcodes.h" 36 #include "llvm/CodeGen/MachineFrameInfo.h" 37 #include "llvm/CodeGen/MachineFunction.h" 38 #include "llvm/CodeGen/MachineMemOperand.h" 39 #include "llvm/CodeGen/MachineValueType.h" 40 #include "llvm/CodeGen/RuntimeLibcalls.h" 41 #include "llvm/CodeGen/SelectionDAG.h" 42 #include "llvm/CodeGen/SelectionDAGAddressAnalysis.h" 43 #include "llvm/CodeGen/SelectionDAGNodes.h" 44 #include "llvm/CodeGen/SelectionDAGTargetInfo.h" 45 #include "llvm/CodeGen/ValueTypes.h" 46 #include "llvm/IR/Attributes.h" 47 #include "llvm/IR/Constant.h" 48 #include "llvm/IR/DataLayout.h" 49 #include "llvm/IR/DerivedTypes.h" 50 #include "llvm/IR/Function.h" 51 #include "llvm/IR/LLVMContext.h" 52 #include "llvm/IR/Metadata.h" 53 #include "llvm/Support/Casting.h" 54 #include "llvm/Support/CodeGen.h" 55 #include "llvm/Support/CommandLine.h" 56 #include "llvm/Support/Compiler.h" 57 #include "llvm/Support/Debug.h" 58 #include "llvm/Support/ErrorHandling.h" 59 #include "llvm/Support/KnownBits.h" 60 #include "llvm/Support/MathExtras.h" 61 #include "llvm/Support/raw_ostream.h" 62 #include "llvm/Target/TargetLowering.h" 63 #include "llvm/Target/TargetMachine.h" 64 #include "llvm/Target/TargetOptions.h" 65 #include "llvm/Target/TargetRegisterInfo.h" 66 #include "llvm/Target/TargetSubtargetInfo.h" 67 #include <algorithm> 68 #include <cassert> 69 #include <cstdint> 70 #include <functional> 71 #include <iterator> 72 #include <string> 73 #include <tuple> 74 #include <utility> 75 #include <vector> 76 77 using namespace llvm; 78 79 #define DEBUG_TYPE "dagcombine" 80 81 STATISTIC(NodesCombined , "Number of dag nodes combined"); 82 STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created"); 83 STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created"); 84 STATISTIC(OpsNarrowed , "Number of load/op/store narrowed"); 85 STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int"); 86 STATISTIC(SlicedLoads, "Number of load sliced"); 87 88 static cl::opt<bool> 89 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden, 90 cl::desc("Enable DAG combiner's use of IR alias analysis")); 91 92 static cl::opt<bool> 93 UseTBAA("combiner-use-tbaa", cl::Hidden, cl::init(true), 94 cl::desc("Enable DAG combiner's use of TBAA")); 95 96 #ifndef NDEBUG 97 static cl::opt<std::string> 98 CombinerAAOnlyFunc("combiner-aa-only-func", cl::Hidden, 99 cl::desc("Only use DAG-combiner alias analysis in this" 100 " function")); 101 #endif 102 103 /// Hidden option to stress test load slicing, i.e., when this option 104 /// is enabled, load slicing bypasses most of its profitability guards. 105 static cl::opt<bool> 106 StressLoadSlicing("combiner-stress-load-slicing", cl::Hidden, 107 cl::desc("Bypass the profitability model of load slicing"), 108 cl::init(false)); 109 110 static cl::opt<bool> 111 MaySplitLoadIndex("combiner-split-load-index", cl::Hidden, cl::init(true), 112 cl::desc("DAG combiner may split indexing from loads")); 113 114 namespace { 115 116 class DAGCombiner { 117 SelectionDAG &DAG; 118 const TargetLowering &TLI; 119 CombineLevel Level; 120 CodeGenOpt::Level OptLevel; 121 bool LegalOperations = false; 122 bool LegalTypes = false; 123 bool ForCodeSize; 124 125 /// \brief Worklist of all of the nodes that need to be simplified. 126 /// 127 /// This must behave as a stack -- new nodes to process are pushed onto the 128 /// back and when processing we pop off of the back. 129 /// 130 /// The worklist will not contain duplicates but may contain null entries 131 /// due to nodes being deleted from the underlying DAG. 132 SmallVector<SDNode *, 64> Worklist; 133 134 /// \brief Mapping from an SDNode to its position on the worklist. 135 /// 136 /// This is used to find and remove nodes from the worklist (by nulling 137 /// them) when they are deleted from the underlying DAG. It relies on 138 /// stable indices of nodes within the worklist. 139 DenseMap<SDNode *, unsigned> WorklistMap; 140 141 /// \brief Set of nodes which have been combined (at least once). 142 /// 143 /// This is used to allow us to reliably add any operands of a DAG node 144 /// which have not yet been combined to the worklist. 145 SmallPtrSet<SDNode *, 32> CombinedNodes; 146 147 // AA - Used for DAG load/store alias analysis. 148 AliasAnalysis *AA; 149 150 /// When an instruction is simplified, add all users of the instruction to 151 /// the work lists because they might get more simplified now. 152 void AddUsersToWorklist(SDNode *N) { 153 for (SDNode *Node : N->uses()) 154 AddToWorklist(Node); 155 } 156 157 /// Call the node-specific routine that folds each particular type of node. 158 SDValue visit(SDNode *N); 159 160 public: 161 DAGCombiner(SelectionDAG &D, AliasAnalysis *AA, CodeGenOpt::Level OL) 162 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes), 163 OptLevel(OL), AA(AA) { 164 ForCodeSize = DAG.getMachineFunction().getFunction()->optForSize(); 165 166 MaximumLegalStoreInBits = 0; 167 for (MVT VT : MVT::all_valuetypes()) 168 if (EVT(VT).isSimple() && VT != MVT::Other && 169 TLI.isTypeLegal(EVT(VT)) && 170 VT.getSizeInBits() >= MaximumLegalStoreInBits) 171 MaximumLegalStoreInBits = VT.getSizeInBits(); 172 } 173 174 /// Add to the worklist making sure its instance is at the back (next to be 175 /// processed.) 176 void AddToWorklist(SDNode *N) { 177 assert(N->getOpcode() != ISD::DELETED_NODE && 178 "Deleted Node added to Worklist"); 179 180 // Skip handle nodes as they can't usefully be combined and confuse the 181 // zero-use deletion strategy. 182 if (N->getOpcode() == ISD::HANDLENODE) 183 return; 184 185 if (WorklistMap.insert(std::make_pair(N, Worklist.size())).second) 186 Worklist.push_back(N); 187 } 188 189 /// Remove all instances of N from the worklist. 190 void removeFromWorklist(SDNode *N) { 191 CombinedNodes.erase(N); 192 193 auto It = WorklistMap.find(N); 194 if (It == WorklistMap.end()) 195 return; // Not in the worklist. 196 197 // Null out the entry rather than erasing it to avoid a linear operation. 198 Worklist[It->second] = nullptr; 199 WorklistMap.erase(It); 200 } 201 202 void deleteAndRecombine(SDNode *N); 203 bool recursivelyDeleteUnusedNodes(SDNode *N); 204 205 /// Replaces all uses of the results of one DAG node with new values. 206 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo, 207 bool AddTo = true); 208 209 /// Replaces all uses of the results of one DAG node with new values. 210 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) { 211 return CombineTo(N, &Res, 1, AddTo); 212 } 213 214 /// Replaces all uses of the results of one DAG node with new values. 215 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, 216 bool AddTo = true) { 217 SDValue To[] = { Res0, Res1 }; 218 return CombineTo(N, To, 2, AddTo); 219 } 220 221 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO); 222 223 private: 224 unsigned MaximumLegalStoreInBits; 225 226 /// Check the specified integer node value to see if it can be simplified or 227 /// if things it uses can be simplified by bit propagation. 228 /// If so, return true. 229 bool SimplifyDemandedBits(SDValue Op) { 230 unsigned BitWidth = Op.getScalarValueSizeInBits(); 231 APInt Demanded = APInt::getAllOnesValue(BitWidth); 232 return SimplifyDemandedBits(Op, Demanded); 233 } 234 235 bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded); 236 237 bool CombineToPreIndexedLoadStore(SDNode *N); 238 bool CombineToPostIndexedLoadStore(SDNode *N); 239 SDValue SplitIndexingFromLoad(LoadSDNode *LD); 240 bool SliceUpLoad(SDNode *N); 241 242 /// \brief Replace an ISD::EXTRACT_VECTOR_ELT of a load with a narrowed 243 /// load. 244 /// 245 /// \param EVE ISD::EXTRACT_VECTOR_ELT to be replaced. 246 /// \param InVecVT type of the input vector to EVE with bitcasts resolved. 247 /// \param EltNo index of the vector element to load. 248 /// \param OriginalLoad load that EVE came from to be replaced. 249 /// \returns EVE on success SDValue() on failure. 250 SDValue ReplaceExtractVectorEltOfLoadWithNarrowedLoad( 251 SDNode *EVE, EVT InVecVT, SDValue EltNo, LoadSDNode *OriginalLoad); 252 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad); 253 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace); 254 SDValue SExtPromoteOperand(SDValue Op, EVT PVT); 255 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT); 256 SDValue PromoteIntBinOp(SDValue Op); 257 SDValue PromoteIntShiftOp(SDValue Op); 258 SDValue PromoteExtend(SDValue Op); 259 bool PromoteLoad(SDValue Op); 260 261 void ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs, SDValue Trunc, 262 SDValue ExtLoad, const SDLoc &DL, 263 ISD::NodeType ExtType); 264 265 /// Call the node-specific routine that knows how to fold each 266 /// particular type of node. If that doesn't do anything, try the 267 /// target-specific DAG combines. 268 SDValue combine(SDNode *N); 269 270 // Visitation implementation - Implement dag node combining for different 271 // node types. The semantics are as follows: 272 // Return Value: 273 // SDValue.getNode() == 0 - No change was made 274 // SDValue.getNode() == N - N was replaced, is dead and has been handled. 275 // otherwise - N should be replaced by the returned Operand. 276 // 277 SDValue visitTokenFactor(SDNode *N); 278 SDValue visitMERGE_VALUES(SDNode *N); 279 SDValue visitADD(SDNode *N); 280 SDValue visitADDLike(SDValue N0, SDValue N1, SDNode *LocReference); 281 SDValue visitSUB(SDNode *N); 282 SDValue visitADDC(SDNode *N); 283 SDValue visitUADDO(SDNode *N); 284 SDValue visitUADDOLike(SDValue N0, SDValue N1, SDNode *N); 285 SDValue visitSUBC(SDNode *N); 286 SDValue visitUSUBO(SDNode *N); 287 SDValue visitADDE(SDNode *N); 288 SDValue visitADDCARRY(SDNode *N); 289 SDValue visitADDCARRYLike(SDValue N0, SDValue N1, SDValue CarryIn, SDNode *N); 290 SDValue visitSUBE(SDNode *N); 291 SDValue visitSUBCARRY(SDNode *N); 292 SDValue visitMUL(SDNode *N); 293 SDValue useDivRem(SDNode *N); 294 SDValue visitSDIV(SDNode *N); 295 SDValue visitUDIV(SDNode *N); 296 SDValue visitREM(SDNode *N); 297 SDValue visitMULHU(SDNode *N); 298 SDValue visitMULHS(SDNode *N); 299 SDValue visitSMUL_LOHI(SDNode *N); 300 SDValue visitUMUL_LOHI(SDNode *N); 301 SDValue visitSMULO(SDNode *N); 302 SDValue visitUMULO(SDNode *N); 303 SDValue visitIMINMAX(SDNode *N); 304 SDValue visitAND(SDNode *N); 305 SDValue visitANDLike(SDValue N0, SDValue N1, SDNode *LocReference); 306 SDValue visitOR(SDNode *N); 307 SDValue visitORLike(SDValue N0, SDValue N1, SDNode *LocReference); 308 SDValue visitXOR(SDNode *N); 309 SDValue SimplifyVBinOp(SDNode *N); 310 SDValue visitSHL(SDNode *N); 311 SDValue visitSRA(SDNode *N); 312 SDValue visitSRL(SDNode *N); 313 SDValue visitRotate(SDNode *N); 314 SDValue visitABS(SDNode *N); 315 SDValue visitBSWAP(SDNode *N); 316 SDValue visitBITREVERSE(SDNode *N); 317 SDValue visitCTLZ(SDNode *N); 318 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N); 319 SDValue visitCTTZ(SDNode *N); 320 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N); 321 SDValue visitCTPOP(SDNode *N); 322 SDValue visitSELECT(SDNode *N); 323 SDValue visitVSELECT(SDNode *N); 324 SDValue visitSELECT_CC(SDNode *N); 325 SDValue visitSETCC(SDNode *N); 326 SDValue visitSETCCE(SDNode *N); 327 SDValue visitSETCCCARRY(SDNode *N); 328 SDValue visitSIGN_EXTEND(SDNode *N); 329 SDValue visitZERO_EXTEND(SDNode *N); 330 SDValue visitANY_EXTEND(SDNode *N); 331 SDValue visitAssertExt(SDNode *N); 332 SDValue visitSIGN_EXTEND_INREG(SDNode *N); 333 SDValue visitSIGN_EXTEND_VECTOR_INREG(SDNode *N); 334 SDValue visitZERO_EXTEND_VECTOR_INREG(SDNode *N); 335 SDValue visitTRUNCATE(SDNode *N); 336 SDValue visitBITCAST(SDNode *N); 337 SDValue visitBUILD_PAIR(SDNode *N); 338 SDValue visitFADD(SDNode *N); 339 SDValue visitFSUB(SDNode *N); 340 SDValue visitFMUL(SDNode *N); 341 SDValue visitFMA(SDNode *N); 342 SDValue visitFDIV(SDNode *N); 343 SDValue visitFREM(SDNode *N); 344 SDValue visitFSQRT(SDNode *N); 345 SDValue visitFCOPYSIGN(SDNode *N); 346 SDValue visitSINT_TO_FP(SDNode *N); 347 SDValue visitUINT_TO_FP(SDNode *N); 348 SDValue visitFP_TO_SINT(SDNode *N); 349 SDValue visitFP_TO_UINT(SDNode *N); 350 SDValue visitFP_ROUND(SDNode *N); 351 SDValue visitFP_ROUND_INREG(SDNode *N); 352 SDValue visitFP_EXTEND(SDNode *N); 353 SDValue visitFNEG(SDNode *N); 354 SDValue visitFABS(SDNode *N); 355 SDValue visitFCEIL(SDNode *N); 356 SDValue visitFTRUNC(SDNode *N); 357 SDValue visitFFLOOR(SDNode *N); 358 SDValue visitFMINNUM(SDNode *N); 359 SDValue visitFMAXNUM(SDNode *N); 360 SDValue visitBRCOND(SDNode *N); 361 SDValue visitBR_CC(SDNode *N); 362 SDValue visitLOAD(SDNode *N); 363 364 SDValue replaceStoreChain(StoreSDNode *ST, SDValue BetterChain); 365 SDValue replaceStoreOfFPConstant(StoreSDNode *ST); 366 367 SDValue visitSTORE(SDNode *N); 368 SDValue visitINSERT_VECTOR_ELT(SDNode *N); 369 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N); 370 SDValue visitBUILD_VECTOR(SDNode *N); 371 SDValue visitCONCAT_VECTORS(SDNode *N); 372 SDValue visitEXTRACT_SUBVECTOR(SDNode *N); 373 SDValue visitVECTOR_SHUFFLE(SDNode *N); 374 SDValue visitSCALAR_TO_VECTOR(SDNode *N); 375 SDValue visitINSERT_SUBVECTOR(SDNode *N); 376 SDValue visitMLOAD(SDNode *N); 377 SDValue visitMSTORE(SDNode *N); 378 SDValue visitMGATHER(SDNode *N); 379 SDValue visitMSCATTER(SDNode *N); 380 SDValue visitFP_TO_FP16(SDNode *N); 381 SDValue visitFP16_TO_FP(SDNode *N); 382 383 SDValue visitFADDForFMACombine(SDNode *N); 384 SDValue visitFSUBForFMACombine(SDNode *N); 385 SDValue visitFMULForFMADistributiveCombine(SDNode *N); 386 387 SDValue XformToShuffleWithZero(SDNode *N); 388 SDValue ReassociateOps(unsigned Opc, const SDLoc &DL, SDValue LHS, 389 SDValue RHS); 390 391 SDValue visitShiftByConstant(SDNode *N, ConstantSDNode *Amt); 392 393 SDValue foldSelectOfConstants(SDNode *N); 394 SDValue foldVSelectOfConstants(SDNode *N); 395 SDValue foldBinOpIntoSelect(SDNode *BO); 396 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS); 397 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N); 398 SDValue SimplifySelect(const SDLoc &DL, SDValue N0, SDValue N1, SDValue N2); 399 SDValue SimplifySelectCC(const SDLoc &DL, SDValue N0, SDValue N1, 400 SDValue N2, SDValue N3, ISD::CondCode CC, 401 bool NotExtCompare = false); 402 SDValue foldSelectCCToShiftAnd(const SDLoc &DL, SDValue N0, SDValue N1, 403 SDValue N2, SDValue N3, ISD::CondCode CC); 404 SDValue foldLogicOfSetCCs(bool IsAnd, SDValue N0, SDValue N1, 405 const SDLoc &DL); 406 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond, 407 const SDLoc &DL, bool foldBooleans = true); 408 409 bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS, 410 SDValue &CC) const; 411 bool isOneUseSetCC(SDValue N) const; 412 413 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, 414 unsigned HiOp); 415 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT); 416 SDValue CombineExtLoad(SDNode *N); 417 SDValue combineRepeatedFPDivisors(SDNode *N); 418 SDValue combineInsertEltToShuffle(SDNode *N, unsigned InsIndex); 419 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT); 420 SDValue BuildSDIV(SDNode *N); 421 SDValue BuildSDIVPow2(SDNode *N); 422 SDValue BuildUDIV(SDNode *N); 423 SDValue BuildLogBase2(SDValue Op, const SDLoc &DL); 424 SDValue BuildReciprocalEstimate(SDValue Op, SDNodeFlags Flags); 425 SDValue buildRsqrtEstimate(SDValue Op, SDNodeFlags Flags); 426 SDValue buildSqrtEstimate(SDValue Op, SDNodeFlags Flags); 427 SDValue buildSqrtEstimateImpl(SDValue Op, SDNodeFlags Flags, bool Recip); 428 SDValue buildSqrtNROneConst(SDValue Op, SDValue Est, unsigned Iterations, 429 SDNodeFlags Flags, bool Reciprocal); 430 SDValue buildSqrtNRTwoConst(SDValue Op, SDValue Est, unsigned Iterations, 431 SDNodeFlags Flags, bool Reciprocal); 432 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1, 433 bool DemandHighBits = true); 434 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1); 435 SDNode *MatchRotatePosNeg(SDValue Shifted, SDValue Pos, SDValue Neg, 436 SDValue InnerPos, SDValue InnerNeg, 437 unsigned PosOpcode, unsigned NegOpcode, 438 const SDLoc &DL); 439 SDNode *MatchRotate(SDValue LHS, SDValue RHS, const SDLoc &DL); 440 SDValue MatchLoadCombine(SDNode *N); 441 SDValue ReduceLoadWidth(SDNode *N); 442 SDValue ReduceLoadOpStoreWidth(SDNode *N); 443 SDValue splitMergedValStore(StoreSDNode *ST); 444 SDValue TransformFPLoadStorePair(SDNode *N); 445 SDValue reduceBuildVecExtToExtBuildVec(SDNode *N); 446 SDValue reduceBuildVecConvertToConvertBuildVec(SDNode *N); 447 SDValue reduceBuildVecToShuffle(SDNode *N); 448 SDValue createBuildVecShuffle(const SDLoc &DL, SDNode *N, 449 ArrayRef<int> VectorMask, SDValue VecIn1, 450 SDValue VecIn2, unsigned LeftIdx); 451 SDValue matchVSelectOpSizesWithSetCC(SDNode *N); 452 453 /// Walk up chain skipping non-aliasing memory nodes, 454 /// looking for aliasing nodes and adding them to the Aliases vector. 455 void GatherAllAliases(SDNode *N, SDValue OriginalChain, 456 SmallVectorImpl<SDValue> &Aliases); 457 458 /// Return true if there is any possibility that the two addresses overlap. 459 bool isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) const; 460 461 /// Walk up chain skipping non-aliasing memory nodes, looking for a better 462 /// chain (aliasing node.) 463 SDValue FindBetterChain(SDNode *N, SDValue Chain); 464 465 /// Try to replace a store and any possibly adjacent stores on 466 /// consecutive chains with better chains. Return true only if St is 467 /// replaced. 468 /// 469 /// Notice that other chains may still be replaced even if the function 470 /// returns false. 471 bool findBetterNeighborChains(StoreSDNode *St); 472 473 /// Match "(X shl/srl V1) & V2" where V2 may not be present. 474 bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask); 475 476 /// Holds a pointer to an LSBaseSDNode as well as information on where it 477 /// is located in a sequence of memory operations connected by a chain. 478 struct MemOpLink { 479 // Ptr to the mem node. 480 LSBaseSDNode *MemNode; 481 482 // Offset from the base ptr. 483 int64_t OffsetFromBase; 484 485 MemOpLink(LSBaseSDNode *N, int64_t Offset) 486 : MemNode(N), OffsetFromBase(Offset) {} 487 }; 488 489 /// This is a helper function for visitMUL to check the profitability 490 /// of folding (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2). 491 /// MulNode is the original multiply, AddNode is (add x, c1), 492 /// and ConstNode is c2. 493 bool isMulAddWithConstProfitable(SDNode *MulNode, 494 SDValue &AddNode, 495 SDValue &ConstNode); 496 497 /// This is a helper function for visitAND and visitZERO_EXTEND. Returns 498 /// true if the (and (load x) c) pattern matches an extload. ExtVT returns 499 /// the type of the loaded value to be extended. LoadedVT returns the type 500 /// of the original loaded value. NarrowLoad returns whether the load would 501 /// need to be narrowed in order to match. 502 bool isAndLoadExtLoad(ConstantSDNode *AndC, LoadSDNode *LoadN, 503 EVT LoadResultTy, EVT &ExtVT, EVT &LoadedVT, 504 bool &NarrowLoad); 505 506 /// Helper function for MergeConsecutiveStores which merges the 507 /// component store chains. 508 SDValue getMergeStoreChains(SmallVectorImpl<MemOpLink> &StoreNodes, 509 unsigned NumStores); 510 511 /// This is a helper function for MergeConsecutiveStores. When the 512 /// source elements of the consecutive stores are all constants or 513 /// all extracted vector elements, try to merge them into one 514 /// larger store introducing bitcasts if necessary. \return True 515 /// if a merged store was created. 516 bool MergeStoresOfConstantsOrVecElts(SmallVectorImpl<MemOpLink> &StoreNodes, 517 EVT MemVT, unsigned NumStores, 518 bool IsConstantSrc, bool UseVector, 519 bool UseTrunc); 520 521 /// This is a helper function for MergeConsecutiveStores. Stores 522 /// that potentially may be merged with St are placed in 523 /// StoreNodes. 524 void getStoreMergeCandidates(StoreSDNode *St, 525 SmallVectorImpl<MemOpLink> &StoreNodes); 526 527 /// Helper function for MergeConsecutiveStores. Checks if 528 /// candidate stores have indirect dependency through their 529 /// operands. \return True if safe to merge. 530 bool checkMergeStoreCandidatesForDependencies( 531 SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores); 532 533 /// Merge consecutive store operations into a wide store. 534 /// This optimization uses wide integers or vectors when possible. 535 /// \return number of stores that were merged into a merged store (the 536 /// affected nodes are stored as a prefix in \p StoreNodes). 537 bool MergeConsecutiveStores(StoreSDNode *N); 538 539 /// \brief Try to transform a truncation where C is a constant: 540 /// (trunc (and X, C)) -> (and (trunc X), (trunc C)) 541 /// 542 /// \p N needs to be a truncation and its first operand an AND. Other 543 /// requirements are checked by the function (e.g. that trunc is 544 /// single-use) and if missed an empty SDValue is returned. 545 SDValue distributeTruncateThroughAnd(SDNode *N); 546 547 public: 548 /// Runs the dag combiner on all nodes in the work list 549 void Run(CombineLevel AtLevel); 550 551 SelectionDAG &getDAG() const { return DAG; } 552 553 /// Returns a type large enough to hold any valid shift amount - before type 554 /// legalization these can be huge. 555 EVT getShiftAmountTy(EVT LHSTy) { 556 assert(LHSTy.isInteger() && "Shift amount is not an integer type!"); 557 if (LHSTy.isVector()) 558 return LHSTy; 559 auto &DL = DAG.getDataLayout(); 560 return LegalTypes ? TLI.getScalarShiftAmountTy(DL, LHSTy) 561 : TLI.getPointerTy(DL); 562 } 563 564 /// This method returns true if we are running before type legalization or 565 /// if the specified VT is legal. 566 bool isTypeLegal(const EVT &VT) { 567 if (!LegalTypes) return true; 568 return TLI.isTypeLegal(VT); 569 } 570 571 /// Convenience wrapper around TargetLowering::getSetCCResultType 572 EVT getSetCCResultType(EVT VT) const { 573 return TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); 574 } 575 }; 576 577 /// This class is a DAGUpdateListener that removes any deleted 578 /// nodes from the worklist. 579 class WorklistRemover : public SelectionDAG::DAGUpdateListener { 580 DAGCombiner &DC; 581 582 public: 583 explicit WorklistRemover(DAGCombiner &dc) 584 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {} 585 586 void NodeDeleted(SDNode *N, SDNode *E) override { 587 DC.removeFromWorklist(N); 588 } 589 }; 590 591 } // end anonymous namespace 592 593 //===----------------------------------------------------------------------===// 594 // TargetLowering::DAGCombinerInfo implementation 595 //===----------------------------------------------------------------------===// 596 597 void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) { 598 ((DAGCombiner*)DC)->AddToWorklist(N); 599 } 600 601 SDValue TargetLowering::DAGCombinerInfo:: 602 CombineTo(SDNode *N, ArrayRef<SDValue> To, bool AddTo) { 603 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo); 604 } 605 606 SDValue TargetLowering::DAGCombinerInfo:: 607 CombineTo(SDNode *N, SDValue Res, bool AddTo) { 608 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo); 609 } 610 611 SDValue TargetLowering::DAGCombinerInfo:: 612 CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) { 613 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo); 614 } 615 616 void TargetLowering::DAGCombinerInfo:: 617 CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) { 618 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO); 619 } 620 621 //===----------------------------------------------------------------------===// 622 // Helper Functions 623 //===----------------------------------------------------------------------===// 624 625 void DAGCombiner::deleteAndRecombine(SDNode *N) { 626 removeFromWorklist(N); 627 628 // If the operands of this node are only used by the node, they will now be 629 // dead. Make sure to re-visit them and recursively delete dead nodes. 630 for (const SDValue &Op : N->ops()) 631 // For an operand generating multiple values, one of the values may 632 // become dead allowing further simplification (e.g. split index 633 // arithmetic from an indexed load). 634 if (Op->hasOneUse() || Op->getNumValues() > 1) 635 AddToWorklist(Op.getNode()); 636 637 DAG.DeleteNode(N); 638 } 639 640 /// Return 1 if we can compute the negated form of the specified expression for 641 /// the same cost as the expression itself, or 2 if we can compute the negated 642 /// form more cheaply than the expression itself. 643 static char isNegatibleForFree(SDValue Op, bool LegalOperations, 644 const TargetLowering &TLI, 645 const TargetOptions *Options, 646 unsigned Depth = 0) { 647 // fneg is removable even if it has multiple uses. 648 if (Op.getOpcode() == ISD::FNEG) return 2; 649 650 // Don't allow anything with multiple uses. 651 if (!Op.hasOneUse()) return 0; 652 653 // Don't recurse exponentially. 654 if (Depth > 6) return 0; 655 656 switch (Op.getOpcode()) { 657 default: return false; 658 case ISD::ConstantFP: { 659 if (!LegalOperations) 660 return 1; 661 662 // Don't invert constant FP values after legalization unless the target says 663 // the negated constant is legal. 664 EVT VT = Op.getValueType(); 665 return TLI.isOperationLegal(ISD::ConstantFP, VT) || 666 TLI.isFPImmLegal(neg(cast<ConstantFPSDNode>(Op)->getValueAPF()), VT); 667 } 668 case ISD::FADD: 669 // FIXME: determine better conditions for this xform. 670 if (!Options->UnsafeFPMath) return 0; 671 672 // After operation legalization, it might not be legal to create new FSUBs. 673 if (LegalOperations && 674 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) 675 return 0; 676 677 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B) 678 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, 679 Options, Depth + 1)) 680 return V; 681 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A) 682 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options, 683 Depth + 1); 684 case ISD::FSUB: 685 // We can't turn -(A-B) into B-A when we honor signed zeros. 686 if (!Options->NoSignedZerosFPMath && 687 !Op.getNode()->getFlags().hasNoSignedZeros()) 688 return 0; 689 690 // fold (fneg (fsub A, B)) -> (fsub B, A) 691 return 1; 692 693 case ISD::FMUL: 694 case ISD::FDIV: 695 if (Options->HonorSignDependentRoundingFPMath()) return 0; 696 697 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y)) 698 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, 699 Options, Depth + 1)) 700 return V; 701 702 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options, 703 Depth + 1); 704 705 case ISD::FP_EXTEND: 706 case ISD::FP_ROUND: 707 case ISD::FSIN: 708 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options, 709 Depth + 1); 710 } 711 } 712 713 /// If isNegatibleForFree returns true, return the newly negated expression. 714 static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG, 715 bool LegalOperations, unsigned Depth = 0) { 716 const TargetOptions &Options = DAG.getTarget().Options; 717 // fneg is removable even if it has multiple uses. 718 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0); 719 720 // Don't allow anything with multiple uses. 721 assert(Op.hasOneUse() && "Unknown reuse!"); 722 723 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree"); 724 725 const SDNodeFlags Flags = Op.getNode()->getFlags(); 726 727 switch (Op.getOpcode()) { 728 default: llvm_unreachable("Unknown code"); 729 case ISD::ConstantFP: { 730 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF(); 731 V.changeSign(); 732 return DAG.getConstantFP(V, SDLoc(Op), Op.getValueType()); 733 } 734 case ISD::FADD: 735 // FIXME: determine better conditions for this xform. 736 assert(Options.UnsafeFPMath); 737 738 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B) 739 if (isNegatibleForFree(Op.getOperand(0), LegalOperations, 740 DAG.getTargetLoweringInfo(), &Options, Depth+1)) 741 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(), 742 GetNegatedExpression(Op.getOperand(0), DAG, 743 LegalOperations, Depth+1), 744 Op.getOperand(1), Flags); 745 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A) 746 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(), 747 GetNegatedExpression(Op.getOperand(1), DAG, 748 LegalOperations, Depth+1), 749 Op.getOperand(0), Flags); 750 case ISD::FSUB: 751 // fold (fneg (fsub 0, B)) -> B 752 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0))) 753 if (N0CFP->isZero()) 754 return Op.getOperand(1); 755 756 // fold (fneg (fsub A, B)) -> (fsub B, A) 757 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(), 758 Op.getOperand(1), Op.getOperand(0), Flags); 759 760 case ISD::FMUL: 761 case ISD::FDIV: 762 assert(!Options.HonorSignDependentRoundingFPMath()); 763 764 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) 765 if (isNegatibleForFree(Op.getOperand(0), LegalOperations, 766 DAG.getTargetLoweringInfo(), &Options, Depth+1)) 767 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(), 768 GetNegatedExpression(Op.getOperand(0), DAG, 769 LegalOperations, Depth+1), 770 Op.getOperand(1), Flags); 771 772 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y)) 773 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(), 774 Op.getOperand(0), 775 GetNegatedExpression(Op.getOperand(1), DAG, 776 LegalOperations, Depth+1), Flags); 777 778 case ISD::FP_EXTEND: 779 case ISD::FSIN: 780 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(), 781 GetNegatedExpression(Op.getOperand(0), DAG, 782 LegalOperations, Depth+1)); 783 case ISD::FP_ROUND: 784 return DAG.getNode(ISD::FP_ROUND, SDLoc(Op), Op.getValueType(), 785 GetNegatedExpression(Op.getOperand(0), DAG, 786 LegalOperations, Depth+1), 787 Op.getOperand(1)); 788 } 789 } 790 791 // APInts must be the same size for most operations, this helper 792 // function zero extends the shorter of the pair so that they match. 793 // We provide an Offset so that we can create bitwidths that won't overflow. 794 static void zeroExtendToMatch(APInt &LHS, APInt &RHS, unsigned Offset = 0) { 795 unsigned Bits = Offset + std::max(LHS.getBitWidth(), RHS.getBitWidth()); 796 LHS = LHS.zextOrSelf(Bits); 797 RHS = RHS.zextOrSelf(Bits); 798 } 799 800 // Return true if this node is a setcc, or is a select_cc 801 // that selects between the target values used for true and false, making it 802 // equivalent to a setcc. Also, set the incoming LHS, RHS, and CC references to 803 // the appropriate nodes based on the type of node we are checking. This 804 // simplifies life a bit for the callers. 805 bool DAGCombiner::isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS, 806 SDValue &CC) const { 807 if (N.getOpcode() == ISD::SETCC) { 808 LHS = N.getOperand(0); 809 RHS = N.getOperand(1); 810 CC = N.getOperand(2); 811 return true; 812 } 813 814 if (N.getOpcode() != ISD::SELECT_CC || 815 !TLI.isConstTrueVal(N.getOperand(2).getNode()) || 816 !TLI.isConstFalseVal(N.getOperand(3).getNode())) 817 return false; 818 819 if (TLI.getBooleanContents(N.getValueType()) == 820 TargetLowering::UndefinedBooleanContent) 821 return false; 822 823 LHS = N.getOperand(0); 824 RHS = N.getOperand(1); 825 CC = N.getOperand(4); 826 return true; 827 } 828 829 /// Return true if this is a SetCC-equivalent operation with only one use. 830 /// If this is true, it allows the users to invert the operation for free when 831 /// it is profitable to do so. 832 bool DAGCombiner::isOneUseSetCC(SDValue N) const { 833 SDValue N0, N1, N2; 834 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse()) 835 return true; 836 return false; 837 } 838 839 // \brief Returns the SDNode if it is a constant float BuildVector 840 // or constant float. 841 static SDNode *isConstantFPBuildVectorOrConstantFP(SDValue N) { 842 if (isa<ConstantFPSDNode>(N)) 843 return N.getNode(); 844 if (ISD::isBuildVectorOfConstantFPSDNodes(N.getNode())) 845 return N.getNode(); 846 return nullptr; 847 } 848 849 // Determines if it is a constant integer or a build vector of constant 850 // integers (and undefs). 851 // Do not permit build vector implicit truncation. 852 static bool isConstantOrConstantVector(SDValue N, bool NoOpaques = false) { 853 if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N)) 854 return !(Const->isOpaque() && NoOpaques); 855 if (N.getOpcode() != ISD::BUILD_VECTOR) 856 return false; 857 unsigned BitWidth = N.getScalarValueSizeInBits(); 858 for (const SDValue &Op : N->op_values()) { 859 if (Op.isUndef()) 860 continue; 861 ConstantSDNode *Const = dyn_cast<ConstantSDNode>(Op); 862 if (!Const || Const->getAPIntValue().getBitWidth() != BitWidth || 863 (Const->isOpaque() && NoOpaques)) 864 return false; 865 } 866 return true; 867 } 868 869 // Determines if it is a constant null integer or a splatted vector of a 870 // constant null integer (with no undefs). 871 // Build vector implicit truncation is not an issue for null values. 872 static bool isNullConstantOrNullSplatConstant(SDValue N) { 873 if (ConstantSDNode *Splat = isConstOrConstSplat(N)) 874 return Splat->isNullValue(); 875 return false; 876 } 877 878 // Determines if it is a constant integer of one or a splatted vector of a 879 // constant integer of one (with no undefs). 880 // Do not permit build vector implicit truncation. 881 static bool isOneConstantOrOneSplatConstant(SDValue N) { 882 unsigned BitWidth = N.getScalarValueSizeInBits(); 883 if (ConstantSDNode *Splat = isConstOrConstSplat(N)) 884 return Splat->isOne() && Splat->getAPIntValue().getBitWidth() == BitWidth; 885 return false; 886 } 887 888 // Determines if it is a constant integer of all ones or a splatted vector of a 889 // constant integer of all ones (with no undefs). 890 // Do not permit build vector implicit truncation. 891 static bool isAllOnesConstantOrAllOnesSplatConstant(SDValue N) { 892 unsigned BitWidth = N.getScalarValueSizeInBits(); 893 if (ConstantSDNode *Splat = isConstOrConstSplat(N)) 894 return Splat->isAllOnesValue() && 895 Splat->getAPIntValue().getBitWidth() == BitWidth; 896 return false; 897 } 898 899 // Determines if a BUILD_VECTOR is composed of all-constants possibly mixed with 900 // undef's. 901 static bool isAnyConstantBuildVector(const SDNode *N) { 902 return ISD::isBuildVectorOfConstantSDNodes(N) || 903 ISD::isBuildVectorOfConstantFPSDNodes(N); 904 } 905 906 // Attempt to match a unary predicate against a scalar/splat constant or 907 // every element of a constant BUILD_VECTOR. 908 static bool matchUnaryPredicate(SDValue Op, 909 std::function<bool(ConstantSDNode *)> Match) { 910 if (auto *Cst = dyn_cast<ConstantSDNode>(Op)) 911 return Match(Cst); 912 913 if (ISD::BUILD_VECTOR != Op.getOpcode()) 914 return false; 915 916 EVT SVT = Op.getValueType().getScalarType(); 917 for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i) { 918 auto *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(i)); 919 if (!Cst || Cst->getValueType(0) != SVT || !Match(Cst)) 920 return false; 921 } 922 return true; 923 } 924 925 // Attempt to match a binary predicate against a pair of scalar/splat constants 926 // or every element of a pair of constant BUILD_VECTORs. 927 static bool matchBinaryPredicate( 928 SDValue LHS, SDValue RHS, 929 std::function<bool(ConstantSDNode *, ConstantSDNode *)> Match) { 930 if (LHS.getValueType() != RHS.getValueType()) 931 return false; 932 933 if (auto *LHSCst = dyn_cast<ConstantSDNode>(LHS)) 934 if (auto *RHSCst = dyn_cast<ConstantSDNode>(RHS)) 935 return Match(LHSCst, RHSCst); 936 937 if (ISD::BUILD_VECTOR != LHS.getOpcode() || 938 ISD::BUILD_VECTOR != RHS.getOpcode()) 939 return false; 940 941 EVT SVT = LHS.getValueType().getScalarType(); 942 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) { 943 auto *LHSCst = dyn_cast<ConstantSDNode>(LHS.getOperand(i)); 944 auto *RHSCst = dyn_cast<ConstantSDNode>(RHS.getOperand(i)); 945 if (!LHSCst || !RHSCst) 946 return false; 947 if (LHSCst->getValueType(0) != SVT || 948 LHSCst->getValueType(0) != RHSCst->getValueType(0)) 949 return false; 950 if (!Match(LHSCst, RHSCst)) 951 return false; 952 } 953 return true; 954 } 955 956 SDValue DAGCombiner::ReassociateOps(unsigned Opc, const SDLoc &DL, SDValue N0, 957 SDValue N1) { 958 EVT VT = N0.getValueType(); 959 if (N0.getOpcode() == Opc) { 960 if (SDNode *L = DAG.isConstantIntBuildVectorOrConstantInt(N0.getOperand(1))) { 961 if (SDNode *R = DAG.isConstantIntBuildVectorOrConstantInt(N1)) { 962 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2)) 963 if (SDValue OpNode = DAG.FoldConstantArithmetic(Opc, DL, VT, L, R)) 964 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode); 965 return SDValue(); 966 } 967 if (N0.hasOneUse()) { 968 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one 969 // use 970 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT, N0.getOperand(0), N1); 971 if (!OpNode.getNode()) 972 return SDValue(); 973 AddToWorklist(OpNode.getNode()); 974 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1)); 975 } 976 } 977 } 978 979 if (N1.getOpcode() == Opc) { 980 if (SDNode *R = DAG.isConstantIntBuildVectorOrConstantInt(N1.getOperand(1))) { 981 if (SDNode *L = DAG.isConstantIntBuildVectorOrConstantInt(N0)) { 982 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2)) 983 if (SDValue OpNode = DAG.FoldConstantArithmetic(Opc, DL, VT, R, L)) 984 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode); 985 return SDValue(); 986 } 987 if (N1.hasOneUse()) { 988 // reassoc. (op x, (op y, c1)) -> (op (op x, y), c1) iff x+c1 has one 989 // use 990 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT, N0, N1.getOperand(0)); 991 if (!OpNode.getNode()) 992 return SDValue(); 993 AddToWorklist(OpNode.getNode()); 994 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1)); 995 } 996 } 997 } 998 999 return SDValue(); 1000 } 1001 1002 SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo, 1003 bool AddTo) { 1004 assert(N->getNumValues() == NumTo && "Broken CombineTo call!"); 1005 ++NodesCombined; 1006 DEBUG(dbgs() << "\nReplacing.1 "; 1007 N->dump(&DAG); 1008 dbgs() << "\nWith: "; 1009 To[0].getNode()->dump(&DAG); 1010 dbgs() << " and " << NumTo-1 << " other values\n"); 1011 for (unsigned i = 0, e = NumTo; i != e; ++i) 1012 assert((!To[i].getNode() || 1013 N->getValueType(i) == To[i].getValueType()) && 1014 "Cannot combine value to value of different type!"); 1015 1016 WorklistRemover DeadNodes(*this); 1017 DAG.ReplaceAllUsesWith(N, To); 1018 if (AddTo) { 1019 // Push the new nodes and any users onto the worklist 1020 for (unsigned i = 0, e = NumTo; i != e; ++i) { 1021 if (To[i].getNode()) { 1022 AddToWorklist(To[i].getNode()); 1023 AddUsersToWorklist(To[i].getNode()); 1024 } 1025 } 1026 } 1027 1028 // Finally, if the node is now dead, remove it from the graph. The node 1029 // may not be dead if the replacement process recursively simplified to 1030 // something else needing this node. 1031 if (N->use_empty()) 1032 deleteAndRecombine(N); 1033 return SDValue(N, 0); 1034 } 1035 1036 void DAGCombiner:: 1037 CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) { 1038 // Replace all uses. If any nodes become isomorphic to other nodes and 1039 // are deleted, make sure to remove them from our worklist. 1040 WorklistRemover DeadNodes(*this); 1041 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New); 1042 1043 // Push the new node and any (possibly new) users onto the worklist. 1044 AddToWorklist(TLO.New.getNode()); 1045 AddUsersToWorklist(TLO.New.getNode()); 1046 1047 // Finally, if the node is now dead, remove it from the graph. The node 1048 // may not be dead if the replacement process recursively simplified to 1049 // something else needing this node. 1050 if (TLO.Old.getNode()->use_empty()) 1051 deleteAndRecombine(TLO.Old.getNode()); 1052 } 1053 1054 /// Check the specified integer node value to see if it can be simplified or if 1055 /// things it uses can be simplified by bit propagation. If so, return true. 1056 bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) { 1057 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); 1058 KnownBits Known; 1059 if (!TLI.SimplifyDemandedBits(Op, Demanded, Known, TLO)) 1060 return false; 1061 1062 // Revisit the node. 1063 AddToWorklist(Op.getNode()); 1064 1065 // Replace the old value with the new one. 1066 ++NodesCombined; 1067 DEBUG(dbgs() << "\nReplacing.2 "; 1068 TLO.Old.getNode()->dump(&DAG); 1069 dbgs() << "\nWith: "; 1070 TLO.New.getNode()->dump(&DAG); 1071 dbgs() << '\n'); 1072 1073 CommitTargetLoweringOpt(TLO); 1074 return true; 1075 } 1076 1077 void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) { 1078 SDLoc DL(Load); 1079 EVT VT = Load->getValueType(0); 1080 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, DL, VT, SDValue(ExtLoad, 0)); 1081 1082 DEBUG(dbgs() << "\nReplacing.9 "; 1083 Load->dump(&DAG); 1084 dbgs() << "\nWith: "; 1085 Trunc.getNode()->dump(&DAG); 1086 dbgs() << '\n'); 1087 WorklistRemover DeadNodes(*this); 1088 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc); 1089 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1)); 1090 deleteAndRecombine(Load); 1091 AddToWorklist(Trunc.getNode()); 1092 } 1093 1094 SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) { 1095 Replace = false; 1096 SDLoc DL(Op); 1097 if (ISD::isUNINDEXEDLoad(Op.getNode())) { 1098 LoadSDNode *LD = cast<LoadSDNode>(Op); 1099 EVT MemVT = LD->getMemoryVT(); 1100 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD) 1101 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, PVT, MemVT) ? ISD::ZEXTLOAD 1102 : ISD::EXTLOAD) 1103 : LD->getExtensionType(); 1104 Replace = true; 1105 return DAG.getExtLoad(ExtType, DL, PVT, 1106 LD->getChain(), LD->getBasePtr(), 1107 MemVT, LD->getMemOperand()); 1108 } 1109 1110 unsigned Opc = Op.getOpcode(); 1111 switch (Opc) { 1112 default: break; 1113 case ISD::AssertSext: 1114 if (SDValue Op0 = SExtPromoteOperand(Op.getOperand(0), PVT)) 1115 return DAG.getNode(ISD::AssertSext, DL, PVT, Op0, Op.getOperand(1)); 1116 break; 1117 case ISD::AssertZext: 1118 if (SDValue Op0 = ZExtPromoteOperand(Op.getOperand(0), PVT)) 1119 return DAG.getNode(ISD::AssertZext, DL, PVT, Op0, Op.getOperand(1)); 1120 break; 1121 case ISD::Constant: { 1122 unsigned ExtOpc = 1123 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; 1124 return DAG.getNode(ExtOpc, DL, PVT, Op); 1125 } 1126 } 1127 1128 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT)) 1129 return SDValue(); 1130 return DAG.getNode(ISD::ANY_EXTEND, DL, PVT, Op); 1131 } 1132 1133 SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) { 1134 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT)) 1135 return SDValue(); 1136 EVT OldVT = Op.getValueType(); 1137 SDLoc DL(Op); 1138 bool Replace = false; 1139 SDValue NewOp = PromoteOperand(Op, PVT, Replace); 1140 if (!NewOp.getNode()) 1141 return SDValue(); 1142 AddToWorklist(NewOp.getNode()); 1143 1144 if (Replace) 1145 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode()); 1146 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, NewOp.getValueType(), NewOp, 1147 DAG.getValueType(OldVT)); 1148 } 1149 1150 SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) { 1151 EVT OldVT = Op.getValueType(); 1152 SDLoc DL(Op); 1153 bool Replace = false; 1154 SDValue NewOp = PromoteOperand(Op, PVT, Replace); 1155 if (!NewOp.getNode()) 1156 return SDValue(); 1157 AddToWorklist(NewOp.getNode()); 1158 1159 if (Replace) 1160 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode()); 1161 return DAG.getZeroExtendInReg(NewOp, DL, OldVT); 1162 } 1163 1164 /// Promote the specified integer binary operation if the target indicates it is 1165 /// beneficial. e.g. On x86, it's usually better to promote i16 operations to 1166 /// i32 since i16 instructions are longer. 1167 SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) { 1168 if (!LegalOperations) 1169 return SDValue(); 1170 1171 EVT VT = Op.getValueType(); 1172 if (VT.isVector() || !VT.isInteger()) 1173 return SDValue(); 1174 1175 // If operation type is 'undesirable', e.g. i16 on x86, consider 1176 // promoting it. 1177 unsigned Opc = Op.getOpcode(); 1178 if (TLI.isTypeDesirableForOp(Opc, VT)) 1179 return SDValue(); 1180 1181 EVT PVT = VT; 1182 // Consult target whether it is a good idea to promote this operation and 1183 // what's the right type to promote it to. 1184 if (TLI.IsDesirableToPromoteOp(Op, PVT)) { 1185 assert(PVT != VT && "Don't know what type to promote to!"); 1186 1187 DEBUG(dbgs() << "\nPromoting "; Op.getNode()->dump(&DAG)); 1188 1189 bool Replace0 = false; 1190 SDValue N0 = Op.getOperand(0); 1191 SDValue NN0 = PromoteOperand(N0, PVT, Replace0); 1192 1193 bool Replace1 = false; 1194 SDValue N1 = Op.getOperand(1); 1195 SDValue NN1 = PromoteOperand(N1, PVT, Replace1); 1196 SDLoc DL(Op); 1197 1198 SDValue RV = 1199 DAG.getNode(ISD::TRUNCATE, DL, VT, DAG.getNode(Opc, DL, PVT, NN0, NN1)); 1200 1201 // We are always replacing N0/N1's use in N and only need 1202 // additional replacements if there are additional uses. 1203 Replace0 &= !N0->hasOneUse(); 1204 Replace1 &= (N0 != N1) && !N1->hasOneUse(); 1205 1206 // Combine Op here so it is preserved past replacements. 1207 CombineTo(Op.getNode(), RV); 1208 1209 // If operands have a use ordering, make sure we deal with 1210 // predecessor first. 1211 if (Replace0 && Replace1 && N0.getNode()->isPredecessorOf(N1.getNode())) { 1212 std::swap(N0, N1); 1213 std::swap(NN0, NN1); 1214 } 1215 1216 if (Replace0) { 1217 AddToWorklist(NN0.getNode()); 1218 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode()); 1219 } 1220 if (Replace1) { 1221 AddToWorklist(NN1.getNode()); 1222 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode()); 1223 } 1224 return Op; 1225 } 1226 return SDValue(); 1227 } 1228 1229 /// Promote the specified integer shift operation if the target indicates it is 1230 /// beneficial. e.g. On x86, it's usually better to promote i16 operations to 1231 /// i32 since i16 instructions are longer. 1232 SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) { 1233 if (!LegalOperations) 1234 return SDValue(); 1235 1236 EVT VT = Op.getValueType(); 1237 if (VT.isVector() || !VT.isInteger()) 1238 return SDValue(); 1239 1240 // If operation type is 'undesirable', e.g. i16 on x86, consider 1241 // promoting it. 1242 unsigned Opc = Op.getOpcode(); 1243 if (TLI.isTypeDesirableForOp(Opc, VT)) 1244 return SDValue(); 1245 1246 EVT PVT = VT; 1247 // Consult target whether it is a good idea to promote this operation and 1248 // what's the right type to promote it to. 1249 if (TLI.IsDesirableToPromoteOp(Op, PVT)) { 1250 assert(PVT != VT && "Don't know what type to promote to!"); 1251 1252 DEBUG(dbgs() << "\nPromoting "; Op.getNode()->dump(&DAG)); 1253 1254 bool Replace = false; 1255 SDValue N0 = Op.getOperand(0); 1256 SDValue N1 = Op.getOperand(1); 1257 if (Opc == ISD::SRA) 1258 N0 = SExtPromoteOperand(N0, PVT); 1259 else if (Opc == ISD::SRL) 1260 N0 = ZExtPromoteOperand(N0, PVT); 1261 else 1262 N0 = PromoteOperand(N0, PVT, Replace); 1263 1264 if (!N0.getNode()) 1265 return SDValue(); 1266 1267 SDLoc DL(Op); 1268 SDValue RV = 1269 DAG.getNode(ISD::TRUNCATE, DL, VT, DAG.getNode(Opc, DL, PVT, N0, N1)); 1270 1271 AddToWorklist(N0.getNode()); 1272 if (Replace) 1273 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode()); 1274 1275 // Deal with Op being deleted. 1276 if (Op && Op.getOpcode() != ISD::DELETED_NODE) 1277 return RV; 1278 } 1279 return SDValue(); 1280 } 1281 1282 SDValue DAGCombiner::PromoteExtend(SDValue Op) { 1283 if (!LegalOperations) 1284 return SDValue(); 1285 1286 EVT VT = Op.getValueType(); 1287 if (VT.isVector() || !VT.isInteger()) 1288 return SDValue(); 1289 1290 // If operation type is 'undesirable', e.g. i16 on x86, consider 1291 // promoting it. 1292 unsigned Opc = Op.getOpcode(); 1293 if (TLI.isTypeDesirableForOp(Opc, VT)) 1294 return SDValue(); 1295 1296 EVT PVT = VT; 1297 // Consult target whether it is a good idea to promote this operation and 1298 // what's the right type to promote it to. 1299 if (TLI.IsDesirableToPromoteOp(Op, PVT)) { 1300 assert(PVT != VT && "Don't know what type to promote to!"); 1301 // fold (aext (aext x)) -> (aext x) 1302 // fold (aext (zext x)) -> (zext x) 1303 // fold (aext (sext x)) -> (sext x) 1304 DEBUG(dbgs() << "\nPromoting "; 1305 Op.getNode()->dump(&DAG)); 1306 return DAG.getNode(Op.getOpcode(), SDLoc(Op), VT, Op.getOperand(0)); 1307 } 1308 return SDValue(); 1309 } 1310 1311 bool DAGCombiner::PromoteLoad(SDValue Op) { 1312 if (!LegalOperations) 1313 return false; 1314 1315 if (!ISD::isUNINDEXEDLoad(Op.getNode())) 1316 return false; 1317 1318 EVT VT = Op.getValueType(); 1319 if (VT.isVector() || !VT.isInteger()) 1320 return false; 1321 1322 // If operation type is 'undesirable', e.g. i16 on x86, consider 1323 // promoting it. 1324 unsigned Opc = Op.getOpcode(); 1325 if (TLI.isTypeDesirableForOp(Opc, VT)) 1326 return false; 1327 1328 EVT PVT = VT; 1329 // Consult target whether it is a good idea to promote this operation and 1330 // what's the right type to promote it to. 1331 if (TLI.IsDesirableToPromoteOp(Op, PVT)) { 1332 assert(PVT != VT && "Don't know what type to promote to!"); 1333 1334 SDLoc DL(Op); 1335 SDNode *N = Op.getNode(); 1336 LoadSDNode *LD = cast<LoadSDNode>(N); 1337 EVT MemVT = LD->getMemoryVT(); 1338 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD) 1339 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, PVT, MemVT) ? ISD::ZEXTLOAD 1340 : ISD::EXTLOAD) 1341 : LD->getExtensionType(); 1342 SDValue NewLD = DAG.getExtLoad(ExtType, DL, PVT, 1343 LD->getChain(), LD->getBasePtr(), 1344 MemVT, LD->getMemOperand()); 1345 SDValue Result = DAG.getNode(ISD::TRUNCATE, DL, VT, NewLD); 1346 1347 DEBUG(dbgs() << "\nPromoting "; 1348 N->dump(&DAG); 1349 dbgs() << "\nTo: "; 1350 Result.getNode()->dump(&DAG); 1351 dbgs() << '\n'); 1352 WorklistRemover DeadNodes(*this); 1353 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result); 1354 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1)); 1355 deleteAndRecombine(N); 1356 AddToWorklist(Result.getNode()); 1357 return true; 1358 } 1359 return false; 1360 } 1361 1362 /// \brief Recursively delete a node which has no uses and any operands for 1363 /// which it is the only use. 1364 /// 1365 /// Note that this both deletes the nodes and removes them from the worklist. 1366 /// It also adds any nodes who have had a user deleted to the worklist as they 1367 /// may now have only one use and subject to other combines. 1368 bool DAGCombiner::recursivelyDeleteUnusedNodes(SDNode *N) { 1369 if (!N->use_empty()) 1370 return false; 1371 1372 SmallSetVector<SDNode *, 16> Nodes; 1373 Nodes.insert(N); 1374 do { 1375 N = Nodes.pop_back_val(); 1376 if (!N) 1377 continue; 1378 1379 if (N->use_empty()) { 1380 for (const SDValue &ChildN : N->op_values()) 1381 Nodes.insert(ChildN.getNode()); 1382 1383 removeFromWorklist(N); 1384 DAG.DeleteNode(N); 1385 } else { 1386 AddToWorklist(N); 1387 } 1388 } while (!Nodes.empty()); 1389 return true; 1390 } 1391 1392 //===----------------------------------------------------------------------===// 1393 // Main DAG Combiner implementation 1394 //===----------------------------------------------------------------------===// 1395 1396 void DAGCombiner::Run(CombineLevel AtLevel) { 1397 // set the instance variables, so that the various visit routines may use it. 1398 Level = AtLevel; 1399 LegalOperations = Level >= AfterLegalizeVectorOps; 1400 LegalTypes = Level >= AfterLegalizeTypes; 1401 1402 // Add all the dag nodes to the worklist. 1403 for (SDNode &Node : DAG.allnodes()) 1404 AddToWorklist(&Node); 1405 1406 // Create a dummy node (which is not added to allnodes), that adds a reference 1407 // to the root node, preventing it from being deleted, and tracking any 1408 // changes of the root. 1409 HandleSDNode Dummy(DAG.getRoot()); 1410 1411 // While the worklist isn't empty, find a node and try to combine it. 1412 while (!WorklistMap.empty()) { 1413 SDNode *N; 1414 // The Worklist holds the SDNodes in order, but it may contain null entries. 1415 do { 1416 N = Worklist.pop_back_val(); 1417 } while (!N); 1418 1419 bool GoodWorklistEntry = WorklistMap.erase(N); 1420 (void)GoodWorklistEntry; 1421 assert(GoodWorklistEntry && 1422 "Found a worklist entry without a corresponding map entry!"); 1423 1424 // If N has no uses, it is dead. Make sure to revisit all N's operands once 1425 // N is deleted from the DAG, since they too may now be dead or may have a 1426 // reduced number of uses, allowing other xforms. 1427 if (recursivelyDeleteUnusedNodes(N)) 1428 continue; 1429 1430 WorklistRemover DeadNodes(*this); 1431 1432 // If this combine is running after legalizing the DAG, re-legalize any 1433 // nodes pulled off the worklist. 1434 if (Level == AfterLegalizeDAG) { 1435 SmallSetVector<SDNode *, 16> UpdatedNodes; 1436 bool NIsValid = DAG.LegalizeOp(N, UpdatedNodes); 1437 1438 for (SDNode *LN : UpdatedNodes) { 1439 AddToWorklist(LN); 1440 AddUsersToWorklist(LN); 1441 } 1442 if (!NIsValid) 1443 continue; 1444 } 1445 1446 DEBUG(dbgs() << "\nCombining: "; N->dump(&DAG)); 1447 1448 // Add any operands of the new node which have not yet been combined to the 1449 // worklist as well. Because the worklist uniques things already, this 1450 // won't repeatedly process the same operand. 1451 CombinedNodes.insert(N); 1452 for (const SDValue &ChildN : N->op_values()) 1453 if (!CombinedNodes.count(ChildN.getNode())) 1454 AddToWorklist(ChildN.getNode()); 1455 1456 SDValue RV = combine(N); 1457 1458 if (!RV.getNode()) 1459 continue; 1460 1461 ++NodesCombined; 1462 1463 // If we get back the same node we passed in, rather than a new node or 1464 // zero, we know that the node must have defined multiple values and 1465 // CombineTo was used. Since CombineTo takes care of the worklist 1466 // mechanics for us, we have no work to do in this case. 1467 if (RV.getNode() == N) 1468 continue; 1469 1470 assert(N->getOpcode() != ISD::DELETED_NODE && 1471 RV.getOpcode() != ISD::DELETED_NODE && 1472 "Node was deleted but visit returned new node!"); 1473 1474 DEBUG(dbgs() << " ... into: "; 1475 RV.getNode()->dump(&DAG)); 1476 1477 if (N->getNumValues() == RV.getNode()->getNumValues()) 1478 DAG.ReplaceAllUsesWith(N, RV.getNode()); 1479 else { 1480 assert(N->getValueType(0) == RV.getValueType() && 1481 N->getNumValues() == 1 && "Type mismatch"); 1482 DAG.ReplaceAllUsesWith(N, &RV); 1483 } 1484 1485 // Push the new node and any users onto the worklist 1486 AddToWorklist(RV.getNode()); 1487 AddUsersToWorklist(RV.getNode()); 1488 1489 // Finally, if the node is now dead, remove it from the graph. The node 1490 // may not be dead if the replacement process recursively simplified to 1491 // something else needing this node. This will also take care of adding any 1492 // operands which have lost a user to the worklist. 1493 recursivelyDeleteUnusedNodes(N); 1494 } 1495 1496 // If the root changed (e.g. it was a dead load, update the root). 1497 DAG.setRoot(Dummy.getValue()); 1498 DAG.RemoveDeadNodes(); 1499 } 1500 1501 SDValue DAGCombiner::visit(SDNode *N) { 1502 switch (N->getOpcode()) { 1503 default: break; 1504 case ISD::TokenFactor: return visitTokenFactor(N); 1505 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N); 1506 case ISD::ADD: return visitADD(N); 1507 case ISD::SUB: return visitSUB(N); 1508 case ISD::ADDC: return visitADDC(N); 1509 case ISD::UADDO: return visitUADDO(N); 1510 case ISD::SUBC: return visitSUBC(N); 1511 case ISD::USUBO: return visitUSUBO(N); 1512 case ISD::ADDE: return visitADDE(N); 1513 case ISD::ADDCARRY: return visitADDCARRY(N); 1514 case ISD::SUBE: return visitSUBE(N); 1515 case ISD::SUBCARRY: return visitSUBCARRY(N); 1516 case ISD::MUL: return visitMUL(N); 1517 case ISD::SDIV: return visitSDIV(N); 1518 case ISD::UDIV: return visitUDIV(N); 1519 case ISD::SREM: 1520 case ISD::UREM: return visitREM(N); 1521 case ISD::MULHU: return visitMULHU(N); 1522 case ISD::MULHS: return visitMULHS(N); 1523 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N); 1524 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N); 1525 case ISD::SMULO: return visitSMULO(N); 1526 case ISD::UMULO: return visitUMULO(N); 1527 case ISD::SMIN: 1528 case ISD::SMAX: 1529 case ISD::UMIN: 1530 case ISD::UMAX: return visitIMINMAX(N); 1531 case ISD::AND: return visitAND(N); 1532 case ISD::OR: return visitOR(N); 1533 case ISD::XOR: return visitXOR(N); 1534 case ISD::SHL: return visitSHL(N); 1535 case ISD::SRA: return visitSRA(N); 1536 case ISD::SRL: return visitSRL(N); 1537 case ISD::ROTR: 1538 case ISD::ROTL: return visitRotate(N); 1539 case ISD::ABS: return visitABS(N); 1540 case ISD::BSWAP: return visitBSWAP(N); 1541 case ISD::BITREVERSE: return visitBITREVERSE(N); 1542 case ISD::CTLZ: return visitCTLZ(N); 1543 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N); 1544 case ISD::CTTZ: return visitCTTZ(N); 1545 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N); 1546 case ISD::CTPOP: return visitCTPOP(N); 1547 case ISD::SELECT: return visitSELECT(N); 1548 case ISD::VSELECT: return visitVSELECT(N); 1549 case ISD::SELECT_CC: return visitSELECT_CC(N); 1550 case ISD::SETCC: return visitSETCC(N); 1551 case ISD::SETCCE: return visitSETCCE(N); 1552 case ISD::SETCCCARRY: return visitSETCCCARRY(N); 1553 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N); 1554 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N); 1555 case ISD::ANY_EXTEND: return visitANY_EXTEND(N); 1556 case ISD::AssertSext: 1557 case ISD::AssertZext: return visitAssertExt(N); 1558 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N); 1559 case ISD::SIGN_EXTEND_VECTOR_INREG: return visitSIGN_EXTEND_VECTOR_INREG(N); 1560 case ISD::ZERO_EXTEND_VECTOR_INREG: return visitZERO_EXTEND_VECTOR_INREG(N); 1561 case ISD::TRUNCATE: return visitTRUNCATE(N); 1562 case ISD::BITCAST: return visitBITCAST(N); 1563 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N); 1564 case ISD::FADD: return visitFADD(N); 1565 case ISD::FSUB: return visitFSUB(N); 1566 case ISD::FMUL: return visitFMUL(N); 1567 case ISD::FMA: return visitFMA(N); 1568 case ISD::FDIV: return visitFDIV(N); 1569 case ISD::FREM: return visitFREM(N); 1570 case ISD::FSQRT: return visitFSQRT(N); 1571 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N); 1572 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N); 1573 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N); 1574 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N); 1575 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N); 1576 case ISD::FP_ROUND: return visitFP_ROUND(N); 1577 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N); 1578 case ISD::FP_EXTEND: return visitFP_EXTEND(N); 1579 case ISD::FNEG: return visitFNEG(N); 1580 case ISD::FABS: return visitFABS(N); 1581 case ISD::FFLOOR: return visitFFLOOR(N); 1582 case ISD::FMINNUM: return visitFMINNUM(N); 1583 case ISD::FMAXNUM: return visitFMAXNUM(N); 1584 case ISD::FCEIL: return visitFCEIL(N); 1585 case ISD::FTRUNC: return visitFTRUNC(N); 1586 case ISD::BRCOND: return visitBRCOND(N); 1587 case ISD::BR_CC: return visitBR_CC(N); 1588 case ISD::LOAD: return visitLOAD(N); 1589 case ISD::STORE: return visitSTORE(N); 1590 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N); 1591 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N); 1592 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N); 1593 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N); 1594 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N); 1595 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N); 1596 case ISD::SCALAR_TO_VECTOR: return visitSCALAR_TO_VECTOR(N); 1597 case ISD::INSERT_SUBVECTOR: return visitINSERT_SUBVECTOR(N); 1598 case ISD::MGATHER: return visitMGATHER(N); 1599 case ISD::MLOAD: return visitMLOAD(N); 1600 case ISD::MSCATTER: return visitMSCATTER(N); 1601 case ISD::MSTORE: return visitMSTORE(N); 1602 case ISD::FP_TO_FP16: return visitFP_TO_FP16(N); 1603 case ISD::FP16_TO_FP: return visitFP16_TO_FP(N); 1604 } 1605 return SDValue(); 1606 } 1607 1608 SDValue DAGCombiner::combine(SDNode *N) { 1609 SDValue RV = visit(N); 1610 1611 // If nothing happened, try a target-specific DAG combine. 1612 if (!RV.getNode()) { 1613 assert(N->getOpcode() != ISD::DELETED_NODE && 1614 "Node was deleted but visit returned NULL!"); 1615 1616 if (N->getOpcode() >= ISD::BUILTIN_OP_END || 1617 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) { 1618 1619 // Expose the DAG combiner to the target combiner impls. 1620 TargetLowering::DAGCombinerInfo 1621 DagCombineInfo(DAG, Level, false, this); 1622 1623 RV = TLI.PerformDAGCombine(N, DagCombineInfo); 1624 } 1625 } 1626 1627 // If nothing happened still, try promoting the operation. 1628 if (!RV.getNode()) { 1629 switch (N->getOpcode()) { 1630 default: break; 1631 case ISD::ADD: 1632 case ISD::SUB: 1633 case ISD::MUL: 1634 case ISD::AND: 1635 case ISD::OR: 1636 case ISD::XOR: 1637 RV = PromoteIntBinOp(SDValue(N, 0)); 1638 break; 1639 case ISD::SHL: 1640 case ISD::SRA: 1641 case ISD::SRL: 1642 RV = PromoteIntShiftOp(SDValue(N, 0)); 1643 break; 1644 case ISD::SIGN_EXTEND: 1645 case ISD::ZERO_EXTEND: 1646 case ISD::ANY_EXTEND: 1647 RV = PromoteExtend(SDValue(N, 0)); 1648 break; 1649 case ISD::LOAD: 1650 if (PromoteLoad(SDValue(N, 0))) 1651 RV = SDValue(N, 0); 1652 break; 1653 } 1654 } 1655 1656 // If N is a commutative binary node, try eliminate it if the commuted 1657 // version is already present in the DAG. 1658 if (!RV.getNode() && TLI.isCommutativeBinOp(N->getOpcode()) && 1659 N->getNumValues() == 1) { 1660 SDValue N0 = N->getOperand(0); 1661 SDValue N1 = N->getOperand(1); 1662 1663 // Constant operands are canonicalized to RHS. 1664 if (N0 != N1 && (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1))) { 1665 SDValue Ops[] = {N1, N0}; 1666 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(), Ops, 1667 N->getFlags()); 1668 if (CSENode) 1669 return SDValue(CSENode, 0); 1670 } 1671 } 1672 1673 return RV; 1674 } 1675 1676 /// Given a node, return its input chain if it has one, otherwise return a null 1677 /// sd operand. 1678 static SDValue getInputChainForNode(SDNode *N) { 1679 if (unsigned NumOps = N->getNumOperands()) { 1680 if (N->getOperand(0).getValueType() == MVT::Other) 1681 return N->getOperand(0); 1682 if (N->getOperand(NumOps-1).getValueType() == MVT::Other) 1683 return N->getOperand(NumOps-1); 1684 for (unsigned i = 1; i < NumOps-1; ++i) 1685 if (N->getOperand(i).getValueType() == MVT::Other) 1686 return N->getOperand(i); 1687 } 1688 return SDValue(); 1689 } 1690 1691 SDValue DAGCombiner::visitTokenFactor(SDNode *N) { 1692 // If N has two operands, where one has an input chain equal to the other, 1693 // the 'other' chain is redundant. 1694 if (N->getNumOperands() == 2) { 1695 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1)) 1696 return N->getOperand(0); 1697 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0)) 1698 return N->getOperand(1); 1699 } 1700 1701 SmallVector<SDNode *, 8> TFs; // List of token factors to visit. 1702 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor. 1703 SmallPtrSet<SDNode*, 16> SeenOps; 1704 bool Changed = false; // If we should replace this token factor. 1705 1706 // Start out with this token factor. 1707 TFs.push_back(N); 1708 1709 // Iterate through token factors. The TFs grows when new token factors are 1710 // encountered. 1711 for (unsigned i = 0; i < TFs.size(); ++i) { 1712 SDNode *TF = TFs[i]; 1713 1714 // Check each of the operands. 1715 for (const SDValue &Op : TF->op_values()) { 1716 switch (Op.getOpcode()) { 1717 case ISD::EntryToken: 1718 // Entry tokens don't need to be added to the list. They are 1719 // redundant. 1720 Changed = true; 1721 break; 1722 1723 case ISD::TokenFactor: 1724 if (Op.hasOneUse() && !is_contained(TFs, Op.getNode())) { 1725 // Queue up for processing. 1726 TFs.push_back(Op.getNode()); 1727 // Clean up in case the token factor is removed. 1728 AddToWorklist(Op.getNode()); 1729 Changed = true; 1730 break; 1731 } 1732 LLVM_FALLTHROUGH; 1733 1734 default: 1735 // Only add if it isn't already in the list. 1736 if (SeenOps.insert(Op.getNode()).second) 1737 Ops.push_back(Op); 1738 else 1739 Changed = true; 1740 break; 1741 } 1742 } 1743 } 1744 1745 // Remove Nodes that are chained to another node in the list. Do so 1746 // by walking up chains breath-first stopping when we've seen 1747 // another operand. In general we must climb to the EntryNode, but we can exit 1748 // early if we find all remaining work is associated with just one operand as 1749 // no further pruning is possible. 1750 1751 // List of nodes to search through and original Ops from which they originate. 1752 SmallVector<std::pair<SDNode *, unsigned>, 8> Worklist; 1753 SmallVector<unsigned, 8> OpWorkCount; // Count of work for each Op. 1754 SmallPtrSet<SDNode *, 16> SeenChains; 1755 bool DidPruneOps = false; 1756 1757 unsigned NumLeftToConsider = 0; 1758 for (const SDValue &Op : Ops) { 1759 Worklist.push_back(std::make_pair(Op.getNode(), NumLeftToConsider++)); 1760 OpWorkCount.push_back(1); 1761 } 1762 1763 auto AddToWorklist = [&](unsigned CurIdx, SDNode *Op, unsigned OpNumber) { 1764 // If this is an Op, we can remove the op from the list. Remark any 1765 // search associated with it as from the current OpNumber. 1766 if (SeenOps.count(Op) != 0) { 1767 Changed = true; 1768 DidPruneOps = true; 1769 unsigned OrigOpNumber = 0; 1770 while (OrigOpNumber < Ops.size() && Ops[OrigOpNumber].getNode() != Op) 1771 OrigOpNumber++; 1772 assert((OrigOpNumber != Ops.size()) && 1773 "expected to find TokenFactor Operand"); 1774 // Re-mark worklist from OrigOpNumber to OpNumber 1775 for (unsigned i = CurIdx + 1; i < Worklist.size(); ++i) { 1776 if (Worklist[i].second == OrigOpNumber) { 1777 Worklist[i].second = OpNumber; 1778 } 1779 } 1780 OpWorkCount[OpNumber] += OpWorkCount[OrigOpNumber]; 1781 OpWorkCount[OrigOpNumber] = 0; 1782 NumLeftToConsider--; 1783 } 1784 // Add if it's a new chain 1785 if (SeenChains.insert(Op).second) { 1786 OpWorkCount[OpNumber]++; 1787 Worklist.push_back(std::make_pair(Op, OpNumber)); 1788 } 1789 }; 1790 1791 for (unsigned i = 0; i < Worklist.size() && i < 1024; ++i) { 1792 // We need at least be consider at least 2 Ops to prune. 1793 if (NumLeftToConsider <= 1) 1794 break; 1795 auto CurNode = Worklist[i].first; 1796 auto CurOpNumber = Worklist[i].second; 1797 assert((OpWorkCount[CurOpNumber] > 0) && 1798 "Node should not appear in worklist"); 1799 switch (CurNode->getOpcode()) { 1800 case ISD::EntryToken: 1801 // Hitting EntryToken is the only way for the search to terminate without 1802 // hitting 1803 // another operand's search. Prevent us from marking this operand 1804 // considered. 1805 NumLeftToConsider++; 1806 break; 1807 case ISD::TokenFactor: 1808 for (const SDValue &Op : CurNode->op_values()) 1809 AddToWorklist(i, Op.getNode(), CurOpNumber); 1810 break; 1811 case ISD::CopyFromReg: 1812 case ISD::CopyToReg: 1813 AddToWorklist(i, CurNode->getOperand(0).getNode(), CurOpNumber); 1814 break; 1815 default: 1816 if (auto *MemNode = dyn_cast<MemSDNode>(CurNode)) 1817 AddToWorklist(i, MemNode->getChain().getNode(), CurOpNumber); 1818 break; 1819 } 1820 OpWorkCount[CurOpNumber]--; 1821 if (OpWorkCount[CurOpNumber] == 0) 1822 NumLeftToConsider--; 1823 } 1824 1825 // If we've changed things around then replace token factor. 1826 if (Changed) { 1827 SDValue Result; 1828 if (Ops.empty()) { 1829 // The entry token is the only possible outcome. 1830 Result = DAG.getEntryNode(); 1831 } else { 1832 if (DidPruneOps) { 1833 SmallVector<SDValue, 8> PrunedOps; 1834 // 1835 for (const SDValue &Op : Ops) { 1836 if (SeenChains.count(Op.getNode()) == 0) 1837 PrunedOps.push_back(Op); 1838 } 1839 Result = DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other, PrunedOps); 1840 } else { 1841 Result = DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other, Ops); 1842 } 1843 } 1844 return Result; 1845 } 1846 return SDValue(); 1847 } 1848 1849 /// MERGE_VALUES can always be eliminated. 1850 SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) { 1851 WorklistRemover DeadNodes(*this); 1852 // Replacing results may cause a different MERGE_VALUES to suddenly 1853 // be CSE'd with N, and carry its uses with it. Iterate until no 1854 // uses remain, to ensure that the node can be safely deleted. 1855 // First add the users of this node to the work list so that they 1856 // can be tried again once they have new operands. 1857 AddUsersToWorklist(N); 1858 do { 1859 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) 1860 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i)); 1861 } while (!N->use_empty()); 1862 deleteAndRecombine(N); 1863 return SDValue(N, 0); // Return N so it doesn't get rechecked! 1864 } 1865 1866 /// If \p N is a ConstantSDNode with isOpaque() == false return it casted to a 1867 /// ConstantSDNode pointer else nullptr. 1868 static ConstantSDNode *getAsNonOpaqueConstant(SDValue N) { 1869 ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N); 1870 return Const != nullptr && !Const->isOpaque() ? Const : nullptr; 1871 } 1872 1873 SDValue DAGCombiner::foldBinOpIntoSelect(SDNode *BO) { 1874 auto BinOpcode = BO->getOpcode(); 1875 assert((BinOpcode == ISD::ADD || BinOpcode == ISD::SUB || 1876 BinOpcode == ISD::MUL || BinOpcode == ISD::SDIV || 1877 BinOpcode == ISD::UDIV || BinOpcode == ISD::SREM || 1878 BinOpcode == ISD::UREM || BinOpcode == ISD::AND || 1879 BinOpcode == ISD::OR || BinOpcode == ISD::XOR || 1880 BinOpcode == ISD::SHL || BinOpcode == ISD::SRL || 1881 BinOpcode == ISD::SRA || BinOpcode == ISD::FADD || 1882 BinOpcode == ISD::FSUB || BinOpcode == ISD::FMUL || 1883 BinOpcode == ISD::FDIV || BinOpcode == ISD::FREM) && 1884 "Unexpected binary operator"); 1885 1886 // Bail out if any constants are opaque because we can't constant fold those. 1887 SDValue C1 = BO->getOperand(1); 1888 if (!isConstantOrConstantVector(C1, true) && 1889 !isConstantFPBuildVectorOrConstantFP(C1)) 1890 return SDValue(); 1891 1892 // Don't do this unless the old select is going away. We want to eliminate the 1893 // binary operator, not replace a binop with a select. 1894 // TODO: Handle ISD::SELECT_CC. 1895 SDValue Sel = BO->getOperand(0); 1896 if (Sel.getOpcode() != ISD::SELECT || !Sel.hasOneUse()) 1897 return SDValue(); 1898 1899 SDValue CT = Sel.getOperand(1); 1900 if (!isConstantOrConstantVector(CT, true) && 1901 !isConstantFPBuildVectorOrConstantFP(CT)) 1902 return SDValue(); 1903 1904 SDValue CF = Sel.getOperand(2); 1905 if (!isConstantOrConstantVector(CF, true) && 1906 !isConstantFPBuildVectorOrConstantFP(CF)) 1907 return SDValue(); 1908 1909 // We have a select-of-constants followed by a binary operator with a 1910 // constant. Eliminate the binop by pulling the constant math into the select. 1911 // Example: add (select Cond, CT, CF), C1 --> select Cond, CT + C1, CF + C1 1912 EVT VT = Sel.getValueType(); 1913 SDLoc DL(Sel); 1914 SDValue NewCT = DAG.getNode(BinOpcode, DL, VT, CT, C1); 1915 assert((NewCT.isUndef() || isConstantOrConstantVector(NewCT) || 1916 isConstantFPBuildVectorOrConstantFP(NewCT)) && 1917 "Failed to constant fold a binop with constant operands"); 1918 1919 SDValue NewCF = DAG.getNode(BinOpcode, DL, VT, CF, C1); 1920 assert((NewCF.isUndef() || isConstantOrConstantVector(NewCF) || 1921 isConstantFPBuildVectorOrConstantFP(NewCF)) && 1922 "Failed to constant fold a binop with constant operands"); 1923 1924 return DAG.getSelect(DL, VT, Sel.getOperand(0), NewCT, NewCF); 1925 } 1926 1927 SDValue DAGCombiner::visitADD(SDNode *N) { 1928 SDValue N0 = N->getOperand(0); 1929 SDValue N1 = N->getOperand(1); 1930 EVT VT = N0.getValueType(); 1931 SDLoc DL(N); 1932 1933 // fold vector ops 1934 if (VT.isVector()) { 1935 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 1936 return FoldedVOp; 1937 1938 // fold (add x, 0) -> x, vector edition 1939 if (ISD::isBuildVectorAllZeros(N1.getNode())) 1940 return N0; 1941 if (ISD::isBuildVectorAllZeros(N0.getNode())) 1942 return N1; 1943 } 1944 1945 // fold (add x, undef) -> undef 1946 if (N0.isUndef()) 1947 return N0; 1948 1949 if (N1.isUndef()) 1950 return N1; 1951 1952 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) { 1953 // canonicalize constant to RHS 1954 if (!DAG.isConstantIntBuildVectorOrConstantInt(N1)) 1955 return DAG.getNode(ISD::ADD, DL, VT, N1, N0); 1956 // fold (add c1, c2) -> c1+c2 1957 return DAG.FoldConstantArithmetic(ISD::ADD, DL, VT, N0.getNode(), 1958 N1.getNode()); 1959 } 1960 1961 // fold (add x, 0) -> x 1962 if (isNullConstant(N1)) 1963 return N0; 1964 1965 if (isConstantOrConstantVector(N1, /* NoOpaque */ true)) { 1966 // fold ((c1-A)+c2) -> (c1+c2)-A 1967 if (N0.getOpcode() == ISD::SUB && 1968 isConstantOrConstantVector(N0.getOperand(0), /* NoOpaque */ true)) { 1969 // FIXME: Adding 2 constants should be handled by FoldConstantArithmetic. 1970 return DAG.getNode(ISD::SUB, DL, VT, 1971 DAG.getNode(ISD::ADD, DL, VT, N1, N0.getOperand(0)), 1972 N0.getOperand(1)); 1973 } 1974 1975 // add (sext i1 X), 1 -> zext (not i1 X) 1976 // We don't transform this pattern: 1977 // add (zext i1 X), -1 -> sext (not i1 X) 1978 // because most (?) targets generate better code for the zext form. 1979 if (N0.getOpcode() == ISD::SIGN_EXTEND && N0.hasOneUse() && 1980 isOneConstantOrOneSplatConstant(N1)) { 1981 SDValue X = N0.getOperand(0); 1982 if ((!LegalOperations || 1983 (TLI.isOperationLegal(ISD::XOR, X.getValueType()) && 1984 TLI.isOperationLegal(ISD::ZERO_EXTEND, VT))) && 1985 X.getScalarValueSizeInBits() == 1) { 1986 SDValue Not = DAG.getNOT(DL, X, X.getValueType()); 1987 return DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Not); 1988 } 1989 } 1990 1991 // Undo the add -> or combine to merge constant offsets from a frame index. 1992 if (N0.getOpcode() == ISD::OR && 1993 isa<FrameIndexSDNode>(N0.getOperand(0)) && 1994 isa<ConstantSDNode>(N0.getOperand(1)) && 1995 DAG.haveNoCommonBitsSet(N0.getOperand(0), N0.getOperand(1))) { 1996 SDValue Add0 = DAG.getNode(ISD::ADD, DL, VT, N1, N0.getOperand(1)); 1997 return DAG.getNode(ISD::ADD, DL, VT, N0.getOperand(0), Add0); 1998 } 1999 } 2000 2001 if (SDValue NewSel = foldBinOpIntoSelect(N)) 2002 return NewSel; 2003 2004 // reassociate add 2005 if (SDValue RADD = ReassociateOps(ISD::ADD, DL, N0, N1)) 2006 return RADD; 2007 2008 // fold ((0-A) + B) -> B-A 2009 if (N0.getOpcode() == ISD::SUB && 2010 isNullConstantOrNullSplatConstant(N0.getOperand(0))) 2011 return DAG.getNode(ISD::SUB, DL, VT, N1, N0.getOperand(1)); 2012 2013 // fold (A + (0-B)) -> A-B 2014 if (N1.getOpcode() == ISD::SUB && 2015 isNullConstantOrNullSplatConstant(N1.getOperand(0))) 2016 return DAG.getNode(ISD::SUB, DL, VT, N0, N1.getOperand(1)); 2017 2018 // fold (A+(B-A)) -> B 2019 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1)) 2020 return N1.getOperand(0); 2021 2022 // fold ((B-A)+A) -> B 2023 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1)) 2024 return N0.getOperand(0); 2025 2026 // fold (A+(B-(A+C))) to (B-C) 2027 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD && 2028 N0 == N1.getOperand(1).getOperand(0)) 2029 return DAG.getNode(ISD::SUB, DL, VT, N1.getOperand(0), 2030 N1.getOperand(1).getOperand(1)); 2031 2032 // fold (A+(B-(C+A))) to (B-C) 2033 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD && 2034 N0 == N1.getOperand(1).getOperand(1)) 2035 return DAG.getNode(ISD::SUB, DL, VT, N1.getOperand(0), 2036 N1.getOperand(1).getOperand(0)); 2037 2038 // fold (A+((B-A)+or-C)) to (B+or-C) 2039 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) && 2040 N1.getOperand(0).getOpcode() == ISD::SUB && 2041 N0 == N1.getOperand(0).getOperand(1)) 2042 return DAG.getNode(N1.getOpcode(), DL, VT, N1.getOperand(0).getOperand(0), 2043 N1.getOperand(1)); 2044 2045 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant 2046 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) { 2047 SDValue N00 = N0.getOperand(0); 2048 SDValue N01 = N0.getOperand(1); 2049 SDValue N10 = N1.getOperand(0); 2050 SDValue N11 = N1.getOperand(1); 2051 2052 if (isConstantOrConstantVector(N00) || isConstantOrConstantVector(N10)) 2053 return DAG.getNode(ISD::SUB, DL, VT, 2054 DAG.getNode(ISD::ADD, SDLoc(N0), VT, N00, N10), 2055 DAG.getNode(ISD::ADD, SDLoc(N1), VT, N01, N11)); 2056 } 2057 2058 if (SimplifyDemandedBits(SDValue(N, 0))) 2059 return SDValue(N, 0); 2060 2061 // fold (a+b) -> (a|b) iff a and b share no bits. 2062 if ((!LegalOperations || TLI.isOperationLegal(ISD::OR, VT)) && 2063 DAG.haveNoCommonBitsSet(N0, N1)) 2064 return DAG.getNode(ISD::OR, DL, VT, N0, N1); 2065 2066 if (SDValue Combined = visitADDLike(N0, N1, N)) 2067 return Combined; 2068 2069 if (SDValue Combined = visitADDLike(N1, N0, N)) 2070 return Combined; 2071 2072 return SDValue(); 2073 } 2074 2075 static SDValue getAsCarry(const TargetLowering &TLI, SDValue V) { 2076 bool Masked = false; 2077 2078 // First, peel away TRUNCATE/ZERO_EXTEND/AND nodes due to legalization. 2079 while (true) { 2080 if (V.getOpcode() == ISD::TRUNCATE || V.getOpcode() == ISD::ZERO_EXTEND) { 2081 V = V.getOperand(0); 2082 continue; 2083 } 2084 2085 if (V.getOpcode() == ISD::AND && isOneConstant(V.getOperand(1))) { 2086 Masked = true; 2087 V = V.getOperand(0); 2088 continue; 2089 } 2090 2091 break; 2092 } 2093 2094 // If this is not a carry, return. 2095 if (V.getResNo() != 1) 2096 return SDValue(); 2097 2098 if (V.getOpcode() != ISD::ADDCARRY && V.getOpcode() != ISD::SUBCARRY && 2099 V.getOpcode() != ISD::UADDO && V.getOpcode() != ISD::USUBO) 2100 return SDValue(); 2101 2102 // If the result is masked, then no matter what kind of bool it is we can 2103 // return. If it isn't, then we need to make sure the bool type is either 0 or 2104 // 1 and not other values. 2105 if (Masked || 2106 TLI.getBooleanContents(V.getValueType()) == 2107 TargetLoweringBase::ZeroOrOneBooleanContent) 2108 return V; 2109 2110 return SDValue(); 2111 } 2112 2113 SDValue DAGCombiner::visitADDLike(SDValue N0, SDValue N1, SDNode *LocReference) { 2114 EVT VT = N0.getValueType(); 2115 SDLoc DL(LocReference); 2116 2117 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n)) 2118 if (N1.getOpcode() == ISD::SHL && N1.getOperand(0).getOpcode() == ISD::SUB && 2119 isNullConstantOrNullSplatConstant(N1.getOperand(0).getOperand(0))) 2120 return DAG.getNode(ISD::SUB, DL, VT, N0, 2121 DAG.getNode(ISD::SHL, DL, VT, 2122 N1.getOperand(0).getOperand(1), 2123 N1.getOperand(1))); 2124 2125 if (N1.getOpcode() == ISD::AND) { 2126 SDValue AndOp0 = N1.getOperand(0); 2127 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0); 2128 unsigned DestBits = VT.getScalarSizeInBits(); 2129 2130 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x)) 2131 // and similar xforms where the inner op is either ~0 or 0. 2132 if (NumSignBits == DestBits && 2133 isOneConstantOrOneSplatConstant(N1->getOperand(1))) 2134 return DAG.getNode(ISD::SUB, DL, VT, N0, AndOp0); 2135 } 2136 2137 // add (sext i1), X -> sub X, (zext i1) 2138 if (N0.getOpcode() == ISD::SIGN_EXTEND && 2139 N0.getOperand(0).getValueType() == MVT::i1 && 2140 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) { 2141 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)); 2142 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt); 2143 } 2144 2145 // add X, (sextinreg Y i1) -> sub X, (and Y 1) 2146 if (N1.getOpcode() == ISD::SIGN_EXTEND_INREG) { 2147 VTSDNode *TN = cast<VTSDNode>(N1.getOperand(1)); 2148 if (TN->getVT() == MVT::i1) { 2149 SDValue ZExt = DAG.getNode(ISD::AND, DL, VT, N1.getOperand(0), 2150 DAG.getConstant(1, DL, VT)); 2151 return DAG.getNode(ISD::SUB, DL, VT, N0, ZExt); 2152 } 2153 } 2154 2155 // (add X, (addcarry Y, 0, Carry)) -> (addcarry X, Y, Carry) 2156 if (N1.getOpcode() == ISD::ADDCARRY && isNullConstant(N1.getOperand(1))) 2157 return DAG.getNode(ISD::ADDCARRY, DL, N1->getVTList(), 2158 N0, N1.getOperand(0), N1.getOperand(2)); 2159 2160 // (add X, Carry) -> (addcarry X, 0, Carry) 2161 if (TLI.isOperationLegalOrCustom(ISD::ADDCARRY, VT)) 2162 if (SDValue Carry = getAsCarry(TLI, N1)) 2163 return DAG.getNode(ISD::ADDCARRY, DL, 2164 DAG.getVTList(VT, Carry.getValueType()), N0, 2165 DAG.getConstant(0, DL, VT), Carry); 2166 2167 return SDValue(); 2168 } 2169 2170 SDValue DAGCombiner::visitADDC(SDNode *N) { 2171 SDValue N0 = N->getOperand(0); 2172 SDValue N1 = N->getOperand(1); 2173 EVT VT = N0.getValueType(); 2174 SDLoc DL(N); 2175 2176 // If the flag result is dead, turn this into an ADD. 2177 if (!N->hasAnyUseOfValue(1)) 2178 return CombineTo(N, DAG.getNode(ISD::ADD, DL, VT, N0, N1), 2179 DAG.getNode(ISD::CARRY_FALSE, DL, MVT::Glue)); 2180 2181 // canonicalize constant to RHS. 2182 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); 2183 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 2184 if (N0C && !N1C) 2185 return DAG.getNode(ISD::ADDC, DL, N->getVTList(), N1, N0); 2186 2187 // fold (addc x, 0) -> x + no carry out 2188 if (isNullConstant(N1)) 2189 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, 2190 DL, MVT::Glue)); 2191 2192 // If it cannot overflow, transform into an add. 2193 if (DAG.computeOverflowKind(N0, N1) == SelectionDAG::OFK_Never) 2194 return CombineTo(N, DAG.getNode(ISD::ADD, DL, VT, N0, N1), 2195 DAG.getNode(ISD::CARRY_FALSE, DL, MVT::Glue)); 2196 2197 return SDValue(); 2198 } 2199 2200 SDValue DAGCombiner::visitUADDO(SDNode *N) { 2201 SDValue N0 = N->getOperand(0); 2202 SDValue N1 = N->getOperand(1); 2203 EVT VT = N0.getValueType(); 2204 if (VT.isVector()) 2205 return SDValue(); 2206 2207 EVT CarryVT = N->getValueType(1); 2208 SDLoc DL(N); 2209 2210 // If the flag result is dead, turn this into an ADD. 2211 if (!N->hasAnyUseOfValue(1)) 2212 return CombineTo(N, DAG.getNode(ISD::ADD, DL, VT, N0, N1), 2213 DAG.getUNDEF(CarryVT)); 2214 2215 // canonicalize constant to RHS. 2216 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); 2217 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 2218 if (N0C && !N1C) 2219 return DAG.getNode(ISD::UADDO, DL, N->getVTList(), N1, N0); 2220 2221 // fold (uaddo x, 0) -> x + no carry out 2222 if (isNullConstant(N1)) 2223 return CombineTo(N, N0, DAG.getConstant(0, DL, CarryVT)); 2224 2225 // If it cannot overflow, transform into an add. 2226 if (DAG.computeOverflowKind(N0, N1) == SelectionDAG::OFK_Never) 2227 return CombineTo(N, DAG.getNode(ISD::ADD, DL, VT, N0, N1), 2228 DAG.getConstant(0, DL, CarryVT)); 2229 2230 if (SDValue Combined = visitUADDOLike(N0, N1, N)) 2231 return Combined; 2232 2233 if (SDValue Combined = visitUADDOLike(N1, N0, N)) 2234 return Combined; 2235 2236 return SDValue(); 2237 } 2238 2239 SDValue DAGCombiner::visitUADDOLike(SDValue N0, SDValue N1, SDNode *N) { 2240 auto VT = N0.getValueType(); 2241 2242 // (uaddo X, (addcarry Y, 0, Carry)) -> (addcarry X, Y, Carry) 2243 // If Y + 1 cannot overflow. 2244 if (N1.getOpcode() == ISD::ADDCARRY && isNullConstant(N1.getOperand(1))) { 2245 SDValue Y = N1.getOperand(0); 2246 SDValue One = DAG.getConstant(1, SDLoc(N), Y.getValueType()); 2247 if (DAG.computeOverflowKind(Y, One) == SelectionDAG::OFK_Never) 2248 return DAG.getNode(ISD::ADDCARRY, SDLoc(N), N->getVTList(), N0, Y, 2249 N1.getOperand(2)); 2250 } 2251 2252 // (uaddo X, Carry) -> (addcarry X, 0, Carry) 2253 if (TLI.isOperationLegalOrCustom(ISD::ADDCARRY, VT)) 2254 if (SDValue Carry = getAsCarry(TLI, N1)) 2255 return DAG.getNode(ISD::ADDCARRY, SDLoc(N), N->getVTList(), N0, 2256 DAG.getConstant(0, SDLoc(N), VT), Carry); 2257 2258 return SDValue(); 2259 } 2260 2261 SDValue DAGCombiner::visitADDE(SDNode *N) { 2262 SDValue N0 = N->getOperand(0); 2263 SDValue N1 = N->getOperand(1); 2264 SDValue CarryIn = N->getOperand(2); 2265 2266 // canonicalize constant to RHS 2267 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); 2268 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 2269 if (N0C && !N1C) 2270 return DAG.getNode(ISD::ADDE, SDLoc(N), N->getVTList(), 2271 N1, N0, CarryIn); 2272 2273 // fold (adde x, y, false) -> (addc x, y) 2274 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) 2275 return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N0, N1); 2276 2277 return SDValue(); 2278 } 2279 2280 SDValue DAGCombiner::visitADDCARRY(SDNode *N) { 2281 SDValue N0 = N->getOperand(0); 2282 SDValue N1 = N->getOperand(1); 2283 SDValue CarryIn = N->getOperand(2); 2284 SDLoc DL(N); 2285 2286 // canonicalize constant to RHS 2287 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); 2288 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 2289 if (N0C && !N1C) 2290 return DAG.getNode(ISD::ADDCARRY, DL, N->getVTList(), N1, N0, CarryIn); 2291 2292 // fold (addcarry x, y, false) -> (uaddo x, y) 2293 if (isNullConstant(CarryIn)) 2294 return DAG.getNode(ISD::UADDO, DL, N->getVTList(), N0, N1); 2295 2296 // fold (addcarry 0, 0, X) -> (and (ext/trunc X), 1) and no carry. 2297 if (isNullConstant(N0) && isNullConstant(N1)) { 2298 EVT VT = N0.getValueType(); 2299 EVT CarryVT = CarryIn.getValueType(); 2300 SDValue CarryExt = DAG.getBoolExtOrTrunc(CarryIn, DL, VT, CarryVT); 2301 AddToWorklist(CarryExt.getNode()); 2302 return CombineTo(N, DAG.getNode(ISD::AND, DL, VT, CarryExt, 2303 DAG.getConstant(1, DL, VT)), 2304 DAG.getConstant(0, DL, CarryVT)); 2305 } 2306 2307 if (SDValue Combined = visitADDCARRYLike(N0, N1, CarryIn, N)) 2308 return Combined; 2309 2310 if (SDValue Combined = visitADDCARRYLike(N1, N0, CarryIn, N)) 2311 return Combined; 2312 2313 return SDValue(); 2314 } 2315 2316 SDValue DAGCombiner::visitADDCARRYLike(SDValue N0, SDValue N1, SDValue CarryIn, 2317 SDNode *N) { 2318 // Iff the flag result is dead: 2319 // (addcarry (add|uaddo X, Y), 0, Carry) -> (addcarry X, Y, Carry) 2320 if ((N0.getOpcode() == ISD::ADD || 2321 (N0.getOpcode() == ISD::UADDO && N0.getResNo() == 0)) && 2322 isNullConstant(N1) && !N->hasAnyUseOfValue(1)) 2323 return DAG.getNode(ISD::ADDCARRY, SDLoc(N), N->getVTList(), 2324 N0.getOperand(0), N0.getOperand(1), CarryIn); 2325 2326 /** 2327 * When one of the addcarry argument is itself a carry, we may be facing 2328 * a diamond carry propagation. In which case we try to transform the DAG 2329 * to ensure linear carry propagation if that is possible. 2330 * 2331 * We are trying to get: 2332 * (addcarry X, 0, (addcarry A, B, Z):Carry) 2333 */ 2334 if (auto Y = getAsCarry(TLI, N1)) { 2335 /** 2336 * (uaddo A, B) 2337 * / \ 2338 * Carry Sum 2339 * | \ 2340 * | (addcarry *, 0, Z) 2341 * | / 2342 * \ Carry 2343 * | / 2344 * (addcarry X, *, *) 2345 */ 2346 if (Y.getOpcode() == ISD::UADDO && 2347 CarryIn.getResNo() == 1 && 2348 CarryIn.getOpcode() == ISD::ADDCARRY && 2349 isNullConstant(CarryIn.getOperand(1)) && 2350 CarryIn.getOperand(0) == Y.getValue(0)) { 2351 auto NewY = DAG.getNode(ISD::ADDCARRY, SDLoc(N), Y->getVTList(), 2352 Y.getOperand(0), Y.getOperand(1), 2353 CarryIn.getOperand(2)); 2354 AddToWorklist(NewY.getNode()); 2355 return DAG.getNode(ISD::ADDCARRY, SDLoc(N), N->getVTList(), N0, 2356 DAG.getConstant(0, SDLoc(N), N0.getValueType()), 2357 NewY.getValue(1)); 2358 } 2359 } 2360 2361 return SDValue(); 2362 } 2363 2364 // Since it may not be valid to emit a fold to zero for vector initializers 2365 // check if we can before folding. 2366 static SDValue tryFoldToZero(const SDLoc &DL, const TargetLowering &TLI, EVT VT, 2367 SelectionDAG &DAG, bool LegalOperations, 2368 bool LegalTypes) { 2369 if (!VT.isVector()) 2370 return DAG.getConstant(0, DL, VT); 2371 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) 2372 return DAG.getConstant(0, DL, VT); 2373 return SDValue(); 2374 } 2375 2376 SDValue DAGCombiner::visitSUB(SDNode *N) { 2377 SDValue N0 = N->getOperand(0); 2378 SDValue N1 = N->getOperand(1); 2379 EVT VT = N0.getValueType(); 2380 SDLoc DL(N); 2381 2382 // fold vector ops 2383 if (VT.isVector()) { 2384 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 2385 return FoldedVOp; 2386 2387 // fold (sub x, 0) -> x, vector edition 2388 if (ISD::isBuildVectorAllZeros(N1.getNode())) 2389 return N0; 2390 } 2391 2392 // fold (sub x, x) -> 0 2393 // FIXME: Refactor this and xor and other similar operations together. 2394 if (N0 == N1) 2395 return tryFoldToZero(DL, TLI, VT, DAG, LegalOperations, LegalTypes); 2396 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 2397 DAG.isConstantIntBuildVectorOrConstantInt(N1)) { 2398 // fold (sub c1, c2) -> c1-c2 2399 return DAG.FoldConstantArithmetic(ISD::SUB, DL, VT, N0.getNode(), 2400 N1.getNode()); 2401 } 2402 2403 if (SDValue NewSel = foldBinOpIntoSelect(N)) 2404 return NewSel; 2405 2406 ConstantSDNode *N1C = getAsNonOpaqueConstant(N1); 2407 2408 // fold (sub x, c) -> (add x, -c) 2409 if (N1C) { 2410 return DAG.getNode(ISD::ADD, DL, VT, N0, 2411 DAG.getConstant(-N1C->getAPIntValue(), DL, VT)); 2412 } 2413 2414 if (isNullConstantOrNullSplatConstant(N0)) { 2415 unsigned BitWidth = VT.getScalarSizeInBits(); 2416 // Right-shifting everything out but the sign bit followed by negation is 2417 // the same as flipping arithmetic/logical shift type without the negation: 2418 // -(X >>u 31) -> (X >>s 31) 2419 // -(X >>s 31) -> (X >>u 31) 2420 if (N1->getOpcode() == ISD::SRA || N1->getOpcode() == ISD::SRL) { 2421 ConstantSDNode *ShiftAmt = isConstOrConstSplat(N1.getOperand(1)); 2422 if (ShiftAmt && ShiftAmt->getZExtValue() == BitWidth - 1) { 2423 auto NewSh = N1->getOpcode() == ISD::SRA ? ISD::SRL : ISD::SRA; 2424 if (!LegalOperations || TLI.isOperationLegal(NewSh, VT)) 2425 return DAG.getNode(NewSh, DL, VT, N1.getOperand(0), N1.getOperand(1)); 2426 } 2427 } 2428 2429 // 0 - X --> 0 if the sub is NUW. 2430 if (N->getFlags().hasNoUnsignedWrap()) 2431 return N0; 2432 2433 if (DAG.MaskedValueIsZero(N1, ~APInt::getSignMask(BitWidth))) { 2434 // N1 is either 0 or the minimum signed value. If the sub is NSW, then 2435 // N1 must be 0 because negating the minimum signed value is undefined. 2436 if (N->getFlags().hasNoSignedWrap()) 2437 return N0; 2438 2439 // 0 - X --> X if X is 0 or the minimum signed value. 2440 return N1; 2441 } 2442 } 2443 2444 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) 2445 if (isAllOnesConstantOrAllOnesSplatConstant(N0)) 2446 return DAG.getNode(ISD::XOR, DL, VT, N1, N0); 2447 2448 // fold A-(A-B) -> B 2449 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0)) 2450 return N1.getOperand(1); 2451 2452 // fold (A+B)-A -> B 2453 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1) 2454 return N0.getOperand(1); 2455 2456 // fold (A+B)-B -> A 2457 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1) 2458 return N0.getOperand(0); 2459 2460 // fold C2-(A+C1) -> (C2-C1)-A 2461 if (N1.getOpcode() == ISD::ADD) { 2462 SDValue N11 = N1.getOperand(1); 2463 if (isConstantOrConstantVector(N0, /* NoOpaques */ true) && 2464 isConstantOrConstantVector(N11, /* NoOpaques */ true)) { 2465 SDValue NewC = DAG.getNode(ISD::SUB, DL, VT, N0, N11); 2466 return DAG.getNode(ISD::SUB, DL, VT, NewC, N1.getOperand(0)); 2467 } 2468 } 2469 2470 // fold ((A+(B+or-C))-B) -> A+or-C 2471 if (N0.getOpcode() == ISD::ADD && 2472 (N0.getOperand(1).getOpcode() == ISD::SUB || 2473 N0.getOperand(1).getOpcode() == ISD::ADD) && 2474 N0.getOperand(1).getOperand(0) == N1) 2475 return DAG.getNode(N0.getOperand(1).getOpcode(), DL, VT, N0.getOperand(0), 2476 N0.getOperand(1).getOperand(1)); 2477 2478 // fold ((A+(C+B))-B) -> A+C 2479 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1).getOpcode() == ISD::ADD && 2480 N0.getOperand(1).getOperand(1) == N1) 2481 return DAG.getNode(ISD::ADD, DL, VT, N0.getOperand(0), 2482 N0.getOperand(1).getOperand(0)); 2483 2484 // fold ((A-(B-C))-C) -> A-B 2485 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1).getOpcode() == ISD::SUB && 2486 N0.getOperand(1).getOperand(1) == N1) 2487 return DAG.getNode(ISD::SUB, DL, VT, N0.getOperand(0), 2488 N0.getOperand(1).getOperand(0)); 2489 2490 // If either operand of a sub is undef, the result is undef 2491 if (N0.isUndef()) 2492 return N0; 2493 if (N1.isUndef()) 2494 return N1; 2495 2496 // If the relocation model supports it, consider symbol offsets. 2497 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0)) 2498 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) { 2499 // fold (sub Sym, c) -> Sym-c 2500 if (N1C && GA->getOpcode() == ISD::GlobalAddress) 2501 return DAG.getGlobalAddress(GA->getGlobal(), SDLoc(N1C), VT, 2502 GA->getOffset() - 2503 (uint64_t)N1C->getSExtValue()); 2504 // fold (sub Sym+c1, Sym+c2) -> c1-c2 2505 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1)) 2506 if (GA->getGlobal() == GB->getGlobal()) 2507 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(), 2508 DL, VT); 2509 } 2510 2511 // sub X, (sextinreg Y i1) -> add X, (and Y 1) 2512 if (N1.getOpcode() == ISD::SIGN_EXTEND_INREG) { 2513 VTSDNode *TN = cast<VTSDNode>(N1.getOperand(1)); 2514 if (TN->getVT() == MVT::i1) { 2515 SDValue ZExt = DAG.getNode(ISD::AND, DL, VT, N1.getOperand(0), 2516 DAG.getConstant(1, DL, VT)); 2517 return DAG.getNode(ISD::ADD, DL, VT, N0, ZExt); 2518 } 2519 } 2520 2521 return SDValue(); 2522 } 2523 2524 SDValue DAGCombiner::visitSUBC(SDNode *N) { 2525 SDValue N0 = N->getOperand(0); 2526 SDValue N1 = N->getOperand(1); 2527 EVT VT = N0.getValueType(); 2528 SDLoc DL(N); 2529 2530 // If the flag result is dead, turn this into an SUB. 2531 if (!N->hasAnyUseOfValue(1)) 2532 return CombineTo(N, DAG.getNode(ISD::SUB, DL, VT, N0, N1), 2533 DAG.getNode(ISD::CARRY_FALSE, DL, MVT::Glue)); 2534 2535 // fold (subc x, x) -> 0 + no borrow 2536 if (N0 == N1) 2537 return CombineTo(N, DAG.getConstant(0, DL, VT), 2538 DAG.getNode(ISD::CARRY_FALSE, DL, MVT::Glue)); 2539 2540 // fold (subc x, 0) -> x + no borrow 2541 if (isNullConstant(N1)) 2542 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, DL, MVT::Glue)); 2543 2544 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow 2545 if (isAllOnesConstant(N0)) 2546 return CombineTo(N, DAG.getNode(ISD::XOR, DL, VT, N1, N0), 2547 DAG.getNode(ISD::CARRY_FALSE, DL, MVT::Glue)); 2548 2549 return SDValue(); 2550 } 2551 2552 SDValue DAGCombiner::visitUSUBO(SDNode *N) { 2553 SDValue N0 = N->getOperand(0); 2554 SDValue N1 = N->getOperand(1); 2555 EVT VT = N0.getValueType(); 2556 if (VT.isVector()) 2557 return SDValue(); 2558 2559 EVT CarryVT = N->getValueType(1); 2560 SDLoc DL(N); 2561 2562 // If the flag result is dead, turn this into an SUB. 2563 if (!N->hasAnyUseOfValue(1)) 2564 return CombineTo(N, DAG.getNode(ISD::SUB, DL, VT, N0, N1), 2565 DAG.getUNDEF(CarryVT)); 2566 2567 // fold (usubo x, x) -> 0 + no borrow 2568 if (N0 == N1) 2569 return CombineTo(N, DAG.getConstant(0, DL, VT), 2570 DAG.getConstant(0, DL, CarryVT)); 2571 2572 // fold (usubo x, 0) -> x + no borrow 2573 if (isNullConstant(N1)) 2574 return CombineTo(N, N0, DAG.getConstant(0, DL, CarryVT)); 2575 2576 // Canonicalize (usubo -1, x) -> ~x, i.e. (xor x, -1) + no borrow 2577 if (isAllOnesConstant(N0)) 2578 return CombineTo(N, DAG.getNode(ISD::XOR, DL, VT, N1, N0), 2579 DAG.getConstant(0, DL, CarryVT)); 2580 2581 return SDValue(); 2582 } 2583 2584 SDValue DAGCombiner::visitSUBE(SDNode *N) { 2585 SDValue N0 = N->getOperand(0); 2586 SDValue N1 = N->getOperand(1); 2587 SDValue CarryIn = N->getOperand(2); 2588 2589 // fold (sube x, y, false) -> (subc x, y) 2590 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) 2591 return DAG.getNode(ISD::SUBC, SDLoc(N), N->getVTList(), N0, N1); 2592 2593 return SDValue(); 2594 } 2595 2596 SDValue DAGCombiner::visitSUBCARRY(SDNode *N) { 2597 SDValue N0 = N->getOperand(0); 2598 SDValue N1 = N->getOperand(1); 2599 SDValue CarryIn = N->getOperand(2); 2600 2601 // fold (subcarry x, y, false) -> (usubo x, y) 2602 if (isNullConstant(CarryIn)) 2603 return DAG.getNode(ISD::USUBO, SDLoc(N), N->getVTList(), N0, N1); 2604 2605 return SDValue(); 2606 } 2607 2608 SDValue DAGCombiner::visitMUL(SDNode *N) { 2609 SDValue N0 = N->getOperand(0); 2610 SDValue N1 = N->getOperand(1); 2611 EVT VT = N0.getValueType(); 2612 2613 // fold (mul x, undef) -> 0 2614 if (N0.isUndef() || N1.isUndef()) 2615 return DAG.getConstant(0, SDLoc(N), VT); 2616 2617 bool N0IsConst = false; 2618 bool N1IsConst = false; 2619 bool N1IsOpaqueConst = false; 2620 bool N0IsOpaqueConst = false; 2621 APInt ConstValue0, ConstValue1; 2622 // fold vector ops 2623 if (VT.isVector()) { 2624 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 2625 return FoldedVOp; 2626 2627 N0IsConst = ISD::isConstantSplatVector(N0.getNode(), ConstValue0); 2628 N1IsConst = ISD::isConstantSplatVector(N1.getNode(), ConstValue1); 2629 assert((!N0IsConst || 2630 ConstValue0.getBitWidth() == VT.getScalarSizeInBits()) && 2631 "Splat APInt should be element width"); 2632 assert((!N1IsConst || 2633 ConstValue1.getBitWidth() == VT.getScalarSizeInBits()) && 2634 "Splat APInt should be element width"); 2635 } else { 2636 N0IsConst = isa<ConstantSDNode>(N0); 2637 if (N0IsConst) { 2638 ConstValue0 = cast<ConstantSDNode>(N0)->getAPIntValue(); 2639 N0IsOpaqueConst = cast<ConstantSDNode>(N0)->isOpaque(); 2640 } 2641 N1IsConst = isa<ConstantSDNode>(N1); 2642 if (N1IsConst) { 2643 ConstValue1 = cast<ConstantSDNode>(N1)->getAPIntValue(); 2644 N1IsOpaqueConst = cast<ConstantSDNode>(N1)->isOpaque(); 2645 } 2646 } 2647 2648 // fold (mul c1, c2) -> c1*c2 2649 if (N0IsConst && N1IsConst && !N0IsOpaqueConst && !N1IsOpaqueConst) 2650 return DAG.FoldConstantArithmetic(ISD::MUL, SDLoc(N), VT, 2651 N0.getNode(), N1.getNode()); 2652 2653 // canonicalize constant to RHS (vector doesn't have to splat) 2654 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 2655 !DAG.isConstantIntBuildVectorOrConstantInt(N1)) 2656 return DAG.getNode(ISD::MUL, SDLoc(N), VT, N1, N0); 2657 // fold (mul x, 0) -> 0 2658 if (N1IsConst && ConstValue1.isNullValue()) 2659 return N1; 2660 // fold (mul x, 1) -> x 2661 if (N1IsConst && ConstValue1.isOneValue()) 2662 return N0; 2663 2664 if (SDValue NewSel = foldBinOpIntoSelect(N)) 2665 return NewSel; 2666 2667 // fold (mul x, -1) -> 0-x 2668 if (N1IsConst && ConstValue1.isAllOnesValue()) { 2669 SDLoc DL(N); 2670 return DAG.getNode(ISD::SUB, DL, VT, 2671 DAG.getConstant(0, DL, VT), N0); 2672 } 2673 // fold (mul x, (1 << c)) -> x << c 2674 if (isConstantOrConstantVector(N1, /*NoOpaques*/ true) && 2675 DAG.isKnownToBeAPowerOfTwo(N1)) { 2676 SDLoc DL(N); 2677 SDValue LogBase2 = BuildLogBase2(N1, DL); 2678 AddToWorklist(LogBase2.getNode()); 2679 2680 EVT ShiftVT = getShiftAmountTy(N0.getValueType()); 2681 SDValue Trunc = DAG.getZExtOrTrunc(LogBase2, DL, ShiftVT); 2682 AddToWorklist(Trunc.getNode()); 2683 return DAG.getNode(ISD::SHL, DL, VT, N0, Trunc); 2684 } 2685 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c 2686 if (N1IsConst && !N1IsOpaqueConst && (-ConstValue1).isPowerOf2()) { 2687 unsigned Log2Val = (-ConstValue1).logBase2(); 2688 SDLoc DL(N); 2689 // FIXME: If the input is something that is easily negated (e.g. a 2690 // single-use add), we should put the negate there. 2691 return DAG.getNode(ISD::SUB, DL, VT, 2692 DAG.getConstant(0, DL, VT), 2693 DAG.getNode(ISD::SHL, DL, VT, N0, 2694 DAG.getConstant(Log2Val, DL, 2695 getShiftAmountTy(N0.getValueType())))); 2696 } 2697 2698 // (mul (shl X, c1), c2) -> (mul X, c2 << c1) 2699 if (N0.getOpcode() == ISD::SHL && 2700 isConstantOrConstantVector(N1, /* NoOpaques */ true) && 2701 isConstantOrConstantVector(N0.getOperand(1), /* NoOpaques */ true)) { 2702 SDValue C3 = DAG.getNode(ISD::SHL, SDLoc(N), VT, N1, N0.getOperand(1)); 2703 if (isConstantOrConstantVector(C3)) 2704 return DAG.getNode(ISD::MUL, SDLoc(N), VT, N0.getOperand(0), C3); 2705 } 2706 2707 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one 2708 // use. 2709 { 2710 SDValue Sh(nullptr, 0), Y(nullptr, 0); 2711 2712 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)). 2713 if (N0.getOpcode() == ISD::SHL && 2714 isConstantOrConstantVector(N0.getOperand(1)) && 2715 N0.getNode()->hasOneUse()) { 2716 Sh = N0; Y = N1; 2717 } else if (N1.getOpcode() == ISD::SHL && 2718 isConstantOrConstantVector(N1.getOperand(1)) && 2719 N1.getNode()->hasOneUse()) { 2720 Sh = N1; Y = N0; 2721 } 2722 2723 if (Sh.getNode()) { 2724 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT, Sh.getOperand(0), Y); 2725 return DAG.getNode(ISD::SHL, SDLoc(N), VT, Mul, Sh.getOperand(1)); 2726 } 2727 } 2728 2729 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2) 2730 if (DAG.isConstantIntBuildVectorOrConstantInt(N1) && 2731 N0.getOpcode() == ISD::ADD && 2732 DAG.isConstantIntBuildVectorOrConstantInt(N0.getOperand(1)) && 2733 isMulAddWithConstProfitable(N, N0, N1)) 2734 return DAG.getNode(ISD::ADD, SDLoc(N), VT, 2735 DAG.getNode(ISD::MUL, SDLoc(N0), VT, 2736 N0.getOperand(0), N1), 2737 DAG.getNode(ISD::MUL, SDLoc(N1), VT, 2738 N0.getOperand(1), N1)); 2739 2740 // reassociate mul 2741 if (SDValue RMUL = ReassociateOps(ISD::MUL, SDLoc(N), N0, N1)) 2742 return RMUL; 2743 2744 return SDValue(); 2745 } 2746 2747 /// Return true if divmod libcall is available. 2748 static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned, 2749 const TargetLowering &TLI) { 2750 RTLIB::Libcall LC; 2751 EVT NodeType = Node->getValueType(0); 2752 if (!NodeType.isSimple()) 2753 return false; 2754 switch (NodeType.getSimpleVT().SimpleTy) { 2755 default: return false; // No libcall for vector types. 2756 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break; 2757 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break; 2758 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break; 2759 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break; 2760 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break; 2761 } 2762 2763 return TLI.getLibcallName(LC) != nullptr; 2764 } 2765 2766 /// Issue divrem if both quotient and remainder are needed. 2767 SDValue DAGCombiner::useDivRem(SDNode *Node) { 2768 if (Node->use_empty()) 2769 return SDValue(); // This is a dead node, leave it alone. 2770 2771 unsigned Opcode = Node->getOpcode(); 2772 bool isSigned = (Opcode == ISD::SDIV) || (Opcode == ISD::SREM); 2773 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; 2774 2775 // DivMod lib calls can still work on non-legal types if using lib-calls. 2776 EVT VT = Node->getValueType(0); 2777 if (VT.isVector() || !VT.isInteger()) 2778 return SDValue(); 2779 2780 if (!TLI.isTypeLegal(VT) && !TLI.isOperationCustom(DivRemOpc, VT)) 2781 return SDValue(); 2782 2783 // If DIVREM is going to get expanded into a libcall, 2784 // but there is no libcall available, then don't combine. 2785 if (!TLI.isOperationLegalOrCustom(DivRemOpc, VT) && 2786 !isDivRemLibcallAvailable(Node, isSigned, TLI)) 2787 return SDValue(); 2788 2789 // If div is legal, it's better to do the normal expansion 2790 unsigned OtherOpcode = 0; 2791 if ((Opcode == ISD::SDIV) || (Opcode == ISD::UDIV)) { 2792 OtherOpcode = isSigned ? ISD::SREM : ISD::UREM; 2793 if (TLI.isOperationLegalOrCustom(Opcode, VT)) 2794 return SDValue(); 2795 } else { 2796 OtherOpcode = isSigned ? ISD::SDIV : ISD::UDIV; 2797 if (TLI.isOperationLegalOrCustom(OtherOpcode, VT)) 2798 return SDValue(); 2799 } 2800 2801 SDValue Op0 = Node->getOperand(0); 2802 SDValue Op1 = Node->getOperand(1); 2803 SDValue combined; 2804 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(), 2805 UE = Op0.getNode()->use_end(); UI != UE;) { 2806 SDNode *User = *UI++; 2807 if (User == Node || User->use_empty()) 2808 continue; 2809 // Convert the other matching node(s), too; 2810 // otherwise, the DIVREM may get target-legalized into something 2811 // target-specific that we won't be able to recognize. 2812 unsigned UserOpc = User->getOpcode(); 2813 if ((UserOpc == Opcode || UserOpc == OtherOpcode || UserOpc == DivRemOpc) && 2814 User->getOperand(0) == Op0 && 2815 User->getOperand(1) == Op1) { 2816 if (!combined) { 2817 if (UserOpc == OtherOpcode) { 2818 SDVTList VTs = DAG.getVTList(VT, VT); 2819 combined = DAG.getNode(DivRemOpc, SDLoc(Node), VTs, Op0, Op1); 2820 } else if (UserOpc == DivRemOpc) { 2821 combined = SDValue(User, 0); 2822 } else { 2823 assert(UserOpc == Opcode); 2824 continue; 2825 } 2826 } 2827 if (UserOpc == ISD::SDIV || UserOpc == ISD::UDIV) 2828 CombineTo(User, combined); 2829 else if (UserOpc == ISD::SREM || UserOpc == ISD::UREM) 2830 CombineTo(User, combined.getValue(1)); 2831 } 2832 } 2833 return combined; 2834 } 2835 2836 static SDValue simplifyDivRem(SDNode *N, SelectionDAG &DAG) { 2837 SDValue N0 = N->getOperand(0); 2838 SDValue N1 = N->getOperand(1); 2839 EVT VT = N->getValueType(0); 2840 SDLoc DL(N); 2841 2842 if (DAG.isUndef(N->getOpcode(), {N0, N1})) 2843 return DAG.getUNDEF(VT); 2844 2845 // undef / X -> 0 2846 // undef % X -> 0 2847 if (N0.isUndef()) 2848 return DAG.getConstant(0, DL, VT); 2849 2850 return SDValue(); 2851 } 2852 2853 SDValue DAGCombiner::visitSDIV(SDNode *N) { 2854 SDValue N0 = N->getOperand(0); 2855 SDValue N1 = N->getOperand(1); 2856 EVT VT = N->getValueType(0); 2857 2858 // fold vector ops 2859 if (VT.isVector()) 2860 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 2861 return FoldedVOp; 2862 2863 SDLoc DL(N); 2864 2865 // fold (sdiv c1, c2) -> c1/c2 2866 ConstantSDNode *N0C = isConstOrConstSplat(N0); 2867 ConstantSDNode *N1C = isConstOrConstSplat(N1); 2868 if (N0C && N1C && !N0C->isOpaque() && !N1C->isOpaque()) 2869 return DAG.FoldConstantArithmetic(ISD::SDIV, DL, VT, N0C, N1C); 2870 // fold (sdiv X, 1) -> X 2871 if (N1C && N1C->isOne()) 2872 return N0; 2873 // fold (sdiv X, -1) -> 0-X 2874 if (N1C && N1C->isAllOnesValue()) 2875 return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), N0); 2876 2877 if (SDValue V = simplifyDivRem(N, DAG)) 2878 return V; 2879 2880 if (SDValue NewSel = foldBinOpIntoSelect(N)) 2881 return NewSel; 2882 2883 // If we know the sign bits of both operands are zero, strength reduce to a 2884 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2 2885 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0)) 2886 return DAG.getNode(ISD::UDIV, DL, N1.getValueType(), N0, N1); 2887 2888 // fold (sdiv X, pow2) -> simple ops after legalize 2889 // FIXME: We check for the exact bit here because the generic lowering gives 2890 // better results in that case. The target-specific lowering should learn how 2891 // to handle exact sdivs efficiently. 2892 if (N1C && !N1C->isNullValue() && !N1C->isOpaque() && 2893 !N->getFlags().hasExact() && (N1C->getAPIntValue().isPowerOf2() || 2894 (-N1C->getAPIntValue()).isPowerOf2())) { 2895 // Target-specific implementation of sdiv x, pow2. 2896 if (SDValue Res = BuildSDIVPow2(N)) 2897 return Res; 2898 2899 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros(); 2900 2901 // Splat the sign bit into the register 2902 SDValue SGN = 2903 DAG.getNode(ISD::SRA, DL, VT, N0, 2904 DAG.getConstant(VT.getScalarSizeInBits() - 1, DL, 2905 getShiftAmountTy(N0.getValueType()))); 2906 AddToWorklist(SGN.getNode()); 2907 2908 // Add (N0 < 0) ? abs2 - 1 : 0; 2909 SDValue SRL = 2910 DAG.getNode(ISD::SRL, DL, VT, SGN, 2911 DAG.getConstant(VT.getScalarSizeInBits() - lg2, DL, 2912 getShiftAmountTy(SGN.getValueType()))); 2913 SDValue ADD = DAG.getNode(ISD::ADD, DL, VT, N0, SRL); 2914 AddToWorklist(SRL.getNode()); 2915 AddToWorklist(ADD.getNode()); // Divide by pow2 2916 SDValue SRA = DAG.getNode(ISD::SRA, DL, VT, ADD, 2917 DAG.getConstant(lg2, DL, 2918 getShiftAmountTy(ADD.getValueType()))); 2919 2920 // If we're dividing by a positive value, we're done. Otherwise, we must 2921 // negate the result. 2922 if (N1C->getAPIntValue().isNonNegative()) 2923 return SRA; 2924 2925 AddToWorklist(SRA.getNode()); 2926 return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), SRA); 2927 } 2928 2929 // If integer divide is expensive and we satisfy the requirements, emit an 2930 // alternate sequence. Targets may check function attributes for size/speed 2931 // trade-offs. 2932 AttributeList Attr = DAG.getMachineFunction().getFunction()->getAttributes(); 2933 if (N1C && !TLI.isIntDivCheap(N->getValueType(0), Attr)) 2934 if (SDValue Op = BuildSDIV(N)) 2935 return Op; 2936 2937 // sdiv, srem -> sdivrem 2938 // If the divisor is constant, then return DIVREM only if isIntDivCheap() is 2939 // true. Otherwise, we break the simplification logic in visitREM(). 2940 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr)) 2941 if (SDValue DivRem = useDivRem(N)) 2942 return DivRem; 2943 2944 return SDValue(); 2945 } 2946 2947 SDValue DAGCombiner::visitUDIV(SDNode *N) { 2948 SDValue N0 = N->getOperand(0); 2949 SDValue N1 = N->getOperand(1); 2950 EVT VT = N->getValueType(0); 2951 2952 // fold vector ops 2953 if (VT.isVector()) 2954 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 2955 return FoldedVOp; 2956 2957 SDLoc DL(N); 2958 2959 // fold (udiv c1, c2) -> c1/c2 2960 ConstantSDNode *N0C = isConstOrConstSplat(N0); 2961 ConstantSDNode *N1C = isConstOrConstSplat(N1); 2962 if (N0C && N1C) 2963 if (SDValue Folded = DAG.FoldConstantArithmetic(ISD::UDIV, DL, VT, 2964 N0C, N1C)) 2965 return Folded; 2966 2967 if (SDValue V = simplifyDivRem(N, DAG)) 2968 return V; 2969 2970 if (SDValue NewSel = foldBinOpIntoSelect(N)) 2971 return NewSel; 2972 2973 // fold (udiv x, (1 << c)) -> x >>u c 2974 if (isConstantOrConstantVector(N1, /*NoOpaques*/ true) && 2975 DAG.isKnownToBeAPowerOfTwo(N1)) { 2976 SDValue LogBase2 = BuildLogBase2(N1, DL); 2977 AddToWorklist(LogBase2.getNode()); 2978 2979 EVT ShiftVT = getShiftAmountTy(N0.getValueType()); 2980 SDValue Trunc = DAG.getZExtOrTrunc(LogBase2, DL, ShiftVT); 2981 AddToWorklist(Trunc.getNode()); 2982 return DAG.getNode(ISD::SRL, DL, VT, N0, Trunc); 2983 } 2984 2985 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2 2986 if (N1.getOpcode() == ISD::SHL) { 2987 SDValue N10 = N1.getOperand(0); 2988 if (isConstantOrConstantVector(N10, /*NoOpaques*/ true) && 2989 DAG.isKnownToBeAPowerOfTwo(N10)) { 2990 SDValue LogBase2 = BuildLogBase2(N10, DL); 2991 AddToWorklist(LogBase2.getNode()); 2992 2993 EVT ADDVT = N1.getOperand(1).getValueType(); 2994 SDValue Trunc = DAG.getZExtOrTrunc(LogBase2, DL, ADDVT); 2995 AddToWorklist(Trunc.getNode()); 2996 SDValue Add = DAG.getNode(ISD::ADD, DL, ADDVT, N1.getOperand(1), Trunc); 2997 AddToWorklist(Add.getNode()); 2998 return DAG.getNode(ISD::SRL, DL, VT, N0, Add); 2999 } 3000 } 3001 3002 // fold (udiv x, c) -> alternate 3003 AttributeList Attr = DAG.getMachineFunction().getFunction()->getAttributes(); 3004 if (N1C && !TLI.isIntDivCheap(N->getValueType(0), Attr)) 3005 if (SDValue Op = BuildUDIV(N)) 3006 return Op; 3007 3008 // sdiv, srem -> sdivrem 3009 // If the divisor is constant, then return DIVREM only if isIntDivCheap() is 3010 // true. Otherwise, we break the simplification logic in visitREM(). 3011 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr)) 3012 if (SDValue DivRem = useDivRem(N)) 3013 return DivRem; 3014 3015 return SDValue(); 3016 } 3017 3018 // handles ISD::SREM and ISD::UREM 3019 SDValue DAGCombiner::visitREM(SDNode *N) { 3020 unsigned Opcode = N->getOpcode(); 3021 SDValue N0 = N->getOperand(0); 3022 SDValue N1 = N->getOperand(1); 3023 EVT VT = N->getValueType(0); 3024 bool isSigned = (Opcode == ISD::SREM); 3025 SDLoc DL(N); 3026 3027 // fold (rem c1, c2) -> c1%c2 3028 ConstantSDNode *N0C = isConstOrConstSplat(N0); 3029 ConstantSDNode *N1C = isConstOrConstSplat(N1); 3030 if (N0C && N1C) 3031 if (SDValue Folded = DAG.FoldConstantArithmetic(Opcode, DL, VT, N0C, N1C)) 3032 return Folded; 3033 3034 if (SDValue V = simplifyDivRem(N, DAG)) 3035 return V; 3036 3037 if (SDValue NewSel = foldBinOpIntoSelect(N)) 3038 return NewSel; 3039 3040 if (isSigned) { 3041 // If we know the sign bits of both operands are zero, strength reduce to a 3042 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15 3043 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0)) 3044 return DAG.getNode(ISD::UREM, DL, VT, N0, N1); 3045 } else { 3046 SDValue NegOne = DAG.getAllOnesConstant(DL, VT); 3047 if (DAG.isKnownToBeAPowerOfTwo(N1)) { 3048 // fold (urem x, pow2) -> (and x, pow2-1) 3049 SDValue Add = DAG.getNode(ISD::ADD, DL, VT, N1, NegOne); 3050 AddToWorklist(Add.getNode()); 3051 return DAG.getNode(ISD::AND, DL, VT, N0, Add); 3052 } 3053 if (N1.getOpcode() == ISD::SHL && 3054 DAG.isKnownToBeAPowerOfTwo(N1.getOperand(0))) { 3055 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1)) 3056 SDValue Add = DAG.getNode(ISD::ADD, DL, VT, N1, NegOne); 3057 AddToWorklist(Add.getNode()); 3058 return DAG.getNode(ISD::AND, DL, VT, N0, Add); 3059 } 3060 } 3061 3062 AttributeList Attr = DAG.getMachineFunction().getFunction()->getAttributes(); 3063 3064 // If X/C can be simplified by the division-by-constant logic, lower 3065 // X%C to the equivalent of X-X/C*C. 3066 // To avoid mangling nodes, this simplification requires that the combine() 3067 // call for the speculative DIV must not cause a DIVREM conversion. We guard 3068 // against this by skipping the simplification if isIntDivCheap(). When 3069 // div is not cheap, combine will not return a DIVREM. Regardless, 3070 // checking cheapness here makes sense since the simplification results in 3071 // fatter code. 3072 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap(VT, Attr)) { 3073 unsigned DivOpcode = isSigned ? ISD::SDIV : ISD::UDIV; 3074 SDValue Div = DAG.getNode(DivOpcode, DL, VT, N0, N1); 3075 AddToWorklist(Div.getNode()); 3076 SDValue OptimizedDiv = combine(Div.getNode()); 3077 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) { 3078 assert((OptimizedDiv.getOpcode() != ISD::UDIVREM) && 3079 (OptimizedDiv.getOpcode() != ISD::SDIVREM)); 3080 SDValue Mul = DAG.getNode(ISD::MUL, DL, VT, OptimizedDiv, N1); 3081 SDValue Sub = DAG.getNode(ISD::SUB, DL, VT, N0, Mul); 3082 AddToWorklist(Mul.getNode()); 3083 return Sub; 3084 } 3085 } 3086 3087 // sdiv, srem -> sdivrem 3088 if (SDValue DivRem = useDivRem(N)) 3089 return DivRem.getValue(1); 3090 3091 return SDValue(); 3092 } 3093 3094 SDValue DAGCombiner::visitMULHS(SDNode *N) { 3095 SDValue N0 = N->getOperand(0); 3096 SDValue N1 = N->getOperand(1); 3097 EVT VT = N->getValueType(0); 3098 SDLoc DL(N); 3099 3100 // fold (mulhs x, 0) -> 0 3101 if (isNullConstant(N1)) 3102 return N1; 3103 // fold (mulhs x, 1) -> (sra x, size(x)-1) 3104 if (isOneConstant(N1)) { 3105 SDLoc DL(N); 3106 return DAG.getNode(ISD::SRA, DL, N0.getValueType(), N0, 3107 DAG.getConstant(N0.getValueSizeInBits() - 1, DL, 3108 getShiftAmountTy(N0.getValueType()))); 3109 } 3110 // fold (mulhs x, undef) -> 0 3111 if (N0.isUndef() || N1.isUndef()) 3112 return DAG.getConstant(0, SDLoc(N), VT); 3113 3114 // If the type twice as wide is legal, transform the mulhs to a wider multiply 3115 // plus a shift. 3116 if (VT.isSimple() && !VT.isVector()) { 3117 MVT Simple = VT.getSimpleVT(); 3118 unsigned SimpleSize = Simple.getSizeInBits(); 3119 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); 3120 if (TLI.isOperationLegal(ISD::MUL, NewVT)) { 3121 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0); 3122 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1); 3123 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1); 3124 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1, 3125 DAG.getConstant(SimpleSize, DL, 3126 getShiftAmountTy(N1.getValueType()))); 3127 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1); 3128 } 3129 } 3130 3131 return SDValue(); 3132 } 3133 3134 SDValue DAGCombiner::visitMULHU(SDNode *N) { 3135 SDValue N0 = N->getOperand(0); 3136 SDValue N1 = N->getOperand(1); 3137 EVT VT = N->getValueType(0); 3138 SDLoc DL(N); 3139 3140 // fold (mulhu x, 0) -> 0 3141 if (isNullConstant(N1)) 3142 return N1; 3143 // fold (mulhu x, 1) -> 0 3144 if (isOneConstant(N1)) 3145 return DAG.getConstant(0, DL, N0.getValueType()); 3146 // fold (mulhu x, undef) -> 0 3147 if (N0.isUndef() || N1.isUndef()) 3148 return DAG.getConstant(0, DL, VT); 3149 3150 // If the type twice as wide is legal, transform the mulhu to a wider multiply 3151 // plus a shift. 3152 if (VT.isSimple() && !VT.isVector()) { 3153 MVT Simple = VT.getSimpleVT(); 3154 unsigned SimpleSize = Simple.getSizeInBits(); 3155 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); 3156 if (TLI.isOperationLegal(ISD::MUL, NewVT)) { 3157 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0); 3158 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1); 3159 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1); 3160 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1, 3161 DAG.getConstant(SimpleSize, DL, 3162 getShiftAmountTy(N1.getValueType()))); 3163 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1); 3164 } 3165 } 3166 3167 return SDValue(); 3168 } 3169 3170 /// Perform optimizations common to nodes that compute two values. LoOp and HiOp 3171 /// give the opcodes for the two computations that are being performed. Return 3172 /// true if a simplification was made. 3173 SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, 3174 unsigned HiOp) { 3175 // If the high half is not needed, just compute the low half. 3176 bool HiExists = N->hasAnyUseOfValue(1); 3177 if (!HiExists && 3178 (!LegalOperations || 3179 TLI.isOperationLegalOrCustom(LoOp, N->getValueType(0)))) { 3180 SDValue Res = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0), N->ops()); 3181 return CombineTo(N, Res, Res); 3182 } 3183 3184 // If the low half is not needed, just compute the high half. 3185 bool LoExists = N->hasAnyUseOfValue(0); 3186 if (!LoExists && 3187 (!LegalOperations || 3188 TLI.isOperationLegal(HiOp, N->getValueType(1)))) { 3189 SDValue Res = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1), N->ops()); 3190 return CombineTo(N, Res, Res); 3191 } 3192 3193 // If both halves are used, return as it is. 3194 if (LoExists && HiExists) 3195 return SDValue(); 3196 3197 // If the two computed results can be simplified separately, separate them. 3198 if (LoExists) { 3199 SDValue Lo = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0), N->ops()); 3200 AddToWorklist(Lo.getNode()); 3201 SDValue LoOpt = combine(Lo.getNode()); 3202 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() && 3203 (!LegalOperations || 3204 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType()))) 3205 return CombineTo(N, LoOpt, LoOpt); 3206 } 3207 3208 if (HiExists) { 3209 SDValue Hi = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1), N->ops()); 3210 AddToWorklist(Hi.getNode()); 3211 SDValue HiOpt = combine(Hi.getNode()); 3212 if (HiOpt.getNode() && HiOpt != Hi && 3213 (!LegalOperations || 3214 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType()))) 3215 return CombineTo(N, HiOpt, HiOpt); 3216 } 3217 3218 return SDValue(); 3219 } 3220 3221 SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) { 3222 if (SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS)) 3223 return Res; 3224 3225 EVT VT = N->getValueType(0); 3226 SDLoc DL(N); 3227 3228 // If the type is twice as wide is legal, transform the mulhu to a wider 3229 // multiply plus a shift. 3230 if (VT.isSimple() && !VT.isVector()) { 3231 MVT Simple = VT.getSimpleVT(); 3232 unsigned SimpleSize = Simple.getSizeInBits(); 3233 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); 3234 if (TLI.isOperationLegal(ISD::MUL, NewVT)) { 3235 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0)); 3236 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1)); 3237 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi); 3238 // Compute the high part as N1. 3239 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo, 3240 DAG.getConstant(SimpleSize, DL, 3241 getShiftAmountTy(Lo.getValueType()))); 3242 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi); 3243 // Compute the low part as N0. 3244 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo); 3245 return CombineTo(N, Lo, Hi); 3246 } 3247 } 3248 3249 return SDValue(); 3250 } 3251 3252 SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) { 3253 if (SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU)) 3254 return Res; 3255 3256 EVT VT = N->getValueType(0); 3257 SDLoc DL(N); 3258 3259 // If the type is twice as wide is legal, transform the mulhu to a wider 3260 // multiply plus a shift. 3261 if (VT.isSimple() && !VT.isVector()) { 3262 MVT Simple = VT.getSimpleVT(); 3263 unsigned SimpleSize = Simple.getSizeInBits(); 3264 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); 3265 if (TLI.isOperationLegal(ISD::MUL, NewVT)) { 3266 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0)); 3267 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1)); 3268 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi); 3269 // Compute the high part as N1. 3270 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo, 3271 DAG.getConstant(SimpleSize, DL, 3272 getShiftAmountTy(Lo.getValueType()))); 3273 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi); 3274 // Compute the low part as N0. 3275 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo); 3276 return CombineTo(N, Lo, Hi); 3277 } 3278 } 3279 3280 return SDValue(); 3281 } 3282 3283 SDValue DAGCombiner::visitSMULO(SDNode *N) { 3284 // (smulo x, 2) -> (saddo x, x) 3285 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1))) 3286 if (C2->getAPIntValue() == 2) 3287 return DAG.getNode(ISD::SADDO, SDLoc(N), N->getVTList(), 3288 N->getOperand(0), N->getOperand(0)); 3289 3290 return SDValue(); 3291 } 3292 3293 SDValue DAGCombiner::visitUMULO(SDNode *N) { 3294 // (umulo x, 2) -> (uaddo x, x) 3295 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1))) 3296 if (C2->getAPIntValue() == 2) 3297 return DAG.getNode(ISD::UADDO, SDLoc(N), N->getVTList(), 3298 N->getOperand(0), N->getOperand(0)); 3299 3300 return SDValue(); 3301 } 3302 3303 SDValue DAGCombiner::visitIMINMAX(SDNode *N) { 3304 SDValue N0 = N->getOperand(0); 3305 SDValue N1 = N->getOperand(1); 3306 EVT VT = N0.getValueType(); 3307 3308 // fold vector ops 3309 if (VT.isVector()) 3310 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 3311 return FoldedVOp; 3312 3313 // fold operation with constant operands. 3314 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 3315 ConstantSDNode *N1C = getAsNonOpaqueConstant(N1); 3316 if (N0C && N1C) 3317 return DAG.FoldConstantArithmetic(N->getOpcode(), SDLoc(N), VT, N0C, N1C); 3318 3319 // canonicalize constant to RHS 3320 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 3321 !DAG.isConstantIntBuildVectorOrConstantInt(N1)) 3322 return DAG.getNode(N->getOpcode(), SDLoc(N), VT, N1, N0); 3323 3324 return SDValue(); 3325 } 3326 3327 /// If this is a binary operator with two operands of the same opcode, try to 3328 /// simplify it. 3329 SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) { 3330 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1); 3331 EVT VT = N0.getValueType(); 3332 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!"); 3333 3334 // Bail early if none of these transforms apply. 3335 if (N0.getNumOperands() == 0) return SDValue(); 3336 3337 // For each of OP in AND/OR/XOR: 3338 // fold (OP (zext x), (zext y)) -> (zext (OP x, y)) 3339 // fold (OP (sext x), (sext y)) -> (sext (OP x, y)) 3340 // fold (OP (aext x), (aext y)) -> (aext (OP x, y)) 3341 // fold (OP (bswap x), (bswap y)) -> (bswap (OP x, y)) 3342 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free) 3343 // 3344 // do not sink logical op inside of a vector extend, since it may combine 3345 // into a vsetcc. 3346 EVT Op0VT = N0.getOperand(0).getValueType(); 3347 if ((N0.getOpcode() == ISD::ZERO_EXTEND || 3348 N0.getOpcode() == ISD::SIGN_EXTEND || 3349 N0.getOpcode() == ISD::BSWAP || 3350 // Avoid infinite looping with PromoteIntBinOp. 3351 (N0.getOpcode() == ISD::ANY_EXTEND && 3352 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) || 3353 (N0.getOpcode() == ISD::TRUNCATE && 3354 (!TLI.isZExtFree(VT, Op0VT) || 3355 !TLI.isTruncateFree(Op0VT, VT)) && 3356 TLI.isTypeLegal(Op0VT))) && 3357 !VT.isVector() && 3358 Op0VT == N1.getOperand(0).getValueType() && 3359 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) { 3360 SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0), 3361 N0.getOperand(0).getValueType(), 3362 N0.getOperand(0), N1.getOperand(0)); 3363 AddToWorklist(ORNode.getNode()); 3364 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, ORNode); 3365 } 3366 3367 // For each of OP in SHL/SRL/SRA/AND... 3368 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z) 3369 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z) 3370 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z) 3371 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL || 3372 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) && 3373 N0.getOperand(1) == N1.getOperand(1)) { 3374 SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0), 3375 N0.getOperand(0).getValueType(), 3376 N0.getOperand(0), N1.getOperand(0)); 3377 AddToWorklist(ORNode.getNode()); 3378 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, 3379 ORNode, N0.getOperand(1)); 3380 } 3381 3382 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B)) 3383 // Only perform this optimization up until type legalization, before 3384 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by 3385 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and 3386 // we don't want to undo this promotion. 3387 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper 3388 // on scalars. 3389 if ((N0.getOpcode() == ISD::BITCAST || 3390 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) && 3391 Level <= AfterLegalizeTypes) { 3392 SDValue In0 = N0.getOperand(0); 3393 SDValue In1 = N1.getOperand(0); 3394 EVT In0Ty = In0.getValueType(); 3395 EVT In1Ty = In1.getValueType(); 3396 SDLoc DL(N); 3397 // If both incoming values are integers, and the original types are the 3398 // same. 3399 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) { 3400 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1); 3401 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op); 3402 AddToWorklist(Op.getNode()); 3403 return BC; 3404 } 3405 } 3406 3407 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value). 3408 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B)) 3409 // If both shuffles use the same mask, and both shuffle within a single 3410 // vector, then it is worthwhile to move the swizzle after the operation. 3411 // The type-legalizer generates this pattern when loading illegal 3412 // vector types from memory. In many cases this allows additional shuffle 3413 // optimizations. 3414 // There are other cases where moving the shuffle after the xor/and/or 3415 // is profitable even if shuffles don't perform a swizzle. 3416 // If both shuffles use the same mask, and both shuffles have the same first 3417 // or second operand, then it might still be profitable to move the shuffle 3418 // after the xor/and/or operation. 3419 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG) { 3420 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0); 3421 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1); 3422 3423 assert(N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType() && 3424 "Inputs to shuffles are not the same type"); 3425 3426 // Check that both shuffles use the same mask. The masks are known to be of 3427 // the same length because the result vector type is the same. 3428 // Check also that shuffles have only one use to avoid introducing extra 3429 // instructions. 3430 if (SVN0->hasOneUse() && SVN1->hasOneUse() && 3431 SVN0->getMask().equals(SVN1->getMask())) { 3432 SDValue ShOp = N0->getOperand(1); 3433 3434 // Don't try to fold this node if it requires introducing a 3435 // build vector of all zeros that might be illegal at this stage. 3436 if (N->getOpcode() == ISD::XOR && !ShOp.isUndef()) { 3437 if (!LegalTypes) 3438 ShOp = DAG.getConstant(0, SDLoc(N), VT); 3439 else 3440 ShOp = SDValue(); 3441 } 3442 3443 // (AND (shuf (A, C), shuf (B, C)) -> shuf (AND (A, B), C) 3444 // (OR (shuf (A, C), shuf (B, C)) -> shuf (OR (A, B), C) 3445 // (XOR (shuf (A, C), shuf (B, C)) -> shuf (XOR (A, B), V_0) 3446 if (N0.getOperand(1) == N1.getOperand(1) && ShOp.getNode()) { 3447 SDValue NewNode = DAG.getNode(N->getOpcode(), SDLoc(N), VT, 3448 N0->getOperand(0), N1->getOperand(0)); 3449 AddToWorklist(NewNode.getNode()); 3450 return DAG.getVectorShuffle(VT, SDLoc(N), NewNode, ShOp, 3451 SVN0->getMask()); 3452 } 3453 3454 // Don't try to fold this node if it requires introducing a 3455 // build vector of all zeros that might be illegal at this stage. 3456 ShOp = N0->getOperand(0); 3457 if (N->getOpcode() == ISD::XOR && !ShOp.isUndef()) { 3458 if (!LegalTypes) 3459 ShOp = DAG.getConstant(0, SDLoc(N), VT); 3460 else 3461 ShOp = SDValue(); 3462 } 3463 3464 // (AND (shuf (C, A), shuf (C, B)) -> shuf (C, AND (A, B)) 3465 // (OR (shuf (C, A), shuf (C, B)) -> shuf (C, OR (A, B)) 3466 // (XOR (shuf (C, A), shuf (C, B)) -> shuf (V_0, XOR (A, B)) 3467 if (N0->getOperand(0) == N1->getOperand(0) && ShOp.getNode()) { 3468 SDValue NewNode = DAG.getNode(N->getOpcode(), SDLoc(N), VT, 3469 N0->getOperand(1), N1->getOperand(1)); 3470 AddToWorklist(NewNode.getNode()); 3471 return DAG.getVectorShuffle(VT, SDLoc(N), ShOp, NewNode, 3472 SVN0->getMask()); 3473 } 3474 } 3475 } 3476 3477 return SDValue(); 3478 } 3479 3480 /// Try to make (and/or setcc (LL, LR), setcc (RL, RR)) more efficient. 3481 SDValue DAGCombiner::foldLogicOfSetCCs(bool IsAnd, SDValue N0, SDValue N1, 3482 const SDLoc &DL) { 3483 SDValue LL, LR, RL, RR, N0CC, N1CC; 3484 if (!isSetCCEquivalent(N0, LL, LR, N0CC) || 3485 !isSetCCEquivalent(N1, RL, RR, N1CC)) 3486 return SDValue(); 3487 3488 assert(N0.getValueType() == N1.getValueType() && 3489 "Unexpected operand types for bitwise logic op"); 3490 assert(LL.getValueType() == LR.getValueType() && 3491 RL.getValueType() == RR.getValueType() && 3492 "Unexpected operand types for setcc"); 3493 3494 // If we're here post-legalization or the logic op type is not i1, the logic 3495 // op type must match a setcc result type. Also, all folds require new 3496 // operations on the left and right operands, so those types must match. 3497 EVT VT = N0.getValueType(); 3498 EVT OpVT = LL.getValueType(); 3499 if (LegalOperations || VT != MVT::i1) 3500 if (VT != getSetCCResultType(OpVT)) 3501 return SDValue(); 3502 if (OpVT != RL.getValueType()) 3503 return SDValue(); 3504 3505 ISD::CondCode CC0 = cast<CondCodeSDNode>(N0CC)->get(); 3506 ISD::CondCode CC1 = cast<CondCodeSDNode>(N1CC)->get(); 3507 bool IsInteger = OpVT.isInteger(); 3508 if (LR == RR && CC0 == CC1 && IsInteger) { 3509 bool IsZero = isNullConstantOrNullSplatConstant(LR); 3510 bool IsNeg1 = isAllOnesConstantOrAllOnesSplatConstant(LR); 3511 3512 // All bits clear? 3513 bool AndEqZero = IsAnd && CC1 == ISD::SETEQ && IsZero; 3514 // All sign bits clear? 3515 bool AndGtNeg1 = IsAnd && CC1 == ISD::SETGT && IsNeg1; 3516 // Any bits set? 3517 bool OrNeZero = !IsAnd && CC1 == ISD::SETNE && IsZero; 3518 // Any sign bits set? 3519 bool OrLtZero = !IsAnd && CC1 == ISD::SETLT && IsZero; 3520 3521 // (and (seteq X, 0), (seteq Y, 0)) --> (seteq (or X, Y), 0) 3522 // (and (setgt X, -1), (setgt Y, -1)) --> (setgt (or X, Y), -1) 3523 // (or (setne X, 0), (setne Y, 0)) --> (setne (or X, Y), 0) 3524 // (or (setlt X, 0), (setlt Y, 0)) --> (setlt (or X, Y), 0) 3525 if (AndEqZero || AndGtNeg1 || OrNeZero || OrLtZero) { 3526 SDValue Or = DAG.getNode(ISD::OR, SDLoc(N0), OpVT, LL, RL); 3527 AddToWorklist(Or.getNode()); 3528 return DAG.getSetCC(DL, VT, Or, LR, CC1); 3529 } 3530 3531 // All bits set? 3532 bool AndEqNeg1 = IsAnd && CC1 == ISD::SETEQ && IsNeg1; 3533 // All sign bits set? 3534 bool AndLtZero = IsAnd && CC1 == ISD::SETLT && IsZero; 3535 // Any bits clear? 3536 bool OrNeNeg1 = !IsAnd && CC1 == ISD::SETNE && IsNeg1; 3537 // Any sign bits clear? 3538 bool OrGtNeg1 = !IsAnd && CC1 == ISD::SETGT && IsNeg1; 3539 3540 // (and (seteq X, -1), (seteq Y, -1)) --> (seteq (and X, Y), -1) 3541 // (and (setlt X, 0), (setlt Y, 0)) --> (setlt (and X, Y), 0) 3542 // (or (setne X, -1), (setne Y, -1)) --> (setne (and X, Y), -1) 3543 // (or (setgt X, -1), (setgt Y -1)) --> (setgt (and X, Y), -1) 3544 if (AndEqNeg1 || AndLtZero || OrNeNeg1 || OrGtNeg1) { 3545 SDValue And = DAG.getNode(ISD::AND, SDLoc(N0), OpVT, LL, RL); 3546 AddToWorklist(And.getNode()); 3547 return DAG.getSetCC(DL, VT, And, LR, CC1); 3548 } 3549 } 3550 3551 // TODO: What is the 'or' equivalent of this fold? 3552 // (and (setne X, 0), (setne X, -1)) --> (setuge (add X, 1), 2) 3553 if (IsAnd && LL == RL && CC0 == CC1 && IsInteger && CC0 == ISD::SETNE && 3554 ((isNullConstant(LR) && isAllOnesConstant(RR)) || 3555 (isAllOnesConstant(LR) && isNullConstant(RR)))) { 3556 SDValue One = DAG.getConstant(1, DL, OpVT); 3557 SDValue Two = DAG.getConstant(2, DL, OpVT); 3558 SDValue Add = DAG.getNode(ISD::ADD, SDLoc(N0), OpVT, LL, One); 3559 AddToWorklist(Add.getNode()); 3560 return DAG.getSetCC(DL, VT, Add, Two, ISD::SETUGE); 3561 } 3562 3563 // Try more general transforms if the predicates match and the only user of 3564 // the compares is the 'and' or 'or'. 3565 if (IsInteger && TLI.convertSetCCLogicToBitwiseLogic(OpVT) && CC0 == CC1 && 3566 N0.hasOneUse() && N1.hasOneUse()) { 3567 // and (seteq A, B), (seteq C, D) --> seteq (or (xor A, B), (xor C, D)), 0 3568 // or (setne A, B), (setne C, D) --> setne (or (xor A, B), (xor C, D)), 0 3569 if ((IsAnd && CC1 == ISD::SETEQ) || (!IsAnd && CC1 == ISD::SETNE)) { 3570 SDValue XorL = DAG.getNode(ISD::XOR, SDLoc(N0), OpVT, LL, LR); 3571 SDValue XorR = DAG.getNode(ISD::XOR, SDLoc(N1), OpVT, RL, RR); 3572 SDValue Or = DAG.getNode(ISD::OR, DL, OpVT, XorL, XorR); 3573 SDValue Zero = DAG.getConstant(0, DL, OpVT); 3574 return DAG.getSetCC(DL, VT, Or, Zero, CC1); 3575 } 3576 } 3577 3578 // Canonicalize equivalent operands to LL == RL. 3579 if (LL == RR && LR == RL) { 3580 CC1 = ISD::getSetCCSwappedOperands(CC1); 3581 std::swap(RL, RR); 3582 } 3583 3584 // (and (setcc X, Y, CC0), (setcc X, Y, CC1)) --> (setcc X, Y, NewCC) 3585 // (or (setcc X, Y, CC0), (setcc X, Y, CC1)) --> (setcc X, Y, NewCC) 3586 if (LL == RL && LR == RR) { 3587 ISD::CondCode NewCC = IsAnd ? ISD::getSetCCAndOperation(CC0, CC1, IsInteger) 3588 : ISD::getSetCCOrOperation(CC0, CC1, IsInteger); 3589 if (NewCC != ISD::SETCC_INVALID && 3590 (!LegalOperations || 3591 (TLI.isCondCodeLegal(NewCC, LL.getSimpleValueType()) && 3592 TLI.isOperationLegal(ISD::SETCC, OpVT)))) 3593 return DAG.getSetCC(DL, VT, LL, LR, NewCC); 3594 } 3595 3596 return SDValue(); 3597 } 3598 3599 /// This contains all DAGCombine rules which reduce two values combined by 3600 /// an And operation to a single value. This makes them reusable in the context 3601 /// of visitSELECT(). Rules involving constants are not included as 3602 /// visitSELECT() already handles those cases. 3603 SDValue DAGCombiner::visitANDLike(SDValue N0, SDValue N1, SDNode *N) { 3604 EVT VT = N1.getValueType(); 3605 SDLoc DL(N); 3606 3607 // fold (and x, undef) -> 0 3608 if (N0.isUndef() || N1.isUndef()) 3609 return DAG.getConstant(0, DL, VT); 3610 3611 if (SDValue V = foldLogicOfSetCCs(true, N0, N1, DL)) 3612 return V; 3613 3614 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL && 3615 VT.getSizeInBits() <= 64) { 3616 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 3617 APInt ADDC = ADDI->getAPIntValue(); 3618 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) { 3619 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal 3620 // immediate for an add, but it is legal if its top c2 bits are set, 3621 // transform the ADD so the immediate doesn't need to be materialized 3622 // in a register. 3623 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) { 3624 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(), 3625 SRLI->getZExtValue()); 3626 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) { 3627 ADDC |= Mask; 3628 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) { 3629 SDLoc DL0(N0); 3630 SDValue NewAdd = 3631 DAG.getNode(ISD::ADD, DL0, VT, 3632 N0.getOperand(0), DAG.getConstant(ADDC, DL, VT)); 3633 CombineTo(N0.getNode(), NewAdd); 3634 // Return N so it doesn't get rechecked! 3635 return SDValue(N, 0); 3636 } 3637 } 3638 } 3639 } 3640 } 3641 } 3642 3643 // Reduce bit extract of low half of an integer to the narrower type. 3644 // (and (srl i64:x, K), KMask) -> 3645 // (i64 zero_extend (and (srl (i32 (trunc i64:x)), K)), KMask) 3646 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) { 3647 if (ConstantSDNode *CAnd = dyn_cast<ConstantSDNode>(N1)) { 3648 if (ConstantSDNode *CShift = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 3649 unsigned Size = VT.getSizeInBits(); 3650 const APInt &AndMask = CAnd->getAPIntValue(); 3651 unsigned ShiftBits = CShift->getZExtValue(); 3652 3653 // Bail out, this node will probably disappear anyway. 3654 if (ShiftBits == 0) 3655 return SDValue(); 3656 3657 unsigned MaskBits = AndMask.countTrailingOnes(); 3658 EVT HalfVT = EVT::getIntegerVT(*DAG.getContext(), Size / 2); 3659 3660 if (AndMask.isMask() && 3661 // Required bits must not span the two halves of the integer and 3662 // must fit in the half size type. 3663 (ShiftBits + MaskBits <= Size / 2) && 3664 TLI.isNarrowingProfitable(VT, HalfVT) && 3665 TLI.isTypeDesirableForOp(ISD::AND, HalfVT) && 3666 TLI.isTypeDesirableForOp(ISD::SRL, HalfVT) && 3667 TLI.isTruncateFree(VT, HalfVT) && 3668 TLI.isZExtFree(HalfVT, VT)) { 3669 // The isNarrowingProfitable is to avoid regressions on PPC and 3670 // AArch64 which match a few 64-bit bit insert / bit extract patterns 3671 // on downstream users of this. Those patterns could probably be 3672 // extended to handle extensions mixed in. 3673 3674 SDValue SL(N0); 3675 assert(MaskBits <= Size); 3676 3677 // Extracting the highest bit of the low half. 3678 EVT ShiftVT = TLI.getShiftAmountTy(HalfVT, DAG.getDataLayout()); 3679 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SL, HalfVT, 3680 N0.getOperand(0)); 3681 3682 SDValue NewMask = DAG.getConstant(AndMask.trunc(Size / 2), SL, HalfVT); 3683 SDValue ShiftK = DAG.getConstant(ShiftBits, SL, ShiftVT); 3684 SDValue Shift = DAG.getNode(ISD::SRL, SL, HalfVT, Trunc, ShiftK); 3685 SDValue And = DAG.getNode(ISD::AND, SL, HalfVT, Shift, NewMask); 3686 return DAG.getNode(ISD::ZERO_EXTEND, SL, VT, And); 3687 } 3688 } 3689 } 3690 } 3691 3692 return SDValue(); 3693 } 3694 3695 bool DAGCombiner::isAndLoadExtLoad(ConstantSDNode *AndC, LoadSDNode *LoadN, 3696 EVT LoadResultTy, EVT &ExtVT, EVT &LoadedVT, 3697 bool &NarrowLoad) { 3698 if (!AndC->getAPIntValue().isMask()) 3699 return false; 3700 3701 unsigned ActiveBits = AndC->getAPIntValue().countTrailingOnes(); 3702 3703 ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits); 3704 LoadedVT = LoadN->getMemoryVT(); 3705 3706 if (ExtVT == LoadedVT && 3707 (!LegalOperations || 3708 TLI.isLoadExtLegal(ISD::ZEXTLOAD, LoadResultTy, ExtVT))) { 3709 // ZEXTLOAD will match without needing to change the size of the value being 3710 // loaded. 3711 NarrowLoad = false; 3712 return true; 3713 } 3714 3715 // Do not change the width of a volatile load. 3716 if (LoadN->isVolatile()) 3717 return false; 3718 3719 // Do not generate loads of non-round integer types since these can 3720 // be expensive (and would be wrong if the type is not byte sized). 3721 if (!LoadedVT.bitsGT(ExtVT) || !ExtVT.isRound()) 3722 return false; 3723 3724 if (LegalOperations && 3725 !TLI.isLoadExtLegal(ISD::ZEXTLOAD, LoadResultTy, ExtVT)) 3726 return false; 3727 3728 if (!TLI.shouldReduceLoadWidth(LoadN, ISD::ZEXTLOAD, ExtVT)) 3729 return false; 3730 3731 NarrowLoad = true; 3732 return true; 3733 } 3734 3735 SDValue DAGCombiner::visitAND(SDNode *N) { 3736 SDValue N0 = N->getOperand(0); 3737 SDValue N1 = N->getOperand(1); 3738 EVT VT = N1.getValueType(); 3739 3740 // x & x --> x 3741 if (N0 == N1) 3742 return N0; 3743 3744 // fold vector ops 3745 if (VT.isVector()) { 3746 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 3747 return FoldedVOp; 3748 3749 // fold (and x, 0) -> 0, vector edition 3750 if (ISD::isBuildVectorAllZeros(N0.getNode())) 3751 // do not return N0, because undef node may exist in N0 3752 return DAG.getConstant(APInt::getNullValue(N0.getScalarValueSizeInBits()), 3753 SDLoc(N), N0.getValueType()); 3754 if (ISD::isBuildVectorAllZeros(N1.getNode())) 3755 // do not return N1, because undef node may exist in N1 3756 return DAG.getConstant(APInt::getNullValue(N1.getScalarValueSizeInBits()), 3757 SDLoc(N), N1.getValueType()); 3758 3759 // fold (and x, -1) -> x, vector edition 3760 if (ISD::isBuildVectorAllOnes(N0.getNode())) 3761 return N1; 3762 if (ISD::isBuildVectorAllOnes(N1.getNode())) 3763 return N0; 3764 } 3765 3766 // fold (and c1, c2) -> c1&c2 3767 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 3768 ConstantSDNode *N1C = isConstOrConstSplat(N1); 3769 if (N0C && N1C && !N1C->isOpaque()) 3770 return DAG.FoldConstantArithmetic(ISD::AND, SDLoc(N), VT, N0C, N1C); 3771 // canonicalize constant to RHS 3772 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 3773 !DAG.isConstantIntBuildVectorOrConstantInt(N1)) 3774 return DAG.getNode(ISD::AND, SDLoc(N), VT, N1, N0); 3775 // fold (and x, -1) -> x 3776 if (isAllOnesConstant(N1)) 3777 return N0; 3778 // if (and x, c) is known to be zero, return 0 3779 unsigned BitWidth = VT.getScalarSizeInBits(); 3780 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0), 3781 APInt::getAllOnesValue(BitWidth))) 3782 return DAG.getConstant(0, SDLoc(N), VT); 3783 3784 if (SDValue NewSel = foldBinOpIntoSelect(N)) 3785 return NewSel; 3786 3787 // reassociate and 3788 if (SDValue RAND = ReassociateOps(ISD::AND, SDLoc(N), N0, N1)) 3789 return RAND; 3790 // fold (and (or x, C), D) -> D if (C & D) == D 3791 if (N1C && N0.getOpcode() == ISD::OR) 3792 if (ConstantSDNode *ORI = isConstOrConstSplat(N0.getOperand(1))) 3793 if (N1C->getAPIntValue().isSubsetOf(ORI->getAPIntValue())) 3794 return N1; 3795 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits. 3796 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) { 3797 SDValue N0Op0 = N0.getOperand(0); 3798 APInt Mask = ~N1C->getAPIntValue(); 3799 Mask = Mask.trunc(N0Op0.getScalarValueSizeInBits()); 3800 if (DAG.MaskedValueIsZero(N0Op0, Mask)) { 3801 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), 3802 N0.getValueType(), N0Op0); 3803 3804 // Replace uses of the AND with uses of the Zero extend node. 3805 CombineTo(N, Zext); 3806 3807 // We actually want to replace all uses of the any_extend with the 3808 // zero_extend, to avoid duplicating things. This will later cause this 3809 // AND to be folded. 3810 CombineTo(N0.getNode(), Zext); 3811 return SDValue(N, 0); // Return N so it doesn't get rechecked! 3812 } 3813 } 3814 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) -> 3815 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must 3816 // already be zero by virtue of the width of the base type of the load. 3817 // 3818 // the 'X' node here can either be nothing or an extract_vector_elt to catch 3819 // more cases. 3820 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT && 3821 N0.getValueSizeInBits() == N0.getOperand(0).getScalarValueSizeInBits() && 3822 N0.getOperand(0).getOpcode() == ISD::LOAD && 3823 N0.getOperand(0).getResNo() == 0) || 3824 (N0.getOpcode() == ISD::LOAD && N0.getResNo() == 0)) { 3825 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ? 3826 N0 : N0.getOperand(0) ); 3827 3828 // Get the constant (if applicable) the zero'th operand is being ANDed with. 3829 // This can be a pure constant or a vector splat, in which case we treat the 3830 // vector as a scalar and use the splat value. 3831 APInt Constant = APInt::getNullValue(1); 3832 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) { 3833 Constant = C->getAPIntValue(); 3834 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) { 3835 APInt SplatValue, SplatUndef; 3836 unsigned SplatBitSize; 3837 bool HasAnyUndefs; 3838 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef, 3839 SplatBitSize, HasAnyUndefs); 3840 if (IsSplat) { 3841 // Undef bits can contribute to a possible optimisation if set, so 3842 // set them. 3843 SplatValue |= SplatUndef; 3844 3845 // The splat value may be something like "0x00FFFFFF", which means 0 for 3846 // the first vector value and FF for the rest, repeating. We need a mask 3847 // that will apply equally to all members of the vector, so AND all the 3848 // lanes of the constant together. 3849 EVT VT = Vector->getValueType(0); 3850 unsigned BitWidth = VT.getScalarSizeInBits(); 3851 3852 // If the splat value has been compressed to a bitlength lower 3853 // than the size of the vector lane, we need to re-expand it to 3854 // the lane size. 3855 if (BitWidth > SplatBitSize) 3856 for (SplatValue = SplatValue.zextOrTrunc(BitWidth); 3857 SplatBitSize < BitWidth; 3858 SplatBitSize = SplatBitSize * 2) 3859 SplatValue |= SplatValue.shl(SplatBitSize); 3860 3861 // Make sure that variable 'Constant' is only set if 'SplatBitSize' is a 3862 // multiple of 'BitWidth'. Otherwise, we could propagate a wrong value. 3863 if (SplatBitSize % BitWidth == 0) { 3864 Constant = APInt::getAllOnesValue(BitWidth); 3865 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i) 3866 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth); 3867 } 3868 } 3869 } 3870 3871 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is 3872 // actually legal and isn't going to get expanded, else this is a false 3873 // optimisation. 3874 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD, 3875 Load->getValueType(0), 3876 Load->getMemoryVT()); 3877 3878 // Resize the constant to the same size as the original memory access before 3879 // extension. If it is still the AllOnesValue then this AND is completely 3880 // unneeded. 3881 Constant = Constant.zextOrTrunc(Load->getMemoryVT().getScalarSizeInBits()); 3882 3883 bool B; 3884 switch (Load->getExtensionType()) { 3885 default: B = false; break; 3886 case ISD::EXTLOAD: B = CanZextLoadProfitably; break; 3887 case ISD::ZEXTLOAD: 3888 case ISD::NON_EXTLOAD: B = true; break; 3889 } 3890 3891 if (B && Constant.isAllOnesValue()) { 3892 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to 3893 // preserve semantics once we get rid of the AND. 3894 SDValue NewLoad(Load, 0); 3895 3896 // Fold the AND away. NewLoad may get replaced immediately. 3897 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0); 3898 3899 if (Load->getExtensionType() == ISD::EXTLOAD) { 3900 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD, 3901 Load->getValueType(0), SDLoc(Load), 3902 Load->getChain(), Load->getBasePtr(), 3903 Load->getOffset(), Load->getMemoryVT(), 3904 Load->getMemOperand()); 3905 // Replace uses of the EXTLOAD with the new ZEXTLOAD. 3906 if (Load->getNumValues() == 3) { 3907 // PRE/POST_INC loads have 3 values. 3908 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1), 3909 NewLoad.getValue(2) }; 3910 CombineTo(Load, To, 3, true); 3911 } else { 3912 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1)); 3913 } 3914 } 3915 3916 return SDValue(N, 0); // Return N so it doesn't get rechecked! 3917 } 3918 } 3919 3920 // fold (and (load x), 255) -> (zextload x, i8) 3921 // fold (and (extload x, i16), 255) -> (zextload x, i8) 3922 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8) 3923 if (!VT.isVector() && N1C && (N0.getOpcode() == ISD::LOAD || 3924 (N0.getOpcode() == ISD::ANY_EXTEND && 3925 N0.getOperand(0).getOpcode() == ISD::LOAD))) { 3926 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND; 3927 LoadSDNode *LN0 = HasAnyExt 3928 ? cast<LoadSDNode>(N0.getOperand(0)) 3929 : cast<LoadSDNode>(N0); 3930 if (LN0->getExtensionType() != ISD::SEXTLOAD && 3931 LN0->isUnindexed() && N0.hasOneUse() && SDValue(LN0, 0).hasOneUse()) { 3932 auto NarrowLoad = false; 3933 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT; 3934 EVT ExtVT, LoadedVT; 3935 if (isAndLoadExtLoad(N1C, LN0, LoadResultTy, ExtVT, LoadedVT, 3936 NarrowLoad)) { 3937 if (!NarrowLoad) { 3938 SDValue NewLoad = 3939 DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy, 3940 LN0->getChain(), LN0->getBasePtr(), ExtVT, 3941 LN0->getMemOperand()); 3942 AddToWorklist(N); 3943 CombineTo(LN0, NewLoad, NewLoad.getValue(1)); 3944 return SDValue(N, 0); // Return N so it doesn't get rechecked! 3945 } else { 3946 EVT PtrType = LN0->getOperand(1).getValueType(); 3947 3948 unsigned Alignment = LN0->getAlignment(); 3949 SDValue NewPtr = LN0->getBasePtr(); 3950 3951 // For big endian targets, we need to add an offset to the pointer 3952 // to load the correct bytes. For little endian systems, we merely 3953 // need to read fewer bytes from the same pointer. 3954 if (DAG.getDataLayout().isBigEndian()) { 3955 unsigned LVTStoreBytes = LoadedVT.getStoreSize(); 3956 unsigned EVTStoreBytes = ExtVT.getStoreSize(); 3957 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes; 3958 SDLoc DL(LN0); 3959 NewPtr = DAG.getNode(ISD::ADD, DL, PtrType, 3960 NewPtr, DAG.getConstant(PtrOff, DL, PtrType)); 3961 Alignment = MinAlign(Alignment, PtrOff); 3962 } 3963 3964 AddToWorklist(NewPtr.getNode()); 3965 3966 SDValue Load = DAG.getExtLoad( 3967 ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy, LN0->getChain(), NewPtr, 3968 LN0->getPointerInfo(), ExtVT, Alignment, 3969 LN0->getMemOperand()->getFlags(), LN0->getAAInfo()); 3970 AddToWorklist(N); 3971 CombineTo(LN0, Load, Load.getValue(1)); 3972 return SDValue(N, 0); // Return N so it doesn't get rechecked! 3973 } 3974 } 3975 } 3976 } 3977 3978 if (SDValue Combined = visitANDLike(N0, N1, N)) 3979 return Combined; 3980 3981 // Simplify: (and (op x...), (op y...)) -> (op (and x, y)) 3982 if (N0.getOpcode() == N1.getOpcode()) 3983 if (SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N)) 3984 return Tmp; 3985 3986 // Masking the negated extension of a boolean is just the zero-extended 3987 // boolean: 3988 // and (sub 0, zext(bool X)), 1 --> zext(bool X) 3989 // and (sub 0, sext(bool X)), 1 --> zext(bool X) 3990 // 3991 // Note: the SimplifyDemandedBits fold below can make an information-losing 3992 // transform, and then we have no way to find this better fold. 3993 if (N1C && N1C->isOne() && N0.getOpcode() == ISD::SUB) { 3994 if (isNullConstantOrNullSplatConstant(N0.getOperand(0))) { 3995 SDValue SubRHS = N0.getOperand(1); 3996 if (SubRHS.getOpcode() == ISD::ZERO_EXTEND && 3997 SubRHS.getOperand(0).getScalarValueSizeInBits() == 1) 3998 return SubRHS; 3999 if (SubRHS.getOpcode() == ISD::SIGN_EXTEND && 4000 SubRHS.getOperand(0).getScalarValueSizeInBits() == 1) 4001 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, SubRHS.getOperand(0)); 4002 } 4003 } 4004 4005 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1) 4006 // fold (and (sra)) -> (and (srl)) when possible. 4007 if (SimplifyDemandedBits(SDValue(N, 0))) 4008 return SDValue(N, 0); 4009 4010 // fold (zext_inreg (extload x)) -> (zextload x) 4011 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) { 4012 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 4013 EVT MemVT = LN0->getMemoryVT(); 4014 // If we zero all the possible extended bits, then we can turn this into 4015 // a zextload if we are running before legalize or the operation is legal. 4016 unsigned BitWidth = N1.getScalarValueSizeInBits(); 4017 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth, 4018 BitWidth - MemVT.getScalarSizeInBits())) && 4019 ((!LegalOperations && !LN0->isVolatile()) || 4020 TLI.isLoadExtLegal(ISD::ZEXTLOAD, VT, MemVT))) { 4021 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT, 4022 LN0->getChain(), LN0->getBasePtr(), 4023 MemVT, LN0->getMemOperand()); 4024 AddToWorklist(N); 4025 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); 4026 return SDValue(N, 0); // Return N so it doesn't get rechecked! 4027 } 4028 } 4029 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use 4030 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && 4031 N0.hasOneUse()) { 4032 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 4033 EVT MemVT = LN0->getMemoryVT(); 4034 // If we zero all the possible extended bits, then we can turn this into 4035 // a zextload if we are running before legalize or the operation is legal. 4036 unsigned BitWidth = N1.getScalarValueSizeInBits(); 4037 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth, 4038 BitWidth - MemVT.getScalarSizeInBits())) && 4039 ((!LegalOperations && !LN0->isVolatile()) || 4040 TLI.isLoadExtLegal(ISD::ZEXTLOAD, VT, MemVT))) { 4041 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT, 4042 LN0->getChain(), LN0->getBasePtr(), 4043 MemVT, LN0->getMemOperand()); 4044 AddToWorklist(N); 4045 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); 4046 return SDValue(N, 0); // Return N so it doesn't get rechecked! 4047 } 4048 } 4049 // fold (and (or (srl N, 8), (shl N, 8)), 0xffff) -> (srl (bswap N), const) 4050 if (N1C && N1C->getAPIntValue() == 0xffff && N0.getOpcode() == ISD::OR) { 4051 if (SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0), 4052 N0.getOperand(1), false)) 4053 return BSwap; 4054 } 4055 4056 return SDValue(); 4057 } 4058 4059 /// Match (a >> 8) | (a << 8) as (bswap a) >> 16. 4060 SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1, 4061 bool DemandHighBits) { 4062 if (!LegalOperations) 4063 return SDValue(); 4064 4065 EVT VT = N->getValueType(0); 4066 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16) 4067 return SDValue(); 4068 if (!TLI.isOperationLegalOrCustom(ISD::BSWAP, VT)) 4069 return SDValue(); 4070 4071 // Recognize (and (shl a, 8), 0xff00), (and (srl a, 8), 0xff) 4072 bool LookPassAnd0 = false; 4073 bool LookPassAnd1 = false; 4074 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL) 4075 std::swap(N0, N1); 4076 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL) 4077 std::swap(N0, N1); 4078 if (N0.getOpcode() == ISD::AND) { 4079 if (!N0.getNode()->hasOneUse()) 4080 return SDValue(); 4081 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 4082 if (!N01C || N01C->getZExtValue() != 0xFF00) 4083 return SDValue(); 4084 N0 = N0.getOperand(0); 4085 LookPassAnd0 = true; 4086 } 4087 4088 if (N1.getOpcode() == ISD::AND) { 4089 if (!N1.getNode()->hasOneUse()) 4090 return SDValue(); 4091 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); 4092 if (!N11C || N11C->getZExtValue() != 0xFF) 4093 return SDValue(); 4094 N1 = N1.getOperand(0); 4095 LookPassAnd1 = true; 4096 } 4097 4098 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL) 4099 std::swap(N0, N1); 4100 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL) 4101 return SDValue(); 4102 if (!N0.getNode()->hasOneUse() || !N1.getNode()->hasOneUse()) 4103 return SDValue(); 4104 4105 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 4106 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); 4107 if (!N01C || !N11C) 4108 return SDValue(); 4109 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8) 4110 return SDValue(); 4111 4112 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8) 4113 SDValue N00 = N0->getOperand(0); 4114 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) { 4115 if (!N00.getNode()->hasOneUse()) 4116 return SDValue(); 4117 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1)); 4118 if (!N001C || N001C->getZExtValue() != 0xFF) 4119 return SDValue(); 4120 N00 = N00.getOperand(0); 4121 LookPassAnd0 = true; 4122 } 4123 4124 SDValue N10 = N1->getOperand(0); 4125 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) { 4126 if (!N10.getNode()->hasOneUse()) 4127 return SDValue(); 4128 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1)); 4129 if (!N101C || N101C->getZExtValue() != 0xFF00) 4130 return SDValue(); 4131 N10 = N10.getOperand(0); 4132 LookPassAnd1 = true; 4133 } 4134 4135 if (N00 != N10) 4136 return SDValue(); 4137 4138 // Make sure everything beyond the low halfword gets set to zero since the SRL 4139 // 16 will clear the top bits. 4140 unsigned OpSizeInBits = VT.getSizeInBits(); 4141 if (DemandHighBits && OpSizeInBits > 16) { 4142 // If the left-shift isn't masked out then the only way this is a bswap is 4143 // if all bits beyond the low 8 are 0. In that case the entire pattern 4144 // reduces to a left shift anyway: leave it for other parts of the combiner. 4145 if (!LookPassAnd0) 4146 return SDValue(); 4147 4148 // However, if the right shift isn't masked out then it might be because 4149 // it's not needed. See if we can spot that too. 4150 if (!LookPassAnd1 && 4151 !DAG.MaskedValueIsZero( 4152 N10, APInt::getHighBitsSet(OpSizeInBits, OpSizeInBits - 16))) 4153 return SDValue(); 4154 } 4155 4156 SDValue Res = DAG.getNode(ISD::BSWAP, SDLoc(N), VT, N00); 4157 if (OpSizeInBits > 16) { 4158 SDLoc DL(N); 4159 Res = DAG.getNode(ISD::SRL, DL, VT, Res, 4160 DAG.getConstant(OpSizeInBits - 16, DL, 4161 getShiftAmountTy(VT))); 4162 } 4163 return Res; 4164 } 4165 4166 /// Return true if the specified node is an element that makes up a 32-bit 4167 /// packed halfword byteswap. 4168 /// ((x & 0x000000ff) << 8) | 4169 /// ((x & 0x0000ff00) >> 8) | 4170 /// ((x & 0x00ff0000) << 8) | 4171 /// ((x & 0xff000000) >> 8) 4172 static bool isBSwapHWordElement(SDValue N, MutableArrayRef<SDNode *> Parts) { 4173 if (!N.getNode()->hasOneUse()) 4174 return false; 4175 4176 unsigned Opc = N.getOpcode(); 4177 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL) 4178 return false; 4179 4180 SDValue N0 = N.getOperand(0); 4181 unsigned Opc0 = N0.getOpcode(); 4182 if (Opc0 != ISD::AND && Opc0 != ISD::SHL && Opc0 != ISD::SRL) 4183 return false; 4184 4185 ConstantSDNode *N1C = nullptr; 4186 // SHL or SRL: look upstream for AND mask operand 4187 if (Opc == ISD::AND) 4188 N1C = dyn_cast<ConstantSDNode>(N.getOperand(1)); 4189 else if (Opc0 == ISD::AND) 4190 N1C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 4191 if (!N1C) 4192 return false; 4193 4194 unsigned MaskByteOffset; 4195 switch (N1C->getZExtValue()) { 4196 default: 4197 return false; 4198 case 0xFF: MaskByteOffset = 0; break; 4199 case 0xFF00: MaskByteOffset = 1; break; 4200 case 0xFF0000: MaskByteOffset = 2; break; 4201 case 0xFF000000: MaskByteOffset = 3; break; 4202 } 4203 4204 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00). 4205 if (Opc == ISD::AND) { 4206 if (MaskByteOffset == 0 || MaskByteOffset == 2) { 4207 // (x >> 8) & 0xff 4208 // (x >> 8) & 0xff0000 4209 if (Opc0 != ISD::SRL) 4210 return false; 4211 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 4212 if (!C || C->getZExtValue() != 8) 4213 return false; 4214 } else { 4215 // (x << 8) & 0xff00 4216 // (x << 8) & 0xff000000 4217 if (Opc0 != ISD::SHL) 4218 return false; 4219 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 4220 if (!C || C->getZExtValue() != 8) 4221 return false; 4222 } 4223 } else if (Opc == ISD::SHL) { 4224 // (x & 0xff) << 8 4225 // (x & 0xff0000) << 8 4226 if (MaskByteOffset != 0 && MaskByteOffset != 2) 4227 return false; 4228 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1)); 4229 if (!C || C->getZExtValue() != 8) 4230 return false; 4231 } else { // Opc == ISD::SRL 4232 // (x & 0xff00) >> 8 4233 // (x & 0xff000000) >> 8 4234 if (MaskByteOffset != 1 && MaskByteOffset != 3) 4235 return false; 4236 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1)); 4237 if (!C || C->getZExtValue() != 8) 4238 return false; 4239 } 4240 4241 if (Parts[MaskByteOffset]) 4242 return false; 4243 4244 Parts[MaskByteOffset] = N0.getOperand(0).getNode(); 4245 return true; 4246 } 4247 4248 /// Match a 32-bit packed halfword bswap. That is 4249 /// ((x & 0x000000ff) << 8) | 4250 /// ((x & 0x0000ff00) >> 8) | 4251 /// ((x & 0x00ff0000) << 8) | 4252 /// ((x & 0xff000000) >> 8) 4253 /// => (rotl (bswap x), 16) 4254 SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) { 4255 if (!LegalOperations) 4256 return SDValue(); 4257 4258 EVT VT = N->getValueType(0); 4259 if (VT != MVT::i32) 4260 return SDValue(); 4261 if (!TLI.isOperationLegalOrCustom(ISD::BSWAP, VT)) 4262 return SDValue(); 4263 4264 // Look for either 4265 // (or (or (and), (and)), (or (and), (and))) 4266 // (or (or (or (and), (and)), (and)), (and)) 4267 if (N0.getOpcode() != ISD::OR) 4268 return SDValue(); 4269 SDValue N00 = N0.getOperand(0); 4270 SDValue N01 = N0.getOperand(1); 4271 SDNode *Parts[4] = {}; 4272 4273 if (N1.getOpcode() == ISD::OR && 4274 N00.getNumOperands() == 2 && N01.getNumOperands() == 2) { 4275 // (or (or (and), (and)), (or (and), (and))) 4276 if (!isBSwapHWordElement(N00, Parts)) 4277 return SDValue(); 4278 4279 if (!isBSwapHWordElement(N01, Parts)) 4280 return SDValue(); 4281 SDValue N10 = N1.getOperand(0); 4282 if (!isBSwapHWordElement(N10, Parts)) 4283 return SDValue(); 4284 SDValue N11 = N1.getOperand(1); 4285 if (!isBSwapHWordElement(N11, Parts)) 4286 return SDValue(); 4287 } else { 4288 // (or (or (or (and), (and)), (and)), (and)) 4289 if (!isBSwapHWordElement(N1, Parts)) 4290 return SDValue(); 4291 if (!isBSwapHWordElement(N01, Parts)) 4292 return SDValue(); 4293 if (N00.getOpcode() != ISD::OR) 4294 return SDValue(); 4295 SDValue N000 = N00.getOperand(0); 4296 if (!isBSwapHWordElement(N000, Parts)) 4297 return SDValue(); 4298 SDValue N001 = N00.getOperand(1); 4299 if (!isBSwapHWordElement(N001, Parts)) 4300 return SDValue(); 4301 } 4302 4303 // Make sure the parts are all coming from the same node. 4304 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3]) 4305 return SDValue(); 4306 4307 SDLoc DL(N); 4308 SDValue BSwap = DAG.getNode(ISD::BSWAP, DL, VT, 4309 SDValue(Parts[0], 0)); 4310 4311 // Result of the bswap should be rotated by 16. If it's not legal, then 4312 // do (x << 16) | (x >> 16). 4313 SDValue ShAmt = DAG.getConstant(16, DL, getShiftAmountTy(VT)); 4314 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT)) 4315 return DAG.getNode(ISD::ROTL, DL, VT, BSwap, ShAmt); 4316 if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT)) 4317 return DAG.getNode(ISD::ROTR, DL, VT, BSwap, ShAmt); 4318 return DAG.getNode(ISD::OR, DL, VT, 4319 DAG.getNode(ISD::SHL, DL, VT, BSwap, ShAmt), 4320 DAG.getNode(ISD::SRL, DL, VT, BSwap, ShAmt)); 4321 } 4322 4323 /// This contains all DAGCombine rules which reduce two values combined by 4324 /// an Or operation to a single value \see visitANDLike(). 4325 SDValue DAGCombiner::visitORLike(SDValue N0, SDValue N1, SDNode *N) { 4326 EVT VT = N1.getValueType(); 4327 SDLoc DL(N); 4328 4329 // fold (or x, undef) -> -1 4330 if (!LegalOperations && (N0.isUndef() || N1.isUndef())) 4331 return DAG.getAllOnesConstant(DL, VT); 4332 4333 if (SDValue V = foldLogicOfSetCCs(false, N0, N1, DL)) 4334 return V; 4335 4336 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible. 4337 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == ISD::AND && 4338 // Don't increase # computations. 4339 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) { 4340 // We can only do this xform if we know that bits from X that are set in C2 4341 // but not in C1 are already zero. Likewise for Y. 4342 if (const ConstantSDNode *N0O1C = 4343 getAsNonOpaqueConstant(N0.getOperand(1))) { 4344 if (const ConstantSDNode *N1O1C = 4345 getAsNonOpaqueConstant(N1.getOperand(1))) { 4346 // We can only do this xform if we know that bits from X that are set in 4347 // C2 but not in C1 are already zero. Likewise for Y. 4348 const APInt &LHSMask = N0O1C->getAPIntValue(); 4349 const APInt &RHSMask = N1O1C->getAPIntValue(); 4350 4351 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) && 4352 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) { 4353 SDValue X = DAG.getNode(ISD::OR, SDLoc(N0), VT, 4354 N0.getOperand(0), N1.getOperand(0)); 4355 return DAG.getNode(ISD::AND, DL, VT, X, 4356 DAG.getConstant(LHSMask | RHSMask, DL, VT)); 4357 } 4358 } 4359 } 4360 } 4361 4362 // (or (and X, M), (and X, N)) -> (and X, (or M, N)) 4363 if (N0.getOpcode() == ISD::AND && 4364 N1.getOpcode() == ISD::AND && 4365 N0.getOperand(0) == N1.getOperand(0) && 4366 // Don't increase # computations. 4367 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) { 4368 SDValue X = DAG.getNode(ISD::OR, SDLoc(N0), VT, 4369 N0.getOperand(1), N1.getOperand(1)); 4370 return DAG.getNode(ISD::AND, DL, VT, N0.getOperand(0), X); 4371 } 4372 4373 return SDValue(); 4374 } 4375 4376 SDValue DAGCombiner::visitOR(SDNode *N) { 4377 SDValue N0 = N->getOperand(0); 4378 SDValue N1 = N->getOperand(1); 4379 EVT VT = N1.getValueType(); 4380 4381 // x | x --> x 4382 if (N0 == N1) 4383 return N0; 4384 4385 // fold vector ops 4386 if (VT.isVector()) { 4387 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 4388 return FoldedVOp; 4389 4390 // fold (or x, 0) -> x, vector edition 4391 if (ISD::isBuildVectorAllZeros(N0.getNode())) 4392 return N1; 4393 if (ISD::isBuildVectorAllZeros(N1.getNode())) 4394 return N0; 4395 4396 // fold (or x, -1) -> -1, vector edition 4397 if (ISD::isBuildVectorAllOnes(N0.getNode())) 4398 // do not return N0, because undef node may exist in N0 4399 return DAG.getAllOnesConstant(SDLoc(N), N0.getValueType()); 4400 if (ISD::isBuildVectorAllOnes(N1.getNode())) 4401 // do not return N1, because undef node may exist in N1 4402 return DAG.getAllOnesConstant(SDLoc(N), N1.getValueType()); 4403 4404 // fold (or (shuf A, V_0, MA), (shuf B, V_0, MB)) -> (shuf A, B, Mask) 4405 // Do this only if the resulting shuffle is legal. 4406 if (isa<ShuffleVectorSDNode>(N0) && 4407 isa<ShuffleVectorSDNode>(N1) && 4408 // Avoid folding a node with illegal type. 4409 TLI.isTypeLegal(VT)) { 4410 bool ZeroN00 = ISD::isBuildVectorAllZeros(N0.getOperand(0).getNode()); 4411 bool ZeroN01 = ISD::isBuildVectorAllZeros(N0.getOperand(1).getNode()); 4412 bool ZeroN10 = ISD::isBuildVectorAllZeros(N1.getOperand(0).getNode()); 4413 bool ZeroN11 = ISD::isBuildVectorAllZeros(N1.getOperand(1).getNode()); 4414 // Ensure both shuffles have a zero input. 4415 if ((ZeroN00 != ZeroN01) && (ZeroN10 != ZeroN11)) { 4416 assert((!ZeroN00 || !ZeroN01) && "Both inputs zero!"); 4417 assert((!ZeroN10 || !ZeroN11) && "Both inputs zero!"); 4418 const ShuffleVectorSDNode *SV0 = cast<ShuffleVectorSDNode>(N0); 4419 const ShuffleVectorSDNode *SV1 = cast<ShuffleVectorSDNode>(N1); 4420 bool CanFold = true; 4421 int NumElts = VT.getVectorNumElements(); 4422 SmallVector<int, 4> Mask(NumElts); 4423 4424 for (int i = 0; i != NumElts; ++i) { 4425 int M0 = SV0->getMaskElt(i); 4426 int M1 = SV1->getMaskElt(i); 4427 4428 // Determine if either index is pointing to a zero vector. 4429 bool M0Zero = M0 < 0 || (ZeroN00 == (M0 < NumElts)); 4430 bool M1Zero = M1 < 0 || (ZeroN10 == (M1 < NumElts)); 4431 4432 // If one element is zero and the otherside is undef, keep undef. 4433 // This also handles the case that both are undef. 4434 if ((M0Zero && M1 < 0) || (M1Zero && M0 < 0)) { 4435 Mask[i] = -1; 4436 continue; 4437 } 4438 4439 // Make sure only one of the elements is zero. 4440 if (M0Zero == M1Zero) { 4441 CanFold = false; 4442 break; 4443 } 4444 4445 assert((M0 >= 0 || M1 >= 0) && "Undef index!"); 4446 4447 // We have a zero and non-zero element. If the non-zero came from 4448 // SV0 make the index a LHS index. If it came from SV1, make it 4449 // a RHS index. We need to mod by NumElts because we don't care 4450 // which operand it came from in the original shuffles. 4451 Mask[i] = M1Zero ? M0 % NumElts : (M1 % NumElts) + NumElts; 4452 } 4453 4454 if (CanFold) { 4455 SDValue NewLHS = ZeroN00 ? N0.getOperand(1) : N0.getOperand(0); 4456 SDValue NewRHS = ZeroN10 ? N1.getOperand(1) : N1.getOperand(0); 4457 4458 bool LegalMask = TLI.isShuffleMaskLegal(Mask, VT); 4459 if (!LegalMask) { 4460 std::swap(NewLHS, NewRHS); 4461 ShuffleVectorSDNode::commuteMask(Mask); 4462 LegalMask = TLI.isShuffleMaskLegal(Mask, VT); 4463 } 4464 4465 if (LegalMask) 4466 return DAG.getVectorShuffle(VT, SDLoc(N), NewLHS, NewRHS, Mask); 4467 } 4468 } 4469 } 4470 } 4471 4472 // fold (or c1, c2) -> c1|c2 4473 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 4474 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 4475 if (N0C && N1C && !N1C->isOpaque()) 4476 return DAG.FoldConstantArithmetic(ISD::OR, SDLoc(N), VT, N0C, N1C); 4477 // canonicalize constant to RHS 4478 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 4479 !DAG.isConstantIntBuildVectorOrConstantInt(N1)) 4480 return DAG.getNode(ISD::OR, SDLoc(N), VT, N1, N0); 4481 // fold (or x, 0) -> x 4482 if (isNullConstant(N1)) 4483 return N0; 4484 // fold (or x, -1) -> -1 4485 if (isAllOnesConstant(N1)) 4486 return N1; 4487 4488 if (SDValue NewSel = foldBinOpIntoSelect(N)) 4489 return NewSel; 4490 4491 // fold (or x, c) -> c iff (x & ~c) == 0 4492 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue())) 4493 return N1; 4494 4495 if (SDValue Combined = visitORLike(N0, N1, N)) 4496 return Combined; 4497 4498 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16) 4499 if (SDValue BSwap = MatchBSwapHWord(N, N0, N1)) 4500 return BSwap; 4501 if (SDValue BSwap = MatchBSwapHWordLow(N, N0, N1)) 4502 return BSwap; 4503 4504 // reassociate or 4505 if (SDValue ROR = ReassociateOps(ISD::OR, SDLoc(N), N0, N1)) 4506 return ROR; 4507 4508 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2) 4509 // iff (c1 & c2) != 0. 4510 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse()) { 4511 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 4512 if (C1->getAPIntValue().intersects(N1C->getAPIntValue())) { 4513 if (SDValue COR = 4514 DAG.FoldConstantArithmetic(ISD::OR, SDLoc(N1), VT, N1C, C1)) 4515 return DAG.getNode( 4516 ISD::AND, SDLoc(N), VT, 4517 DAG.getNode(ISD::OR, SDLoc(N0), VT, N0.getOperand(0), N1), COR); 4518 return SDValue(); 4519 } 4520 } 4521 } 4522 4523 // Simplify: (or (op x...), (op y...)) -> (op (or x, y)) 4524 if (N0.getOpcode() == N1.getOpcode()) 4525 if (SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N)) 4526 return Tmp; 4527 4528 // See if this is some rotate idiom. 4529 if (SDNode *Rot = MatchRotate(N0, N1, SDLoc(N))) 4530 return SDValue(Rot, 0); 4531 4532 if (SDValue Load = MatchLoadCombine(N)) 4533 return Load; 4534 4535 // Simplify the operands using demanded-bits information. 4536 if (SimplifyDemandedBits(SDValue(N, 0))) 4537 return SDValue(N, 0); 4538 4539 return SDValue(); 4540 } 4541 4542 /// Match "(X shl/srl V1) & V2" where V2 may not be present. 4543 bool DAGCombiner::MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) { 4544 if (Op.getOpcode() == ISD::AND) { 4545 if (DAG.isConstantIntBuildVectorOrConstantInt(Op.getOperand(1))) { 4546 Mask = Op.getOperand(1); 4547 Op = Op.getOperand(0); 4548 } else { 4549 return false; 4550 } 4551 } 4552 4553 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) { 4554 Shift = Op; 4555 return true; 4556 } 4557 4558 return false; 4559 } 4560 4561 // Return true if we can prove that, whenever Neg and Pos are both in the 4562 // range [0, EltSize), Neg == (Pos == 0 ? 0 : EltSize - Pos). This means that 4563 // for two opposing shifts shift1 and shift2 and a value X with OpBits bits: 4564 // 4565 // (or (shift1 X, Neg), (shift2 X, Pos)) 4566 // 4567 // reduces to a rotate in direction shift2 by Pos or (equivalently) a rotate 4568 // in direction shift1 by Neg. The range [0, EltSize) means that we only need 4569 // to consider shift amounts with defined behavior. 4570 static bool matchRotateSub(SDValue Pos, SDValue Neg, unsigned EltSize) { 4571 // If EltSize is a power of 2 then: 4572 // 4573 // (a) (Pos == 0 ? 0 : EltSize - Pos) == (EltSize - Pos) & (EltSize - 1) 4574 // (b) Neg == Neg & (EltSize - 1) whenever Neg is in [0, EltSize). 4575 // 4576 // So if EltSize is a power of 2 and Neg is (and Neg', EltSize-1), we check 4577 // for the stronger condition: 4578 // 4579 // Neg & (EltSize - 1) == (EltSize - Pos) & (EltSize - 1) [A] 4580 // 4581 // for all Neg and Pos. Since Neg & (EltSize - 1) == Neg' & (EltSize - 1) 4582 // we can just replace Neg with Neg' for the rest of the function. 4583 // 4584 // In other cases we check for the even stronger condition: 4585 // 4586 // Neg == EltSize - Pos [B] 4587 // 4588 // for all Neg and Pos. Note that the (or ...) then invokes undefined 4589 // behavior if Pos == 0 (and consequently Neg == EltSize). 4590 // 4591 // We could actually use [A] whenever EltSize is a power of 2, but the 4592 // only extra cases that it would match are those uninteresting ones 4593 // where Neg and Pos are never in range at the same time. E.g. for 4594 // EltSize == 32, using [A] would allow a Neg of the form (sub 64, Pos) 4595 // as well as (sub 32, Pos), but: 4596 // 4597 // (or (shift1 X, (sub 64, Pos)), (shift2 X, Pos)) 4598 // 4599 // always invokes undefined behavior for 32-bit X. 4600 // 4601 // Below, Mask == EltSize - 1 when using [A] and is all-ones otherwise. 4602 unsigned MaskLoBits = 0; 4603 if (Neg.getOpcode() == ISD::AND && isPowerOf2_64(EltSize)) { 4604 if (ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(1))) { 4605 if (NegC->getAPIntValue() == EltSize - 1) { 4606 Neg = Neg.getOperand(0); 4607 MaskLoBits = Log2_64(EltSize); 4608 } 4609 } 4610 } 4611 4612 // Check whether Neg has the form (sub NegC, NegOp1) for some NegC and NegOp1. 4613 if (Neg.getOpcode() != ISD::SUB) 4614 return false; 4615 ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(0)); 4616 if (!NegC) 4617 return false; 4618 SDValue NegOp1 = Neg.getOperand(1); 4619 4620 // On the RHS of [A], if Pos is Pos' & (EltSize - 1), just replace Pos with 4621 // Pos'. The truncation is redundant for the purpose of the equality. 4622 if (MaskLoBits && Pos.getOpcode() == ISD::AND) 4623 if (ConstantSDNode *PosC = isConstOrConstSplat(Pos.getOperand(1))) 4624 if (PosC->getAPIntValue() == EltSize - 1) 4625 Pos = Pos.getOperand(0); 4626 4627 // The condition we need is now: 4628 // 4629 // (NegC - NegOp1) & Mask == (EltSize - Pos) & Mask 4630 // 4631 // If NegOp1 == Pos then we need: 4632 // 4633 // EltSize & Mask == NegC & Mask 4634 // 4635 // (because "x & Mask" is a truncation and distributes through subtraction). 4636 APInt Width; 4637 if (Pos == NegOp1) 4638 Width = NegC->getAPIntValue(); 4639 4640 // Check for cases where Pos has the form (add NegOp1, PosC) for some PosC. 4641 // Then the condition we want to prove becomes: 4642 // 4643 // (NegC - NegOp1) & Mask == (EltSize - (NegOp1 + PosC)) & Mask 4644 // 4645 // which, again because "x & Mask" is a truncation, becomes: 4646 // 4647 // NegC & Mask == (EltSize - PosC) & Mask 4648 // EltSize & Mask == (NegC + PosC) & Mask 4649 else if (Pos.getOpcode() == ISD::ADD && Pos.getOperand(0) == NegOp1) { 4650 if (ConstantSDNode *PosC = isConstOrConstSplat(Pos.getOperand(1))) 4651 Width = PosC->getAPIntValue() + NegC->getAPIntValue(); 4652 else 4653 return false; 4654 } else 4655 return false; 4656 4657 // Now we just need to check that EltSize & Mask == Width & Mask. 4658 if (MaskLoBits) 4659 // EltSize & Mask is 0 since Mask is EltSize - 1. 4660 return Width.getLoBits(MaskLoBits) == 0; 4661 return Width == EltSize; 4662 } 4663 4664 // A subroutine of MatchRotate used once we have found an OR of two opposite 4665 // shifts of Shifted. If Neg == <operand size> - Pos then the OR reduces 4666 // to both (PosOpcode Shifted, Pos) and (NegOpcode Shifted, Neg), with the 4667 // former being preferred if supported. InnerPos and InnerNeg are Pos and 4668 // Neg with outer conversions stripped away. 4669 SDNode *DAGCombiner::MatchRotatePosNeg(SDValue Shifted, SDValue Pos, 4670 SDValue Neg, SDValue InnerPos, 4671 SDValue InnerNeg, unsigned PosOpcode, 4672 unsigned NegOpcode, const SDLoc &DL) { 4673 // fold (or (shl x, (*ext y)), 4674 // (srl x, (*ext (sub 32, y)))) -> 4675 // (rotl x, y) or (rotr x, (sub 32, y)) 4676 // 4677 // fold (or (shl x, (*ext (sub 32, y))), 4678 // (srl x, (*ext y))) -> 4679 // (rotr x, y) or (rotl x, (sub 32, y)) 4680 EVT VT = Shifted.getValueType(); 4681 if (matchRotateSub(InnerPos, InnerNeg, VT.getScalarSizeInBits())) { 4682 bool HasPos = TLI.isOperationLegalOrCustom(PosOpcode, VT); 4683 return DAG.getNode(HasPos ? PosOpcode : NegOpcode, DL, VT, Shifted, 4684 HasPos ? Pos : Neg).getNode(); 4685 } 4686 4687 return nullptr; 4688 } 4689 4690 // MatchRotate - Handle an 'or' of two operands. If this is one of the many 4691 // idioms for rotate, and if the target supports rotation instructions, generate 4692 // a rot[lr]. 4693 SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, const SDLoc &DL) { 4694 // Must be a legal type. Expanded 'n promoted things won't work with rotates. 4695 EVT VT = LHS.getValueType(); 4696 if (!TLI.isTypeLegal(VT)) return nullptr; 4697 4698 // The target must have at least one rotate flavor. 4699 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT); 4700 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT); 4701 if (!HasROTL && !HasROTR) return nullptr; 4702 4703 // Match "(X shl/srl V1) & V2" where V2 may not be present. 4704 SDValue LHSShift; // The shift. 4705 SDValue LHSMask; // AND value if any. 4706 if (!MatchRotateHalf(LHS, LHSShift, LHSMask)) 4707 return nullptr; // Not part of a rotate. 4708 4709 SDValue RHSShift; // The shift. 4710 SDValue RHSMask; // AND value if any. 4711 if (!MatchRotateHalf(RHS, RHSShift, RHSMask)) 4712 return nullptr; // Not part of a rotate. 4713 4714 if (LHSShift.getOperand(0) != RHSShift.getOperand(0)) 4715 return nullptr; // Not shifting the same value. 4716 4717 if (LHSShift.getOpcode() == RHSShift.getOpcode()) 4718 return nullptr; // Shifts must disagree. 4719 4720 // Canonicalize shl to left side in a shl/srl pair. 4721 if (RHSShift.getOpcode() == ISD::SHL) { 4722 std::swap(LHS, RHS); 4723 std::swap(LHSShift, RHSShift); 4724 std::swap(LHSMask, RHSMask); 4725 } 4726 4727 unsigned EltSizeInBits = VT.getScalarSizeInBits(); 4728 SDValue LHSShiftArg = LHSShift.getOperand(0); 4729 SDValue LHSShiftAmt = LHSShift.getOperand(1); 4730 SDValue RHSShiftArg = RHSShift.getOperand(0); 4731 SDValue RHSShiftAmt = RHSShift.getOperand(1); 4732 4733 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1) 4734 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2) 4735 auto MatchRotateSum = [EltSizeInBits](ConstantSDNode *LHS, 4736 ConstantSDNode *RHS) { 4737 return (LHS->getAPIntValue() + RHS->getAPIntValue()) == EltSizeInBits; 4738 }; 4739 if (matchBinaryPredicate(LHSShiftAmt, RHSShiftAmt, MatchRotateSum)) { 4740 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, 4741 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt); 4742 4743 // If there is an AND of either shifted operand, apply it to the result. 4744 if (LHSMask.getNode() || RHSMask.getNode()) { 4745 SDValue AllOnes = DAG.getAllOnesConstant(DL, VT); 4746 SDValue Mask = AllOnes; 4747 4748 if (LHSMask.getNode()) { 4749 SDValue RHSBits = DAG.getNode(ISD::SRL, DL, VT, AllOnes, RHSShiftAmt); 4750 Mask = DAG.getNode(ISD::AND, DL, VT, Mask, 4751 DAG.getNode(ISD::OR, DL, VT, LHSMask, RHSBits)); 4752 } 4753 if (RHSMask.getNode()) { 4754 SDValue LHSBits = DAG.getNode(ISD::SHL, DL, VT, AllOnes, LHSShiftAmt); 4755 Mask = DAG.getNode(ISD::AND, DL, VT, Mask, 4756 DAG.getNode(ISD::OR, DL, VT, RHSMask, LHSBits)); 4757 } 4758 4759 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, Mask); 4760 } 4761 4762 return Rot.getNode(); 4763 } 4764 4765 // If there is a mask here, and we have a variable shift, we can't be sure 4766 // that we're masking out the right stuff. 4767 if (LHSMask.getNode() || RHSMask.getNode()) 4768 return nullptr; 4769 4770 // If the shift amount is sign/zext/any-extended just peel it off. 4771 SDValue LExtOp0 = LHSShiftAmt; 4772 SDValue RExtOp0 = RHSShiftAmt; 4773 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND || 4774 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND || 4775 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND || 4776 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) && 4777 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND || 4778 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND || 4779 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND || 4780 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) { 4781 LExtOp0 = LHSShiftAmt.getOperand(0); 4782 RExtOp0 = RHSShiftAmt.getOperand(0); 4783 } 4784 4785 SDNode *TryL = MatchRotatePosNeg(LHSShiftArg, LHSShiftAmt, RHSShiftAmt, 4786 LExtOp0, RExtOp0, ISD::ROTL, ISD::ROTR, DL); 4787 if (TryL) 4788 return TryL; 4789 4790 SDNode *TryR = MatchRotatePosNeg(RHSShiftArg, RHSShiftAmt, LHSShiftAmt, 4791 RExtOp0, LExtOp0, ISD::ROTR, ISD::ROTL, DL); 4792 if (TryR) 4793 return TryR; 4794 4795 return nullptr; 4796 } 4797 4798 namespace { 4799 4800 /// Represents known origin of an individual byte in load combine pattern. The 4801 /// value of the byte is either constant zero or comes from memory. 4802 struct ByteProvider { 4803 // For constant zero providers Load is set to nullptr. For memory providers 4804 // Load represents the node which loads the byte from memory. 4805 // ByteOffset is the offset of the byte in the value produced by the load. 4806 LoadSDNode *Load = nullptr; 4807 unsigned ByteOffset = 0; 4808 4809 ByteProvider() = default; 4810 4811 static ByteProvider getMemory(LoadSDNode *Load, unsigned ByteOffset) { 4812 return ByteProvider(Load, ByteOffset); 4813 } 4814 4815 static ByteProvider getConstantZero() { return ByteProvider(nullptr, 0); } 4816 4817 bool isConstantZero() const { return !Load; } 4818 bool isMemory() const { return Load; } 4819 4820 bool operator==(const ByteProvider &Other) const { 4821 return Other.Load == Load && Other.ByteOffset == ByteOffset; 4822 } 4823 4824 private: 4825 ByteProvider(LoadSDNode *Load, unsigned ByteOffset) 4826 : Load(Load), ByteOffset(ByteOffset) {} 4827 }; 4828 4829 } // end anonymous namespace 4830 4831 /// Recursively traverses the expression calculating the origin of the requested 4832 /// byte of the given value. Returns None if the provider can't be calculated. 4833 /// 4834 /// For all the values except the root of the expression verifies that the value 4835 /// has exactly one use and if it's not true return None. This way if the origin 4836 /// of the byte is returned it's guaranteed that the values which contribute to 4837 /// the byte are not used outside of this expression. 4838 /// 4839 /// Because the parts of the expression are not allowed to have more than one 4840 /// use this function iterates over trees, not DAGs. So it never visits the same 4841 /// node more than once. 4842 static const Optional<ByteProvider> 4843 calculateByteProvider(SDValue Op, unsigned Index, unsigned Depth, 4844 bool Root = false) { 4845 // Typical i64 by i8 pattern requires recursion up to 8 calls depth 4846 if (Depth == 10) 4847 return None; 4848 4849 if (!Root && !Op.hasOneUse()) 4850 return None; 4851 4852 assert(Op.getValueType().isScalarInteger() && "can't handle other types"); 4853 unsigned BitWidth = Op.getValueSizeInBits(); 4854 if (BitWidth % 8 != 0) 4855 return None; 4856 unsigned ByteWidth = BitWidth / 8; 4857 assert(Index < ByteWidth && "invalid index requested"); 4858 (void) ByteWidth; 4859 4860 switch (Op.getOpcode()) { 4861 case ISD::OR: { 4862 auto LHS = calculateByteProvider(Op->getOperand(0), Index, Depth + 1); 4863 if (!LHS) 4864 return None; 4865 auto RHS = calculateByteProvider(Op->getOperand(1), Index, Depth + 1); 4866 if (!RHS) 4867 return None; 4868 4869 if (LHS->isConstantZero()) 4870 return RHS; 4871 if (RHS->isConstantZero()) 4872 return LHS; 4873 return None; 4874 } 4875 case ISD::SHL: { 4876 auto ShiftOp = dyn_cast<ConstantSDNode>(Op->getOperand(1)); 4877 if (!ShiftOp) 4878 return None; 4879 4880 uint64_t BitShift = ShiftOp->getZExtValue(); 4881 if (BitShift % 8 != 0) 4882 return None; 4883 uint64_t ByteShift = BitShift / 8; 4884 4885 return Index < ByteShift 4886 ? ByteProvider::getConstantZero() 4887 : calculateByteProvider(Op->getOperand(0), Index - ByteShift, 4888 Depth + 1); 4889 } 4890 case ISD::ANY_EXTEND: 4891 case ISD::SIGN_EXTEND: 4892 case ISD::ZERO_EXTEND: { 4893 SDValue NarrowOp = Op->getOperand(0); 4894 unsigned NarrowBitWidth = NarrowOp.getScalarValueSizeInBits(); 4895 if (NarrowBitWidth % 8 != 0) 4896 return None; 4897 uint64_t NarrowByteWidth = NarrowBitWidth / 8; 4898 4899 if (Index >= NarrowByteWidth) 4900 return Op.getOpcode() == ISD::ZERO_EXTEND 4901 ? Optional<ByteProvider>(ByteProvider::getConstantZero()) 4902 : None; 4903 return calculateByteProvider(NarrowOp, Index, Depth + 1); 4904 } 4905 case ISD::BSWAP: 4906 return calculateByteProvider(Op->getOperand(0), ByteWidth - Index - 1, 4907 Depth + 1); 4908 case ISD::LOAD: { 4909 auto L = cast<LoadSDNode>(Op.getNode()); 4910 if (L->isVolatile() || L->isIndexed()) 4911 return None; 4912 4913 unsigned NarrowBitWidth = L->getMemoryVT().getSizeInBits(); 4914 if (NarrowBitWidth % 8 != 0) 4915 return None; 4916 uint64_t NarrowByteWidth = NarrowBitWidth / 8; 4917 4918 if (Index >= NarrowByteWidth) 4919 return L->getExtensionType() == ISD::ZEXTLOAD 4920 ? Optional<ByteProvider>(ByteProvider::getConstantZero()) 4921 : None; 4922 return ByteProvider::getMemory(L, Index); 4923 } 4924 } 4925 4926 return None; 4927 } 4928 4929 /// Match a pattern where a wide type scalar value is loaded by several narrow 4930 /// loads and combined by shifts and ors. Fold it into a single load or a load 4931 /// and a BSWAP if the targets supports it. 4932 /// 4933 /// Assuming little endian target: 4934 /// i8 *a = ... 4935 /// i32 val = a[0] | (a[1] << 8) | (a[2] << 16) | (a[3] << 24) 4936 /// => 4937 /// i32 val = *((i32)a) 4938 /// 4939 /// i8 *a = ... 4940 /// i32 val = (a[0] << 24) | (a[1] << 16) | (a[2] << 8) | a[3] 4941 /// => 4942 /// i32 val = BSWAP(*((i32)a)) 4943 /// 4944 /// TODO: This rule matches complex patterns with OR node roots and doesn't 4945 /// interact well with the worklist mechanism. When a part of the pattern is 4946 /// updated (e.g. one of the loads) its direct users are put into the worklist, 4947 /// but the root node of the pattern which triggers the load combine is not 4948 /// necessarily a direct user of the changed node. For example, once the address 4949 /// of t28 load is reassociated load combine won't be triggered: 4950 /// t25: i32 = add t4, Constant:i32<2> 4951 /// t26: i64 = sign_extend t25 4952 /// t27: i64 = add t2, t26 4953 /// t28: i8,ch = load<LD1[%tmp9]> t0, t27, undef:i64 4954 /// t29: i32 = zero_extend t28 4955 /// t32: i32 = shl t29, Constant:i8<8> 4956 /// t33: i32 = or t23, t32 4957 /// As a possible fix visitLoad can check if the load can be a part of a load 4958 /// combine pattern and add corresponding OR roots to the worklist. 4959 SDValue DAGCombiner::MatchLoadCombine(SDNode *N) { 4960 assert(N->getOpcode() == ISD::OR && 4961 "Can only match load combining against OR nodes"); 4962 4963 // Handles simple types only 4964 EVT VT = N->getValueType(0); 4965 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64) 4966 return SDValue(); 4967 unsigned ByteWidth = VT.getSizeInBits() / 8; 4968 4969 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 4970 // Before legalize we can introduce too wide illegal loads which will be later 4971 // split into legal sized loads. This enables us to combine i64 load by i8 4972 // patterns to a couple of i32 loads on 32 bit targets. 4973 if (LegalOperations && !TLI.isOperationLegal(ISD::LOAD, VT)) 4974 return SDValue(); 4975 4976 std::function<unsigned(unsigned, unsigned)> LittleEndianByteAt = []( 4977 unsigned BW, unsigned i) { return i; }; 4978 std::function<unsigned(unsigned, unsigned)> BigEndianByteAt = []( 4979 unsigned BW, unsigned i) { return BW - i - 1; }; 4980 4981 bool IsBigEndianTarget = DAG.getDataLayout().isBigEndian(); 4982 auto MemoryByteOffset = [&] (ByteProvider P) { 4983 assert(P.isMemory() && "Must be a memory byte provider"); 4984 unsigned LoadBitWidth = P.Load->getMemoryVT().getSizeInBits(); 4985 assert(LoadBitWidth % 8 == 0 && 4986 "can only analyze providers for individual bytes not bit"); 4987 unsigned LoadByteWidth = LoadBitWidth / 8; 4988 return IsBigEndianTarget 4989 ? BigEndianByteAt(LoadByteWidth, P.ByteOffset) 4990 : LittleEndianByteAt(LoadByteWidth, P.ByteOffset); 4991 }; 4992 4993 Optional<BaseIndexOffset> Base; 4994 SDValue Chain; 4995 4996 SmallSet<LoadSDNode *, 8> Loads; 4997 Optional<ByteProvider> FirstByteProvider; 4998 int64_t FirstOffset = INT64_MAX; 4999 5000 // Check if all the bytes of the OR we are looking at are loaded from the same 5001 // base address. Collect bytes offsets from Base address in ByteOffsets. 5002 SmallVector<int64_t, 4> ByteOffsets(ByteWidth); 5003 for (unsigned i = 0; i < ByteWidth; i++) { 5004 auto P = calculateByteProvider(SDValue(N, 0), i, 0, /*Root=*/true); 5005 if (!P || !P->isMemory()) // All the bytes must be loaded from memory 5006 return SDValue(); 5007 5008 LoadSDNode *L = P->Load; 5009 assert(L->hasNUsesOfValue(1, 0) && !L->isVolatile() && !L->isIndexed() && 5010 "Must be enforced by calculateByteProvider"); 5011 assert(L->getOffset().isUndef() && "Unindexed load must have undef offset"); 5012 5013 // All loads must share the same chain 5014 SDValue LChain = L->getChain(); 5015 if (!Chain) 5016 Chain = LChain; 5017 else if (Chain != LChain) 5018 return SDValue(); 5019 5020 // Loads must share the same base address 5021 BaseIndexOffset Ptr = BaseIndexOffset::match(L->getBasePtr(), DAG); 5022 int64_t ByteOffsetFromBase = 0; 5023 if (!Base) 5024 Base = Ptr; 5025 else if (!Base->equalBaseIndex(Ptr, DAG, ByteOffsetFromBase)) 5026 return SDValue(); 5027 5028 // Calculate the offset of the current byte from the base address 5029 ByteOffsetFromBase += MemoryByteOffset(*P); 5030 ByteOffsets[i] = ByteOffsetFromBase; 5031 5032 // Remember the first byte load 5033 if (ByteOffsetFromBase < FirstOffset) { 5034 FirstByteProvider = P; 5035 FirstOffset = ByteOffsetFromBase; 5036 } 5037 5038 Loads.insert(L); 5039 } 5040 assert(!Loads.empty() && "All the bytes of the value must be loaded from " 5041 "memory, so there must be at least one load which produces the value"); 5042 assert(Base && "Base address of the accessed memory location must be set"); 5043 assert(FirstOffset != INT64_MAX && "First byte offset must be set"); 5044 5045 // Check if the bytes of the OR we are looking at match with either big or 5046 // little endian value load 5047 bool BigEndian = true, LittleEndian = true; 5048 for (unsigned i = 0; i < ByteWidth; i++) { 5049 int64_t CurrentByteOffset = ByteOffsets[i] - FirstOffset; 5050 LittleEndian &= CurrentByteOffset == LittleEndianByteAt(ByteWidth, i); 5051 BigEndian &= CurrentByteOffset == BigEndianByteAt(ByteWidth, i); 5052 if (!BigEndian && !LittleEndian) 5053 return SDValue(); 5054 } 5055 assert((BigEndian != LittleEndian) && "should be either or"); 5056 assert(FirstByteProvider && "must be set"); 5057 5058 // Ensure that the first byte is loaded from zero offset of the first load. 5059 // So the combined value can be loaded from the first load address. 5060 if (MemoryByteOffset(*FirstByteProvider) != 0) 5061 return SDValue(); 5062 LoadSDNode *FirstLoad = FirstByteProvider->Load; 5063 5064 // The node we are looking at matches with the pattern, check if we can 5065 // replace it with a single load and bswap if needed. 5066 5067 // If the load needs byte swap check if the target supports it 5068 bool NeedsBswap = IsBigEndianTarget != BigEndian; 5069 5070 // Before legalize we can introduce illegal bswaps which will be later 5071 // converted to an explicit bswap sequence. This way we end up with a single 5072 // load and byte shuffling instead of several loads and byte shuffling. 5073 if (NeedsBswap && LegalOperations && !TLI.isOperationLegal(ISD::BSWAP, VT)) 5074 return SDValue(); 5075 5076 // Check that a load of the wide type is both allowed and fast on the target 5077 bool Fast = false; 5078 bool Allowed = TLI.allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), 5079 VT, FirstLoad->getAddressSpace(), 5080 FirstLoad->getAlignment(), &Fast); 5081 if (!Allowed || !Fast) 5082 return SDValue(); 5083 5084 SDValue NewLoad = 5085 DAG.getLoad(VT, SDLoc(N), Chain, FirstLoad->getBasePtr(), 5086 FirstLoad->getPointerInfo(), FirstLoad->getAlignment()); 5087 5088 // Transfer chain users from old loads to the new load. 5089 for (LoadSDNode *L : Loads) 5090 DAG.ReplaceAllUsesOfValueWith(SDValue(L, 1), SDValue(NewLoad.getNode(), 1)); 5091 5092 return NeedsBswap ? DAG.getNode(ISD::BSWAP, SDLoc(N), VT, NewLoad) : NewLoad; 5093 } 5094 5095 SDValue DAGCombiner::visitXOR(SDNode *N) { 5096 SDValue N0 = N->getOperand(0); 5097 SDValue N1 = N->getOperand(1); 5098 EVT VT = N0.getValueType(); 5099 5100 // fold vector ops 5101 if (VT.isVector()) { 5102 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 5103 return FoldedVOp; 5104 5105 // fold (xor x, 0) -> x, vector edition 5106 if (ISD::isBuildVectorAllZeros(N0.getNode())) 5107 return N1; 5108 if (ISD::isBuildVectorAllZeros(N1.getNode())) 5109 return N0; 5110 } 5111 5112 // fold (xor undef, undef) -> 0. This is a common idiom (misuse). 5113 if (N0.isUndef() && N1.isUndef()) 5114 return DAG.getConstant(0, SDLoc(N), VT); 5115 // fold (xor x, undef) -> undef 5116 if (N0.isUndef()) 5117 return N0; 5118 if (N1.isUndef()) 5119 return N1; 5120 // fold (xor c1, c2) -> c1^c2 5121 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 5122 ConstantSDNode *N1C = getAsNonOpaqueConstant(N1); 5123 if (N0C && N1C) 5124 return DAG.FoldConstantArithmetic(ISD::XOR, SDLoc(N), VT, N0C, N1C); 5125 // canonicalize constant to RHS 5126 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 5127 !DAG.isConstantIntBuildVectorOrConstantInt(N1)) 5128 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0); 5129 // fold (xor x, 0) -> x 5130 if (isNullConstant(N1)) 5131 return N0; 5132 5133 if (SDValue NewSel = foldBinOpIntoSelect(N)) 5134 return NewSel; 5135 5136 // reassociate xor 5137 if (SDValue RXOR = ReassociateOps(ISD::XOR, SDLoc(N), N0, N1)) 5138 return RXOR; 5139 5140 // fold !(x cc y) -> (x !cc y) 5141 SDValue LHS, RHS, CC; 5142 if (TLI.isConstTrueVal(N1.getNode()) && isSetCCEquivalent(N0, LHS, RHS, CC)) { 5143 bool isInt = LHS.getValueType().isInteger(); 5144 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(), 5145 isInt); 5146 5147 if (!LegalOperations || 5148 TLI.isCondCodeLegal(NotCC, LHS.getSimpleValueType())) { 5149 switch (N0.getOpcode()) { 5150 default: 5151 llvm_unreachable("Unhandled SetCC Equivalent!"); 5152 case ISD::SETCC: 5153 return DAG.getSetCC(SDLoc(N0), VT, LHS, RHS, NotCC); 5154 case ISD::SELECT_CC: 5155 return DAG.getSelectCC(SDLoc(N0), LHS, RHS, N0.getOperand(2), 5156 N0.getOperand(3), NotCC); 5157 } 5158 } 5159 } 5160 5161 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y))) 5162 if (isOneConstant(N1) && N0.getOpcode() == ISD::ZERO_EXTEND && 5163 N0.getNode()->hasOneUse() && 5164 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){ 5165 SDValue V = N0.getOperand(0); 5166 SDLoc DL(N0); 5167 V = DAG.getNode(ISD::XOR, DL, V.getValueType(), V, 5168 DAG.getConstant(1, DL, V.getValueType())); 5169 AddToWorklist(V.getNode()); 5170 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, V); 5171 } 5172 5173 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc 5174 if (isOneConstant(N1) && VT == MVT::i1 && 5175 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) { 5176 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1); 5177 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) { 5178 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND; 5179 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS 5180 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS 5181 AddToWorklist(LHS.getNode()); AddToWorklist(RHS.getNode()); 5182 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS); 5183 } 5184 } 5185 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants 5186 if (isAllOnesConstant(N1) && 5187 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) { 5188 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1); 5189 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) { 5190 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND; 5191 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS 5192 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS 5193 AddToWorklist(LHS.getNode()); AddToWorklist(RHS.getNode()); 5194 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS); 5195 } 5196 } 5197 // fold (xor (and x, y), y) -> (and (not x), y) 5198 if (N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() && 5199 N0->getOperand(1) == N1) { 5200 SDValue X = N0->getOperand(0); 5201 SDValue NotX = DAG.getNOT(SDLoc(X), X, VT); 5202 AddToWorklist(NotX.getNode()); 5203 return DAG.getNode(ISD::AND, SDLoc(N), VT, NotX, N1); 5204 } 5205 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2)) 5206 if (N1C && N0.getOpcode() == ISD::XOR) { 5207 if (const ConstantSDNode *N00C = getAsNonOpaqueConstant(N0.getOperand(0))) { 5208 SDLoc DL(N); 5209 return DAG.getNode(ISD::XOR, DL, VT, N0.getOperand(1), 5210 DAG.getConstant(N1C->getAPIntValue() ^ 5211 N00C->getAPIntValue(), DL, VT)); 5212 } 5213 if (const ConstantSDNode *N01C = getAsNonOpaqueConstant(N0.getOperand(1))) { 5214 SDLoc DL(N); 5215 return DAG.getNode(ISD::XOR, DL, VT, N0.getOperand(0), 5216 DAG.getConstant(N1C->getAPIntValue() ^ 5217 N01C->getAPIntValue(), DL, VT)); 5218 } 5219 } 5220 5221 // fold Y = sra (X, size(X)-1); xor (add (X, Y), Y) -> (abs X) 5222 unsigned OpSizeInBits = VT.getScalarSizeInBits(); 5223 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1 && 5224 N1.getOpcode() == ISD::SRA && N1.getOperand(0) == N0.getOperand(0) && 5225 TLI.isOperationLegalOrCustom(ISD::ABS, VT)) { 5226 if (ConstantSDNode *C = isConstOrConstSplat(N1.getOperand(1))) 5227 if (C->getAPIntValue() == (OpSizeInBits - 1)) 5228 return DAG.getNode(ISD::ABS, SDLoc(N), VT, N0.getOperand(0)); 5229 } 5230 5231 // fold (xor x, x) -> 0 5232 if (N0 == N1) 5233 return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes); 5234 5235 // fold (xor (shl 1, x), -1) -> (rotl ~1, x) 5236 // Here is a concrete example of this equivalence: 5237 // i16 x == 14 5238 // i16 shl == 1 << 14 == 16384 == 0b0100000000000000 5239 // i16 xor == ~(1 << 14) == 49151 == 0b1011111111111111 5240 // 5241 // => 5242 // 5243 // i16 ~1 == 0b1111111111111110 5244 // i16 rol(~1, 14) == 0b1011111111111111 5245 // 5246 // Some additional tips to help conceptualize this transform: 5247 // - Try to see the operation as placing a single zero in a value of all ones. 5248 // - There exists no value for x which would allow the result to contain zero. 5249 // - Values of x larger than the bitwidth are undefined and do not require a 5250 // consistent result. 5251 // - Pushing the zero left requires shifting one bits in from the right. 5252 // A rotate left of ~1 is a nice way of achieving the desired result. 5253 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT) && N0.getOpcode() == ISD::SHL 5254 && isAllOnesConstant(N1) && isOneConstant(N0.getOperand(0))) { 5255 SDLoc DL(N); 5256 return DAG.getNode(ISD::ROTL, DL, VT, DAG.getConstant(~1, DL, VT), 5257 N0.getOperand(1)); 5258 } 5259 5260 // Simplify: xor (op x...), (op y...) -> (op (xor x, y)) 5261 if (N0.getOpcode() == N1.getOpcode()) 5262 if (SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N)) 5263 return Tmp; 5264 5265 // Simplify the expression using non-local knowledge. 5266 if (SimplifyDemandedBits(SDValue(N, 0))) 5267 return SDValue(N, 0); 5268 5269 return SDValue(); 5270 } 5271 5272 /// Handle transforms common to the three shifts, when the shift amount is a 5273 /// constant. 5274 SDValue DAGCombiner::visitShiftByConstant(SDNode *N, ConstantSDNode *Amt) { 5275 SDNode *LHS = N->getOperand(0).getNode(); 5276 if (!LHS->hasOneUse()) return SDValue(); 5277 5278 // We want to pull some binops through shifts, so that we have (and (shift)) 5279 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of 5280 // thing happens with address calculations, so it's important to canonicalize 5281 // it. 5282 bool HighBitSet = false; // Can we transform this if the high bit is set? 5283 5284 switch (LHS->getOpcode()) { 5285 default: return SDValue(); 5286 case ISD::OR: 5287 case ISD::XOR: 5288 HighBitSet = false; // We can only transform sra if the high bit is clear. 5289 break; 5290 case ISD::AND: 5291 HighBitSet = true; // We can only transform sra if the high bit is set. 5292 break; 5293 case ISD::ADD: 5294 if (N->getOpcode() != ISD::SHL) 5295 return SDValue(); // only shl(add) not sr[al](add). 5296 HighBitSet = false; // We can only transform sra if the high bit is clear. 5297 break; 5298 } 5299 5300 // We require the RHS of the binop to be a constant and not opaque as well. 5301 ConstantSDNode *BinOpCst = getAsNonOpaqueConstant(LHS->getOperand(1)); 5302 if (!BinOpCst) return SDValue(); 5303 5304 // FIXME: disable this unless the input to the binop is a shift by a constant 5305 // or is copy/select.Enable this in other cases when figure out it's exactly profitable. 5306 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode(); 5307 bool isShift = BinOpLHSVal->getOpcode() == ISD::SHL || 5308 BinOpLHSVal->getOpcode() == ISD::SRA || 5309 BinOpLHSVal->getOpcode() == ISD::SRL; 5310 bool isCopyOrSelect = BinOpLHSVal->getOpcode() == ISD::CopyFromReg || 5311 BinOpLHSVal->getOpcode() == ISD::SELECT; 5312 5313 if ((!isShift || !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1))) && 5314 !isCopyOrSelect) 5315 return SDValue(); 5316 5317 if (isCopyOrSelect && N->hasOneUse()) 5318 return SDValue(); 5319 5320 EVT VT = N->getValueType(0); 5321 5322 // If this is a signed shift right, and the high bit is modified by the 5323 // logical operation, do not perform the transformation. The highBitSet 5324 // boolean indicates the value of the high bit of the constant which would 5325 // cause it to be modified for this operation. 5326 if (N->getOpcode() == ISD::SRA) { 5327 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative(); 5328 if (BinOpRHSSignSet != HighBitSet) 5329 return SDValue(); 5330 } 5331 5332 if (!TLI.isDesirableToCommuteWithShift(LHS)) 5333 return SDValue(); 5334 5335 // Fold the constants, shifting the binop RHS by the shift amount. 5336 SDValue NewRHS = DAG.getNode(N->getOpcode(), SDLoc(LHS->getOperand(1)), 5337 N->getValueType(0), 5338 LHS->getOperand(1), N->getOperand(1)); 5339 assert(isa<ConstantSDNode>(NewRHS) && "Folding was not successful!"); 5340 5341 // Create the new shift. 5342 SDValue NewShift = DAG.getNode(N->getOpcode(), 5343 SDLoc(LHS->getOperand(0)), 5344 VT, LHS->getOperand(0), N->getOperand(1)); 5345 5346 // Create the new binop. 5347 return DAG.getNode(LHS->getOpcode(), SDLoc(N), VT, NewShift, NewRHS); 5348 } 5349 5350 SDValue DAGCombiner::distributeTruncateThroughAnd(SDNode *N) { 5351 assert(N->getOpcode() == ISD::TRUNCATE); 5352 assert(N->getOperand(0).getOpcode() == ISD::AND); 5353 5354 // (truncate:TruncVT (and N00, N01C)) -> (and (truncate:TruncVT N00), TruncC) 5355 if (N->hasOneUse() && N->getOperand(0).hasOneUse()) { 5356 SDValue N01 = N->getOperand(0).getOperand(1); 5357 if (isConstantOrConstantVector(N01, /* NoOpaques */ true)) { 5358 SDLoc DL(N); 5359 EVT TruncVT = N->getValueType(0); 5360 SDValue N00 = N->getOperand(0).getOperand(0); 5361 SDValue Trunc00 = DAG.getNode(ISD::TRUNCATE, DL, TruncVT, N00); 5362 SDValue Trunc01 = DAG.getNode(ISD::TRUNCATE, DL, TruncVT, N01); 5363 AddToWorklist(Trunc00.getNode()); 5364 AddToWorklist(Trunc01.getNode()); 5365 return DAG.getNode(ISD::AND, DL, TruncVT, Trunc00, Trunc01); 5366 } 5367 } 5368 5369 return SDValue(); 5370 } 5371 5372 SDValue DAGCombiner::visitRotate(SDNode *N) { 5373 SDLoc dl(N); 5374 SDValue N0 = N->getOperand(0); 5375 SDValue N1 = N->getOperand(1); 5376 EVT VT = N->getValueType(0); 5377 unsigned Bitsize = VT.getScalarSizeInBits(); 5378 5379 // fold (rot x, 0) -> x 5380 if (isNullConstantOrNullSplatConstant(N1)) 5381 return N0; 5382 5383 // fold (rot x, c) -> (rot x, c % BitSize) 5384 if (ConstantSDNode *Cst = isConstOrConstSplat(N1)) { 5385 if (Cst->getAPIntValue().uge(Bitsize)) { 5386 uint64_t RotAmt = Cst->getAPIntValue().urem(Bitsize); 5387 return DAG.getNode(N->getOpcode(), dl, VT, N0, 5388 DAG.getConstant(RotAmt, dl, N1.getValueType())); 5389 } 5390 } 5391 5392 // fold (rot* x, (trunc (and y, c))) -> (rot* x, (and (trunc y), (trunc c))). 5393 if (N1.getOpcode() == ISD::TRUNCATE && 5394 N1.getOperand(0).getOpcode() == ISD::AND) { 5395 if (SDValue NewOp1 = distributeTruncateThroughAnd(N1.getNode())) 5396 return DAG.getNode(N->getOpcode(), dl, VT, N0, NewOp1); 5397 } 5398 5399 unsigned NextOp = N0.getOpcode(); 5400 // fold (rot* (rot* x, c2), c1) -> (rot* x, c1 +- c2 % bitsize) 5401 if (NextOp == ISD::ROTL || NextOp == ISD::ROTR) { 5402 SDNode *C1 = DAG.isConstantIntBuildVectorOrConstantInt(N1); 5403 SDNode *C2 = DAG.isConstantIntBuildVectorOrConstantInt(N0.getOperand(1)); 5404 if (C1 && C2 && C1->getValueType(0) == C2->getValueType(0)) { 5405 EVT ShiftVT = C1->getValueType(0); 5406 bool SameSide = (N->getOpcode() == NextOp); 5407 unsigned CombineOp = SameSide ? ISD::ADD : ISD::SUB; 5408 if (SDValue CombinedShift = 5409 DAG.FoldConstantArithmetic(CombineOp, dl, ShiftVT, C1, C2)) { 5410 SDValue BitsizeC = DAG.getConstant(Bitsize, dl, ShiftVT); 5411 SDValue CombinedShiftNorm = DAG.FoldConstantArithmetic( 5412 ISD::SREM, dl, ShiftVT, CombinedShift.getNode(), 5413 BitsizeC.getNode()); 5414 return DAG.getNode(N->getOpcode(), dl, VT, N0->getOperand(0), 5415 CombinedShiftNorm); 5416 } 5417 } 5418 } 5419 return SDValue(); 5420 } 5421 5422 SDValue DAGCombiner::visitSHL(SDNode *N) { 5423 SDValue N0 = N->getOperand(0); 5424 SDValue N1 = N->getOperand(1); 5425 EVT VT = N0.getValueType(); 5426 unsigned OpSizeInBits = VT.getScalarSizeInBits(); 5427 5428 // fold vector ops 5429 if (VT.isVector()) { 5430 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 5431 return FoldedVOp; 5432 5433 BuildVectorSDNode *N1CV = dyn_cast<BuildVectorSDNode>(N1); 5434 // If setcc produces all-one true value then: 5435 // (shl (and (setcc) N01CV) N1CV) -> (and (setcc) N01CV<<N1CV) 5436 if (N1CV && N1CV->isConstant()) { 5437 if (N0.getOpcode() == ISD::AND) { 5438 SDValue N00 = N0->getOperand(0); 5439 SDValue N01 = N0->getOperand(1); 5440 BuildVectorSDNode *N01CV = dyn_cast<BuildVectorSDNode>(N01); 5441 5442 if (N01CV && N01CV->isConstant() && N00.getOpcode() == ISD::SETCC && 5443 TLI.getBooleanContents(N00.getOperand(0).getValueType()) == 5444 TargetLowering::ZeroOrNegativeOneBooleanContent) { 5445 if (SDValue C = DAG.FoldConstantArithmetic(ISD::SHL, SDLoc(N), VT, 5446 N01CV, N1CV)) 5447 return DAG.getNode(ISD::AND, SDLoc(N), VT, N00, C); 5448 } 5449 } 5450 } 5451 } 5452 5453 ConstantSDNode *N1C = isConstOrConstSplat(N1); 5454 5455 // fold (shl c1, c2) -> c1<<c2 5456 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 5457 if (N0C && N1C && !N1C->isOpaque()) 5458 return DAG.FoldConstantArithmetic(ISD::SHL, SDLoc(N), VT, N0C, N1C); 5459 // fold (shl 0, x) -> 0 5460 if (isNullConstantOrNullSplatConstant(N0)) 5461 return N0; 5462 // fold (shl x, c >= size(x)) -> undef 5463 // NOTE: ALL vector elements must be too big to avoid partial UNDEFs. 5464 auto MatchShiftTooBig = [OpSizeInBits](ConstantSDNode *Val) { 5465 return Val->getAPIntValue().uge(OpSizeInBits); 5466 }; 5467 if (matchUnaryPredicate(N1, MatchShiftTooBig)) 5468 return DAG.getUNDEF(VT); 5469 // fold (shl x, 0) -> x 5470 if (N1C && N1C->isNullValue()) 5471 return N0; 5472 // fold (shl undef, x) -> 0 5473 if (N0.isUndef()) 5474 return DAG.getConstant(0, SDLoc(N), VT); 5475 5476 if (SDValue NewSel = foldBinOpIntoSelect(N)) 5477 return NewSel; 5478 5479 // if (shl x, c) is known to be zero, return 0 5480 if (DAG.MaskedValueIsZero(SDValue(N, 0), 5481 APInt::getAllOnesValue(OpSizeInBits))) 5482 return DAG.getConstant(0, SDLoc(N), VT); 5483 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))). 5484 if (N1.getOpcode() == ISD::TRUNCATE && 5485 N1.getOperand(0).getOpcode() == ISD::AND) { 5486 if (SDValue NewOp1 = distributeTruncateThroughAnd(N1.getNode())) 5487 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0, NewOp1); 5488 } 5489 5490 if (N1C && SimplifyDemandedBits(SDValue(N, 0))) 5491 return SDValue(N, 0); 5492 5493 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2)) 5494 if (N0.getOpcode() == ISD::SHL) { 5495 auto MatchOutOfRange = [OpSizeInBits](ConstantSDNode *LHS, 5496 ConstantSDNode *RHS) { 5497 APInt c1 = LHS->getAPIntValue(); 5498 APInt c2 = RHS->getAPIntValue(); 5499 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 5500 return (c1 + c2).uge(OpSizeInBits); 5501 }; 5502 if (matchBinaryPredicate(N1, N0.getOperand(1), MatchOutOfRange)) 5503 return DAG.getConstant(0, SDLoc(N), VT); 5504 5505 auto MatchInRange = [OpSizeInBits](ConstantSDNode *LHS, 5506 ConstantSDNode *RHS) { 5507 APInt c1 = LHS->getAPIntValue(); 5508 APInt c2 = RHS->getAPIntValue(); 5509 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 5510 return (c1 + c2).ult(OpSizeInBits); 5511 }; 5512 if (matchBinaryPredicate(N1, N0.getOperand(1), MatchInRange)) { 5513 SDLoc DL(N); 5514 EVT ShiftVT = N1.getValueType(); 5515 SDValue Sum = DAG.getNode(ISD::ADD, DL, ShiftVT, N1, N0.getOperand(1)); 5516 return DAG.getNode(ISD::SHL, DL, VT, N0.getOperand(0), Sum); 5517 } 5518 } 5519 5520 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2))) 5521 // For this to be valid, the second form must not preserve any of the bits 5522 // that are shifted out by the inner shift in the first form. This means 5523 // the outer shift size must be >= the number of bits added by the ext. 5524 // As a corollary, we don't care what kind of ext it is. 5525 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND || 5526 N0.getOpcode() == ISD::ANY_EXTEND || 5527 N0.getOpcode() == ISD::SIGN_EXTEND) && 5528 N0.getOperand(0).getOpcode() == ISD::SHL) { 5529 SDValue N0Op0 = N0.getOperand(0); 5530 if (ConstantSDNode *N0Op0C1 = isConstOrConstSplat(N0Op0.getOperand(1))) { 5531 APInt c1 = N0Op0C1->getAPIntValue(); 5532 APInt c2 = N1C->getAPIntValue(); 5533 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 5534 5535 EVT InnerShiftVT = N0Op0.getValueType(); 5536 uint64_t InnerShiftSize = InnerShiftVT.getScalarSizeInBits(); 5537 if (c2.uge(OpSizeInBits - InnerShiftSize)) { 5538 SDLoc DL(N0); 5539 APInt Sum = c1 + c2; 5540 if (Sum.uge(OpSizeInBits)) 5541 return DAG.getConstant(0, DL, VT); 5542 5543 return DAG.getNode( 5544 ISD::SHL, DL, VT, 5545 DAG.getNode(N0.getOpcode(), DL, VT, N0Op0->getOperand(0)), 5546 DAG.getConstant(Sum.getZExtValue(), DL, N1.getValueType())); 5547 } 5548 } 5549 } 5550 5551 // fold (shl (zext (srl x, C)), C) -> (zext (shl (srl x, C), C)) 5552 // Only fold this if the inner zext has no other uses to avoid increasing 5553 // the total number of instructions. 5554 if (N1C && N0.getOpcode() == ISD::ZERO_EXTEND && N0.hasOneUse() && 5555 N0.getOperand(0).getOpcode() == ISD::SRL) { 5556 SDValue N0Op0 = N0.getOperand(0); 5557 if (ConstantSDNode *N0Op0C1 = isConstOrConstSplat(N0Op0.getOperand(1))) { 5558 if (N0Op0C1->getAPIntValue().ult(VT.getScalarSizeInBits())) { 5559 uint64_t c1 = N0Op0C1->getZExtValue(); 5560 uint64_t c2 = N1C->getZExtValue(); 5561 if (c1 == c2) { 5562 SDValue NewOp0 = N0.getOperand(0); 5563 EVT CountVT = NewOp0.getOperand(1).getValueType(); 5564 SDLoc DL(N); 5565 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, NewOp0.getValueType(), 5566 NewOp0, 5567 DAG.getConstant(c2, DL, CountVT)); 5568 AddToWorklist(NewSHL.getNode()); 5569 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N0), VT, NewSHL); 5570 } 5571 } 5572 } 5573 } 5574 5575 // fold (shl (sr[la] exact X, C1), C2) -> (shl X, (C2-C1)) if C1 <= C2 5576 // fold (shl (sr[la] exact X, C1), C2) -> (sr[la] X, (C2-C1)) if C1 > C2 5577 if (N1C && (N0.getOpcode() == ISD::SRL || N0.getOpcode() == ISD::SRA) && 5578 N0->getFlags().hasExact()) { 5579 if (ConstantSDNode *N0C1 = isConstOrConstSplat(N0.getOperand(1))) { 5580 uint64_t C1 = N0C1->getZExtValue(); 5581 uint64_t C2 = N1C->getZExtValue(); 5582 SDLoc DL(N); 5583 if (C1 <= C2) 5584 return DAG.getNode(ISD::SHL, DL, VT, N0.getOperand(0), 5585 DAG.getConstant(C2 - C1, DL, N1.getValueType())); 5586 return DAG.getNode(N0.getOpcode(), DL, VT, N0.getOperand(0), 5587 DAG.getConstant(C1 - C2, DL, N1.getValueType())); 5588 } 5589 } 5590 5591 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or 5592 // (and (srl x, (sub c1, c2), MASK) 5593 // Only fold this if the inner shift has no other uses -- if it does, folding 5594 // this will increase the total number of instructions. 5595 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse()) { 5596 if (ConstantSDNode *N0C1 = isConstOrConstSplat(N0.getOperand(1))) { 5597 uint64_t c1 = N0C1->getZExtValue(); 5598 if (c1 < OpSizeInBits) { 5599 uint64_t c2 = N1C->getZExtValue(); 5600 APInt Mask = APInt::getHighBitsSet(OpSizeInBits, OpSizeInBits - c1); 5601 SDValue Shift; 5602 if (c2 > c1) { 5603 Mask <<= c2 - c1; 5604 SDLoc DL(N); 5605 Shift = DAG.getNode(ISD::SHL, DL, VT, N0.getOperand(0), 5606 DAG.getConstant(c2 - c1, DL, N1.getValueType())); 5607 } else { 5608 Mask.lshrInPlace(c1 - c2); 5609 SDLoc DL(N); 5610 Shift = DAG.getNode(ISD::SRL, DL, VT, N0.getOperand(0), 5611 DAG.getConstant(c1 - c2, DL, N1.getValueType())); 5612 } 5613 SDLoc DL(N0); 5614 return DAG.getNode(ISD::AND, DL, VT, Shift, 5615 DAG.getConstant(Mask, DL, VT)); 5616 } 5617 } 5618 } 5619 5620 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1)) 5621 if (N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1) && 5622 isConstantOrConstantVector(N1, /* No Opaques */ true)) { 5623 SDLoc DL(N); 5624 SDValue AllBits = DAG.getAllOnesConstant(DL, VT); 5625 SDValue HiBitsMask = DAG.getNode(ISD::SHL, DL, VT, AllBits, N1); 5626 return DAG.getNode(ISD::AND, DL, VT, N0.getOperand(0), HiBitsMask); 5627 } 5628 5629 // fold (shl (add x, c1), c2) -> (add (shl x, c2), c1 << c2) 5630 // fold (shl (or x, c1), c2) -> (or (shl x, c2), c1 << c2) 5631 // Variant of version done on multiply, except mul by a power of 2 is turned 5632 // into a shift. 5633 if ((N0.getOpcode() == ISD::ADD || N0.getOpcode() == ISD::OR) && 5634 N0.getNode()->hasOneUse() && 5635 isConstantOrConstantVector(N1, /* No Opaques */ true) && 5636 isConstantOrConstantVector(N0.getOperand(1), /* No Opaques */ true)) { 5637 SDValue Shl0 = DAG.getNode(ISD::SHL, SDLoc(N0), VT, N0.getOperand(0), N1); 5638 SDValue Shl1 = DAG.getNode(ISD::SHL, SDLoc(N1), VT, N0.getOperand(1), N1); 5639 AddToWorklist(Shl0.getNode()); 5640 AddToWorklist(Shl1.getNode()); 5641 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, Shl0, Shl1); 5642 } 5643 5644 // fold (shl (mul x, c1), c2) -> (mul x, c1 << c2) 5645 if (N0.getOpcode() == ISD::MUL && N0.getNode()->hasOneUse() && 5646 isConstantOrConstantVector(N1, /* No Opaques */ true) && 5647 isConstantOrConstantVector(N0.getOperand(1), /* No Opaques */ true)) { 5648 SDValue Shl = DAG.getNode(ISD::SHL, SDLoc(N1), VT, N0.getOperand(1), N1); 5649 if (isConstantOrConstantVector(Shl)) 5650 return DAG.getNode(ISD::MUL, SDLoc(N), VT, N0.getOperand(0), Shl); 5651 } 5652 5653 if (N1C && !N1C->isOpaque()) 5654 if (SDValue NewSHL = visitShiftByConstant(N, N1C)) 5655 return NewSHL; 5656 5657 return SDValue(); 5658 } 5659 5660 SDValue DAGCombiner::visitSRA(SDNode *N) { 5661 SDValue N0 = N->getOperand(0); 5662 SDValue N1 = N->getOperand(1); 5663 EVT VT = N0.getValueType(); 5664 unsigned OpSizeInBits = VT.getScalarSizeInBits(); 5665 5666 // Arithmetic shifting an all-sign-bit value is a no-op. 5667 // fold (sra 0, x) -> 0 5668 // fold (sra -1, x) -> -1 5669 if (DAG.ComputeNumSignBits(N0) == OpSizeInBits) 5670 return N0; 5671 5672 // fold vector ops 5673 if (VT.isVector()) 5674 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 5675 return FoldedVOp; 5676 5677 ConstantSDNode *N1C = isConstOrConstSplat(N1); 5678 5679 // fold (sra c1, c2) -> (sra c1, c2) 5680 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 5681 if (N0C && N1C && !N1C->isOpaque()) 5682 return DAG.FoldConstantArithmetic(ISD::SRA, SDLoc(N), VT, N0C, N1C); 5683 // fold (sra x, c >= size(x)) -> undef 5684 // NOTE: ALL vector elements must be too big to avoid partial UNDEFs. 5685 auto MatchShiftTooBig = [OpSizeInBits](ConstantSDNode *Val) { 5686 return Val->getAPIntValue().uge(OpSizeInBits); 5687 }; 5688 if (matchUnaryPredicate(N1, MatchShiftTooBig)) 5689 return DAG.getUNDEF(VT); 5690 // fold (sra x, 0) -> x 5691 if (N1C && N1C->isNullValue()) 5692 return N0; 5693 5694 if (SDValue NewSel = foldBinOpIntoSelect(N)) 5695 return NewSel; 5696 5697 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports 5698 // sext_inreg. 5699 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) { 5700 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue(); 5701 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits); 5702 if (VT.isVector()) 5703 ExtVT = EVT::getVectorVT(*DAG.getContext(), 5704 ExtVT, VT.getVectorNumElements()); 5705 if ((!LegalOperations || 5706 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT))) 5707 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, 5708 N0.getOperand(0), DAG.getValueType(ExtVT)); 5709 } 5710 5711 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2)) 5712 if (N0.getOpcode() == ISD::SRA) { 5713 SDLoc DL(N); 5714 EVT ShiftVT = N1.getValueType(); 5715 5716 auto MatchOutOfRange = [OpSizeInBits](ConstantSDNode *LHS, 5717 ConstantSDNode *RHS) { 5718 APInt c1 = LHS->getAPIntValue(); 5719 APInt c2 = RHS->getAPIntValue(); 5720 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 5721 return (c1 + c2).uge(OpSizeInBits); 5722 }; 5723 if (matchBinaryPredicate(N1, N0.getOperand(1), MatchOutOfRange)) 5724 return DAG.getNode(ISD::SRA, DL, VT, N0.getOperand(0), 5725 DAG.getConstant(OpSizeInBits - 1, DL, ShiftVT)); 5726 5727 auto MatchInRange = [OpSizeInBits](ConstantSDNode *LHS, 5728 ConstantSDNode *RHS) { 5729 APInt c1 = LHS->getAPIntValue(); 5730 APInt c2 = RHS->getAPIntValue(); 5731 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 5732 return (c1 + c2).ult(OpSizeInBits); 5733 }; 5734 if (matchBinaryPredicate(N1, N0.getOperand(1), MatchInRange)) { 5735 SDValue Sum = DAG.getNode(ISD::ADD, DL, ShiftVT, N1, N0.getOperand(1)); 5736 return DAG.getNode(ISD::SRA, DL, VT, N0.getOperand(0), Sum); 5737 } 5738 } 5739 5740 // fold (sra (shl X, m), (sub result_size, n)) 5741 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for 5742 // result_size - n != m. 5743 // If truncate is free for the target sext(shl) is likely to result in better 5744 // code. 5745 if (N0.getOpcode() == ISD::SHL && N1C) { 5746 // Get the two constanst of the shifts, CN0 = m, CN = n. 5747 const ConstantSDNode *N01C = isConstOrConstSplat(N0.getOperand(1)); 5748 if (N01C) { 5749 LLVMContext &Ctx = *DAG.getContext(); 5750 // Determine what the truncate's result bitsize and type would be. 5751 EVT TruncVT = EVT::getIntegerVT(Ctx, OpSizeInBits - N1C->getZExtValue()); 5752 5753 if (VT.isVector()) 5754 TruncVT = EVT::getVectorVT(Ctx, TruncVT, VT.getVectorNumElements()); 5755 5756 // Determine the residual right-shift amount. 5757 int ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue(); 5758 5759 // If the shift is not a no-op (in which case this should be just a sign 5760 // extend already), the truncated to type is legal, sign_extend is legal 5761 // on that type, and the truncate to that type is both legal and free, 5762 // perform the transform. 5763 if ((ShiftAmt > 0) && 5764 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) && 5765 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) && 5766 TLI.isTruncateFree(VT, TruncVT)) { 5767 SDLoc DL(N); 5768 SDValue Amt = DAG.getConstant(ShiftAmt, DL, 5769 getShiftAmountTy(N0.getOperand(0).getValueType())); 5770 SDValue Shift = DAG.getNode(ISD::SRL, DL, VT, 5771 N0.getOperand(0), Amt); 5772 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, DL, TruncVT, 5773 Shift); 5774 return DAG.getNode(ISD::SIGN_EXTEND, DL, 5775 N->getValueType(0), Trunc); 5776 } 5777 } 5778 } 5779 5780 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))). 5781 if (N1.getOpcode() == ISD::TRUNCATE && 5782 N1.getOperand(0).getOpcode() == ISD::AND) { 5783 if (SDValue NewOp1 = distributeTruncateThroughAnd(N1.getNode())) 5784 return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0, NewOp1); 5785 } 5786 5787 // fold (sra (trunc (srl x, c1)), c2) -> (trunc (sra x, c1 + c2)) 5788 // if c1 is equal to the number of bits the trunc removes 5789 if (N0.getOpcode() == ISD::TRUNCATE && 5790 (N0.getOperand(0).getOpcode() == ISD::SRL || 5791 N0.getOperand(0).getOpcode() == ISD::SRA) && 5792 N0.getOperand(0).hasOneUse() && 5793 N0.getOperand(0).getOperand(1).hasOneUse() && 5794 N1C) { 5795 SDValue N0Op0 = N0.getOperand(0); 5796 if (ConstantSDNode *LargeShift = isConstOrConstSplat(N0Op0.getOperand(1))) { 5797 unsigned LargeShiftVal = LargeShift->getZExtValue(); 5798 EVT LargeVT = N0Op0.getValueType(); 5799 5800 if (LargeVT.getScalarSizeInBits() - OpSizeInBits == LargeShiftVal) { 5801 SDLoc DL(N); 5802 SDValue Amt = 5803 DAG.getConstant(LargeShiftVal + N1C->getZExtValue(), DL, 5804 getShiftAmountTy(N0Op0.getOperand(0).getValueType())); 5805 SDValue SRA = DAG.getNode(ISD::SRA, DL, LargeVT, 5806 N0Op0.getOperand(0), Amt); 5807 return DAG.getNode(ISD::TRUNCATE, DL, VT, SRA); 5808 } 5809 } 5810 } 5811 5812 // Simplify, based on bits shifted out of the LHS. 5813 if (N1C && SimplifyDemandedBits(SDValue(N, 0))) 5814 return SDValue(N, 0); 5815 5816 // If the sign bit is known to be zero, switch this to a SRL. 5817 if (DAG.SignBitIsZero(N0)) 5818 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, N1); 5819 5820 if (N1C && !N1C->isOpaque()) 5821 if (SDValue NewSRA = visitShiftByConstant(N, N1C)) 5822 return NewSRA; 5823 5824 return SDValue(); 5825 } 5826 5827 SDValue DAGCombiner::visitSRL(SDNode *N) { 5828 SDValue N0 = N->getOperand(0); 5829 SDValue N1 = N->getOperand(1); 5830 EVT VT = N0.getValueType(); 5831 unsigned OpSizeInBits = VT.getScalarSizeInBits(); 5832 5833 // fold vector ops 5834 if (VT.isVector()) 5835 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 5836 return FoldedVOp; 5837 5838 ConstantSDNode *N1C = isConstOrConstSplat(N1); 5839 5840 // fold (srl c1, c2) -> c1 >>u c2 5841 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 5842 if (N0C && N1C && !N1C->isOpaque()) 5843 return DAG.FoldConstantArithmetic(ISD::SRL, SDLoc(N), VT, N0C, N1C); 5844 // fold (srl 0, x) -> 0 5845 if (isNullConstantOrNullSplatConstant(N0)) 5846 return N0; 5847 // fold (srl x, c >= size(x)) -> undef 5848 // NOTE: ALL vector elements must be too big to avoid partial UNDEFs. 5849 auto MatchShiftTooBig = [OpSizeInBits](ConstantSDNode *Val) { 5850 return Val->getAPIntValue().uge(OpSizeInBits); 5851 }; 5852 if (matchUnaryPredicate(N1, MatchShiftTooBig)) 5853 return DAG.getUNDEF(VT); 5854 // fold (srl x, 0) -> x 5855 if (N1C && N1C->isNullValue()) 5856 return N0; 5857 5858 if (SDValue NewSel = foldBinOpIntoSelect(N)) 5859 return NewSel; 5860 5861 // if (srl x, c) is known to be zero, return 0 5862 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0), 5863 APInt::getAllOnesValue(OpSizeInBits))) 5864 return DAG.getConstant(0, SDLoc(N), VT); 5865 5866 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2)) 5867 if (N0.getOpcode() == ISD::SRL) { 5868 auto MatchOutOfRange = [OpSizeInBits](ConstantSDNode *LHS, 5869 ConstantSDNode *RHS) { 5870 APInt c1 = LHS->getAPIntValue(); 5871 APInt c2 = RHS->getAPIntValue(); 5872 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 5873 return (c1 + c2).uge(OpSizeInBits); 5874 }; 5875 if (matchBinaryPredicate(N1, N0.getOperand(1), MatchOutOfRange)) 5876 return DAG.getConstant(0, SDLoc(N), VT); 5877 5878 auto MatchInRange = [OpSizeInBits](ConstantSDNode *LHS, 5879 ConstantSDNode *RHS) { 5880 APInt c1 = LHS->getAPIntValue(); 5881 APInt c2 = RHS->getAPIntValue(); 5882 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 5883 return (c1 + c2).ult(OpSizeInBits); 5884 }; 5885 if (matchBinaryPredicate(N1, N0.getOperand(1), MatchInRange)) { 5886 SDLoc DL(N); 5887 EVT ShiftVT = N1.getValueType(); 5888 SDValue Sum = DAG.getNode(ISD::ADD, DL, ShiftVT, N1, N0.getOperand(1)); 5889 return DAG.getNode(ISD::SRL, DL, VT, N0.getOperand(0), Sum); 5890 } 5891 } 5892 5893 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2))) 5894 if (N1C && N0.getOpcode() == ISD::TRUNCATE && 5895 N0.getOperand(0).getOpcode() == ISD::SRL) { 5896 if (auto N001C = isConstOrConstSplat(N0.getOperand(0).getOperand(1))) { 5897 uint64_t c1 = N001C->getZExtValue(); 5898 uint64_t c2 = N1C->getZExtValue(); 5899 EVT InnerShiftVT = N0.getOperand(0).getValueType(); 5900 EVT ShiftCountVT = N0.getOperand(0).getOperand(1).getValueType(); 5901 uint64_t InnerShiftSize = InnerShiftVT.getScalarSizeInBits(); 5902 // This is only valid if the OpSizeInBits + c1 = size of inner shift. 5903 if (c1 + OpSizeInBits == InnerShiftSize) { 5904 SDLoc DL(N0); 5905 if (c1 + c2 >= InnerShiftSize) 5906 return DAG.getConstant(0, DL, VT); 5907 return DAG.getNode(ISD::TRUNCATE, DL, VT, 5908 DAG.getNode(ISD::SRL, DL, InnerShiftVT, 5909 N0.getOperand(0).getOperand(0), 5910 DAG.getConstant(c1 + c2, DL, 5911 ShiftCountVT))); 5912 } 5913 } 5914 } 5915 5916 // fold (srl (shl x, c), c) -> (and x, cst2) 5917 if (N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 && 5918 isConstantOrConstantVector(N1, /* NoOpaques */ true)) { 5919 SDLoc DL(N); 5920 SDValue Mask = 5921 DAG.getNode(ISD::SRL, DL, VT, DAG.getAllOnesConstant(DL, VT), N1); 5922 AddToWorklist(Mask.getNode()); 5923 return DAG.getNode(ISD::AND, DL, VT, N0.getOperand(0), Mask); 5924 } 5925 5926 // fold (srl (anyextend x), c) -> (and (anyextend (srl x, c)), mask) 5927 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) { 5928 // Shifting in all undef bits? 5929 EVT SmallVT = N0.getOperand(0).getValueType(); 5930 unsigned BitSize = SmallVT.getScalarSizeInBits(); 5931 if (N1C->getZExtValue() >= BitSize) 5932 return DAG.getUNDEF(VT); 5933 5934 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) { 5935 uint64_t ShiftAmt = N1C->getZExtValue(); 5936 SDLoc DL0(N0); 5937 SDValue SmallShift = DAG.getNode(ISD::SRL, DL0, SmallVT, 5938 N0.getOperand(0), 5939 DAG.getConstant(ShiftAmt, DL0, 5940 getShiftAmountTy(SmallVT))); 5941 AddToWorklist(SmallShift.getNode()); 5942 APInt Mask = APInt::getLowBitsSet(OpSizeInBits, OpSizeInBits - ShiftAmt); 5943 SDLoc DL(N); 5944 return DAG.getNode(ISD::AND, DL, VT, 5945 DAG.getNode(ISD::ANY_EXTEND, DL, VT, SmallShift), 5946 DAG.getConstant(Mask, DL, VT)); 5947 } 5948 } 5949 5950 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign 5951 // bit, which is unmodified by sra. 5952 if (N1C && N1C->getZExtValue() + 1 == OpSizeInBits) { 5953 if (N0.getOpcode() == ISD::SRA) 5954 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0), N1); 5955 } 5956 5957 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit). 5958 if (N1C && N0.getOpcode() == ISD::CTLZ && 5959 N1C->getAPIntValue() == Log2_32(OpSizeInBits)) { 5960 KnownBits Known; 5961 DAG.computeKnownBits(N0.getOperand(0), Known); 5962 5963 // If any of the input bits are KnownOne, then the input couldn't be all 5964 // zeros, thus the result of the srl will always be zero. 5965 if (Known.One.getBoolValue()) return DAG.getConstant(0, SDLoc(N0), VT); 5966 5967 // If all of the bits input the to ctlz node are known to be zero, then 5968 // the result of the ctlz is "32" and the result of the shift is one. 5969 APInt UnknownBits = ~Known.Zero; 5970 if (UnknownBits == 0) return DAG.getConstant(1, SDLoc(N0), VT); 5971 5972 // Otherwise, check to see if there is exactly one bit input to the ctlz. 5973 if (UnknownBits.isPowerOf2()) { 5974 // Okay, we know that only that the single bit specified by UnknownBits 5975 // could be set on input to the CTLZ node. If this bit is set, the SRL 5976 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair 5977 // to an SRL/XOR pair, which is likely to simplify more. 5978 unsigned ShAmt = UnknownBits.countTrailingZeros(); 5979 SDValue Op = N0.getOperand(0); 5980 5981 if (ShAmt) { 5982 SDLoc DL(N0); 5983 Op = DAG.getNode(ISD::SRL, DL, VT, Op, 5984 DAG.getConstant(ShAmt, DL, 5985 getShiftAmountTy(Op.getValueType()))); 5986 AddToWorklist(Op.getNode()); 5987 } 5988 5989 SDLoc DL(N); 5990 return DAG.getNode(ISD::XOR, DL, VT, 5991 Op, DAG.getConstant(1, DL, VT)); 5992 } 5993 } 5994 5995 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))). 5996 if (N1.getOpcode() == ISD::TRUNCATE && 5997 N1.getOperand(0).getOpcode() == ISD::AND) { 5998 if (SDValue NewOp1 = distributeTruncateThroughAnd(N1.getNode())) 5999 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, NewOp1); 6000 } 6001 6002 // fold operands of srl based on knowledge that the low bits are not 6003 // demanded. 6004 if (N1C && SimplifyDemandedBits(SDValue(N, 0))) 6005 return SDValue(N, 0); 6006 6007 if (N1C && !N1C->isOpaque()) 6008 if (SDValue NewSRL = visitShiftByConstant(N, N1C)) 6009 return NewSRL; 6010 6011 // Attempt to convert a srl of a load into a narrower zero-extending load. 6012 if (SDValue NarrowLoad = ReduceLoadWidth(N)) 6013 return NarrowLoad; 6014 6015 // Here is a common situation. We want to optimize: 6016 // 6017 // %a = ... 6018 // %b = and i32 %a, 2 6019 // %c = srl i32 %b, 1 6020 // brcond i32 %c ... 6021 // 6022 // into 6023 // 6024 // %a = ... 6025 // %b = and %a, 2 6026 // %c = setcc eq %b, 0 6027 // brcond %c ... 6028 // 6029 // However when after the source operand of SRL is optimized into AND, the SRL 6030 // itself may not be optimized further. Look for it and add the BRCOND into 6031 // the worklist. 6032 if (N->hasOneUse()) { 6033 SDNode *Use = *N->use_begin(); 6034 if (Use->getOpcode() == ISD::BRCOND) 6035 AddToWorklist(Use); 6036 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) { 6037 // Also look pass the truncate. 6038 Use = *Use->use_begin(); 6039 if (Use->getOpcode() == ISD::BRCOND) 6040 AddToWorklist(Use); 6041 } 6042 } 6043 6044 return SDValue(); 6045 } 6046 6047 SDValue DAGCombiner::visitABS(SDNode *N) { 6048 SDValue N0 = N->getOperand(0); 6049 EVT VT = N->getValueType(0); 6050 6051 // fold (abs c1) -> c2 6052 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 6053 return DAG.getNode(ISD::ABS, SDLoc(N), VT, N0); 6054 // fold (abs (abs x)) -> (abs x) 6055 if (N0.getOpcode() == ISD::ABS) 6056 return N0; 6057 // fold (abs x) -> x iff not-negative 6058 if (DAG.SignBitIsZero(N0)) 6059 return N0; 6060 return SDValue(); 6061 } 6062 6063 SDValue DAGCombiner::visitBSWAP(SDNode *N) { 6064 SDValue N0 = N->getOperand(0); 6065 EVT VT = N->getValueType(0); 6066 6067 // fold (bswap c1) -> c2 6068 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 6069 return DAG.getNode(ISD::BSWAP, SDLoc(N), VT, N0); 6070 // fold (bswap (bswap x)) -> x 6071 if (N0.getOpcode() == ISD::BSWAP) 6072 return N0->getOperand(0); 6073 return SDValue(); 6074 } 6075 6076 SDValue DAGCombiner::visitBITREVERSE(SDNode *N) { 6077 SDValue N0 = N->getOperand(0); 6078 EVT VT = N->getValueType(0); 6079 6080 // fold (bitreverse c1) -> c2 6081 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 6082 return DAG.getNode(ISD::BITREVERSE, SDLoc(N), VT, N0); 6083 // fold (bitreverse (bitreverse x)) -> x 6084 if (N0.getOpcode() == ISD::BITREVERSE) 6085 return N0.getOperand(0); 6086 return SDValue(); 6087 } 6088 6089 SDValue DAGCombiner::visitCTLZ(SDNode *N) { 6090 SDValue N0 = N->getOperand(0); 6091 EVT VT = N->getValueType(0); 6092 6093 // fold (ctlz c1) -> c2 6094 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 6095 return DAG.getNode(ISD::CTLZ, SDLoc(N), VT, N0); 6096 return SDValue(); 6097 } 6098 6099 SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) { 6100 SDValue N0 = N->getOperand(0); 6101 EVT VT = N->getValueType(0); 6102 6103 // fold (ctlz_zero_undef c1) -> c2 6104 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 6105 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, SDLoc(N), VT, N0); 6106 return SDValue(); 6107 } 6108 6109 SDValue DAGCombiner::visitCTTZ(SDNode *N) { 6110 SDValue N0 = N->getOperand(0); 6111 EVT VT = N->getValueType(0); 6112 6113 // fold (cttz c1) -> c2 6114 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 6115 return DAG.getNode(ISD::CTTZ, SDLoc(N), VT, N0); 6116 return SDValue(); 6117 } 6118 6119 SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) { 6120 SDValue N0 = N->getOperand(0); 6121 EVT VT = N->getValueType(0); 6122 6123 // fold (cttz_zero_undef c1) -> c2 6124 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 6125 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, SDLoc(N), VT, N0); 6126 return SDValue(); 6127 } 6128 6129 SDValue DAGCombiner::visitCTPOP(SDNode *N) { 6130 SDValue N0 = N->getOperand(0); 6131 EVT VT = N->getValueType(0); 6132 6133 // fold (ctpop c1) -> c2 6134 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 6135 return DAG.getNode(ISD::CTPOP, SDLoc(N), VT, N0); 6136 return SDValue(); 6137 } 6138 6139 /// \brief Generate Min/Max node 6140 static SDValue combineMinNumMaxNum(const SDLoc &DL, EVT VT, SDValue LHS, 6141 SDValue RHS, SDValue True, SDValue False, 6142 ISD::CondCode CC, const TargetLowering &TLI, 6143 SelectionDAG &DAG) { 6144 if (!(LHS == True && RHS == False) && !(LHS == False && RHS == True)) 6145 return SDValue(); 6146 6147 switch (CC) { 6148 case ISD::SETOLT: 6149 case ISD::SETOLE: 6150 case ISD::SETLT: 6151 case ISD::SETLE: 6152 case ISD::SETULT: 6153 case ISD::SETULE: { 6154 unsigned Opcode = (LHS == True) ? ISD::FMINNUM : ISD::FMAXNUM; 6155 if (TLI.isOperationLegal(Opcode, VT)) 6156 return DAG.getNode(Opcode, DL, VT, LHS, RHS); 6157 return SDValue(); 6158 } 6159 case ISD::SETOGT: 6160 case ISD::SETOGE: 6161 case ISD::SETGT: 6162 case ISD::SETGE: 6163 case ISD::SETUGT: 6164 case ISD::SETUGE: { 6165 unsigned Opcode = (LHS == True) ? ISD::FMAXNUM : ISD::FMINNUM; 6166 if (TLI.isOperationLegal(Opcode, VT)) 6167 return DAG.getNode(Opcode, DL, VT, LHS, RHS); 6168 return SDValue(); 6169 } 6170 default: 6171 return SDValue(); 6172 } 6173 } 6174 6175 SDValue DAGCombiner::foldSelectOfConstants(SDNode *N) { 6176 SDValue Cond = N->getOperand(0); 6177 SDValue N1 = N->getOperand(1); 6178 SDValue N2 = N->getOperand(2); 6179 EVT VT = N->getValueType(0); 6180 EVT CondVT = Cond.getValueType(); 6181 SDLoc DL(N); 6182 6183 if (!VT.isInteger()) 6184 return SDValue(); 6185 6186 auto *C1 = dyn_cast<ConstantSDNode>(N1); 6187 auto *C2 = dyn_cast<ConstantSDNode>(N2); 6188 if (!C1 || !C2) 6189 return SDValue(); 6190 6191 // Only do this before legalization to avoid conflicting with target-specific 6192 // transforms in the other direction (create a select from a zext/sext). There 6193 // is also a target-independent combine here in DAGCombiner in the other 6194 // direction for (select Cond, -1, 0) when the condition is not i1. 6195 if (CondVT == MVT::i1 && !LegalOperations) { 6196 if (C1->isNullValue() && C2->isOne()) { 6197 // select Cond, 0, 1 --> zext (!Cond) 6198 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); 6199 if (VT != MVT::i1) 6200 NotCond = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, NotCond); 6201 return NotCond; 6202 } 6203 if (C1->isNullValue() && C2->isAllOnesValue()) { 6204 // select Cond, 0, -1 --> sext (!Cond) 6205 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1); 6206 if (VT != MVT::i1) 6207 NotCond = DAG.getNode(ISD::SIGN_EXTEND, DL, VT, NotCond); 6208 return NotCond; 6209 } 6210 if (C1->isOne() && C2->isNullValue()) { 6211 // select Cond, 1, 0 --> zext (Cond) 6212 if (VT != MVT::i1) 6213 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Cond); 6214 return Cond; 6215 } 6216 if (C1->isAllOnesValue() && C2->isNullValue()) { 6217 // select Cond, -1, 0 --> sext (Cond) 6218 if (VT != MVT::i1) 6219 Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, VT, Cond); 6220 return Cond; 6221 } 6222 6223 // For any constants that differ by 1, we can transform the select into an 6224 // extend and add. Use a target hook because some targets may prefer to 6225 // transform in the other direction. 6226 if (TLI.convertSelectOfConstantsToMath(VT)) { 6227 if (C1->getAPIntValue() - 1 == C2->getAPIntValue()) { 6228 // select Cond, C1, C1-1 --> add (zext Cond), C1-1 6229 if (VT != MVT::i1) 6230 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Cond); 6231 return DAG.getNode(ISD::ADD, DL, VT, Cond, N2); 6232 } 6233 if (C1->getAPIntValue() + 1 == C2->getAPIntValue()) { 6234 // select Cond, C1, C1+1 --> add (sext Cond), C1+1 6235 if (VT != MVT::i1) 6236 Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, VT, Cond); 6237 return DAG.getNode(ISD::ADD, DL, VT, Cond, N2); 6238 } 6239 } 6240 6241 return SDValue(); 6242 } 6243 6244 // fold (select Cond, 0, 1) -> (xor Cond, 1) 6245 // We can't do this reliably if integer based booleans have different contents 6246 // to floating point based booleans. This is because we can't tell whether we 6247 // have an integer-based boolean or a floating-point-based boolean unless we 6248 // can find the SETCC that produced it and inspect its operands. This is 6249 // fairly easy if C is the SETCC node, but it can potentially be 6250 // undiscoverable (or not reasonably discoverable). For example, it could be 6251 // in another basic block or it could require searching a complicated 6252 // expression. 6253 if (CondVT.isInteger() && 6254 TLI.getBooleanContents(false, true) == 6255 TargetLowering::ZeroOrOneBooleanContent && 6256 TLI.getBooleanContents(false, false) == 6257 TargetLowering::ZeroOrOneBooleanContent && 6258 C1->isNullValue() && C2->isOne()) { 6259 SDValue NotCond = 6260 DAG.getNode(ISD::XOR, DL, CondVT, Cond, DAG.getConstant(1, DL, CondVT)); 6261 if (VT.bitsEq(CondVT)) 6262 return NotCond; 6263 return DAG.getZExtOrTrunc(NotCond, DL, VT); 6264 } 6265 6266 return SDValue(); 6267 } 6268 6269 SDValue DAGCombiner::visitSELECT(SDNode *N) { 6270 SDValue N0 = N->getOperand(0); 6271 SDValue N1 = N->getOperand(1); 6272 SDValue N2 = N->getOperand(2); 6273 EVT VT = N->getValueType(0); 6274 EVT VT0 = N0.getValueType(); 6275 SDLoc DL(N); 6276 6277 // fold (select C, X, X) -> X 6278 if (N1 == N2) 6279 return N1; 6280 6281 if (const ConstantSDNode *N0C = dyn_cast<const ConstantSDNode>(N0)) { 6282 // fold (select true, X, Y) -> X 6283 // fold (select false, X, Y) -> Y 6284 return !N0C->isNullValue() ? N1 : N2; 6285 } 6286 6287 // fold (select X, X, Y) -> (or X, Y) 6288 // fold (select X, 1, Y) -> (or C, Y) 6289 if (VT == VT0 && VT == MVT::i1 && (N0 == N1 || isOneConstant(N1))) 6290 return DAG.getNode(ISD::OR, DL, VT, N0, N2); 6291 6292 if (SDValue V = foldSelectOfConstants(N)) 6293 return V; 6294 6295 // fold (select C, 0, X) -> (and (not C), X) 6296 if (VT == VT0 && VT == MVT::i1 && isNullConstant(N1)) { 6297 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT); 6298 AddToWorklist(NOTNode.getNode()); 6299 return DAG.getNode(ISD::AND, DL, VT, NOTNode, N2); 6300 } 6301 // fold (select C, X, 1) -> (or (not C), X) 6302 if (VT == VT0 && VT == MVT::i1 && isOneConstant(N2)) { 6303 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT); 6304 AddToWorklist(NOTNode.getNode()); 6305 return DAG.getNode(ISD::OR, DL, VT, NOTNode, N1); 6306 } 6307 // fold (select X, Y, X) -> (and X, Y) 6308 // fold (select X, Y, 0) -> (and X, Y) 6309 if (VT == VT0 && VT == MVT::i1 && (N0 == N2 || isNullConstant(N2))) 6310 return DAG.getNode(ISD::AND, DL, VT, N0, N1); 6311 6312 // If we can fold this based on the true/false value, do so. 6313 if (SimplifySelectOps(N, N1, N2)) 6314 return SDValue(N, 0); // Don't revisit N. 6315 6316 if (VT0 == MVT::i1) { 6317 // The code in this block deals with the following 2 equivalences: 6318 // select(C0|C1, x, y) <=> select(C0, x, select(C1, x, y)) 6319 // select(C0&C1, x, y) <=> select(C0, select(C1, x, y), y) 6320 // The target can specify its preferred form with the 6321 // shouldNormalizeToSelectSequence() callback. However we always transform 6322 // to the right anyway if we find the inner select exists in the DAG anyway 6323 // and we always transform to the left side if we know that we can further 6324 // optimize the combination of the conditions. 6325 bool normalizeToSequence = 6326 TLI.shouldNormalizeToSelectSequence(*DAG.getContext(), VT); 6327 // select (and Cond0, Cond1), X, Y 6328 // -> select Cond0, (select Cond1, X, Y), Y 6329 if (N0->getOpcode() == ISD::AND && N0->hasOneUse()) { 6330 SDValue Cond0 = N0->getOperand(0); 6331 SDValue Cond1 = N0->getOperand(1); 6332 SDValue InnerSelect = 6333 DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Cond1, N1, N2); 6334 if (normalizeToSequence || !InnerSelect.use_empty()) 6335 return DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Cond0, 6336 InnerSelect, N2); 6337 } 6338 // select (or Cond0, Cond1), X, Y -> select Cond0, X, (select Cond1, X, Y) 6339 if (N0->getOpcode() == ISD::OR && N0->hasOneUse()) { 6340 SDValue Cond0 = N0->getOperand(0); 6341 SDValue Cond1 = N0->getOperand(1); 6342 SDValue InnerSelect = 6343 DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Cond1, N1, N2); 6344 if (normalizeToSequence || !InnerSelect.use_empty()) 6345 return DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Cond0, N1, 6346 InnerSelect); 6347 } 6348 6349 // select Cond0, (select Cond1, X, Y), Y -> select (and Cond0, Cond1), X, Y 6350 if (N1->getOpcode() == ISD::SELECT && N1->hasOneUse()) { 6351 SDValue N1_0 = N1->getOperand(0); 6352 SDValue N1_1 = N1->getOperand(1); 6353 SDValue N1_2 = N1->getOperand(2); 6354 if (N1_2 == N2 && N0.getValueType() == N1_0.getValueType()) { 6355 // Create the actual and node if we can generate good code for it. 6356 if (!normalizeToSequence) { 6357 SDValue And = DAG.getNode(ISD::AND, DL, N0.getValueType(), N0, N1_0); 6358 return DAG.getNode(ISD::SELECT, DL, N1.getValueType(), And, N1_1, N2); 6359 } 6360 // Otherwise see if we can optimize the "and" to a better pattern. 6361 if (SDValue Combined = visitANDLike(N0, N1_0, N)) 6362 return DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Combined, N1_1, 6363 N2); 6364 } 6365 } 6366 // select Cond0, X, (select Cond1, X, Y) -> select (or Cond0, Cond1), X, Y 6367 if (N2->getOpcode() == ISD::SELECT && N2->hasOneUse()) { 6368 SDValue N2_0 = N2->getOperand(0); 6369 SDValue N2_1 = N2->getOperand(1); 6370 SDValue N2_2 = N2->getOperand(2); 6371 if (N2_1 == N1 && N0.getValueType() == N2_0.getValueType()) { 6372 // Create the actual or node if we can generate good code for it. 6373 if (!normalizeToSequence) { 6374 SDValue Or = DAG.getNode(ISD::OR, DL, N0.getValueType(), N0, N2_0); 6375 return DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Or, N1, N2_2); 6376 } 6377 // Otherwise see if we can optimize to a better pattern. 6378 if (SDValue Combined = visitORLike(N0, N2_0, N)) 6379 return DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Combined, N1, 6380 N2_2); 6381 } 6382 } 6383 } 6384 6385 // select (xor Cond, 1), X, Y -> select Cond, Y, X 6386 if (VT0 == MVT::i1) { 6387 if (N0->getOpcode() == ISD::XOR) { 6388 if (auto *C = dyn_cast<ConstantSDNode>(N0->getOperand(1))) { 6389 SDValue Cond0 = N0->getOperand(0); 6390 if (C->isOne()) 6391 return DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Cond0, N2, N1); 6392 } 6393 } 6394 } 6395 6396 // fold selects based on a setcc into other things, such as min/max/abs 6397 if (N0.getOpcode() == ISD::SETCC) { 6398 // select x, y (fcmp lt x, y) -> fminnum x, y 6399 // select x, y (fcmp gt x, y) -> fmaxnum x, y 6400 // 6401 // This is OK if we don't care about what happens if either operand is a 6402 // NaN. 6403 // 6404 6405 // FIXME: Instead of testing for UnsafeFPMath, this should be checking for 6406 // no signed zeros as well as no nans. 6407 const TargetOptions &Options = DAG.getTarget().Options; 6408 if (Options.UnsafeFPMath && VT.isFloatingPoint() && N0.hasOneUse() && 6409 DAG.isKnownNeverNaN(N1) && DAG.isKnownNeverNaN(N2)) { 6410 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get(); 6411 6412 if (SDValue FMinMax = combineMinNumMaxNum( 6413 DL, VT, N0.getOperand(0), N0.getOperand(1), N1, N2, CC, TLI, DAG)) 6414 return FMinMax; 6415 } 6416 6417 if ((!LegalOperations && 6418 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT)) || 6419 TLI.isOperationLegal(ISD::SELECT_CC, VT)) 6420 return DAG.getNode(ISD::SELECT_CC, DL, VT, N0.getOperand(0), 6421 N0.getOperand(1), N1, N2, N0.getOperand(2)); 6422 return SimplifySelect(DL, N0, N1, N2); 6423 } 6424 6425 return SDValue(); 6426 } 6427 6428 static 6429 std::pair<SDValue, SDValue> SplitVSETCC(const SDNode *N, SelectionDAG &DAG) { 6430 SDLoc DL(N); 6431 EVT LoVT, HiVT; 6432 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0)); 6433 6434 // Split the inputs. 6435 SDValue Lo, Hi, LL, LH, RL, RH; 6436 std::tie(LL, LH) = DAG.SplitVectorOperand(N, 0); 6437 std::tie(RL, RH) = DAG.SplitVectorOperand(N, 1); 6438 6439 Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2)); 6440 Hi = DAG.getNode(N->getOpcode(), DL, HiVT, LH, RH, N->getOperand(2)); 6441 6442 return std::make_pair(Lo, Hi); 6443 } 6444 6445 // This function assumes all the vselect's arguments are CONCAT_VECTOR 6446 // nodes and that the condition is a BV of ConstantSDNodes (or undefs). 6447 static SDValue ConvertSelectToConcatVector(SDNode *N, SelectionDAG &DAG) { 6448 SDLoc DL(N); 6449 SDValue Cond = N->getOperand(0); 6450 SDValue LHS = N->getOperand(1); 6451 SDValue RHS = N->getOperand(2); 6452 EVT VT = N->getValueType(0); 6453 int NumElems = VT.getVectorNumElements(); 6454 assert(LHS.getOpcode() == ISD::CONCAT_VECTORS && 6455 RHS.getOpcode() == ISD::CONCAT_VECTORS && 6456 Cond.getOpcode() == ISD::BUILD_VECTOR); 6457 6458 // CONCAT_VECTOR can take an arbitrary number of arguments. We only care about 6459 // binary ones here. 6460 if (LHS->getNumOperands() != 2 || RHS->getNumOperands() != 2) 6461 return SDValue(); 6462 6463 // We're sure we have an even number of elements due to the 6464 // concat_vectors we have as arguments to vselect. 6465 // Skip BV elements until we find one that's not an UNDEF 6466 // After we find an UNDEF element, keep looping until we get to half the 6467 // length of the BV and see if all the non-undef nodes are the same. 6468 ConstantSDNode *BottomHalf = nullptr; 6469 for (int i = 0; i < NumElems / 2; ++i) { 6470 if (Cond->getOperand(i)->isUndef()) 6471 continue; 6472 6473 if (BottomHalf == nullptr) 6474 BottomHalf = cast<ConstantSDNode>(Cond.getOperand(i)); 6475 else if (Cond->getOperand(i).getNode() != BottomHalf) 6476 return SDValue(); 6477 } 6478 6479 // Do the same for the second half of the BuildVector 6480 ConstantSDNode *TopHalf = nullptr; 6481 for (int i = NumElems / 2; i < NumElems; ++i) { 6482 if (Cond->getOperand(i)->isUndef()) 6483 continue; 6484 6485 if (TopHalf == nullptr) 6486 TopHalf = cast<ConstantSDNode>(Cond.getOperand(i)); 6487 else if (Cond->getOperand(i).getNode() != TopHalf) 6488 return SDValue(); 6489 } 6490 6491 assert(TopHalf && BottomHalf && 6492 "One half of the selector was all UNDEFs and the other was all the " 6493 "same value. This should have been addressed before this function."); 6494 return DAG.getNode( 6495 ISD::CONCAT_VECTORS, DL, VT, 6496 BottomHalf->isNullValue() ? RHS->getOperand(0) : LHS->getOperand(0), 6497 TopHalf->isNullValue() ? RHS->getOperand(1) : LHS->getOperand(1)); 6498 } 6499 6500 SDValue DAGCombiner::visitMSCATTER(SDNode *N) { 6501 if (Level >= AfterLegalizeTypes) 6502 return SDValue(); 6503 6504 MaskedScatterSDNode *MSC = cast<MaskedScatterSDNode>(N); 6505 SDValue Mask = MSC->getMask(); 6506 SDValue Data = MSC->getValue(); 6507 SDLoc DL(N); 6508 6509 // If the MSCATTER data type requires splitting and the mask is provided by a 6510 // SETCC, then split both nodes and its operands before legalization. This 6511 // prevents the type legalizer from unrolling SETCC into scalar comparisons 6512 // and enables future optimizations (e.g. min/max pattern matching on X86). 6513 if (Mask.getOpcode() != ISD::SETCC) 6514 return SDValue(); 6515 6516 // Check if any splitting is required. 6517 if (TLI.getTypeAction(*DAG.getContext(), Data.getValueType()) != 6518 TargetLowering::TypeSplitVector) 6519 return SDValue(); 6520 SDValue MaskLo, MaskHi, Lo, Hi; 6521 std::tie(MaskLo, MaskHi) = SplitVSETCC(Mask.getNode(), DAG); 6522 6523 EVT LoVT, HiVT; 6524 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(MSC->getValueType(0)); 6525 6526 SDValue Chain = MSC->getChain(); 6527 6528 EVT MemoryVT = MSC->getMemoryVT(); 6529 unsigned Alignment = MSC->getOriginalAlignment(); 6530 6531 EVT LoMemVT, HiMemVT; 6532 std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT); 6533 6534 SDValue DataLo, DataHi; 6535 std::tie(DataLo, DataHi) = DAG.SplitVector(Data, DL); 6536 6537 SDValue BasePtr = MSC->getBasePtr(); 6538 SDValue IndexLo, IndexHi; 6539 std::tie(IndexLo, IndexHi) = DAG.SplitVector(MSC->getIndex(), DL); 6540 6541 MachineMemOperand *MMO = DAG.getMachineFunction(). 6542 getMachineMemOperand(MSC->getPointerInfo(), 6543 MachineMemOperand::MOStore, LoMemVT.getStoreSize(), 6544 Alignment, MSC->getAAInfo(), MSC->getRanges()); 6545 6546 SDValue OpsLo[] = { Chain, DataLo, MaskLo, BasePtr, IndexLo }; 6547 Lo = DAG.getMaskedScatter(DAG.getVTList(MVT::Other), DataLo.getValueType(), 6548 DL, OpsLo, MMO); 6549 6550 SDValue OpsHi[] = {Chain, DataHi, MaskHi, BasePtr, IndexHi}; 6551 Hi = DAG.getMaskedScatter(DAG.getVTList(MVT::Other), DataHi.getValueType(), 6552 DL, OpsHi, MMO); 6553 6554 AddToWorklist(Lo.getNode()); 6555 AddToWorklist(Hi.getNode()); 6556 6557 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo, Hi); 6558 } 6559 6560 SDValue DAGCombiner::visitMSTORE(SDNode *N) { 6561 if (Level >= AfterLegalizeTypes) 6562 return SDValue(); 6563 6564 MaskedStoreSDNode *MST = dyn_cast<MaskedStoreSDNode>(N); 6565 SDValue Mask = MST->getMask(); 6566 SDValue Data = MST->getValue(); 6567 EVT VT = Data.getValueType(); 6568 SDLoc DL(N); 6569 6570 // If the MSTORE data type requires splitting and the mask is provided by a 6571 // SETCC, then split both nodes and its operands before legalization. This 6572 // prevents the type legalizer from unrolling SETCC into scalar comparisons 6573 // and enables future optimizations (e.g. min/max pattern matching on X86). 6574 if (Mask.getOpcode() == ISD::SETCC) { 6575 // Check if any splitting is required. 6576 if (TLI.getTypeAction(*DAG.getContext(), VT) != 6577 TargetLowering::TypeSplitVector) 6578 return SDValue(); 6579 6580 SDValue MaskLo, MaskHi, Lo, Hi; 6581 std::tie(MaskLo, MaskHi) = SplitVSETCC(Mask.getNode(), DAG); 6582 6583 SDValue Chain = MST->getChain(); 6584 SDValue Ptr = MST->getBasePtr(); 6585 6586 EVT MemoryVT = MST->getMemoryVT(); 6587 unsigned Alignment = MST->getOriginalAlignment(); 6588 6589 // if Alignment is equal to the vector size, 6590 // take the half of it for the second part 6591 unsigned SecondHalfAlignment = 6592 (Alignment == VT.getSizeInBits() / 8) ? Alignment / 2 : Alignment; 6593 6594 EVT LoMemVT, HiMemVT; 6595 std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT); 6596 6597 SDValue DataLo, DataHi; 6598 std::tie(DataLo, DataHi) = DAG.SplitVector(Data, DL); 6599 6600 MachineMemOperand *MMO = DAG.getMachineFunction(). 6601 getMachineMemOperand(MST->getPointerInfo(), 6602 MachineMemOperand::MOStore, LoMemVT.getStoreSize(), 6603 Alignment, MST->getAAInfo(), MST->getRanges()); 6604 6605 Lo = DAG.getMaskedStore(Chain, DL, DataLo, Ptr, MaskLo, LoMemVT, MMO, 6606 MST->isTruncatingStore(), 6607 MST->isCompressingStore()); 6608 6609 Ptr = TLI.IncrementMemoryAddress(Ptr, MaskLo, DL, LoMemVT, DAG, 6610 MST->isCompressingStore()); 6611 6612 MMO = DAG.getMachineFunction(). 6613 getMachineMemOperand(MST->getPointerInfo(), 6614 MachineMemOperand::MOStore, HiMemVT.getStoreSize(), 6615 SecondHalfAlignment, MST->getAAInfo(), 6616 MST->getRanges()); 6617 6618 Hi = DAG.getMaskedStore(Chain, DL, DataHi, Ptr, MaskHi, HiMemVT, MMO, 6619 MST->isTruncatingStore(), 6620 MST->isCompressingStore()); 6621 6622 AddToWorklist(Lo.getNode()); 6623 AddToWorklist(Hi.getNode()); 6624 6625 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo, Hi); 6626 } 6627 return SDValue(); 6628 } 6629 6630 SDValue DAGCombiner::visitMGATHER(SDNode *N) { 6631 if (Level >= AfterLegalizeTypes) 6632 return SDValue(); 6633 6634 MaskedGatherSDNode *MGT = dyn_cast<MaskedGatherSDNode>(N); 6635 SDValue Mask = MGT->getMask(); 6636 SDLoc DL(N); 6637 6638 // If the MGATHER result requires splitting and the mask is provided by a 6639 // SETCC, then split both nodes and its operands before legalization. This 6640 // prevents the type legalizer from unrolling SETCC into scalar comparisons 6641 // and enables future optimizations (e.g. min/max pattern matching on X86). 6642 6643 if (Mask.getOpcode() != ISD::SETCC) 6644 return SDValue(); 6645 6646 EVT VT = N->getValueType(0); 6647 6648 // Check if any splitting is required. 6649 if (TLI.getTypeAction(*DAG.getContext(), VT) != 6650 TargetLowering::TypeSplitVector) 6651 return SDValue(); 6652 6653 SDValue MaskLo, MaskHi, Lo, Hi; 6654 std::tie(MaskLo, MaskHi) = SplitVSETCC(Mask.getNode(), DAG); 6655 6656 SDValue Src0 = MGT->getValue(); 6657 SDValue Src0Lo, Src0Hi; 6658 std::tie(Src0Lo, Src0Hi) = DAG.SplitVector(Src0, DL); 6659 6660 EVT LoVT, HiVT; 6661 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(VT); 6662 6663 SDValue Chain = MGT->getChain(); 6664 EVT MemoryVT = MGT->getMemoryVT(); 6665 unsigned Alignment = MGT->getOriginalAlignment(); 6666 6667 EVT LoMemVT, HiMemVT; 6668 std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT); 6669 6670 SDValue BasePtr = MGT->getBasePtr(); 6671 SDValue Index = MGT->getIndex(); 6672 SDValue IndexLo, IndexHi; 6673 std::tie(IndexLo, IndexHi) = DAG.SplitVector(Index, DL); 6674 6675 MachineMemOperand *MMO = DAG.getMachineFunction(). 6676 getMachineMemOperand(MGT->getPointerInfo(), 6677 MachineMemOperand::MOLoad, LoMemVT.getStoreSize(), 6678 Alignment, MGT->getAAInfo(), MGT->getRanges()); 6679 6680 SDValue OpsLo[] = { Chain, Src0Lo, MaskLo, BasePtr, IndexLo }; 6681 Lo = DAG.getMaskedGather(DAG.getVTList(LoVT, MVT::Other), LoVT, DL, OpsLo, 6682 MMO); 6683 6684 SDValue OpsHi[] = {Chain, Src0Hi, MaskHi, BasePtr, IndexHi}; 6685 Hi = DAG.getMaskedGather(DAG.getVTList(HiVT, MVT::Other), HiVT, DL, OpsHi, 6686 MMO); 6687 6688 AddToWorklist(Lo.getNode()); 6689 AddToWorklist(Hi.getNode()); 6690 6691 // Build a factor node to remember that this load is independent of the 6692 // other one. 6693 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo.getValue(1), 6694 Hi.getValue(1)); 6695 6696 // Legalized the chain result - switch anything that used the old chain to 6697 // use the new one. 6698 DAG.ReplaceAllUsesOfValueWith(SDValue(MGT, 1), Chain); 6699 6700 SDValue GatherRes = DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Lo, Hi); 6701 6702 SDValue RetOps[] = { GatherRes, Chain }; 6703 return DAG.getMergeValues(RetOps, DL); 6704 } 6705 6706 SDValue DAGCombiner::visitMLOAD(SDNode *N) { 6707 if (Level >= AfterLegalizeTypes) 6708 return SDValue(); 6709 6710 MaskedLoadSDNode *MLD = dyn_cast<MaskedLoadSDNode>(N); 6711 SDValue Mask = MLD->getMask(); 6712 SDLoc DL(N); 6713 6714 // If the MLOAD result requires splitting and the mask is provided by a 6715 // SETCC, then split both nodes and its operands before legalization. This 6716 // prevents the type legalizer from unrolling SETCC into scalar comparisons 6717 // and enables future optimizations (e.g. min/max pattern matching on X86). 6718 if (Mask.getOpcode() == ISD::SETCC) { 6719 EVT VT = N->getValueType(0); 6720 6721 // Check if any splitting is required. 6722 if (TLI.getTypeAction(*DAG.getContext(), VT) != 6723 TargetLowering::TypeSplitVector) 6724 return SDValue(); 6725 6726 SDValue MaskLo, MaskHi, Lo, Hi; 6727 std::tie(MaskLo, MaskHi) = SplitVSETCC(Mask.getNode(), DAG); 6728 6729 SDValue Src0 = MLD->getSrc0(); 6730 SDValue Src0Lo, Src0Hi; 6731 std::tie(Src0Lo, Src0Hi) = DAG.SplitVector(Src0, DL); 6732 6733 EVT LoVT, HiVT; 6734 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(MLD->getValueType(0)); 6735 6736 SDValue Chain = MLD->getChain(); 6737 SDValue Ptr = MLD->getBasePtr(); 6738 EVT MemoryVT = MLD->getMemoryVT(); 6739 unsigned Alignment = MLD->getOriginalAlignment(); 6740 6741 // if Alignment is equal to the vector size, 6742 // take the half of it for the second part 6743 unsigned SecondHalfAlignment = 6744 (Alignment == MLD->getValueType(0).getSizeInBits()/8) ? 6745 Alignment/2 : Alignment; 6746 6747 EVT LoMemVT, HiMemVT; 6748 std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT); 6749 6750 MachineMemOperand *MMO = DAG.getMachineFunction(). 6751 getMachineMemOperand(MLD->getPointerInfo(), 6752 MachineMemOperand::MOLoad, LoMemVT.getStoreSize(), 6753 Alignment, MLD->getAAInfo(), MLD->getRanges()); 6754 6755 Lo = DAG.getMaskedLoad(LoVT, DL, Chain, Ptr, MaskLo, Src0Lo, LoMemVT, MMO, 6756 ISD::NON_EXTLOAD, MLD->isExpandingLoad()); 6757 6758 Ptr = TLI.IncrementMemoryAddress(Ptr, MaskLo, DL, LoMemVT, DAG, 6759 MLD->isExpandingLoad()); 6760 6761 MMO = DAG.getMachineFunction(). 6762 getMachineMemOperand(MLD->getPointerInfo(), 6763 MachineMemOperand::MOLoad, HiMemVT.getStoreSize(), 6764 SecondHalfAlignment, MLD->getAAInfo(), MLD->getRanges()); 6765 6766 Hi = DAG.getMaskedLoad(HiVT, DL, Chain, Ptr, MaskHi, Src0Hi, HiMemVT, MMO, 6767 ISD::NON_EXTLOAD, MLD->isExpandingLoad()); 6768 6769 AddToWorklist(Lo.getNode()); 6770 AddToWorklist(Hi.getNode()); 6771 6772 // Build a factor node to remember that this load is independent of the 6773 // other one. 6774 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo.getValue(1), 6775 Hi.getValue(1)); 6776 6777 // Legalized the chain result - switch anything that used the old chain to 6778 // use the new one. 6779 DAG.ReplaceAllUsesOfValueWith(SDValue(MLD, 1), Chain); 6780 6781 SDValue LoadRes = DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Lo, Hi); 6782 6783 SDValue RetOps[] = { LoadRes, Chain }; 6784 return DAG.getMergeValues(RetOps, DL); 6785 } 6786 return SDValue(); 6787 } 6788 6789 /// A vector select of 2 constant vectors can be simplified to math/logic to 6790 /// avoid a variable select instruction and possibly avoid constant loads. 6791 SDValue DAGCombiner::foldVSelectOfConstants(SDNode *N) { 6792 SDValue Cond = N->getOperand(0); 6793 SDValue N1 = N->getOperand(1); 6794 SDValue N2 = N->getOperand(2); 6795 EVT VT = N->getValueType(0); 6796 if (!Cond.hasOneUse() || Cond.getScalarValueSizeInBits() != 1 || 6797 !TLI.convertSelectOfConstantsToMath(VT) || 6798 !ISD::isBuildVectorOfConstantSDNodes(N1.getNode()) || 6799 !ISD::isBuildVectorOfConstantSDNodes(N2.getNode())) 6800 return SDValue(); 6801 6802 // Check if we can use the condition value to increment/decrement a single 6803 // constant value. This simplifies a select to an add and removes a constant 6804 // load/materialization from the general case. 6805 bool AllAddOne = true; 6806 bool AllSubOne = true; 6807 unsigned Elts = VT.getVectorNumElements(); 6808 for (unsigned i = 0; i != Elts; ++i) { 6809 SDValue N1Elt = N1.getOperand(i); 6810 SDValue N2Elt = N2.getOperand(i); 6811 if (N1Elt.isUndef() || N2Elt.isUndef()) 6812 continue; 6813 6814 const APInt &C1 = cast<ConstantSDNode>(N1Elt)->getAPIntValue(); 6815 const APInt &C2 = cast<ConstantSDNode>(N2Elt)->getAPIntValue(); 6816 if (C1 != C2 + 1) 6817 AllAddOne = false; 6818 if (C1 != C2 - 1) 6819 AllSubOne = false; 6820 } 6821 6822 // Further simplifications for the extra-special cases where the constants are 6823 // all 0 or all -1 should be implemented as folds of these patterns. 6824 SDLoc DL(N); 6825 if (AllAddOne || AllSubOne) { 6826 // vselect <N x i1> Cond, C+1, C --> add (zext Cond), C 6827 // vselect <N x i1> Cond, C-1, C --> add (sext Cond), C 6828 auto ExtendOpcode = AllAddOne ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND; 6829 SDValue ExtendedCond = DAG.getNode(ExtendOpcode, DL, VT, Cond); 6830 return DAG.getNode(ISD::ADD, DL, VT, ExtendedCond, N2); 6831 } 6832 6833 // The general case for select-of-constants: 6834 // vselect <N x i1> Cond, C1, C2 --> xor (and (sext Cond), (C1^C2)), C2 6835 // ...but that only makes sense if a vselect is slower than 2 logic ops, so 6836 // leave that to a machine-specific pass. 6837 return SDValue(); 6838 } 6839 6840 SDValue DAGCombiner::visitVSELECT(SDNode *N) { 6841 SDValue N0 = N->getOperand(0); 6842 SDValue N1 = N->getOperand(1); 6843 SDValue N2 = N->getOperand(2); 6844 SDLoc DL(N); 6845 6846 // fold (vselect C, X, X) -> X 6847 if (N1 == N2) 6848 return N1; 6849 6850 // Canonicalize integer abs. 6851 // vselect (setg[te] X, 0), X, -X -> 6852 // vselect (setgt X, -1), X, -X -> 6853 // vselect (setl[te] X, 0), -X, X -> 6854 // Y = sra (X, size(X)-1); xor (add (X, Y), Y) 6855 if (N0.getOpcode() == ISD::SETCC) { 6856 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1); 6857 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get(); 6858 bool isAbs = false; 6859 bool RHSIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode()); 6860 6861 if (((RHSIsAllZeros && (CC == ISD::SETGT || CC == ISD::SETGE)) || 6862 (ISD::isBuildVectorAllOnes(RHS.getNode()) && CC == ISD::SETGT)) && 6863 N1 == LHS && N2.getOpcode() == ISD::SUB && N1 == N2.getOperand(1)) 6864 isAbs = ISD::isBuildVectorAllZeros(N2.getOperand(0).getNode()); 6865 else if ((RHSIsAllZeros && (CC == ISD::SETLT || CC == ISD::SETLE)) && 6866 N2 == LHS && N1.getOpcode() == ISD::SUB && N2 == N1.getOperand(1)) 6867 isAbs = ISD::isBuildVectorAllZeros(N1.getOperand(0).getNode()); 6868 6869 if (isAbs) { 6870 EVT VT = LHS.getValueType(); 6871 if (TLI.isOperationLegalOrCustom(ISD::ABS, VT)) 6872 return DAG.getNode(ISD::ABS, DL, VT, LHS); 6873 6874 SDValue Shift = DAG.getNode( 6875 ISD::SRA, DL, VT, LHS, 6876 DAG.getConstant(VT.getScalarSizeInBits() - 1, DL, VT)); 6877 SDValue Add = DAG.getNode(ISD::ADD, DL, VT, LHS, Shift); 6878 AddToWorklist(Shift.getNode()); 6879 AddToWorklist(Add.getNode()); 6880 return DAG.getNode(ISD::XOR, DL, VT, Add, Shift); 6881 } 6882 } 6883 6884 if (SimplifySelectOps(N, N1, N2)) 6885 return SDValue(N, 0); // Don't revisit N. 6886 6887 // Fold (vselect (build_vector all_ones), N1, N2) -> N1 6888 if (ISD::isBuildVectorAllOnes(N0.getNode())) 6889 return N1; 6890 // Fold (vselect (build_vector all_zeros), N1, N2) -> N2 6891 if (ISD::isBuildVectorAllZeros(N0.getNode())) 6892 return N2; 6893 6894 // The ConvertSelectToConcatVector function is assuming both the above 6895 // checks for (vselect (build_vector all{ones,zeros) ...) have been made 6896 // and addressed. 6897 if (N1.getOpcode() == ISD::CONCAT_VECTORS && 6898 N2.getOpcode() == ISD::CONCAT_VECTORS && 6899 ISD::isBuildVectorOfConstantSDNodes(N0.getNode())) { 6900 if (SDValue CV = ConvertSelectToConcatVector(N, DAG)) 6901 return CV; 6902 } 6903 6904 if (SDValue V = foldVSelectOfConstants(N)) 6905 return V; 6906 6907 return SDValue(); 6908 } 6909 6910 SDValue DAGCombiner::visitSELECT_CC(SDNode *N) { 6911 SDValue N0 = N->getOperand(0); 6912 SDValue N1 = N->getOperand(1); 6913 SDValue N2 = N->getOperand(2); 6914 SDValue N3 = N->getOperand(3); 6915 SDValue N4 = N->getOperand(4); 6916 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get(); 6917 6918 // fold select_cc lhs, rhs, x, x, cc -> x 6919 if (N2 == N3) 6920 return N2; 6921 6922 // Determine if the condition we're dealing with is constant 6923 if (SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()), N0, N1, 6924 CC, SDLoc(N), false)) { 6925 AddToWorklist(SCC.getNode()); 6926 6927 if (ConstantSDNode *SCCC = dyn_cast<ConstantSDNode>(SCC.getNode())) { 6928 if (!SCCC->isNullValue()) 6929 return N2; // cond always true -> true val 6930 else 6931 return N3; // cond always false -> false val 6932 } else if (SCC->isUndef()) { 6933 // When the condition is UNDEF, just return the first operand. This is 6934 // coherent the DAG creation, no setcc node is created in this case 6935 return N2; 6936 } else if (SCC.getOpcode() == ISD::SETCC) { 6937 // Fold to a simpler select_cc 6938 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), N2.getValueType(), 6939 SCC.getOperand(0), SCC.getOperand(1), N2, N3, 6940 SCC.getOperand(2)); 6941 } 6942 } 6943 6944 // If we can fold this based on the true/false value, do so. 6945 if (SimplifySelectOps(N, N2, N3)) 6946 return SDValue(N, 0); // Don't revisit N. 6947 6948 // fold select_cc into other things, such as min/max/abs 6949 return SimplifySelectCC(SDLoc(N), N0, N1, N2, N3, CC); 6950 } 6951 6952 SDValue DAGCombiner::visitSETCC(SDNode *N) { 6953 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1), 6954 cast<CondCodeSDNode>(N->getOperand(2))->get(), 6955 SDLoc(N)); 6956 } 6957 6958 SDValue DAGCombiner::visitSETCCE(SDNode *N) { 6959 SDValue LHS = N->getOperand(0); 6960 SDValue RHS = N->getOperand(1); 6961 SDValue Carry = N->getOperand(2); 6962 SDValue Cond = N->getOperand(3); 6963 6964 // If Carry is false, fold to a regular SETCC. 6965 if (Carry.getOpcode() == ISD::CARRY_FALSE) 6966 return DAG.getNode(ISD::SETCC, SDLoc(N), N->getVTList(), LHS, RHS, Cond); 6967 6968 return SDValue(); 6969 } 6970 6971 SDValue DAGCombiner::visitSETCCCARRY(SDNode *N) { 6972 SDValue LHS = N->getOperand(0); 6973 SDValue RHS = N->getOperand(1); 6974 SDValue Carry = N->getOperand(2); 6975 SDValue Cond = N->getOperand(3); 6976 6977 // If Carry is false, fold to a regular SETCC. 6978 if (isNullConstant(Carry)) 6979 return DAG.getNode(ISD::SETCC, SDLoc(N), N->getVTList(), LHS, RHS, Cond); 6980 6981 return SDValue(); 6982 } 6983 6984 /// Try to fold a sext/zext/aext dag node into a ConstantSDNode or 6985 /// a build_vector of constants. 6986 /// This function is called by the DAGCombiner when visiting sext/zext/aext 6987 /// dag nodes (see for example method DAGCombiner::visitSIGN_EXTEND). 6988 /// Vector extends are not folded if operations are legal; this is to 6989 /// avoid introducing illegal build_vector dag nodes. 6990 static SDNode *tryToFoldExtendOfConstant(SDNode *N, const TargetLowering &TLI, 6991 SelectionDAG &DAG, bool LegalTypes, 6992 bool LegalOperations) { 6993 unsigned Opcode = N->getOpcode(); 6994 SDValue N0 = N->getOperand(0); 6995 EVT VT = N->getValueType(0); 6996 6997 assert((Opcode == ISD::SIGN_EXTEND || Opcode == ISD::ZERO_EXTEND || 6998 Opcode == ISD::ANY_EXTEND || Opcode == ISD::SIGN_EXTEND_VECTOR_INREG || 6999 Opcode == ISD::ZERO_EXTEND_VECTOR_INREG) 7000 && "Expected EXTEND dag node in input!"); 7001 7002 // fold (sext c1) -> c1 7003 // fold (zext c1) -> c1 7004 // fold (aext c1) -> c1 7005 if (isa<ConstantSDNode>(N0)) 7006 return DAG.getNode(Opcode, SDLoc(N), VT, N0).getNode(); 7007 7008 // fold (sext (build_vector AllConstants) -> (build_vector AllConstants) 7009 // fold (zext (build_vector AllConstants) -> (build_vector AllConstants) 7010 // fold (aext (build_vector AllConstants) -> (build_vector AllConstants) 7011 EVT SVT = VT.getScalarType(); 7012 if (!(VT.isVector() && 7013 (!LegalTypes || (!LegalOperations && TLI.isTypeLegal(SVT))) && 7014 ISD::isBuildVectorOfConstantSDNodes(N0.getNode()))) 7015 return nullptr; 7016 7017 // We can fold this node into a build_vector. 7018 unsigned VTBits = SVT.getSizeInBits(); 7019 unsigned EVTBits = N0->getValueType(0).getScalarSizeInBits(); 7020 SmallVector<SDValue, 8> Elts; 7021 unsigned NumElts = VT.getVectorNumElements(); 7022 SDLoc DL(N); 7023 7024 for (unsigned i=0; i != NumElts; ++i) { 7025 SDValue Op = N0->getOperand(i); 7026 if (Op->isUndef()) { 7027 Elts.push_back(DAG.getUNDEF(SVT)); 7028 continue; 7029 } 7030 7031 SDLoc DL(Op); 7032 // Get the constant value and if needed trunc it to the size of the type. 7033 // Nodes like build_vector might have constants wider than the scalar type. 7034 APInt C = cast<ConstantSDNode>(Op)->getAPIntValue().zextOrTrunc(EVTBits); 7035 if (Opcode == ISD::SIGN_EXTEND || Opcode == ISD::SIGN_EXTEND_VECTOR_INREG) 7036 Elts.push_back(DAG.getConstant(C.sext(VTBits), DL, SVT)); 7037 else 7038 Elts.push_back(DAG.getConstant(C.zext(VTBits), DL, SVT)); 7039 } 7040 7041 return DAG.getBuildVector(VT, DL, Elts).getNode(); 7042 } 7043 7044 // ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this: 7045 // "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))" 7046 // transformation. Returns true if extension are possible and the above 7047 // mentioned transformation is profitable. 7048 static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0, 7049 unsigned ExtOpc, 7050 SmallVectorImpl<SDNode *> &ExtendNodes, 7051 const TargetLowering &TLI) { 7052 bool HasCopyToRegUses = false; 7053 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType()); 7054 for (SDNode::use_iterator UI = N0.getNode()->use_begin(), 7055 UE = N0.getNode()->use_end(); 7056 UI != UE; ++UI) { 7057 SDNode *User = *UI; 7058 if (User == N) 7059 continue; 7060 if (UI.getUse().getResNo() != N0.getResNo()) 7061 continue; 7062 // FIXME: Only extend SETCC N, N and SETCC N, c for now. 7063 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) { 7064 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get(); 7065 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC)) 7066 // Sign bits will be lost after a zext. 7067 return false; 7068 bool Add = false; 7069 for (unsigned i = 0; i != 2; ++i) { 7070 SDValue UseOp = User->getOperand(i); 7071 if (UseOp == N0) 7072 continue; 7073 if (!isa<ConstantSDNode>(UseOp)) 7074 return false; 7075 Add = true; 7076 } 7077 if (Add) 7078 ExtendNodes.push_back(User); 7079 continue; 7080 } 7081 // If truncates aren't free and there are users we can't 7082 // extend, it isn't worthwhile. 7083 if (!isTruncFree) 7084 return false; 7085 // Remember if this value is live-out. 7086 if (User->getOpcode() == ISD::CopyToReg) 7087 HasCopyToRegUses = true; 7088 } 7089 7090 if (HasCopyToRegUses) { 7091 bool BothLiveOut = false; 7092 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); 7093 UI != UE; ++UI) { 7094 SDUse &Use = UI.getUse(); 7095 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) { 7096 BothLiveOut = true; 7097 break; 7098 } 7099 } 7100 if (BothLiveOut) 7101 // Both unextended and extended values are live out. There had better be 7102 // a good reason for the transformation. 7103 return ExtendNodes.size(); 7104 } 7105 return true; 7106 } 7107 7108 void DAGCombiner::ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs, 7109 SDValue Trunc, SDValue ExtLoad, 7110 const SDLoc &DL, ISD::NodeType ExtType) { 7111 // Extend SetCC uses if necessary. 7112 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) { 7113 SDNode *SetCC = SetCCs[i]; 7114 SmallVector<SDValue, 4> Ops; 7115 7116 for (unsigned j = 0; j != 2; ++j) { 7117 SDValue SOp = SetCC->getOperand(j); 7118 if (SOp == Trunc) 7119 Ops.push_back(ExtLoad); 7120 else 7121 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp)); 7122 } 7123 7124 Ops.push_back(SetCC->getOperand(2)); 7125 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0), Ops)); 7126 } 7127 } 7128 7129 // FIXME: Bring more similar combines here, common to sext/zext (maybe aext?). 7130 SDValue DAGCombiner::CombineExtLoad(SDNode *N) { 7131 SDValue N0 = N->getOperand(0); 7132 EVT DstVT = N->getValueType(0); 7133 EVT SrcVT = N0.getValueType(); 7134 7135 assert((N->getOpcode() == ISD::SIGN_EXTEND || 7136 N->getOpcode() == ISD::ZERO_EXTEND) && 7137 "Unexpected node type (not an extend)!"); 7138 7139 // fold (sext (load x)) to multiple smaller sextloads; same for zext. 7140 // For example, on a target with legal v4i32, but illegal v8i32, turn: 7141 // (v8i32 (sext (v8i16 (load x)))) 7142 // into: 7143 // (v8i32 (concat_vectors (v4i32 (sextload x)), 7144 // (v4i32 (sextload (x + 16))))) 7145 // Where uses of the original load, i.e.: 7146 // (v8i16 (load x)) 7147 // are replaced with: 7148 // (v8i16 (truncate 7149 // (v8i32 (concat_vectors (v4i32 (sextload x)), 7150 // (v4i32 (sextload (x + 16))))))) 7151 // 7152 // This combine is only applicable to illegal, but splittable, vectors. 7153 // All legal types, and illegal non-vector types, are handled elsewhere. 7154 // This combine is controlled by TargetLowering::isVectorLoadExtDesirable. 7155 // 7156 if (N0->getOpcode() != ISD::LOAD) 7157 return SDValue(); 7158 7159 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7160 7161 if (!ISD::isNON_EXTLoad(LN0) || !ISD::isUNINDEXEDLoad(LN0) || 7162 !N0.hasOneUse() || LN0->isVolatile() || !DstVT.isVector() || 7163 !DstVT.isPow2VectorType() || !TLI.isVectorLoadExtDesirable(SDValue(N, 0))) 7164 return SDValue(); 7165 7166 SmallVector<SDNode *, 4> SetCCs; 7167 if (!ExtendUsesToFormExtLoad(N, N0, N->getOpcode(), SetCCs, TLI)) 7168 return SDValue(); 7169 7170 ISD::LoadExtType ExtType = 7171 N->getOpcode() == ISD::SIGN_EXTEND ? ISD::SEXTLOAD : ISD::ZEXTLOAD; 7172 7173 // Try to split the vector types to get down to legal types. 7174 EVT SplitSrcVT = SrcVT; 7175 EVT SplitDstVT = DstVT; 7176 while (!TLI.isLoadExtLegalOrCustom(ExtType, SplitDstVT, SplitSrcVT) && 7177 SplitSrcVT.getVectorNumElements() > 1) { 7178 SplitDstVT = DAG.GetSplitDestVTs(SplitDstVT).first; 7179 SplitSrcVT = DAG.GetSplitDestVTs(SplitSrcVT).first; 7180 } 7181 7182 if (!TLI.isLoadExtLegalOrCustom(ExtType, SplitDstVT, SplitSrcVT)) 7183 return SDValue(); 7184 7185 SDLoc DL(N); 7186 const unsigned NumSplits = 7187 DstVT.getVectorNumElements() / SplitDstVT.getVectorNumElements(); 7188 const unsigned Stride = SplitSrcVT.getStoreSize(); 7189 SmallVector<SDValue, 4> Loads; 7190 SmallVector<SDValue, 4> Chains; 7191 7192 SDValue BasePtr = LN0->getBasePtr(); 7193 for (unsigned Idx = 0; Idx < NumSplits; Idx++) { 7194 const unsigned Offset = Idx * Stride; 7195 const unsigned Align = MinAlign(LN0->getAlignment(), Offset); 7196 7197 SDValue SplitLoad = DAG.getExtLoad( 7198 ExtType, DL, SplitDstVT, LN0->getChain(), BasePtr, 7199 LN0->getPointerInfo().getWithOffset(Offset), SplitSrcVT, Align, 7200 LN0->getMemOperand()->getFlags(), LN0->getAAInfo()); 7201 7202 BasePtr = DAG.getNode(ISD::ADD, DL, BasePtr.getValueType(), BasePtr, 7203 DAG.getConstant(Stride, DL, BasePtr.getValueType())); 7204 7205 Loads.push_back(SplitLoad.getValue(0)); 7206 Chains.push_back(SplitLoad.getValue(1)); 7207 } 7208 7209 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains); 7210 SDValue NewValue = DAG.getNode(ISD::CONCAT_VECTORS, DL, DstVT, Loads); 7211 7212 // Simplify TF. 7213 AddToWorklist(NewChain.getNode()); 7214 7215 CombineTo(N, NewValue); 7216 7217 // Replace uses of the original load (before extension) 7218 // with a truncate of the concatenated sextloaded vectors. 7219 SDValue Trunc = 7220 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), N0.getValueType(), NewValue); 7221 CombineTo(N0.getNode(), Trunc, NewChain); 7222 ExtendSetCCUses(SetCCs, Trunc, NewValue, DL, 7223 (ISD::NodeType)N->getOpcode()); 7224 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7225 } 7226 7227 /// If we're narrowing or widening the result of a vector select and the final 7228 /// size is the same size as a setcc (compare) feeding the select, then try to 7229 /// apply the cast operation to the select's operands because matching vector 7230 /// sizes for a select condition and other operands should be more efficient. 7231 SDValue DAGCombiner::matchVSelectOpSizesWithSetCC(SDNode *Cast) { 7232 unsigned CastOpcode = Cast->getOpcode(); 7233 assert((CastOpcode == ISD::SIGN_EXTEND || CastOpcode == ISD::ZERO_EXTEND || 7234 CastOpcode == ISD::TRUNCATE || CastOpcode == ISD::FP_EXTEND || 7235 CastOpcode == ISD::FP_ROUND) && 7236 "Unexpected opcode for vector select narrowing/widening"); 7237 7238 // We only do this transform before legal ops because the pattern may be 7239 // obfuscated by target-specific operations after legalization. Do not create 7240 // an illegal select op, however, because that may be difficult to lower. 7241 EVT VT = Cast->getValueType(0); 7242 if (LegalOperations || !TLI.isOperationLegalOrCustom(ISD::VSELECT, VT)) 7243 return SDValue(); 7244 7245 SDValue VSel = Cast->getOperand(0); 7246 if (VSel.getOpcode() != ISD::VSELECT || !VSel.hasOneUse() || 7247 VSel.getOperand(0).getOpcode() != ISD::SETCC) 7248 return SDValue(); 7249 7250 // Does the setcc have the same vector size as the casted select? 7251 SDValue SetCC = VSel.getOperand(0); 7252 EVT SetCCVT = getSetCCResultType(SetCC.getOperand(0).getValueType()); 7253 if (SetCCVT.getSizeInBits() != VT.getSizeInBits()) 7254 return SDValue(); 7255 7256 // cast (vsel (setcc X), A, B) --> vsel (setcc X), (cast A), (cast B) 7257 SDValue A = VSel.getOperand(1); 7258 SDValue B = VSel.getOperand(2); 7259 SDValue CastA, CastB; 7260 SDLoc DL(Cast); 7261 if (CastOpcode == ISD::FP_ROUND) { 7262 // FP_ROUND (fptrunc) has an extra flag operand to pass along. 7263 CastA = DAG.getNode(CastOpcode, DL, VT, A, Cast->getOperand(1)); 7264 CastB = DAG.getNode(CastOpcode, DL, VT, B, Cast->getOperand(1)); 7265 } else { 7266 CastA = DAG.getNode(CastOpcode, DL, VT, A); 7267 CastB = DAG.getNode(CastOpcode, DL, VT, B); 7268 } 7269 return DAG.getNode(ISD::VSELECT, DL, VT, SetCC, CastA, CastB); 7270 } 7271 7272 SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) { 7273 SDValue N0 = N->getOperand(0); 7274 EVT VT = N->getValueType(0); 7275 SDLoc DL(N); 7276 7277 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes, 7278 LegalOperations)) 7279 return SDValue(Res, 0); 7280 7281 // fold (sext (sext x)) -> (sext x) 7282 // fold (sext (aext x)) -> (sext x) 7283 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) 7284 return DAG.getNode(ISD::SIGN_EXTEND, DL, VT, N0.getOperand(0)); 7285 7286 if (N0.getOpcode() == ISD::TRUNCATE) { 7287 // fold (sext (truncate (load x))) -> (sext (smaller load x)) 7288 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n))) 7289 if (SDValue NarrowLoad = ReduceLoadWidth(N0.getNode())) { 7290 SDNode *oye = N0.getOperand(0).getNode(); 7291 if (NarrowLoad.getNode() != N0.getNode()) { 7292 CombineTo(N0.getNode(), NarrowLoad); 7293 // CombineTo deleted the truncate, if needed, but not what's under it. 7294 AddToWorklist(oye); 7295 } 7296 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7297 } 7298 7299 // See if the value being truncated is already sign extended. If so, just 7300 // eliminate the trunc/sext pair. 7301 SDValue Op = N0.getOperand(0); 7302 unsigned OpBits = Op.getScalarValueSizeInBits(); 7303 unsigned MidBits = N0.getScalarValueSizeInBits(); 7304 unsigned DestBits = VT.getScalarSizeInBits(); 7305 unsigned NumSignBits = DAG.ComputeNumSignBits(Op); 7306 7307 if (OpBits == DestBits) { 7308 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign 7309 // bits, it is already ready. 7310 if (NumSignBits > DestBits-MidBits) 7311 return Op; 7312 } else if (OpBits < DestBits) { 7313 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign 7314 // bits, just sext from i32. 7315 if (NumSignBits > OpBits-MidBits) 7316 return DAG.getNode(ISD::SIGN_EXTEND, DL, VT, Op); 7317 } else { 7318 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign 7319 // bits, just truncate to i32. 7320 if (NumSignBits > OpBits-MidBits) 7321 return DAG.getNode(ISD::TRUNCATE, DL, VT, Op); 7322 } 7323 7324 // fold (sext (truncate x)) -> (sextinreg x). 7325 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, 7326 N0.getValueType())) { 7327 if (OpBits < DestBits) 7328 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N0), VT, Op); 7329 else if (OpBits > DestBits) 7330 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT, Op); 7331 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT, Op, 7332 DAG.getValueType(N0.getValueType())); 7333 } 7334 } 7335 7336 // fold (sext (load x)) -> (sext (truncate (sextload x))) 7337 // Only generate vector extloads when 1) they're legal, and 2) they are 7338 // deemed desirable by the target. 7339 if (ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && 7340 ((!LegalOperations && !VT.isVector() && 7341 !cast<LoadSDNode>(N0)->isVolatile()) || 7342 TLI.isLoadExtLegal(ISD::SEXTLOAD, VT, N0.getValueType()))) { 7343 bool DoXform = true; 7344 SmallVector<SDNode*, 4> SetCCs; 7345 if (!N0.hasOneUse()) 7346 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI); 7347 if (VT.isVector()) 7348 DoXform &= TLI.isVectorLoadExtDesirable(SDValue(N, 0)); 7349 if (DoXform) { 7350 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7351 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, DL, VT, LN0->getChain(), 7352 LN0->getBasePtr(), N0.getValueType(), 7353 LN0->getMemOperand()); 7354 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), 7355 N0.getValueType(), ExtLoad); 7356 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, DL, ISD::SIGN_EXTEND); 7357 // If the load value is used only by N, replace it via CombineTo N. 7358 bool NoReplaceTrunc = SDValue(LN0, 0).hasOneUse(); 7359 CombineTo(N, ExtLoad); 7360 if (NoReplaceTrunc) 7361 DAG.ReplaceAllUsesOfValueWith(SDValue(LN0, 1), ExtLoad.getValue(1)); 7362 else 7363 CombineTo(LN0, Trunc, ExtLoad.getValue(1)); 7364 return SDValue(N, 0); 7365 } 7366 } 7367 7368 // fold (sext (load x)) to multiple smaller sextloads. 7369 // Only on illegal but splittable vectors. 7370 if (SDValue ExtLoad = CombineExtLoad(N)) 7371 return ExtLoad; 7372 7373 // fold (sext (sextload x)) -> (sext (truncate (sextload x))) 7374 // fold (sext ( extload x)) -> (sext (truncate (sextload x))) 7375 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) && 7376 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) { 7377 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7378 EVT MemVT = LN0->getMemoryVT(); 7379 if ((!LegalOperations && !LN0->isVolatile()) || 7380 TLI.isLoadExtLegal(ISD::SEXTLOAD, VT, MemVT)) { 7381 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, DL, VT, LN0->getChain(), 7382 LN0->getBasePtr(), MemVT, 7383 LN0->getMemOperand()); 7384 CombineTo(N, ExtLoad); 7385 CombineTo(N0.getNode(), 7386 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), 7387 N0.getValueType(), ExtLoad), 7388 ExtLoad.getValue(1)); 7389 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7390 } 7391 } 7392 7393 // fold (sext (and/or/xor (load x), cst)) -> 7394 // (and/or/xor (sextload x), (sext cst)) 7395 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR || 7396 N0.getOpcode() == ISD::XOR) && 7397 isa<LoadSDNode>(N0.getOperand(0)) && 7398 N0.getOperand(1).getOpcode() == ISD::Constant && 7399 TLI.isLoadExtLegal(ISD::SEXTLOAD, VT, N0.getValueType()) && 7400 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) { 7401 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0)); 7402 if (LN0->getExtensionType() != ISD::ZEXTLOAD && LN0->isUnindexed()) { 7403 bool DoXform = true; 7404 SmallVector<SDNode*, 4> SetCCs; 7405 if (!N0.hasOneUse()) 7406 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND, 7407 SetCCs, TLI); 7408 if (DoXform) { 7409 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(LN0), VT, 7410 LN0->getChain(), LN0->getBasePtr(), 7411 LN0->getMemoryVT(), 7412 LN0->getMemOperand()); 7413 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); 7414 Mask = Mask.sext(VT.getSizeInBits()); 7415 SDValue And = DAG.getNode(N0.getOpcode(), DL, VT, 7416 ExtLoad, DAG.getConstant(Mask, DL, VT)); 7417 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, 7418 SDLoc(N0.getOperand(0)), 7419 N0.getOperand(0).getValueType(), ExtLoad); 7420 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, DL, ISD::SIGN_EXTEND); 7421 bool NoReplaceTruncAnd = !N0.hasOneUse(); 7422 bool NoReplaceTrunc = SDValue(LN0, 0).hasOneUse(); 7423 CombineTo(N, And); 7424 // If N0 has multiple uses, change other uses as well. 7425 if (NoReplaceTruncAnd) { 7426 SDValue TruncAnd = 7427 DAG.getNode(ISD::TRUNCATE, DL, N0.getValueType(), And); 7428 CombineTo(N0.getNode(), TruncAnd); 7429 } 7430 if (NoReplaceTrunc) 7431 DAG.ReplaceAllUsesOfValueWith(SDValue(LN0, 1), ExtLoad.getValue(1)); 7432 else 7433 CombineTo(LN0, Trunc, ExtLoad.getValue(1)); 7434 return SDValue(N,0); // Return N so it doesn't get rechecked! 7435 } 7436 } 7437 } 7438 7439 if (N0.getOpcode() == ISD::SETCC) { 7440 SDValue N00 = N0.getOperand(0); 7441 SDValue N01 = N0.getOperand(1); 7442 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get(); 7443 EVT N00VT = N0.getOperand(0).getValueType(); 7444 7445 // sext(setcc) -> sext_in_reg(vsetcc) for vectors. 7446 // Only do this before legalize for now. 7447 if (VT.isVector() && !LegalOperations && 7448 TLI.getBooleanContents(N00VT) == 7449 TargetLowering::ZeroOrNegativeOneBooleanContent) { 7450 // On some architectures (such as SSE/NEON/etc) the SETCC result type is 7451 // of the same size as the compared operands. Only optimize sext(setcc()) 7452 // if this is the case. 7453 EVT SVT = getSetCCResultType(N00VT); 7454 7455 // We know that the # elements of the results is the same as the 7456 // # elements of the compare (and the # elements of the compare result 7457 // for that matter). Check to see that they are the same size. If so, 7458 // we know that the element size of the sext'd result matches the 7459 // element size of the compare operands. 7460 if (VT.getSizeInBits() == SVT.getSizeInBits()) 7461 return DAG.getSetCC(DL, VT, N00, N01, CC); 7462 7463 // If the desired elements are smaller or larger than the source 7464 // elements, we can use a matching integer vector type and then 7465 // truncate/sign extend. 7466 EVT MatchingVecType = N00VT.changeVectorElementTypeToInteger(); 7467 if (SVT == MatchingVecType) { 7468 SDValue VsetCC = DAG.getSetCC(DL, MatchingVecType, N00, N01, CC); 7469 return DAG.getSExtOrTrunc(VsetCC, DL, VT); 7470 } 7471 } 7472 7473 // sext(setcc x, y, cc) -> (select (setcc x, y, cc), T, 0) 7474 // Here, T can be 1 or -1, depending on the type of the setcc and 7475 // getBooleanContents(). 7476 unsigned SetCCWidth = N0.getScalarValueSizeInBits(); 7477 7478 // To determine the "true" side of the select, we need to know the high bit 7479 // of the value returned by the setcc if it evaluates to true. 7480 // If the type of the setcc is i1, then the true case of the select is just 7481 // sext(i1 1), that is, -1. 7482 // If the type of the setcc is larger (say, i8) then the value of the high 7483 // bit depends on getBooleanContents(), so ask TLI for a real "true" value 7484 // of the appropriate width. 7485 SDValue ExtTrueVal = (SetCCWidth == 1) ? DAG.getAllOnesConstant(DL, VT) 7486 : TLI.getConstTrueVal(DAG, VT, DL); 7487 SDValue Zero = DAG.getConstant(0, DL, VT); 7488 if (SDValue SCC = 7489 SimplifySelectCC(DL, N00, N01, ExtTrueVal, Zero, CC, true)) 7490 return SCC; 7491 7492 if (!VT.isVector() && !TLI.convertSelectOfConstantsToMath(VT)) { 7493 EVT SetCCVT = getSetCCResultType(N00VT); 7494 // Don't do this transform for i1 because there's a select transform 7495 // that would reverse it. 7496 // TODO: We should not do this transform at all without a target hook 7497 // because a sext is likely cheaper than a select? 7498 if (SetCCVT.getScalarSizeInBits() != 1 && 7499 (!LegalOperations || TLI.isOperationLegal(ISD::SETCC, N00VT))) { 7500 SDValue SetCC = DAG.getSetCC(DL, SetCCVT, N00, N01, CC); 7501 return DAG.getSelect(DL, VT, SetCC, ExtTrueVal, Zero); 7502 } 7503 } 7504 } 7505 7506 // fold (sext x) -> (zext x) if the sign bit is known zero. 7507 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) && 7508 DAG.SignBitIsZero(N0)) 7509 return DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0); 7510 7511 if (SDValue NewVSel = matchVSelectOpSizesWithSetCC(N)) 7512 return NewVSel; 7513 7514 return SDValue(); 7515 } 7516 7517 // isTruncateOf - If N is a truncate of some other value, return true, record 7518 // the value being truncated in Op and which of Op's bits are zero/one in Known. 7519 // This function computes KnownBits to avoid a duplicated call to 7520 // computeKnownBits in the caller. 7521 static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op, 7522 KnownBits &Known) { 7523 if (N->getOpcode() == ISD::TRUNCATE) { 7524 Op = N->getOperand(0); 7525 DAG.computeKnownBits(Op, Known); 7526 return true; 7527 } 7528 7529 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 || 7530 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE) 7531 return false; 7532 7533 SDValue Op0 = N->getOperand(0); 7534 SDValue Op1 = N->getOperand(1); 7535 assert(Op0.getValueType() == Op1.getValueType()); 7536 7537 if (isNullConstant(Op0)) 7538 Op = Op1; 7539 else if (isNullConstant(Op1)) 7540 Op = Op0; 7541 else 7542 return false; 7543 7544 DAG.computeKnownBits(Op, Known); 7545 7546 if (!(Known.Zero | 1).isAllOnesValue()) 7547 return false; 7548 7549 return true; 7550 } 7551 7552 SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) { 7553 SDValue N0 = N->getOperand(0); 7554 EVT VT = N->getValueType(0); 7555 7556 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes, 7557 LegalOperations)) 7558 return SDValue(Res, 0); 7559 7560 // fold (zext (zext x)) -> (zext x) 7561 // fold (zext (aext x)) -> (zext x) 7562 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) 7563 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, 7564 N0.getOperand(0)); 7565 7566 // fold (zext (truncate x)) -> (zext x) or 7567 // (zext (truncate x)) -> (truncate x) 7568 // This is valid when the truncated bits of x are already zero. 7569 // FIXME: We should extend this to work for vectors too. 7570 SDValue Op; 7571 KnownBits Known; 7572 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, Known)) { 7573 APInt TruncatedBits = 7574 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ? 7575 APInt(Op.getValueSizeInBits(), 0) : 7576 APInt::getBitsSet(Op.getValueSizeInBits(), 7577 N0.getValueSizeInBits(), 7578 std::min(Op.getValueSizeInBits(), 7579 VT.getSizeInBits())); 7580 if (TruncatedBits.isSubsetOf(Known.Zero)) 7581 return DAG.getZExtOrTrunc(Op, SDLoc(N), VT); 7582 } 7583 7584 // fold (zext (truncate x)) -> (and x, mask) 7585 if (N0.getOpcode() == ISD::TRUNCATE) { 7586 // fold (zext (truncate (load x))) -> (zext (smaller load x)) 7587 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n))) 7588 if (SDValue NarrowLoad = ReduceLoadWidth(N0.getNode())) { 7589 SDNode *oye = N0.getOperand(0).getNode(); 7590 if (NarrowLoad.getNode() != N0.getNode()) { 7591 CombineTo(N0.getNode(), NarrowLoad); 7592 // CombineTo deleted the truncate, if needed, but not what's under it. 7593 AddToWorklist(oye); 7594 } 7595 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7596 } 7597 7598 EVT SrcVT = N0.getOperand(0).getValueType(); 7599 EVT MinVT = N0.getValueType(); 7600 7601 // Try to mask before the extension to avoid having to generate a larger mask, 7602 // possibly over several sub-vectors. 7603 if (SrcVT.bitsLT(VT)) { 7604 if (!LegalOperations || (TLI.isOperationLegal(ISD::AND, SrcVT) && 7605 TLI.isOperationLegal(ISD::ZERO_EXTEND, VT))) { 7606 SDValue Op = N0.getOperand(0); 7607 Op = DAG.getZeroExtendInReg(Op, SDLoc(N), MinVT.getScalarType()); 7608 AddToWorklist(Op.getNode()); 7609 return DAG.getZExtOrTrunc(Op, SDLoc(N), VT); 7610 } 7611 } 7612 7613 if (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT)) { 7614 SDValue Op = DAG.getAnyExtOrTrunc(N0.getOperand(0), SDLoc(N), VT); 7615 AddToWorklist(Op.getNode()); 7616 return DAG.getZeroExtendInReg(Op, SDLoc(N), MinVT.getScalarType()); 7617 } 7618 } 7619 7620 // Fold (zext (and (trunc x), cst)) -> (and x, cst), 7621 // if either of the casts is not free. 7622 if (N0.getOpcode() == ISD::AND && 7623 N0.getOperand(0).getOpcode() == ISD::TRUNCATE && 7624 N0.getOperand(1).getOpcode() == ISD::Constant && 7625 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(), 7626 N0.getValueType()) || 7627 !TLI.isZExtFree(N0.getValueType(), VT))) { 7628 SDValue X = N0.getOperand(0).getOperand(0); 7629 X = DAG.getAnyExtOrTrunc(X, SDLoc(X), VT); 7630 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); 7631 Mask = Mask.zext(VT.getSizeInBits()); 7632 SDLoc DL(N); 7633 return DAG.getNode(ISD::AND, DL, VT, 7634 X, DAG.getConstant(Mask, DL, VT)); 7635 } 7636 7637 // fold (zext (load x)) -> (zext (truncate (zextload x))) 7638 // Only generate vector extloads when 1) they're legal, and 2) they are 7639 // deemed desirable by the target. 7640 if (ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && 7641 ((!LegalOperations && !VT.isVector() && 7642 !cast<LoadSDNode>(N0)->isVolatile()) || 7643 TLI.isLoadExtLegal(ISD::ZEXTLOAD, VT, N0.getValueType()))) { 7644 bool DoXform = true; 7645 SmallVector<SDNode*, 4> SetCCs; 7646 if (!N0.hasOneUse()) 7647 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI); 7648 if (VT.isVector()) 7649 DoXform &= TLI.isVectorLoadExtDesirable(SDValue(N, 0)); 7650 if (DoXform) { 7651 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7652 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT, 7653 LN0->getChain(), 7654 LN0->getBasePtr(), N0.getValueType(), 7655 LN0->getMemOperand()); 7656 7657 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), 7658 N0.getValueType(), ExtLoad); 7659 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N), ISD::ZERO_EXTEND); 7660 // If the load value is used only by N, replace it via CombineTo N. 7661 bool NoReplaceTrunc = SDValue(LN0, 0).hasOneUse(); 7662 CombineTo(N, ExtLoad); 7663 if (NoReplaceTrunc) 7664 DAG.ReplaceAllUsesOfValueWith(SDValue(LN0, 1), ExtLoad.getValue(1)); 7665 else 7666 CombineTo(LN0, Trunc, ExtLoad.getValue(1)); 7667 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7668 } 7669 } 7670 7671 // fold (zext (load x)) to multiple smaller zextloads. 7672 // Only on illegal but splittable vectors. 7673 if (SDValue ExtLoad = CombineExtLoad(N)) 7674 return ExtLoad; 7675 7676 // fold (zext (and/or/xor (load x), cst)) -> 7677 // (and/or/xor (zextload x), (zext cst)) 7678 // Unless (and (load x) cst) will match as a zextload already and has 7679 // additional users. 7680 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR || 7681 N0.getOpcode() == ISD::XOR) && 7682 isa<LoadSDNode>(N0.getOperand(0)) && 7683 N0.getOperand(1).getOpcode() == ISD::Constant && 7684 TLI.isLoadExtLegal(ISD::ZEXTLOAD, VT, N0.getValueType()) && 7685 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) { 7686 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0)); 7687 if (LN0->getExtensionType() != ISD::SEXTLOAD && LN0->isUnindexed()) { 7688 bool DoXform = true; 7689 SmallVector<SDNode*, 4> SetCCs; 7690 if (!N0.hasOneUse()) { 7691 if (N0.getOpcode() == ISD::AND) { 7692 auto *AndC = cast<ConstantSDNode>(N0.getOperand(1)); 7693 auto NarrowLoad = false; 7694 EVT LoadResultTy = AndC->getValueType(0); 7695 EVT ExtVT, LoadedVT; 7696 if (isAndLoadExtLoad(AndC, LN0, LoadResultTy, ExtVT, LoadedVT, 7697 NarrowLoad)) 7698 DoXform = false; 7699 } 7700 if (DoXform) 7701 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), 7702 ISD::ZERO_EXTEND, SetCCs, TLI); 7703 } 7704 if (DoXform) { 7705 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), VT, 7706 LN0->getChain(), LN0->getBasePtr(), 7707 LN0->getMemoryVT(), 7708 LN0->getMemOperand()); 7709 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); 7710 Mask = Mask.zext(VT.getSizeInBits()); 7711 SDLoc DL(N); 7712 SDValue And = DAG.getNode(N0.getOpcode(), DL, VT, 7713 ExtLoad, DAG.getConstant(Mask, DL, VT)); 7714 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, 7715 SDLoc(N0.getOperand(0)), 7716 N0.getOperand(0).getValueType(), ExtLoad); 7717 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, DL, ISD::ZERO_EXTEND); 7718 bool NoReplaceTruncAnd = !N0.hasOneUse(); 7719 bool NoReplaceTrunc = SDValue(LN0, 0).hasOneUse(); 7720 CombineTo(N, And); 7721 // If N0 has multiple uses, change other uses as well. 7722 if (NoReplaceTruncAnd) { 7723 SDValue TruncAnd = 7724 DAG.getNode(ISD::TRUNCATE, DL, N0.getValueType(), And); 7725 CombineTo(N0.getNode(), TruncAnd); 7726 } 7727 if (NoReplaceTrunc) 7728 DAG.ReplaceAllUsesOfValueWith(SDValue(LN0, 1), ExtLoad.getValue(1)); 7729 else 7730 CombineTo(LN0, Trunc, ExtLoad.getValue(1)); 7731 return SDValue(N,0); // Return N so it doesn't get rechecked! 7732 } 7733 } 7734 } 7735 7736 // fold (zext (zextload x)) -> (zext (truncate (zextload x))) 7737 // fold (zext ( extload x)) -> (zext (truncate (zextload x))) 7738 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) && 7739 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) { 7740 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7741 EVT MemVT = LN0->getMemoryVT(); 7742 if ((!LegalOperations && !LN0->isVolatile()) || 7743 TLI.isLoadExtLegal(ISD::ZEXTLOAD, VT, MemVT)) { 7744 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT, 7745 LN0->getChain(), 7746 LN0->getBasePtr(), MemVT, 7747 LN0->getMemOperand()); 7748 CombineTo(N, ExtLoad); 7749 CombineTo(N0.getNode(), 7750 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), N0.getValueType(), 7751 ExtLoad), 7752 ExtLoad.getValue(1)); 7753 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7754 } 7755 } 7756 7757 if (N0.getOpcode() == ISD::SETCC) { 7758 // Only do this before legalize for now. 7759 if (!LegalOperations && VT.isVector() && 7760 N0.getValueType().getVectorElementType() == MVT::i1) { 7761 EVT N00VT = N0.getOperand(0).getValueType(); 7762 if (getSetCCResultType(N00VT) == N0.getValueType()) 7763 return SDValue(); 7764 7765 // We know that the # elements of the results is the same as the # 7766 // elements of the compare (and the # elements of the compare result for 7767 // that matter). Check to see that they are the same size. If so, we know 7768 // that the element size of the sext'd result matches the element size of 7769 // the compare operands. 7770 SDLoc DL(N); 7771 SDValue VecOnes = DAG.getConstant(1, DL, VT); 7772 if (VT.getSizeInBits() == N00VT.getSizeInBits()) { 7773 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors. 7774 SDValue VSetCC = DAG.getNode(ISD::SETCC, DL, VT, N0.getOperand(0), 7775 N0.getOperand(1), N0.getOperand(2)); 7776 return DAG.getNode(ISD::AND, DL, VT, VSetCC, VecOnes); 7777 } 7778 7779 // If the desired elements are smaller or larger than the source 7780 // elements we can use a matching integer vector type and then 7781 // truncate/sign extend. 7782 EVT MatchingElementType = EVT::getIntegerVT( 7783 *DAG.getContext(), N00VT.getScalarSizeInBits()); 7784 EVT MatchingVectorType = EVT::getVectorVT( 7785 *DAG.getContext(), MatchingElementType, N00VT.getVectorNumElements()); 7786 SDValue VsetCC = 7787 DAG.getNode(ISD::SETCC, DL, MatchingVectorType, N0.getOperand(0), 7788 N0.getOperand(1), N0.getOperand(2)); 7789 return DAG.getNode(ISD::AND, DL, VT, DAG.getSExtOrTrunc(VsetCC, DL, VT), 7790 VecOnes); 7791 } 7792 7793 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc 7794 SDLoc DL(N); 7795 if (SDValue SCC = SimplifySelectCC( 7796 DL, N0.getOperand(0), N0.getOperand(1), DAG.getConstant(1, DL, VT), 7797 DAG.getConstant(0, DL, VT), 7798 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true)) 7799 return SCC; 7800 } 7801 7802 // (zext (shl (zext x), cst)) -> (shl (zext x), cst) 7803 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) && 7804 isa<ConstantSDNode>(N0.getOperand(1)) && 7805 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND && 7806 N0.hasOneUse()) { 7807 SDValue ShAmt = N0.getOperand(1); 7808 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue(); 7809 if (N0.getOpcode() == ISD::SHL) { 7810 SDValue InnerZExt = N0.getOperand(0); 7811 // If the original shl may be shifting out bits, do not perform this 7812 // transformation. 7813 unsigned KnownZeroBits = InnerZExt.getValueSizeInBits() - 7814 InnerZExt.getOperand(0).getValueSizeInBits(); 7815 if (ShAmtVal > KnownZeroBits) 7816 return SDValue(); 7817 } 7818 7819 SDLoc DL(N); 7820 7821 // Ensure that the shift amount is wide enough for the shifted value. 7822 if (VT.getSizeInBits() >= 256) 7823 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt); 7824 7825 return DAG.getNode(N0.getOpcode(), DL, VT, 7826 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)), 7827 ShAmt); 7828 } 7829 7830 if (SDValue NewVSel = matchVSelectOpSizesWithSetCC(N)) 7831 return NewVSel; 7832 7833 return SDValue(); 7834 } 7835 7836 SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) { 7837 SDValue N0 = N->getOperand(0); 7838 EVT VT = N->getValueType(0); 7839 7840 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes, 7841 LegalOperations)) 7842 return SDValue(Res, 0); 7843 7844 // fold (aext (aext x)) -> (aext x) 7845 // fold (aext (zext x)) -> (zext x) 7846 // fold (aext (sext x)) -> (sext x) 7847 if (N0.getOpcode() == ISD::ANY_EXTEND || 7848 N0.getOpcode() == ISD::ZERO_EXTEND || 7849 N0.getOpcode() == ISD::SIGN_EXTEND) 7850 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, N0.getOperand(0)); 7851 7852 // fold (aext (truncate (load x))) -> (aext (smaller load x)) 7853 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n))) 7854 if (N0.getOpcode() == ISD::TRUNCATE) { 7855 if (SDValue NarrowLoad = ReduceLoadWidth(N0.getNode())) { 7856 SDNode *oye = N0.getOperand(0).getNode(); 7857 if (NarrowLoad.getNode() != N0.getNode()) { 7858 CombineTo(N0.getNode(), NarrowLoad); 7859 // CombineTo deleted the truncate, if needed, but not what's under it. 7860 AddToWorklist(oye); 7861 } 7862 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7863 } 7864 } 7865 7866 // fold (aext (truncate x)) 7867 if (N0.getOpcode() == ISD::TRUNCATE) 7868 return DAG.getAnyExtOrTrunc(N0.getOperand(0), SDLoc(N), VT); 7869 7870 // Fold (aext (and (trunc x), cst)) -> (and x, cst) 7871 // if the trunc is not free. 7872 if (N0.getOpcode() == ISD::AND && 7873 N0.getOperand(0).getOpcode() == ISD::TRUNCATE && 7874 N0.getOperand(1).getOpcode() == ISD::Constant && 7875 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(), 7876 N0.getValueType())) { 7877 SDLoc DL(N); 7878 SDValue X = N0.getOperand(0).getOperand(0); 7879 X = DAG.getAnyExtOrTrunc(X, DL, VT); 7880 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); 7881 Mask = Mask.zext(VT.getSizeInBits()); 7882 return DAG.getNode(ISD::AND, DL, VT, 7883 X, DAG.getConstant(Mask, DL, VT)); 7884 } 7885 7886 // fold (aext (load x)) -> (aext (truncate (extload x))) 7887 // None of the supported targets knows how to perform load and any_ext 7888 // on vectors in one instruction. We only perform this transformation on 7889 // scalars. 7890 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() && 7891 ISD::isUNINDEXEDLoad(N0.getNode()) && 7892 TLI.isLoadExtLegal(ISD::EXTLOAD, VT, N0.getValueType())) { 7893 bool DoXform = true; 7894 SmallVector<SDNode*, 4> SetCCs; 7895 if (!N0.hasOneUse()) 7896 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI); 7897 if (DoXform) { 7898 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7899 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT, 7900 LN0->getChain(), 7901 LN0->getBasePtr(), N0.getValueType(), 7902 LN0->getMemOperand()); 7903 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), 7904 N0.getValueType(), ExtLoad); 7905 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N), 7906 ISD::ANY_EXTEND); 7907 // If the load value is used only by N, replace it via CombineTo N. 7908 bool NoReplaceTrunc = N0.hasOneUse(); 7909 CombineTo(N, ExtLoad); 7910 if (NoReplaceTrunc) 7911 DAG.ReplaceAllUsesOfValueWith(SDValue(LN0, 1), ExtLoad.getValue(1)); 7912 else 7913 CombineTo(LN0, Trunc, ExtLoad.getValue(1)); 7914 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7915 } 7916 } 7917 7918 // fold (aext (zextload x)) -> (aext (truncate (zextload x))) 7919 // fold (aext (sextload x)) -> (aext (truncate (sextload x))) 7920 // fold (aext ( extload x)) -> (aext (truncate (extload x))) 7921 if (N0.getOpcode() == ISD::LOAD && 7922 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && 7923 N0.hasOneUse()) { 7924 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7925 ISD::LoadExtType ExtType = LN0->getExtensionType(); 7926 EVT MemVT = LN0->getMemoryVT(); 7927 if (!LegalOperations || TLI.isLoadExtLegal(ExtType, VT, MemVT)) { 7928 SDValue ExtLoad = DAG.getExtLoad(ExtType, SDLoc(N), 7929 VT, LN0->getChain(), LN0->getBasePtr(), 7930 MemVT, LN0->getMemOperand()); 7931 CombineTo(N, ExtLoad); 7932 CombineTo(N0.getNode(), 7933 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), 7934 N0.getValueType(), ExtLoad), 7935 ExtLoad.getValue(1)); 7936 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7937 } 7938 } 7939 7940 if (N0.getOpcode() == ISD::SETCC) { 7941 // For vectors: 7942 // aext(setcc) -> vsetcc 7943 // aext(setcc) -> truncate(vsetcc) 7944 // aext(setcc) -> aext(vsetcc) 7945 // Only do this before legalize for now. 7946 if (VT.isVector() && !LegalOperations) { 7947 EVT N0VT = N0.getOperand(0).getValueType(); 7948 // We know that the # elements of the results is the same as the 7949 // # elements of the compare (and the # elements of the compare result 7950 // for that matter). Check to see that they are the same size. If so, 7951 // we know that the element size of the sext'd result matches the 7952 // element size of the compare operands. 7953 if (VT.getSizeInBits() == N0VT.getSizeInBits()) 7954 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0), 7955 N0.getOperand(1), 7956 cast<CondCodeSDNode>(N0.getOperand(2))->get()); 7957 // If the desired elements are smaller or larger than the source 7958 // elements we can use a matching integer vector type and then 7959 // truncate/any extend 7960 else { 7961 EVT MatchingVectorType = N0VT.changeVectorElementTypeToInteger(); 7962 SDValue VsetCC = 7963 DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0), 7964 N0.getOperand(1), 7965 cast<CondCodeSDNode>(N0.getOperand(2))->get()); 7966 return DAG.getAnyExtOrTrunc(VsetCC, SDLoc(N), VT); 7967 } 7968 } 7969 7970 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc 7971 SDLoc DL(N); 7972 if (SDValue SCC = SimplifySelectCC( 7973 DL, N0.getOperand(0), N0.getOperand(1), DAG.getConstant(1, DL, VT), 7974 DAG.getConstant(0, DL, VT), 7975 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true)) 7976 return SCC; 7977 } 7978 7979 return SDValue(); 7980 } 7981 7982 SDValue DAGCombiner::visitAssertExt(SDNode *N) { 7983 unsigned Opcode = N->getOpcode(); 7984 SDValue N0 = N->getOperand(0); 7985 SDValue N1 = N->getOperand(1); 7986 EVT AssertVT = cast<VTSDNode>(N1)->getVT(); 7987 7988 // fold (assert?ext (assert?ext x, vt), vt) -> (assert?ext x, vt) 7989 if (N0.getOpcode() == Opcode && 7990 AssertVT == cast<VTSDNode>(N0.getOperand(1))->getVT()) 7991 return N0; 7992 7993 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() && 7994 N0.getOperand(0).getOpcode() == Opcode) { 7995 // We have an assert, truncate, assert sandwich. Make one stronger assert 7996 // by asserting on the smallest asserted type to the larger source type. 7997 // This eliminates the later assert: 7998 // assert (trunc (assert X, i8) to iN), i1 --> trunc (assert X, i1) to iN 7999 // assert (trunc (assert X, i1) to iN), i8 --> trunc (assert X, i1) to iN 8000 SDValue BigA = N0.getOperand(0); 8001 EVT BigA_AssertVT = cast<VTSDNode>(BigA.getOperand(1))->getVT(); 8002 assert(BigA_AssertVT.bitsLE(N0.getValueType()) && 8003 "Asserting zero/sign-extended bits to a type larger than the " 8004 "truncated destination does not provide information"); 8005 8006 SDLoc DL(N); 8007 EVT MinAssertVT = AssertVT.bitsLT(BigA_AssertVT) ? AssertVT : BigA_AssertVT; 8008 SDValue MinAssertVTVal = DAG.getValueType(MinAssertVT); 8009 SDValue NewAssert = DAG.getNode(Opcode, DL, BigA.getValueType(), 8010 BigA.getOperand(0), MinAssertVTVal); 8011 return DAG.getNode(ISD::TRUNCATE, DL, N->getValueType(0), NewAssert); 8012 } 8013 8014 return SDValue(); 8015 } 8016 8017 /// If the result of a wider load is shifted to right of N bits and then 8018 /// truncated to a narrower type and where N is a multiple of number of bits of 8019 /// the narrower type, transform it to a narrower load from address + N / num of 8020 /// bits of new type. If the result is to be extended, also fold the extension 8021 /// to form a extending load. 8022 SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) { 8023 unsigned Opc = N->getOpcode(); 8024 8025 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD; 8026 SDValue N0 = N->getOperand(0); 8027 EVT VT = N->getValueType(0); 8028 EVT ExtVT = VT; 8029 8030 // This transformation isn't valid for vector loads. 8031 if (VT.isVector()) 8032 return SDValue(); 8033 8034 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then 8035 // extended to VT. 8036 if (Opc == ISD::SIGN_EXTEND_INREG) { 8037 ExtType = ISD::SEXTLOAD; 8038 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT(); 8039 } else if (Opc == ISD::SRL) { 8040 // Another special-case: SRL is basically zero-extending a narrower value. 8041 ExtType = ISD::ZEXTLOAD; 8042 N0 = SDValue(N, 0); 8043 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 8044 if (!N01) return SDValue(); 8045 ExtVT = EVT::getIntegerVT(*DAG.getContext(), 8046 VT.getSizeInBits() - N01->getZExtValue()); 8047 } 8048 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, VT, ExtVT)) 8049 return SDValue(); 8050 8051 unsigned EVTBits = ExtVT.getSizeInBits(); 8052 8053 // Do not generate loads of non-round integer types since these can 8054 // be expensive (and would be wrong if the type is not byte sized). 8055 if (!ExtVT.isRound()) 8056 return SDValue(); 8057 8058 unsigned ShAmt = 0; 8059 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) { 8060 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 8061 ShAmt = N01->getZExtValue(); 8062 // Is the shift amount a multiple of size of VT? 8063 if ((ShAmt & (EVTBits-1)) == 0) { 8064 N0 = N0.getOperand(0); 8065 // Is the load width a multiple of size of VT? 8066 if ((N0.getValueSizeInBits() & (EVTBits-1)) != 0) 8067 return SDValue(); 8068 } 8069 8070 // At this point, we must have a load or else we can't do the transform. 8071 if (!isa<LoadSDNode>(N0)) return SDValue(); 8072 8073 // Because a SRL must be assumed to *need* to zero-extend the high bits 8074 // (as opposed to anyext the high bits), we can't combine the zextload 8075 // lowering of SRL and an sextload. 8076 if (cast<LoadSDNode>(N0)->getExtensionType() == ISD::SEXTLOAD) 8077 return SDValue(); 8078 8079 // If the shift amount is larger than the input type then we're not 8080 // accessing any of the loaded bytes. If the load was a zextload/extload 8081 // then the result of the shift+trunc is zero/undef (handled elsewhere). 8082 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits()) 8083 return SDValue(); 8084 } 8085 } 8086 8087 // If the load is shifted left (and the result isn't shifted back right), 8088 // we can fold the truncate through the shift. 8089 unsigned ShLeftAmt = 0; 8090 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() && 8091 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) { 8092 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 8093 ShLeftAmt = N01->getZExtValue(); 8094 N0 = N0.getOperand(0); 8095 } 8096 } 8097 8098 // If we haven't found a load, we can't narrow it. Don't transform one with 8099 // multiple uses, this would require adding a new load. 8100 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse()) 8101 return SDValue(); 8102 8103 // Don't change the width of a volatile load. 8104 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 8105 if (LN0->isVolatile()) 8106 return SDValue(); 8107 8108 // Verify that we are actually reducing a load width here. 8109 if (LN0->getMemoryVT().getSizeInBits() < EVTBits) 8110 return SDValue(); 8111 8112 // For the transform to be legal, the load must produce only two values 8113 // (the value loaded and the chain). Don't transform a pre-increment 8114 // load, for example, which produces an extra value. Otherwise the 8115 // transformation is not equivalent, and the downstream logic to replace 8116 // uses gets things wrong. 8117 if (LN0->getNumValues() > 2) 8118 return SDValue(); 8119 8120 // If the load that we're shrinking is an extload and we're not just 8121 // discarding the extension we can't simply shrink the load. Bail. 8122 // TODO: It would be possible to merge the extensions in some cases. 8123 if (LN0->getExtensionType() != ISD::NON_EXTLOAD && 8124 LN0->getMemoryVT().getSizeInBits() < ExtVT.getSizeInBits() + ShAmt) 8125 return SDValue(); 8126 8127 if (!TLI.shouldReduceLoadWidth(LN0, ExtType, ExtVT)) 8128 return SDValue(); 8129 8130 EVT PtrType = N0.getOperand(1).getValueType(); 8131 8132 if (PtrType == MVT::Untyped || PtrType.isExtended()) 8133 // It's not possible to generate a constant of extended or untyped type. 8134 return SDValue(); 8135 8136 // For big endian targets, we need to adjust the offset to the pointer to 8137 // load the correct bytes. 8138 if (DAG.getDataLayout().isBigEndian()) { 8139 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits(); 8140 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits(); 8141 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt; 8142 } 8143 8144 uint64_t PtrOff = ShAmt / 8; 8145 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff); 8146 SDLoc DL(LN0); 8147 // The original load itself didn't wrap, so an offset within it doesn't. 8148 SDNodeFlags Flags; 8149 Flags.setNoUnsignedWrap(true); 8150 SDValue NewPtr = DAG.getNode(ISD::ADD, DL, 8151 PtrType, LN0->getBasePtr(), 8152 DAG.getConstant(PtrOff, DL, PtrType), 8153 Flags); 8154 AddToWorklist(NewPtr.getNode()); 8155 8156 SDValue Load; 8157 if (ExtType == ISD::NON_EXTLOAD) 8158 Load = DAG.getLoad(VT, SDLoc(N0), LN0->getChain(), NewPtr, 8159 LN0->getPointerInfo().getWithOffset(PtrOff), NewAlign, 8160 LN0->getMemOperand()->getFlags(), LN0->getAAInfo()); 8161 else 8162 Load = DAG.getExtLoad(ExtType, SDLoc(N0), VT, LN0->getChain(), NewPtr, 8163 LN0->getPointerInfo().getWithOffset(PtrOff), ExtVT, 8164 NewAlign, LN0->getMemOperand()->getFlags(), 8165 LN0->getAAInfo()); 8166 8167 // Replace the old load's chain with the new load's chain. 8168 WorklistRemover DeadNodes(*this); 8169 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1)); 8170 8171 // Shift the result left, if we've swallowed a left shift. 8172 SDValue Result = Load; 8173 if (ShLeftAmt != 0) { 8174 EVT ShImmTy = getShiftAmountTy(Result.getValueType()); 8175 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt)) 8176 ShImmTy = VT; 8177 // If the shift amount is as large as the result size (but, presumably, 8178 // no larger than the source) then the useful bits of the result are 8179 // zero; we can't simply return the shortened shift, because the result 8180 // of that operation is undefined. 8181 SDLoc DL(N0); 8182 if (ShLeftAmt >= VT.getSizeInBits()) 8183 Result = DAG.getConstant(0, DL, VT); 8184 else 8185 Result = DAG.getNode(ISD::SHL, DL, VT, 8186 Result, DAG.getConstant(ShLeftAmt, DL, ShImmTy)); 8187 } 8188 8189 // Return the new loaded value. 8190 return Result; 8191 } 8192 8193 SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) { 8194 SDValue N0 = N->getOperand(0); 8195 SDValue N1 = N->getOperand(1); 8196 EVT VT = N->getValueType(0); 8197 EVT EVT = cast<VTSDNode>(N1)->getVT(); 8198 unsigned VTBits = VT.getScalarSizeInBits(); 8199 unsigned EVTBits = EVT.getScalarSizeInBits(); 8200 8201 if (N0.isUndef()) 8202 return DAG.getUNDEF(VT); 8203 8204 // fold (sext_in_reg c1) -> c1 8205 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 8206 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, N0, N1); 8207 8208 // If the input is already sign extended, just drop the extension. 8209 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1) 8210 return N0; 8211 8212 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2 8213 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG && 8214 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) 8215 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, 8216 N0.getOperand(0), N1); 8217 8218 // fold (sext_in_reg (sext x)) -> (sext x) 8219 // fold (sext_in_reg (aext x)) -> (sext x) 8220 // if x is small enough. 8221 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) { 8222 SDValue N00 = N0.getOperand(0); 8223 if (N00.getScalarValueSizeInBits() <= EVTBits && 8224 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT))) 8225 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N00, N1); 8226 } 8227 8228 // fold (sext_in_reg (*_extend_vector_inreg x)) -> (sext_vector_in_reg x) 8229 if ((N0.getOpcode() == ISD::ANY_EXTEND_VECTOR_INREG || 8230 N0.getOpcode() == ISD::SIGN_EXTEND_VECTOR_INREG || 8231 N0.getOpcode() == ISD::ZERO_EXTEND_VECTOR_INREG) && 8232 N0.getOperand(0).getScalarValueSizeInBits() == EVTBits) { 8233 if (!LegalOperations || 8234 TLI.isOperationLegal(ISD::SIGN_EXTEND_VECTOR_INREG, VT)) 8235 return DAG.getSignExtendVectorInReg(N0.getOperand(0), SDLoc(N), VT); 8236 } 8237 8238 // fold (sext_in_reg (zext x)) -> (sext x) 8239 // iff we are extending the source sign bit. 8240 if (N0.getOpcode() == ISD::ZERO_EXTEND) { 8241 SDValue N00 = N0.getOperand(0); 8242 if (N00.getScalarValueSizeInBits() == EVTBits && 8243 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT))) 8244 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N00, N1); 8245 } 8246 8247 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero. 8248 if (DAG.MaskedValueIsZero(N0, APInt::getOneBitSet(VTBits, EVTBits - 1))) 8249 return DAG.getZeroExtendInReg(N0, SDLoc(N), EVT.getScalarType()); 8250 8251 // fold operands of sext_in_reg based on knowledge that the top bits are not 8252 // demanded. 8253 if (SimplifyDemandedBits(SDValue(N, 0))) 8254 return SDValue(N, 0); 8255 8256 // fold (sext_in_reg (load x)) -> (smaller sextload x) 8257 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits)) 8258 if (SDValue NarrowLoad = ReduceLoadWidth(N)) 8259 return NarrowLoad; 8260 8261 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24) 8262 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible. 8263 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above. 8264 if (N0.getOpcode() == ISD::SRL) { 8265 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1))) 8266 if (ShAmt->getZExtValue()+EVTBits <= VTBits) { 8267 // We can turn this into an SRA iff the input to the SRL is already sign 8268 // extended enough. 8269 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0)); 8270 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits) 8271 return DAG.getNode(ISD::SRA, SDLoc(N), VT, 8272 N0.getOperand(0), N0.getOperand(1)); 8273 } 8274 } 8275 8276 // fold (sext_inreg (extload x)) -> (sextload x) 8277 // If sextload is not supported by target, we can only do the combine when 8278 // load has one use. Doing otherwise can block folding the extload with other 8279 // extends that the target does support. 8280 if (ISD::isEXTLoad(N0.getNode()) && 8281 ISD::isUNINDEXEDLoad(N0.getNode()) && 8282 EVT == cast<LoadSDNode>(N0)->getMemoryVT() && 8283 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile() && 8284 N0.hasOneUse()) || 8285 TLI.isLoadExtLegal(ISD::SEXTLOAD, VT, EVT))) { 8286 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 8287 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT, 8288 LN0->getChain(), 8289 LN0->getBasePtr(), EVT, 8290 LN0->getMemOperand()); 8291 CombineTo(N, ExtLoad); 8292 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); 8293 AddToWorklist(ExtLoad.getNode()); 8294 return SDValue(N, 0); // Return N so it doesn't get rechecked! 8295 } 8296 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use 8297 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && 8298 N0.hasOneUse() && 8299 EVT == cast<LoadSDNode>(N0)->getMemoryVT() && 8300 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || 8301 TLI.isLoadExtLegal(ISD::SEXTLOAD, VT, EVT))) { 8302 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 8303 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT, 8304 LN0->getChain(), 8305 LN0->getBasePtr(), EVT, 8306 LN0->getMemOperand()); 8307 CombineTo(N, ExtLoad); 8308 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); 8309 return SDValue(N, 0); // Return N so it doesn't get rechecked! 8310 } 8311 8312 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16)) 8313 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) { 8314 if (SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0), 8315 N0.getOperand(1), false)) 8316 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, 8317 BSwap, N1); 8318 } 8319 8320 return SDValue(); 8321 } 8322 8323 SDValue DAGCombiner::visitSIGN_EXTEND_VECTOR_INREG(SDNode *N) { 8324 SDValue N0 = N->getOperand(0); 8325 EVT VT = N->getValueType(0); 8326 8327 if (N0.isUndef()) 8328 return DAG.getUNDEF(VT); 8329 8330 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes, 8331 LegalOperations)) 8332 return SDValue(Res, 0); 8333 8334 return SDValue(); 8335 } 8336 8337 SDValue DAGCombiner::visitZERO_EXTEND_VECTOR_INREG(SDNode *N) { 8338 SDValue N0 = N->getOperand(0); 8339 EVT VT = N->getValueType(0); 8340 8341 if (N0.isUndef()) 8342 return DAG.getUNDEF(VT); 8343 8344 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes, 8345 LegalOperations)) 8346 return SDValue(Res, 0); 8347 8348 return SDValue(); 8349 } 8350 8351 SDValue DAGCombiner::visitTRUNCATE(SDNode *N) { 8352 SDValue N0 = N->getOperand(0); 8353 EVT VT = N->getValueType(0); 8354 bool isLE = DAG.getDataLayout().isLittleEndian(); 8355 8356 // noop truncate 8357 if (N0.getValueType() == N->getValueType(0)) 8358 return N0; 8359 // fold (truncate c1) -> c1 8360 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 8361 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0); 8362 // fold (truncate (truncate x)) -> (truncate x) 8363 if (N0.getOpcode() == ISD::TRUNCATE) 8364 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0)); 8365 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x 8366 if (N0.getOpcode() == ISD::ZERO_EXTEND || 8367 N0.getOpcode() == ISD::SIGN_EXTEND || 8368 N0.getOpcode() == ISD::ANY_EXTEND) { 8369 // if the source is smaller than the dest, we still need an extend. 8370 if (N0.getOperand(0).getValueType().bitsLT(VT)) 8371 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, N0.getOperand(0)); 8372 // if the source is larger than the dest, than we just need the truncate. 8373 if (N0.getOperand(0).getValueType().bitsGT(VT)) 8374 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0)); 8375 // if the source and dest are the same type, we can drop both the extend 8376 // and the truncate. 8377 return N0.getOperand(0); 8378 } 8379 8380 // If this is anyext(trunc), don't fold it, allow ourselves to be folded. 8381 if (N->hasOneUse() && (N->use_begin()->getOpcode() == ISD::ANY_EXTEND)) 8382 return SDValue(); 8383 8384 // Fold extract-and-trunc into a narrow extract. For example: 8385 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1) 8386 // i32 y = TRUNCATE(i64 x) 8387 // -- becomes -- 8388 // v16i8 b = BITCAST (v2i64 val) 8389 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8) 8390 // 8391 // Note: We only run this optimization after type legalization (which often 8392 // creates this pattern) and before operation legalization after which 8393 // we need to be more careful about the vector instructions that we generate. 8394 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT && 8395 LegalTypes && !LegalOperations && N0->hasOneUse() && VT != MVT::i1) { 8396 EVT VecTy = N0.getOperand(0).getValueType(); 8397 EVT ExTy = N0.getValueType(); 8398 EVT TrTy = N->getValueType(0); 8399 8400 unsigned NumElem = VecTy.getVectorNumElements(); 8401 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits(); 8402 8403 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem); 8404 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size"); 8405 8406 SDValue EltNo = N0->getOperand(1); 8407 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) { 8408 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); 8409 EVT IndexTy = TLI.getVectorIdxTy(DAG.getDataLayout()); 8410 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1)); 8411 8412 SDLoc DL(N); 8413 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, TrTy, 8414 DAG.getBitcast(NVT, N0.getOperand(0)), 8415 DAG.getConstant(Index, DL, IndexTy)); 8416 } 8417 } 8418 8419 // trunc (select c, a, b) -> select c, (trunc a), (trunc b) 8420 if (N0.getOpcode() == ISD::SELECT && N0.hasOneUse()) { 8421 EVT SrcVT = N0.getValueType(); 8422 if ((!LegalOperations || TLI.isOperationLegal(ISD::SELECT, SrcVT)) && 8423 TLI.isTruncateFree(SrcVT, VT)) { 8424 SDLoc SL(N0); 8425 SDValue Cond = N0.getOperand(0); 8426 SDValue TruncOp0 = DAG.getNode(ISD::TRUNCATE, SL, VT, N0.getOperand(1)); 8427 SDValue TruncOp1 = DAG.getNode(ISD::TRUNCATE, SL, VT, N0.getOperand(2)); 8428 return DAG.getNode(ISD::SELECT, SDLoc(N), VT, Cond, TruncOp0, TruncOp1); 8429 } 8430 } 8431 8432 // trunc (shl x, K) -> shl (trunc x), K => K < VT.getScalarSizeInBits() 8433 if (N0.getOpcode() == ISD::SHL && N0.hasOneUse() && 8434 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::SHL, VT)) && 8435 TLI.isTypeDesirableForOp(ISD::SHL, VT)) { 8436 SDValue Amt = N0.getOperand(1); 8437 KnownBits Known; 8438 DAG.computeKnownBits(Amt, Known); 8439 unsigned Size = VT.getScalarSizeInBits(); 8440 if (Known.getBitWidth() - Known.countMinLeadingZeros() <= Log2_32(Size)) { 8441 SDLoc SL(N); 8442 EVT AmtVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout()); 8443 8444 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SL, VT, N0.getOperand(0)); 8445 if (AmtVT != Amt.getValueType()) { 8446 Amt = DAG.getZExtOrTrunc(Amt, SL, AmtVT); 8447 AddToWorklist(Amt.getNode()); 8448 } 8449 return DAG.getNode(ISD::SHL, SL, VT, Trunc, Amt); 8450 } 8451 } 8452 8453 // Fold a series of buildvector, bitcast, and truncate if possible. 8454 // For example fold 8455 // (2xi32 trunc (bitcast ((4xi32)buildvector x, x, y, y) 2xi64)) to 8456 // (2xi32 (buildvector x, y)). 8457 if (Level == AfterLegalizeVectorOps && VT.isVector() && 8458 N0.getOpcode() == ISD::BITCAST && N0.hasOneUse() && 8459 N0.getOperand(0).getOpcode() == ISD::BUILD_VECTOR && 8460 N0.getOperand(0).hasOneUse()) { 8461 SDValue BuildVect = N0.getOperand(0); 8462 EVT BuildVectEltTy = BuildVect.getValueType().getVectorElementType(); 8463 EVT TruncVecEltTy = VT.getVectorElementType(); 8464 8465 // Check that the element types match. 8466 if (BuildVectEltTy == TruncVecEltTy) { 8467 // Now we only need to compute the offset of the truncated elements. 8468 unsigned BuildVecNumElts = BuildVect.getNumOperands(); 8469 unsigned TruncVecNumElts = VT.getVectorNumElements(); 8470 unsigned TruncEltOffset = BuildVecNumElts / TruncVecNumElts; 8471 8472 assert((BuildVecNumElts % TruncVecNumElts) == 0 && 8473 "Invalid number of elements"); 8474 8475 SmallVector<SDValue, 8> Opnds; 8476 for (unsigned i = 0, e = BuildVecNumElts; i != e; i += TruncEltOffset) 8477 Opnds.push_back(BuildVect.getOperand(i)); 8478 8479 return DAG.getBuildVector(VT, SDLoc(N), Opnds); 8480 } 8481 } 8482 8483 // See if we can simplify the input to this truncate through knowledge that 8484 // only the low bits are being used. 8485 // For example "trunc (or (shl x, 8), y)" // -> trunc y 8486 // Currently we only perform this optimization on scalars because vectors 8487 // may have different active low bits. 8488 if (!VT.isVector()) { 8489 APInt Mask = 8490 APInt::getLowBitsSet(N0.getValueSizeInBits(), VT.getSizeInBits()); 8491 if (SDValue Shorter = DAG.GetDemandedBits(N0, Mask)) 8492 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Shorter); 8493 } 8494 8495 // fold (truncate (load x)) -> (smaller load x) 8496 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits)) 8497 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) { 8498 if (SDValue Reduced = ReduceLoadWidth(N)) 8499 return Reduced; 8500 8501 // Handle the case where the load remains an extending load even 8502 // after truncation. 8503 if (N0.hasOneUse() && ISD::isUNINDEXEDLoad(N0.getNode())) { 8504 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 8505 if (!LN0->isVolatile() && 8506 LN0->getMemoryVT().getStoreSizeInBits() < VT.getSizeInBits()) { 8507 SDValue NewLoad = DAG.getExtLoad(LN0->getExtensionType(), SDLoc(LN0), 8508 VT, LN0->getChain(), LN0->getBasePtr(), 8509 LN0->getMemoryVT(), 8510 LN0->getMemOperand()); 8511 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLoad.getValue(1)); 8512 return NewLoad; 8513 } 8514 } 8515 } 8516 8517 // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)), 8518 // where ... are all 'undef'. 8519 if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) { 8520 SmallVector<EVT, 8> VTs; 8521 SDValue V; 8522 unsigned Idx = 0; 8523 unsigned NumDefs = 0; 8524 8525 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) { 8526 SDValue X = N0.getOperand(i); 8527 if (!X.isUndef()) { 8528 V = X; 8529 Idx = i; 8530 NumDefs++; 8531 } 8532 // Stop if more than one members are non-undef. 8533 if (NumDefs > 1) 8534 break; 8535 VTs.push_back(EVT::getVectorVT(*DAG.getContext(), 8536 VT.getVectorElementType(), 8537 X.getValueType().getVectorNumElements())); 8538 } 8539 8540 if (NumDefs == 0) 8541 return DAG.getUNDEF(VT); 8542 8543 if (NumDefs == 1) { 8544 assert(V.getNode() && "The single defined operand is empty!"); 8545 SmallVector<SDValue, 8> Opnds; 8546 for (unsigned i = 0, e = VTs.size(); i != e; ++i) { 8547 if (i != Idx) { 8548 Opnds.push_back(DAG.getUNDEF(VTs[i])); 8549 continue; 8550 } 8551 SDValue NV = DAG.getNode(ISD::TRUNCATE, SDLoc(V), VTs[i], V); 8552 AddToWorklist(NV.getNode()); 8553 Opnds.push_back(NV); 8554 } 8555 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Opnds); 8556 } 8557 } 8558 8559 // Fold truncate of a bitcast of a vector to an extract of the low vector 8560 // element. 8561 // 8562 // e.g. trunc (i64 (bitcast v2i32:x)) -> extract_vector_elt v2i32:x, idx 8563 if (N0.getOpcode() == ISD::BITCAST && !VT.isVector()) { 8564 SDValue VecSrc = N0.getOperand(0); 8565 EVT SrcVT = VecSrc.getValueType(); 8566 if (SrcVT.isVector() && SrcVT.getScalarType() == VT && 8567 (!LegalOperations || 8568 TLI.isOperationLegal(ISD::EXTRACT_VECTOR_ELT, SrcVT))) { 8569 SDLoc SL(N); 8570 8571 EVT IdxVT = TLI.getVectorIdxTy(DAG.getDataLayout()); 8572 unsigned Idx = isLE ? 0 : SrcVT.getVectorNumElements() - 1; 8573 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, VT, 8574 VecSrc, DAG.getConstant(Idx, SL, IdxVT)); 8575 } 8576 } 8577 8578 // Simplify the operands using demanded-bits information. 8579 if (!VT.isVector() && 8580 SimplifyDemandedBits(SDValue(N, 0))) 8581 return SDValue(N, 0); 8582 8583 // (trunc adde(X, Y, Carry)) -> (adde trunc(X), trunc(Y), Carry) 8584 // (trunc addcarry(X, Y, Carry)) -> (addcarry trunc(X), trunc(Y), Carry) 8585 // When the adde's carry is not used. 8586 if ((N0.getOpcode() == ISD::ADDE || N0.getOpcode() == ISD::ADDCARRY) && 8587 N0.hasOneUse() && !N0.getNode()->hasAnyUseOfValue(1) && 8588 (!LegalOperations || TLI.isOperationLegal(N0.getOpcode(), VT))) { 8589 SDLoc SL(N); 8590 auto X = DAG.getNode(ISD::TRUNCATE, SL, VT, N0.getOperand(0)); 8591 auto Y = DAG.getNode(ISD::TRUNCATE, SL, VT, N0.getOperand(1)); 8592 auto VTs = DAG.getVTList(VT, N0->getValueType(1)); 8593 return DAG.getNode(N0.getOpcode(), SL, VTs, X, Y, N0.getOperand(2)); 8594 } 8595 8596 if (SDValue NewVSel = matchVSelectOpSizesWithSetCC(N)) 8597 return NewVSel; 8598 8599 return SDValue(); 8600 } 8601 8602 static SDNode *getBuildPairElt(SDNode *N, unsigned i) { 8603 SDValue Elt = N->getOperand(i); 8604 if (Elt.getOpcode() != ISD::MERGE_VALUES) 8605 return Elt.getNode(); 8606 return Elt.getOperand(Elt.getResNo()).getNode(); 8607 } 8608 8609 /// build_pair (load, load) -> load 8610 /// if load locations are consecutive. 8611 SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) { 8612 assert(N->getOpcode() == ISD::BUILD_PAIR); 8613 8614 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0)); 8615 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1)); 8616 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() || 8617 LD1->getAddressSpace() != LD2->getAddressSpace()) 8618 return SDValue(); 8619 EVT LD1VT = LD1->getValueType(0); 8620 unsigned LD1Bytes = LD1VT.getSizeInBits() / 8; 8621 if (ISD::isNON_EXTLoad(LD2) && LD2->hasOneUse() && 8622 DAG.areNonVolatileConsecutiveLoads(LD2, LD1, LD1Bytes, 1)) { 8623 unsigned Align = LD1->getAlignment(); 8624 unsigned NewAlign = DAG.getDataLayout().getABITypeAlignment( 8625 VT.getTypeForEVT(*DAG.getContext())); 8626 8627 if (NewAlign <= Align && 8628 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) 8629 return DAG.getLoad(VT, SDLoc(N), LD1->getChain(), LD1->getBasePtr(), 8630 LD1->getPointerInfo(), Align); 8631 } 8632 8633 return SDValue(); 8634 } 8635 8636 static unsigned getPPCf128HiElementSelector(const SelectionDAG &DAG) { 8637 // On little-endian machines, bitcasting from ppcf128 to i128 does swap the Hi 8638 // and Lo parts; on big-endian machines it doesn't. 8639 return DAG.getDataLayout().isBigEndian() ? 1 : 0; 8640 } 8641 8642 static SDValue foldBitcastedFPLogic(SDNode *N, SelectionDAG &DAG, 8643 const TargetLowering &TLI) { 8644 // If this is not a bitcast to an FP type or if the target doesn't have 8645 // IEEE754-compliant FP logic, we're done. 8646 EVT VT = N->getValueType(0); 8647 if (!VT.isFloatingPoint() || !TLI.hasBitPreservingFPLogic(VT)) 8648 return SDValue(); 8649 8650 // TODO: Use splat values for the constant-checking below and remove this 8651 // restriction. 8652 SDValue N0 = N->getOperand(0); 8653 EVT SourceVT = N0.getValueType(); 8654 if (SourceVT.isVector()) 8655 return SDValue(); 8656 8657 unsigned FPOpcode; 8658 APInt SignMask; 8659 switch (N0.getOpcode()) { 8660 case ISD::AND: 8661 FPOpcode = ISD::FABS; 8662 SignMask = ~APInt::getSignMask(SourceVT.getSizeInBits()); 8663 break; 8664 case ISD::XOR: 8665 FPOpcode = ISD::FNEG; 8666 SignMask = APInt::getSignMask(SourceVT.getSizeInBits()); 8667 break; 8668 // TODO: ISD::OR --> ISD::FNABS? 8669 default: 8670 return SDValue(); 8671 } 8672 8673 // Fold (bitcast int (and (bitcast fp X to int), 0x7fff...) to fp) -> fabs X 8674 // Fold (bitcast int (xor (bitcast fp X to int), 0x8000...) to fp) -> fneg X 8675 SDValue LogicOp0 = N0.getOperand(0); 8676 ConstantSDNode *LogicOp1 = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 8677 if (LogicOp1 && LogicOp1->getAPIntValue() == SignMask && 8678 LogicOp0.getOpcode() == ISD::BITCAST && 8679 LogicOp0->getOperand(0).getValueType() == VT) 8680 return DAG.getNode(FPOpcode, SDLoc(N), VT, LogicOp0->getOperand(0)); 8681 8682 return SDValue(); 8683 } 8684 8685 SDValue DAGCombiner::visitBITCAST(SDNode *N) { 8686 SDValue N0 = N->getOperand(0); 8687 EVT VT = N->getValueType(0); 8688 8689 if (N0.isUndef()) 8690 return DAG.getUNDEF(VT); 8691 8692 // If the input is a BUILD_VECTOR with all constant elements, fold this now. 8693 // Only do this before legalize, since afterward the target may be depending 8694 // on the bitconvert. 8695 // First check to see if this is all constant. 8696 if (!LegalTypes && 8697 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() && 8698 VT.isVector()) { 8699 bool isSimple = cast<BuildVectorSDNode>(N0)->isConstant(); 8700 8701 EVT DestEltVT = N->getValueType(0).getVectorElementType(); 8702 assert(!DestEltVT.isVector() && 8703 "Element type of vector ValueType must not be vector!"); 8704 if (isSimple) 8705 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT); 8706 } 8707 8708 // If the input is a constant, let getNode fold it. 8709 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) { 8710 // If we can't allow illegal operations, we need to check that this is just 8711 // a fp -> int or int -> conversion and that the resulting operation will 8712 // be legal. 8713 if (!LegalOperations || 8714 (isa<ConstantSDNode>(N0) && VT.isFloatingPoint() && !VT.isVector() && 8715 TLI.isOperationLegal(ISD::ConstantFP, VT)) || 8716 (isa<ConstantFPSDNode>(N0) && VT.isInteger() && !VT.isVector() && 8717 TLI.isOperationLegal(ISD::Constant, VT))) 8718 return DAG.getBitcast(VT, N0); 8719 } 8720 8721 // (conv (conv x, t1), t2) -> (conv x, t2) 8722 if (N0.getOpcode() == ISD::BITCAST) 8723 return DAG.getBitcast(VT, N0.getOperand(0)); 8724 8725 // fold (conv (load x)) -> (load (conv*)x) 8726 // If the resultant load doesn't need a higher alignment than the original! 8727 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() && 8728 // Do not change the width of a volatile load. 8729 !cast<LoadSDNode>(N0)->isVolatile() && 8730 // Do not remove the cast if the types differ in endian layout. 8731 TLI.hasBigEndianPartOrdering(N0.getValueType(), DAG.getDataLayout()) == 8732 TLI.hasBigEndianPartOrdering(VT, DAG.getDataLayout()) && 8733 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)) && 8734 TLI.isLoadBitCastBeneficial(N0.getValueType(), VT)) { 8735 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 8736 unsigned OrigAlign = LN0->getAlignment(); 8737 8738 bool Fast = false; 8739 if (TLI.allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), VT, 8740 LN0->getAddressSpace(), OrigAlign, &Fast) && 8741 Fast) { 8742 SDValue Load = 8743 DAG.getLoad(VT, SDLoc(N), LN0->getChain(), LN0->getBasePtr(), 8744 LN0->getPointerInfo(), OrigAlign, 8745 LN0->getMemOperand()->getFlags(), LN0->getAAInfo()); 8746 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1)); 8747 return Load; 8748 } 8749 } 8750 8751 if (SDValue V = foldBitcastedFPLogic(N, DAG, TLI)) 8752 return V; 8753 8754 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit) 8755 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit)) 8756 // 8757 // For ppc_fp128: 8758 // fold (bitcast (fneg x)) -> 8759 // flipbit = signbit 8760 // (xor (bitcast x) (build_pair flipbit, flipbit)) 8761 // 8762 // fold (bitcast (fabs x)) -> 8763 // flipbit = (and (extract_element (bitcast x), 0), signbit) 8764 // (xor (bitcast x) (build_pair flipbit, flipbit)) 8765 // This often reduces constant pool loads. 8766 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(N0.getValueType())) || 8767 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(N0.getValueType()))) && 8768 N0.getNode()->hasOneUse() && VT.isInteger() && 8769 !VT.isVector() && !N0.getValueType().isVector()) { 8770 SDValue NewConv = DAG.getBitcast(VT, N0.getOperand(0)); 8771 AddToWorklist(NewConv.getNode()); 8772 8773 SDLoc DL(N); 8774 if (N0.getValueType() == MVT::ppcf128 && !LegalTypes) { 8775 assert(VT.getSizeInBits() == 128); 8776 SDValue SignBit = DAG.getConstant( 8777 APInt::getSignMask(VT.getSizeInBits() / 2), SDLoc(N0), MVT::i64); 8778 SDValue FlipBit; 8779 if (N0.getOpcode() == ISD::FNEG) { 8780 FlipBit = SignBit; 8781 AddToWorklist(FlipBit.getNode()); 8782 } else { 8783 assert(N0.getOpcode() == ISD::FABS); 8784 SDValue Hi = 8785 DAG.getNode(ISD::EXTRACT_ELEMENT, SDLoc(NewConv), MVT::i64, NewConv, 8786 DAG.getIntPtrConstant(getPPCf128HiElementSelector(DAG), 8787 SDLoc(NewConv))); 8788 AddToWorklist(Hi.getNode()); 8789 FlipBit = DAG.getNode(ISD::AND, SDLoc(N0), MVT::i64, Hi, SignBit); 8790 AddToWorklist(FlipBit.getNode()); 8791 } 8792 SDValue FlipBits = 8793 DAG.getNode(ISD::BUILD_PAIR, SDLoc(N0), VT, FlipBit, FlipBit); 8794 AddToWorklist(FlipBits.getNode()); 8795 return DAG.getNode(ISD::XOR, DL, VT, NewConv, FlipBits); 8796 } 8797 APInt SignBit = APInt::getSignMask(VT.getSizeInBits()); 8798 if (N0.getOpcode() == ISD::FNEG) 8799 return DAG.getNode(ISD::XOR, DL, VT, 8800 NewConv, DAG.getConstant(SignBit, DL, VT)); 8801 assert(N0.getOpcode() == ISD::FABS); 8802 return DAG.getNode(ISD::AND, DL, VT, 8803 NewConv, DAG.getConstant(~SignBit, DL, VT)); 8804 } 8805 8806 // fold (bitconvert (fcopysign cst, x)) -> 8807 // (or (and (bitconvert x), sign), (and cst, (not sign))) 8808 // Note that we don't handle (copysign x, cst) because this can always be 8809 // folded to an fneg or fabs. 8810 // 8811 // For ppc_fp128: 8812 // fold (bitcast (fcopysign cst, x)) -> 8813 // flipbit = (and (extract_element 8814 // (xor (bitcast cst), (bitcast x)), 0), 8815 // signbit) 8816 // (xor (bitcast cst) (build_pair flipbit, flipbit)) 8817 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() && 8818 isa<ConstantFPSDNode>(N0.getOperand(0)) && 8819 VT.isInteger() && !VT.isVector()) { 8820 unsigned OrigXWidth = N0.getOperand(1).getValueSizeInBits(); 8821 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth); 8822 if (isTypeLegal(IntXVT)) { 8823 SDValue X = DAG.getBitcast(IntXVT, N0.getOperand(1)); 8824 AddToWorklist(X.getNode()); 8825 8826 // If X has a different width than the result/lhs, sext it or truncate it. 8827 unsigned VTWidth = VT.getSizeInBits(); 8828 if (OrigXWidth < VTWidth) { 8829 X = DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, X); 8830 AddToWorklist(X.getNode()); 8831 } else if (OrigXWidth > VTWidth) { 8832 // To get the sign bit in the right place, we have to shift it right 8833 // before truncating. 8834 SDLoc DL(X); 8835 X = DAG.getNode(ISD::SRL, DL, 8836 X.getValueType(), X, 8837 DAG.getConstant(OrigXWidth-VTWidth, DL, 8838 X.getValueType())); 8839 AddToWorklist(X.getNode()); 8840 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X); 8841 AddToWorklist(X.getNode()); 8842 } 8843 8844 if (N0.getValueType() == MVT::ppcf128 && !LegalTypes) { 8845 APInt SignBit = APInt::getSignMask(VT.getSizeInBits() / 2); 8846 SDValue Cst = DAG.getBitcast(VT, N0.getOperand(0)); 8847 AddToWorklist(Cst.getNode()); 8848 SDValue X = DAG.getBitcast(VT, N0.getOperand(1)); 8849 AddToWorklist(X.getNode()); 8850 SDValue XorResult = DAG.getNode(ISD::XOR, SDLoc(N0), VT, Cst, X); 8851 AddToWorklist(XorResult.getNode()); 8852 SDValue XorResult64 = DAG.getNode( 8853 ISD::EXTRACT_ELEMENT, SDLoc(XorResult), MVT::i64, XorResult, 8854 DAG.getIntPtrConstant(getPPCf128HiElementSelector(DAG), 8855 SDLoc(XorResult))); 8856 AddToWorklist(XorResult64.getNode()); 8857 SDValue FlipBit = 8858 DAG.getNode(ISD::AND, SDLoc(XorResult64), MVT::i64, XorResult64, 8859 DAG.getConstant(SignBit, SDLoc(XorResult64), MVT::i64)); 8860 AddToWorklist(FlipBit.getNode()); 8861 SDValue FlipBits = 8862 DAG.getNode(ISD::BUILD_PAIR, SDLoc(N0), VT, FlipBit, FlipBit); 8863 AddToWorklist(FlipBits.getNode()); 8864 return DAG.getNode(ISD::XOR, SDLoc(N), VT, Cst, FlipBits); 8865 } 8866 APInt SignBit = APInt::getSignMask(VT.getSizeInBits()); 8867 X = DAG.getNode(ISD::AND, SDLoc(X), VT, 8868 X, DAG.getConstant(SignBit, SDLoc(X), VT)); 8869 AddToWorklist(X.getNode()); 8870 8871 SDValue Cst = DAG.getBitcast(VT, N0.getOperand(0)); 8872 Cst = DAG.getNode(ISD::AND, SDLoc(Cst), VT, 8873 Cst, DAG.getConstant(~SignBit, SDLoc(Cst), VT)); 8874 AddToWorklist(Cst.getNode()); 8875 8876 return DAG.getNode(ISD::OR, SDLoc(N), VT, X, Cst); 8877 } 8878 } 8879 8880 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive. 8881 if (N0.getOpcode() == ISD::BUILD_PAIR) 8882 if (SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT)) 8883 return CombineLD; 8884 8885 // Remove double bitcasts from shuffles - this is often a legacy of 8886 // XformToShuffleWithZero being used to combine bitmaskings (of 8887 // float vectors bitcast to integer vectors) into shuffles. 8888 // bitcast(shuffle(bitcast(s0),bitcast(s1))) -> shuffle(s0,s1) 8889 if (Level < AfterLegalizeDAG && TLI.isTypeLegal(VT) && VT.isVector() && 8890 N0->getOpcode() == ISD::VECTOR_SHUFFLE && 8891 VT.getVectorNumElements() >= N0.getValueType().getVectorNumElements() && 8892 !(VT.getVectorNumElements() % N0.getValueType().getVectorNumElements())) { 8893 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N0); 8894 8895 // If operands are a bitcast, peek through if it casts the original VT. 8896 // If operands are a constant, just bitcast back to original VT. 8897 auto PeekThroughBitcast = [&](SDValue Op) { 8898 if (Op.getOpcode() == ISD::BITCAST && 8899 Op.getOperand(0).getValueType() == VT) 8900 return SDValue(Op.getOperand(0)); 8901 if (Op.isUndef() || ISD::isBuildVectorOfConstantSDNodes(Op.getNode()) || 8902 ISD::isBuildVectorOfConstantFPSDNodes(Op.getNode())) 8903 return DAG.getBitcast(VT, Op); 8904 return SDValue(); 8905 }; 8906 8907 // FIXME: If either input vector is bitcast, try to convert the shuffle to 8908 // the result type of this bitcast. This would eliminate at least one 8909 // bitcast. See the transform in InstCombine. 8910 SDValue SV0 = PeekThroughBitcast(N0->getOperand(0)); 8911 SDValue SV1 = PeekThroughBitcast(N0->getOperand(1)); 8912 if (!(SV0 && SV1)) 8913 return SDValue(); 8914 8915 int MaskScale = 8916 VT.getVectorNumElements() / N0.getValueType().getVectorNumElements(); 8917 SmallVector<int, 8> NewMask; 8918 for (int M : SVN->getMask()) 8919 for (int i = 0; i != MaskScale; ++i) 8920 NewMask.push_back(M < 0 ? -1 : M * MaskScale + i); 8921 8922 bool LegalMask = TLI.isShuffleMaskLegal(NewMask, VT); 8923 if (!LegalMask) { 8924 std::swap(SV0, SV1); 8925 ShuffleVectorSDNode::commuteMask(NewMask); 8926 LegalMask = TLI.isShuffleMaskLegal(NewMask, VT); 8927 } 8928 8929 if (LegalMask) 8930 return DAG.getVectorShuffle(VT, SDLoc(N), SV0, SV1, NewMask); 8931 } 8932 8933 return SDValue(); 8934 } 8935 8936 SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) { 8937 EVT VT = N->getValueType(0); 8938 return CombineConsecutiveLoads(N, VT); 8939 } 8940 8941 /// We know that BV is a build_vector node with Constant, ConstantFP or Undef 8942 /// operands. DstEltVT indicates the destination element value type. 8943 SDValue DAGCombiner:: 8944 ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) { 8945 EVT SrcEltVT = BV->getValueType(0).getVectorElementType(); 8946 8947 // If this is already the right type, we're done. 8948 if (SrcEltVT == DstEltVT) return SDValue(BV, 0); 8949 8950 unsigned SrcBitSize = SrcEltVT.getSizeInBits(); 8951 unsigned DstBitSize = DstEltVT.getSizeInBits(); 8952 8953 // If this is a conversion of N elements of one type to N elements of another 8954 // type, convert each element. This handles FP<->INT cases. 8955 if (SrcBitSize == DstBitSize) { 8956 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, 8957 BV->getValueType(0).getVectorNumElements()); 8958 8959 // Due to the FP element handling below calling this routine recursively, 8960 // we can end up with a scalar-to-vector node here. 8961 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR) 8962 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT, 8963 DAG.getBitcast(DstEltVT, BV->getOperand(0))); 8964 8965 SmallVector<SDValue, 8> Ops; 8966 for (SDValue Op : BV->op_values()) { 8967 // If the vector element type is not legal, the BUILD_VECTOR operands 8968 // are promoted and implicitly truncated. Make that explicit here. 8969 if (Op.getValueType() != SrcEltVT) 8970 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(BV), SrcEltVT, Op); 8971 Ops.push_back(DAG.getBitcast(DstEltVT, Op)); 8972 AddToWorklist(Ops.back().getNode()); 8973 } 8974 return DAG.getBuildVector(VT, SDLoc(BV), Ops); 8975 } 8976 8977 // Otherwise, we're growing or shrinking the elements. To avoid having to 8978 // handle annoying details of growing/shrinking FP values, we convert them to 8979 // int first. 8980 if (SrcEltVT.isFloatingPoint()) { 8981 // Convert the input float vector to a int vector where the elements are the 8982 // same sizes. 8983 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits()); 8984 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode(); 8985 SrcEltVT = IntVT; 8986 } 8987 8988 // Now we know the input is an integer vector. If the output is a FP type, 8989 // convert to integer first, then to FP of the right size. 8990 if (DstEltVT.isFloatingPoint()) { 8991 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits()); 8992 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode(); 8993 8994 // Next, convert to FP elements of the same size. 8995 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT); 8996 } 8997 8998 SDLoc DL(BV); 8999 9000 // Okay, we know the src/dst types are both integers of differing types. 9001 // Handling growing first. 9002 assert(SrcEltVT.isInteger() && DstEltVT.isInteger()); 9003 if (SrcBitSize < DstBitSize) { 9004 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize; 9005 9006 SmallVector<SDValue, 8> Ops; 9007 for (unsigned i = 0, e = BV->getNumOperands(); i != e; 9008 i += NumInputsPerOutput) { 9009 bool isLE = DAG.getDataLayout().isLittleEndian(); 9010 APInt NewBits = APInt(DstBitSize, 0); 9011 bool EltIsUndef = true; 9012 for (unsigned j = 0; j != NumInputsPerOutput; ++j) { 9013 // Shift the previously computed bits over. 9014 NewBits <<= SrcBitSize; 9015 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j)); 9016 if (Op.isUndef()) continue; 9017 EltIsUndef = false; 9018 9019 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue(). 9020 zextOrTrunc(SrcBitSize).zext(DstBitSize); 9021 } 9022 9023 if (EltIsUndef) 9024 Ops.push_back(DAG.getUNDEF(DstEltVT)); 9025 else 9026 Ops.push_back(DAG.getConstant(NewBits, DL, DstEltVT)); 9027 } 9028 9029 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size()); 9030 return DAG.getBuildVector(VT, DL, Ops); 9031 } 9032 9033 // Finally, this must be the case where we are shrinking elements: each input 9034 // turns into multiple outputs. 9035 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize; 9036 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, 9037 NumOutputsPerInput*BV->getNumOperands()); 9038 SmallVector<SDValue, 8> Ops; 9039 9040 for (const SDValue &Op : BV->op_values()) { 9041 if (Op.isUndef()) { 9042 Ops.append(NumOutputsPerInput, DAG.getUNDEF(DstEltVT)); 9043 continue; 9044 } 9045 9046 APInt OpVal = cast<ConstantSDNode>(Op)-> 9047 getAPIntValue().zextOrTrunc(SrcBitSize); 9048 9049 for (unsigned j = 0; j != NumOutputsPerInput; ++j) { 9050 APInt ThisVal = OpVal.trunc(DstBitSize); 9051 Ops.push_back(DAG.getConstant(ThisVal, DL, DstEltVT)); 9052 OpVal.lshrInPlace(DstBitSize); 9053 } 9054 9055 // For big endian targets, swap the order of the pieces of each element. 9056 if (DAG.getDataLayout().isBigEndian()) 9057 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end()); 9058 } 9059 9060 return DAG.getBuildVector(VT, DL, Ops); 9061 } 9062 9063 static bool isContractable(SDNode *N) { 9064 SDNodeFlags F = N->getFlags(); 9065 return F.hasAllowContract() || F.hasUnsafeAlgebra(); 9066 } 9067 9068 /// Try to perform FMA combining on a given FADD node. 9069 SDValue DAGCombiner::visitFADDForFMACombine(SDNode *N) { 9070 SDValue N0 = N->getOperand(0); 9071 SDValue N1 = N->getOperand(1); 9072 EVT VT = N->getValueType(0); 9073 SDLoc SL(N); 9074 9075 const TargetOptions &Options = DAG.getTarget().Options; 9076 9077 // Floating-point multiply-add with intermediate rounding. 9078 bool HasFMAD = (LegalOperations && TLI.isOperationLegal(ISD::FMAD, VT)); 9079 9080 // Floating-point multiply-add without intermediate rounding. 9081 bool HasFMA = 9082 TLI.isFMAFasterThanFMulAndFAdd(VT) && 9083 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT)); 9084 9085 // No valid opcode, do not combine. 9086 if (!HasFMAD && !HasFMA) 9087 return SDValue(); 9088 9089 bool AllowFusionGlobally = (Options.AllowFPOpFusion == FPOpFusion::Fast || 9090 Options.UnsafeFPMath || HasFMAD); 9091 // If the addition is not contractable, do not combine. 9092 if (!AllowFusionGlobally && !isContractable(N)) 9093 return SDValue(); 9094 9095 const SelectionDAGTargetInfo *STI = DAG.getSubtarget().getSelectionDAGInfo(); 9096 if (STI && STI->generateFMAsInMachineCombiner(OptLevel)) 9097 return SDValue(); 9098 9099 // Always prefer FMAD to FMA for precision. 9100 unsigned PreferredFusedOpcode = HasFMAD ? ISD::FMAD : ISD::FMA; 9101 bool Aggressive = TLI.enableAggressiveFMAFusion(VT); 9102 9103 // Is the node an FMUL and contractable either due to global flags or 9104 // SDNodeFlags. 9105 auto isContractableFMUL = [AllowFusionGlobally](SDValue N) { 9106 if (N.getOpcode() != ISD::FMUL) 9107 return false; 9108 return AllowFusionGlobally || isContractable(N.getNode()); 9109 }; 9110 // If we have two choices trying to fold (fadd (fmul u, v), (fmul x, y)), 9111 // prefer to fold the multiply with fewer uses. 9112 if (Aggressive && isContractableFMUL(N0) && isContractableFMUL(N1)) { 9113 if (N0.getNode()->use_size() > N1.getNode()->use_size()) 9114 std::swap(N0, N1); 9115 } 9116 9117 // fold (fadd (fmul x, y), z) -> (fma x, y, z) 9118 if (isContractableFMUL(N0) && (Aggressive || N0->hasOneUse())) { 9119 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9120 N0.getOperand(0), N0.getOperand(1), N1); 9121 } 9122 9123 // fold (fadd x, (fmul y, z)) -> (fma y, z, x) 9124 // Note: Commutes FADD operands. 9125 if (isContractableFMUL(N1) && (Aggressive || N1->hasOneUse())) { 9126 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9127 N1.getOperand(0), N1.getOperand(1), N0); 9128 } 9129 9130 // Look through FP_EXTEND nodes to do more combining. 9131 9132 // fold (fadd (fpext (fmul x, y)), z) -> (fma (fpext x), (fpext y), z) 9133 if (N0.getOpcode() == ISD::FP_EXTEND) { 9134 SDValue N00 = N0.getOperand(0); 9135 if (isContractableFMUL(N00) && 9136 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N00.getValueType())) { 9137 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9138 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9139 N00.getOperand(0)), 9140 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9141 N00.getOperand(1)), N1); 9142 } 9143 } 9144 9145 // fold (fadd x, (fpext (fmul y, z))) -> (fma (fpext y), (fpext z), x) 9146 // Note: Commutes FADD operands. 9147 if (N1.getOpcode() == ISD::FP_EXTEND) { 9148 SDValue N10 = N1.getOperand(0); 9149 if (isContractableFMUL(N10) && 9150 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N10.getValueType())) { 9151 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9152 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9153 N10.getOperand(0)), 9154 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9155 N10.getOperand(1)), N0); 9156 } 9157 } 9158 9159 // More folding opportunities when target permits. 9160 if (Aggressive) { 9161 // fold (fadd (fma x, y, (fmul u, v)), z) -> (fma x, y (fma u, v, z)) 9162 // FIXME: The UnsafeAlgebra flag should be propagated to FMA/FMAD, but FMF 9163 // are currently only supported on binary nodes. 9164 if (Options.UnsafeFPMath && 9165 N0.getOpcode() == PreferredFusedOpcode && 9166 N0.getOperand(2).getOpcode() == ISD::FMUL && 9167 N0->hasOneUse() && N0.getOperand(2)->hasOneUse()) { 9168 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9169 N0.getOperand(0), N0.getOperand(1), 9170 DAG.getNode(PreferredFusedOpcode, SL, VT, 9171 N0.getOperand(2).getOperand(0), 9172 N0.getOperand(2).getOperand(1), 9173 N1)); 9174 } 9175 9176 // fold (fadd x, (fma y, z, (fmul u, v)) -> (fma y, z (fma u, v, x)) 9177 // FIXME: The UnsafeAlgebra flag should be propagated to FMA/FMAD, but FMF 9178 // are currently only supported on binary nodes. 9179 if (Options.UnsafeFPMath && 9180 N1->getOpcode() == PreferredFusedOpcode && 9181 N1.getOperand(2).getOpcode() == ISD::FMUL && 9182 N1->hasOneUse() && N1.getOperand(2)->hasOneUse()) { 9183 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9184 N1.getOperand(0), N1.getOperand(1), 9185 DAG.getNode(PreferredFusedOpcode, SL, VT, 9186 N1.getOperand(2).getOperand(0), 9187 N1.getOperand(2).getOperand(1), 9188 N0)); 9189 } 9190 9191 9192 // fold (fadd (fma x, y, (fpext (fmul u, v))), z) 9193 // -> (fma x, y, (fma (fpext u), (fpext v), z)) 9194 auto FoldFAddFMAFPExtFMul = [&] ( 9195 SDValue X, SDValue Y, SDValue U, SDValue V, SDValue Z) { 9196 return DAG.getNode(PreferredFusedOpcode, SL, VT, X, Y, 9197 DAG.getNode(PreferredFusedOpcode, SL, VT, 9198 DAG.getNode(ISD::FP_EXTEND, SL, VT, U), 9199 DAG.getNode(ISD::FP_EXTEND, SL, VT, V), 9200 Z)); 9201 }; 9202 if (N0.getOpcode() == PreferredFusedOpcode) { 9203 SDValue N02 = N0.getOperand(2); 9204 if (N02.getOpcode() == ISD::FP_EXTEND) { 9205 SDValue N020 = N02.getOperand(0); 9206 if (isContractableFMUL(N020) && 9207 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N020.getValueType())) { 9208 return FoldFAddFMAFPExtFMul(N0.getOperand(0), N0.getOperand(1), 9209 N020.getOperand(0), N020.getOperand(1), 9210 N1); 9211 } 9212 } 9213 } 9214 9215 // fold (fadd (fpext (fma x, y, (fmul u, v))), z) 9216 // -> (fma (fpext x), (fpext y), (fma (fpext u), (fpext v), z)) 9217 // FIXME: This turns two single-precision and one double-precision 9218 // operation into two double-precision operations, which might not be 9219 // interesting for all targets, especially GPUs. 9220 auto FoldFAddFPExtFMAFMul = [&] ( 9221 SDValue X, SDValue Y, SDValue U, SDValue V, SDValue Z) { 9222 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9223 DAG.getNode(ISD::FP_EXTEND, SL, VT, X), 9224 DAG.getNode(ISD::FP_EXTEND, SL, VT, Y), 9225 DAG.getNode(PreferredFusedOpcode, SL, VT, 9226 DAG.getNode(ISD::FP_EXTEND, SL, VT, U), 9227 DAG.getNode(ISD::FP_EXTEND, SL, VT, V), 9228 Z)); 9229 }; 9230 if (N0.getOpcode() == ISD::FP_EXTEND) { 9231 SDValue N00 = N0.getOperand(0); 9232 if (N00.getOpcode() == PreferredFusedOpcode) { 9233 SDValue N002 = N00.getOperand(2); 9234 if (isContractableFMUL(N002) && 9235 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N00.getValueType())) { 9236 return FoldFAddFPExtFMAFMul(N00.getOperand(0), N00.getOperand(1), 9237 N002.getOperand(0), N002.getOperand(1), 9238 N1); 9239 } 9240 } 9241 } 9242 9243 // fold (fadd x, (fma y, z, (fpext (fmul u, v))) 9244 // -> (fma y, z, (fma (fpext u), (fpext v), x)) 9245 if (N1.getOpcode() == PreferredFusedOpcode) { 9246 SDValue N12 = N1.getOperand(2); 9247 if (N12.getOpcode() == ISD::FP_EXTEND) { 9248 SDValue N120 = N12.getOperand(0); 9249 if (isContractableFMUL(N120) && 9250 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N120.getValueType())) { 9251 return FoldFAddFMAFPExtFMul(N1.getOperand(0), N1.getOperand(1), 9252 N120.getOperand(0), N120.getOperand(1), 9253 N0); 9254 } 9255 } 9256 } 9257 9258 // fold (fadd x, (fpext (fma y, z, (fmul u, v))) 9259 // -> (fma (fpext y), (fpext z), (fma (fpext u), (fpext v), x)) 9260 // FIXME: This turns two single-precision and one double-precision 9261 // operation into two double-precision operations, which might not be 9262 // interesting for all targets, especially GPUs. 9263 if (N1.getOpcode() == ISD::FP_EXTEND) { 9264 SDValue N10 = N1.getOperand(0); 9265 if (N10.getOpcode() == PreferredFusedOpcode) { 9266 SDValue N102 = N10.getOperand(2); 9267 if (isContractableFMUL(N102) && 9268 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N10.getValueType())) { 9269 return FoldFAddFPExtFMAFMul(N10.getOperand(0), N10.getOperand(1), 9270 N102.getOperand(0), N102.getOperand(1), 9271 N0); 9272 } 9273 } 9274 } 9275 } 9276 9277 return SDValue(); 9278 } 9279 9280 /// Try to perform FMA combining on a given FSUB node. 9281 SDValue DAGCombiner::visitFSUBForFMACombine(SDNode *N) { 9282 SDValue N0 = N->getOperand(0); 9283 SDValue N1 = N->getOperand(1); 9284 EVT VT = N->getValueType(0); 9285 SDLoc SL(N); 9286 9287 const TargetOptions &Options = DAG.getTarget().Options; 9288 // Floating-point multiply-add with intermediate rounding. 9289 bool HasFMAD = (LegalOperations && TLI.isOperationLegal(ISD::FMAD, VT)); 9290 9291 // Floating-point multiply-add without intermediate rounding. 9292 bool HasFMA = 9293 TLI.isFMAFasterThanFMulAndFAdd(VT) && 9294 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT)); 9295 9296 // No valid opcode, do not combine. 9297 if (!HasFMAD && !HasFMA) 9298 return SDValue(); 9299 9300 bool AllowFusionGlobally = (Options.AllowFPOpFusion == FPOpFusion::Fast || 9301 Options.UnsafeFPMath || HasFMAD); 9302 // If the subtraction is not contractable, do not combine. 9303 if (!AllowFusionGlobally && !isContractable(N)) 9304 return SDValue(); 9305 9306 const SelectionDAGTargetInfo *STI = DAG.getSubtarget().getSelectionDAGInfo(); 9307 if (STI && STI->generateFMAsInMachineCombiner(OptLevel)) 9308 return SDValue(); 9309 9310 // Always prefer FMAD to FMA for precision. 9311 unsigned PreferredFusedOpcode = HasFMAD ? ISD::FMAD : ISD::FMA; 9312 bool Aggressive = TLI.enableAggressiveFMAFusion(VT); 9313 9314 // Is the node an FMUL and contractable either due to global flags or 9315 // SDNodeFlags. 9316 auto isContractableFMUL = [AllowFusionGlobally](SDValue N) { 9317 if (N.getOpcode() != ISD::FMUL) 9318 return false; 9319 return AllowFusionGlobally || isContractable(N.getNode()); 9320 }; 9321 9322 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z)) 9323 if (isContractableFMUL(N0) && (Aggressive || N0->hasOneUse())) { 9324 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9325 N0.getOperand(0), N0.getOperand(1), 9326 DAG.getNode(ISD::FNEG, SL, VT, N1)); 9327 } 9328 9329 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x) 9330 // Note: Commutes FSUB operands. 9331 if (isContractableFMUL(N1) && (Aggressive || N1->hasOneUse())) 9332 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9333 DAG.getNode(ISD::FNEG, SL, VT, 9334 N1.getOperand(0)), 9335 N1.getOperand(1), N0); 9336 9337 // fold (fsub (fneg (fmul, x, y)), z) -> (fma (fneg x), y, (fneg z)) 9338 if (N0.getOpcode() == ISD::FNEG && isContractableFMUL(N0.getOperand(0)) && 9339 (Aggressive || (N0->hasOneUse() && N0.getOperand(0).hasOneUse()))) { 9340 SDValue N00 = N0.getOperand(0).getOperand(0); 9341 SDValue N01 = N0.getOperand(0).getOperand(1); 9342 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9343 DAG.getNode(ISD::FNEG, SL, VT, N00), N01, 9344 DAG.getNode(ISD::FNEG, SL, VT, N1)); 9345 } 9346 9347 // Look through FP_EXTEND nodes to do more combining. 9348 9349 // fold (fsub (fpext (fmul x, y)), z) 9350 // -> (fma (fpext x), (fpext y), (fneg z)) 9351 if (N0.getOpcode() == ISD::FP_EXTEND) { 9352 SDValue N00 = N0.getOperand(0); 9353 if (isContractableFMUL(N00) && 9354 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N00.getValueType())) { 9355 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9356 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9357 N00.getOperand(0)), 9358 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9359 N00.getOperand(1)), 9360 DAG.getNode(ISD::FNEG, SL, VT, N1)); 9361 } 9362 } 9363 9364 // fold (fsub x, (fpext (fmul y, z))) 9365 // -> (fma (fneg (fpext y)), (fpext z), x) 9366 // Note: Commutes FSUB operands. 9367 if (N1.getOpcode() == ISD::FP_EXTEND) { 9368 SDValue N10 = N1.getOperand(0); 9369 if (isContractableFMUL(N10) && 9370 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N10.getValueType())) { 9371 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9372 DAG.getNode(ISD::FNEG, SL, VT, 9373 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9374 N10.getOperand(0))), 9375 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9376 N10.getOperand(1)), 9377 N0); 9378 } 9379 } 9380 9381 // fold (fsub (fpext (fneg (fmul, x, y))), z) 9382 // -> (fneg (fma (fpext x), (fpext y), z)) 9383 // Note: This could be removed with appropriate canonicalization of the 9384 // input expression into (fneg (fadd (fpext (fmul, x, y)), z). However, the 9385 // orthogonal flags -fp-contract=fast and -enable-unsafe-fp-math prevent 9386 // from implementing the canonicalization in visitFSUB. 9387 if (N0.getOpcode() == ISD::FP_EXTEND) { 9388 SDValue N00 = N0.getOperand(0); 9389 if (N00.getOpcode() == ISD::FNEG) { 9390 SDValue N000 = N00.getOperand(0); 9391 if (isContractableFMUL(N000) && 9392 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N00.getValueType())) { 9393 return DAG.getNode(ISD::FNEG, SL, VT, 9394 DAG.getNode(PreferredFusedOpcode, SL, VT, 9395 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9396 N000.getOperand(0)), 9397 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9398 N000.getOperand(1)), 9399 N1)); 9400 } 9401 } 9402 } 9403 9404 // fold (fsub (fneg (fpext (fmul, x, y))), z) 9405 // -> (fneg (fma (fpext x)), (fpext y), z) 9406 // Note: This could be removed with appropriate canonicalization of the 9407 // input expression into (fneg (fadd (fpext (fmul, x, y)), z). However, the 9408 // orthogonal flags -fp-contract=fast and -enable-unsafe-fp-math prevent 9409 // from implementing the canonicalization in visitFSUB. 9410 if (N0.getOpcode() == ISD::FNEG) { 9411 SDValue N00 = N0.getOperand(0); 9412 if (N00.getOpcode() == ISD::FP_EXTEND) { 9413 SDValue N000 = N00.getOperand(0); 9414 if (isContractableFMUL(N000) && 9415 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N000.getValueType())) { 9416 return DAG.getNode(ISD::FNEG, SL, VT, 9417 DAG.getNode(PreferredFusedOpcode, SL, VT, 9418 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9419 N000.getOperand(0)), 9420 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9421 N000.getOperand(1)), 9422 N1)); 9423 } 9424 } 9425 } 9426 9427 // More folding opportunities when target permits. 9428 if (Aggressive) { 9429 // fold (fsub (fma x, y, (fmul u, v)), z) 9430 // -> (fma x, y (fma u, v, (fneg z))) 9431 // FIXME: The UnsafeAlgebra flag should be propagated to FMA/FMAD, but FMF 9432 // are currently only supported on binary nodes. 9433 if (Options.UnsafeFPMath && N0.getOpcode() == PreferredFusedOpcode && 9434 isContractableFMUL(N0.getOperand(2)) && N0->hasOneUse() && 9435 N0.getOperand(2)->hasOneUse()) { 9436 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9437 N0.getOperand(0), N0.getOperand(1), 9438 DAG.getNode(PreferredFusedOpcode, SL, VT, 9439 N0.getOperand(2).getOperand(0), 9440 N0.getOperand(2).getOperand(1), 9441 DAG.getNode(ISD::FNEG, SL, VT, 9442 N1))); 9443 } 9444 9445 // fold (fsub x, (fma y, z, (fmul u, v))) 9446 // -> (fma (fneg y), z, (fma (fneg u), v, x)) 9447 // FIXME: The UnsafeAlgebra flag should be propagated to FMA/FMAD, but FMF 9448 // are currently only supported on binary nodes. 9449 if (Options.UnsafeFPMath && N1.getOpcode() == PreferredFusedOpcode && 9450 isContractableFMUL(N1.getOperand(2))) { 9451 SDValue N20 = N1.getOperand(2).getOperand(0); 9452 SDValue N21 = N1.getOperand(2).getOperand(1); 9453 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9454 DAG.getNode(ISD::FNEG, SL, VT, 9455 N1.getOperand(0)), 9456 N1.getOperand(1), 9457 DAG.getNode(PreferredFusedOpcode, SL, VT, 9458 DAG.getNode(ISD::FNEG, SL, VT, N20), 9459 9460 N21, N0)); 9461 } 9462 9463 9464 // fold (fsub (fma x, y, (fpext (fmul u, v))), z) 9465 // -> (fma x, y (fma (fpext u), (fpext v), (fneg z))) 9466 if (N0.getOpcode() == PreferredFusedOpcode) { 9467 SDValue N02 = N0.getOperand(2); 9468 if (N02.getOpcode() == ISD::FP_EXTEND) { 9469 SDValue N020 = N02.getOperand(0); 9470 if (isContractableFMUL(N020) && 9471 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N020.getValueType())) { 9472 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9473 N0.getOperand(0), N0.getOperand(1), 9474 DAG.getNode(PreferredFusedOpcode, SL, VT, 9475 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9476 N020.getOperand(0)), 9477 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9478 N020.getOperand(1)), 9479 DAG.getNode(ISD::FNEG, SL, VT, 9480 N1))); 9481 } 9482 } 9483 } 9484 9485 // fold (fsub (fpext (fma x, y, (fmul u, v))), z) 9486 // -> (fma (fpext x), (fpext y), 9487 // (fma (fpext u), (fpext v), (fneg z))) 9488 // FIXME: This turns two single-precision and one double-precision 9489 // operation into two double-precision operations, which might not be 9490 // interesting for all targets, especially GPUs. 9491 if (N0.getOpcode() == ISD::FP_EXTEND) { 9492 SDValue N00 = N0.getOperand(0); 9493 if (N00.getOpcode() == PreferredFusedOpcode) { 9494 SDValue N002 = N00.getOperand(2); 9495 if (isContractableFMUL(N002) && 9496 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N00.getValueType())) { 9497 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9498 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9499 N00.getOperand(0)), 9500 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9501 N00.getOperand(1)), 9502 DAG.getNode(PreferredFusedOpcode, SL, VT, 9503 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9504 N002.getOperand(0)), 9505 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9506 N002.getOperand(1)), 9507 DAG.getNode(ISD::FNEG, SL, VT, 9508 N1))); 9509 } 9510 } 9511 } 9512 9513 // fold (fsub x, (fma y, z, (fpext (fmul u, v)))) 9514 // -> (fma (fneg y), z, (fma (fneg (fpext u)), (fpext v), x)) 9515 if (N1.getOpcode() == PreferredFusedOpcode && 9516 N1.getOperand(2).getOpcode() == ISD::FP_EXTEND) { 9517 SDValue N120 = N1.getOperand(2).getOperand(0); 9518 if (isContractableFMUL(N120) && 9519 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, N120.getValueType())) { 9520 SDValue N1200 = N120.getOperand(0); 9521 SDValue N1201 = N120.getOperand(1); 9522 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9523 DAG.getNode(ISD::FNEG, SL, VT, N1.getOperand(0)), 9524 N1.getOperand(1), 9525 DAG.getNode(PreferredFusedOpcode, SL, VT, 9526 DAG.getNode(ISD::FNEG, SL, VT, 9527 DAG.getNode(ISD::FP_EXTEND, SL, 9528 VT, N1200)), 9529 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9530 N1201), 9531 N0)); 9532 } 9533 } 9534 9535 // fold (fsub x, (fpext (fma y, z, (fmul u, v)))) 9536 // -> (fma (fneg (fpext y)), (fpext z), 9537 // (fma (fneg (fpext u)), (fpext v), x)) 9538 // FIXME: This turns two single-precision and one double-precision 9539 // operation into two double-precision operations, which might not be 9540 // interesting for all targets, especially GPUs. 9541 if (N1.getOpcode() == ISD::FP_EXTEND && 9542 N1.getOperand(0).getOpcode() == PreferredFusedOpcode) { 9543 SDValue CvtSrc = N1.getOperand(0); 9544 SDValue N100 = CvtSrc.getOperand(0); 9545 SDValue N101 = CvtSrc.getOperand(1); 9546 SDValue N102 = CvtSrc.getOperand(2); 9547 if (isContractableFMUL(N102) && 9548 TLI.isFPExtFoldable(PreferredFusedOpcode, VT, CvtSrc.getValueType())) { 9549 SDValue N1020 = N102.getOperand(0); 9550 SDValue N1021 = N102.getOperand(1); 9551 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9552 DAG.getNode(ISD::FNEG, SL, VT, 9553 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9554 N100)), 9555 DAG.getNode(ISD::FP_EXTEND, SL, VT, N101), 9556 DAG.getNode(PreferredFusedOpcode, SL, VT, 9557 DAG.getNode(ISD::FNEG, SL, VT, 9558 DAG.getNode(ISD::FP_EXTEND, SL, 9559 VT, N1020)), 9560 DAG.getNode(ISD::FP_EXTEND, SL, VT, 9561 N1021), 9562 N0)); 9563 } 9564 } 9565 } 9566 9567 return SDValue(); 9568 } 9569 9570 /// Try to perform FMA combining on a given FMUL node based on the distributive 9571 /// law x * (y + 1) = x * y + x and variants thereof (commuted versions, 9572 /// subtraction instead of addition). 9573 SDValue DAGCombiner::visitFMULForFMADistributiveCombine(SDNode *N) { 9574 SDValue N0 = N->getOperand(0); 9575 SDValue N1 = N->getOperand(1); 9576 EVT VT = N->getValueType(0); 9577 SDLoc SL(N); 9578 9579 assert(N->getOpcode() == ISD::FMUL && "Expected FMUL Operation"); 9580 9581 const TargetOptions &Options = DAG.getTarget().Options; 9582 9583 // The transforms below are incorrect when x == 0 and y == inf, because the 9584 // intermediate multiplication produces a nan. 9585 if (!Options.NoInfsFPMath) 9586 return SDValue(); 9587 9588 // Floating-point multiply-add without intermediate rounding. 9589 bool HasFMA = 9590 (Options.AllowFPOpFusion == FPOpFusion::Fast || Options.UnsafeFPMath) && 9591 TLI.isFMAFasterThanFMulAndFAdd(VT) && 9592 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT)); 9593 9594 // Floating-point multiply-add with intermediate rounding. This can result 9595 // in a less precise result due to the changed rounding order. 9596 bool HasFMAD = Options.UnsafeFPMath && 9597 (LegalOperations && TLI.isOperationLegal(ISD::FMAD, VT)); 9598 9599 // No valid opcode, do not combine. 9600 if (!HasFMAD && !HasFMA) 9601 return SDValue(); 9602 9603 // Always prefer FMAD to FMA for precision. 9604 unsigned PreferredFusedOpcode = HasFMAD ? ISD::FMAD : ISD::FMA; 9605 bool Aggressive = TLI.enableAggressiveFMAFusion(VT); 9606 9607 // fold (fmul (fadd x, +1.0), y) -> (fma x, y, y) 9608 // fold (fmul (fadd x, -1.0), y) -> (fma x, y, (fneg y)) 9609 auto FuseFADD = [&](SDValue X, SDValue Y) { 9610 if (X.getOpcode() == ISD::FADD && (Aggressive || X->hasOneUse())) { 9611 auto XC1 = isConstOrConstSplatFP(X.getOperand(1)); 9612 if (XC1 && XC1->isExactlyValue(+1.0)) 9613 return DAG.getNode(PreferredFusedOpcode, SL, VT, X.getOperand(0), Y, Y); 9614 if (XC1 && XC1->isExactlyValue(-1.0)) 9615 return DAG.getNode(PreferredFusedOpcode, SL, VT, X.getOperand(0), Y, 9616 DAG.getNode(ISD::FNEG, SL, VT, Y)); 9617 } 9618 return SDValue(); 9619 }; 9620 9621 if (SDValue FMA = FuseFADD(N0, N1)) 9622 return FMA; 9623 if (SDValue FMA = FuseFADD(N1, N0)) 9624 return FMA; 9625 9626 // fold (fmul (fsub +1.0, x), y) -> (fma (fneg x), y, y) 9627 // fold (fmul (fsub -1.0, x), y) -> (fma (fneg x), y, (fneg y)) 9628 // fold (fmul (fsub x, +1.0), y) -> (fma x, y, (fneg y)) 9629 // fold (fmul (fsub x, -1.0), y) -> (fma x, y, y) 9630 auto FuseFSUB = [&](SDValue X, SDValue Y) { 9631 if (X.getOpcode() == ISD::FSUB && (Aggressive || X->hasOneUse())) { 9632 auto XC0 = isConstOrConstSplatFP(X.getOperand(0)); 9633 if (XC0 && XC0->isExactlyValue(+1.0)) 9634 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9635 DAG.getNode(ISD::FNEG, SL, VT, X.getOperand(1)), Y, 9636 Y); 9637 if (XC0 && XC0->isExactlyValue(-1.0)) 9638 return DAG.getNode(PreferredFusedOpcode, SL, VT, 9639 DAG.getNode(ISD::FNEG, SL, VT, X.getOperand(1)), Y, 9640 DAG.getNode(ISD::FNEG, SL, VT, Y)); 9641 9642 auto XC1 = isConstOrConstSplatFP(X.getOperand(1)); 9643 if (XC1 && XC1->isExactlyValue(+1.0)) 9644 return DAG.getNode(PreferredFusedOpcode, SL, VT, X.getOperand(0), Y, 9645 DAG.getNode(ISD::FNEG, SL, VT, Y)); 9646 if (XC1 && XC1->isExactlyValue(-1.0)) 9647 return DAG.getNode(PreferredFusedOpcode, SL, VT, X.getOperand(0), Y, Y); 9648 } 9649 return SDValue(); 9650 }; 9651 9652 if (SDValue FMA = FuseFSUB(N0, N1)) 9653 return FMA; 9654 if (SDValue FMA = FuseFSUB(N1, N0)) 9655 return FMA; 9656 9657 return SDValue(); 9658 } 9659 9660 static bool isFMulNegTwo(SDValue &N) { 9661 if (N.getOpcode() != ISD::FMUL) 9662 return false; 9663 if (ConstantFPSDNode *CFP = isConstOrConstSplatFP(N.getOperand(1))) 9664 return CFP->isExactlyValue(-2.0); 9665 return false; 9666 } 9667 9668 SDValue DAGCombiner::visitFADD(SDNode *N) { 9669 SDValue N0 = N->getOperand(0); 9670 SDValue N1 = N->getOperand(1); 9671 bool N0CFP = isConstantFPBuildVectorOrConstantFP(N0); 9672 bool N1CFP = isConstantFPBuildVectorOrConstantFP(N1); 9673 EVT VT = N->getValueType(0); 9674 SDLoc DL(N); 9675 const TargetOptions &Options = DAG.getTarget().Options; 9676 const SDNodeFlags Flags = N->getFlags(); 9677 9678 // fold vector ops 9679 if (VT.isVector()) 9680 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 9681 return FoldedVOp; 9682 9683 // fold (fadd c1, c2) -> c1 + c2 9684 if (N0CFP && N1CFP) 9685 return DAG.getNode(ISD::FADD, DL, VT, N0, N1, Flags); 9686 9687 // canonicalize constant to RHS 9688 if (N0CFP && !N1CFP) 9689 return DAG.getNode(ISD::FADD, DL, VT, N1, N0, Flags); 9690 9691 if (SDValue NewSel = foldBinOpIntoSelect(N)) 9692 return NewSel; 9693 9694 // fold (fadd A, (fneg B)) -> (fsub A, B) 9695 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) && 9696 isNegatibleForFree(N1, LegalOperations, TLI, &Options) == 2) 9697 return DAG.getNode(ISD::FSUB, DL, VT, N0, 9698 GetNegatedExpression(N1, DAG, LegalOperations), Flags); 9699 9700 // fold (fadd (fneg A), B) -> (fsub B, A) 9701 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) && 9702 isNegatibleForFree(N0, LegalOperations, TLI, &Options) == 2) 9703 return DAG.getNode(ISD::FSUB, DL, VT, N1, 9704 GetNegatedExpression(N0, DAG, LegalOperations), Flags); 9705 9706 // fold (fadd A, (fmul B, -2.0)) -> (fsub A, (fadd B, B)) 9707 // fold (fadd (fmul B, -2.0), A) -> (fsub A, (fadd B, B)) 9708 if ((isFMulNegTwo(N0) && N0.hasOneUse()) || 9709 (isFMulNegTwo(N1) && N1.hasOneUse())) { 9710 bool N1IsFMul = isFMulNegTwo(N1); 9711 SDValue AddOp = N1IsFMul ? N1.getOperand(0) : N0.getOperand(0); 9712 SDValue Add = DAG.getNode(ISD::FADD, DL, VT, AddOp, AddOp, Flags); 9713 return DAG.getNode(ISD::FSUB, DL, VT, N1IsFMul ? N0 : N1, Add, Flags); 9714 } 9715 9716 // FIXME: Auto-upgrade the target/function-level option. 9717 if (Options.NoSignedZerosFPMath || N->getFlags().hasNoSignedZeros()) { 9718 // fold (fadd A, 0) -> A 9719 if (ConstantFPSDNode *N1C = isConstOrConstSplatFP(N1)) 9720 if (N1C->isZero()) 9721 return N0; 9722 } 9723 9724 // If 'unsafe math' is enabled, fold lots of things. 9725 if (Options.UnsafeFPMath) { 9726 // No FP constant should be created after legalization as Instruction 9727 // Selection pass has a hard time dealing with FP constants. 9728 bool AllowNewConst = (Level < AfterLegalizeDAG); 9729 9730 // fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2)) 9731 if (N1CFP && N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() && 9732 isConstantFPBuildVectorOrConstantFP(N0.getOperand(1))) 9733 return DAG.getNode(ISD::FADD, DL, VT, N0.getOperand(0), 9734 DAG.getNode(ISD::FADD, DL, VT, N0.getOperand(1), N1, 9735 Flags), 9736 Flags); 9737 9738 // If allowed, fold (fadd (fneg x), x) -> 0.0 9739 if (AllowNewConst && N0.getOpcode() == ISD::FNEG && N0.getOperand(0) == N1) 9740 return DAG.getConstantFP(0.0, DL, VT); 9741 9742 // If allowed, fold (fadd x, (fneg x)) -> 0.0 9743 if (AllowNewConst && N1.getOpcode() == ISD::FNEG && N1.getOperand(0) == N0) 9744 return DAG.getConstantFP(0.0, DL, VT); 9745 9746 // We can fold chains of FADD's of the same value into multiplications. 9747 // This transform is not safe in general because we are reducing the number 9748 // of rounding steps. 9749 if (TLI.isOperationLegalOrCustom(ISD::FMUL, VT) && !N0CFP && !N1CFP) { 9750 if (N0.getOpcode() == ISD::FMUL) { 9751 bool CFP00 = isConstantFPBuildVectorOrConstantFP(N0.getOperand(0)); 9752 bool CFP01 = isConstantFPBuildVectorOrConstantFP(N0.getOperand(1)); 9753 9754 // (fadd (fmul x, c), x) -> (fmul x, c+1) 9755 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) { 9756 SDValue NewCFP = DAG.getNode(ISD::FADD, DL, VT, N0.getOperand(1), 9757 DAG.getConstantFP(1.0, DL, VT), Flags); 9758 return DAG.getNode(ISD::FMUL, DL, VT, N1, NewCFP, Flags); 9759 } 9760 9761 // (fadd (fmul x, c), (fadd x, x)) -> (fmul x, c+2) 9762 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD && 9763 N1.getOperand(0) == N1.getOperand(1) && 9764 N0.getOperand(0) == N1.getOperand(0)) { 9765 SDValue NewCFP = DAG.getNode(ISD::FADD, DL, VT, N0.getOperand(1), 9766 DAG.getConstantFP(2.0, DL, VT), Flags); 9767 return DAG.getNode(ISD::FMUL, DL, VT, N0.getOperand(0), NewCFP, Flags); 9768 } 9769 } 9770 9771 if (N1.getOpcode() == ISD::FMUL) { 9772 bool CFP10 = isConstantFPBuildVectorOrConstantFP(N1.getOperand(0)); 9773 bool CFP11 = isConstantFPBuildVectorOrConstantFP(N1.getOperand(1)); 9774 9775 // (fadd x, (fmul x, c)) -> (fmul x, c+1) 9776 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) { 9777 SDValue NewCFP = DAG.getNode(ISD::FADD, DL, VT, N1.getOperand(1), 9778 DAG.getConstantFP(1.0, DL, VT), Flags); 9779 return DAG.getNode(ISD::FMUL, DL, VT, N0, NewCFP, Flags); 9780 } 9781 9782 // (fadd (fadd x, x), (fmul x, c)) -> (fmul x, c+2) 9783 if (CFP11 && !CFP10 && N0.getOpcode() == ISD::FADD && 9784 N0.getOperand(0) == N0.getOperand(1) && 9785 N1.getOperand(0) == N0.getOperand(0)) { 9786 SDValue NewCFP = DAG.getNode(ISD::FADD, DL, VT, N1.getOperand(1), 9787 DAG.getConstantFP(2.0, DL, VT), Flags); 9788 return DAG.getNode(ISD::FMUL, DL, VT, N1.getOperand(0), NewCFP, Flags); 9789 } 9790 } 9791 9792 if (N0.getOpcode() == ISD::FADD && AllowNewConst) { 9793 bool CFP00 = isConstantFPBuildVectorOrConstantFP(N0.getOperand(0)); 9794 // (fadd (fadd x, x), x) -> (fmul x, 3.0) 9795 if (!CFP00 && N0.getOperand(0) == N0.getOperand(1) && 9796 (N0.getOperand(0) == N1)) { 9797 return DAG.getNode(ISD::FMUL, DL, VT, 9798 N1, DAG.getConstantFP(3.0, DL, VT), Flags); 9799 } 9800 } 9801 9802 if (N1.getOpcode() == ISD::FADD && AllowNewConst) { 9803 bool CFP10 = isConstantFPBuildVectorOrConstantFP(N1.getOperand(0)); 9804 // (fadd x, (fadd x, x)) -> (fmul x, 3.0) 9805 if (!CFP10 && N1.getOperand(0) == N1.getOperand(1) && 9806 N1.getOperand(0) == N0) { 9807 return DAG.getNode(ISD::FMUL, DL, VT, 9808 N0, DAG.getConstantFP(3.0, DL, VT), Flags); 9809 } 9810 } 9811 9812 // (fadd (fadd x, x), (fadd x, x)) -> (fmul x, 4.0) 9813 if (AllowNewConst && 9814 N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD && 9815 N0.getOperand(0) == N0.getOperand(1) && 9816 N1.getOperand(0) == N1.getOperand(1) && 9817 N0.getOperand(0) == N1.getOperand(0)) { 9818 return DAG.getNode(ISD::FMUL, DL, VT, N0.getOperand(0), 9819 DAG.getConstantFP(4.0, DL, VT), Flags); 9820 } 9821 } 9822 } // enable-unsafe-fp-math 9823 9824 // FADD -> FMA combines: 9825 if (SDValue Fused = visitFADDForFMACombine(N)) { 9826 AddToWorklist(Fused.getNode()); 9827 return Fused; 9828 } 9829 return SDValue(); 9830 } 9831 9832 SDValue DAGCombiner::visitFSUB(SDNode *N) { 9833 SDValue N0 = N->getOperand(0); 9834 SDValue N1 = N->getOperand(1); 9835 ConstantFPSDNode *N0CFP = isConstOrConstSplatFP(N0); 9836 ConstantFPSDNode *N1CFP = isConstOrConstSplatFP(N1); 9837 EVT VT = N->getValueType(0); 9838 SDLoc DL(N); 9839 const TargetOptions &Options = DAG.getTarget().Options; 9840 const SDNodeFlags Flags = N->getFlags(); 9841 9842 // fold vector ops 9843 if (VT.isVector()) 9844 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 9845 return FoldedVOp; 9846 9847 // fold (fsub c1, c2) -> c1-c2 9848 if (N0CFP && N1CFP) 9849 return DAG.getNode(ISD::FSUB, DL, VT, N0, N1, Flags); 9850 9851 if (SDValue NewSel = foldBinOpIntoSelect(N)) 9852 return NewSel; 9853 9854 // fold (fsub A, (fneg B)) -> (fadd A, B) 9855 if (isNegatibleForFree(N1, LegalOperations, TLI, &Options)) 9856 return DAG.getNode(ISD::FADD, DL, VT, N0, 9857 GetNegatedExpression(N1, DAG, LegalOperations), Flags); 9858 9859 // FIXME: Auto-upgrade the target/function-level option. 9860 if (Options.NoSignedZerosFPMath || N->getFlags().hasNoSignedZeros()) { 9861 // (fsub 0, B) -> -B 9862 if (N0CFP && N0CFP->isZero()) { 9863 if (isNegatibleForFree(N1, LegalOperations, TLI, &Options)) 9864 return GetNegatedExpression(N1, DAG, LegalOperations); 9865 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) 9866 return DAG.getNode(ISD::FNEG, DL, VT, N1, Flags); 9867 } 9868 } 9869 9870 // If 'unsafe math' is enabled, fold lots of things. 9871 if (Options.UnsafeFPMath) { 9872 // (fsub A, 0) -> A 9873 if (N1CFP && N1CFP->isZero()) 9874 return N0; 9875 9876 // (fsub x, x) -> 0.0 9877 if (N0 == N1) 9878 return DAG.getConstantFP(0.0f, DL, VT); 9879 9880 // (fsub x, (fadd x, y)) -> (fneg y) 9881 // (fsub x, (fadd y, x)) -> (fneg y) 9882 if (N1.getOpcode() == ISD::FADD) { 9883 SDValue N10 = N1->getOperand(0); 9884 SDValue N11 = N1->getOperand(1); 9885 9886 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI, &Options)) 9887 return GetNegatedExpression(N11, DAG, LegalOperations); 9888 9889 if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI, &Options)) 9890 return GetNegatedExpression(N10, DAG, LegalOperations); 9891 } 9892 } 9893 9894 // FSUB -> FMA combines: 9895 if (SDValue Fused = visitFSUBForFMACombine(N)) { 9896 AddToWorklist(Fused.getNode()); 9897 return Fused; 9898 } 9899 9900 return SDValue(); 9901 } 9902 9903 SDValue DAGCombiner::visitFMUL(SDNode *N) { 9904 SDValue N0 = N->getOperand(0); 9905 SDValue N1 = N->getOperand(1); 9906 ConstantFPSDNode *N0CFP = isConstOrConstSplatFP(N0); 9907 ConstantFPSDNode *N1CFP = isConstOrConstSplatFP(N1); 9908 EVT VT = N->getValueType(0); 9909 SDLoc DL(N); 9910 const TargetOptions &Options = DAG.getTarget().Options; 9911 const SDNodeFlags Flags = N->getFlags(); 9912 9913 // fold vector ops 9914 if (VT.isVector()) { 9915 // This just handles C1 * C2 for vectors. Other vector folds are below. 9916 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 9917 return FoldedVOp; 9918 } 9919 9920 // fold (fmul c1, c2) -> c1*c2 9921 if (N0CFP && N1CFP) 9922 return DAG.getNode(ISD::FMUL, DL, VT, N0, N1, Flags); 9923 9924 // canonicalize constant to RHS 9925 if (isConstantFPBuildVectorOrConstantFP(N0) && 9926 !isConstantFPBuildVectorOrConstantFP(N1)) 9927 return DAG.getNode(ISD::FMUL, DL, VT, N1, N0, Flags); 9928 9929 // fold (fmul A, 1.0) -> A 9930 if (N1CFP && N1CFP->isExactlyValue(1.0)) 9931 return N0; 9932 9933 if (SDValue NewSel = foldBinOpIntoSelect(N)) 9934 return NewSel; 9935 9936 if (Options.UnsafeFPMath) { 9937 // fold (fmul A, 0) -> 0 9938 if (N1CFP && N1CFP->isZero()) 9939 return N1; 9940 9941 // fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2)) 9942 if (N0.getOpcode() == ISD::FMUL) { 9943 // Fold scalars or any vector constants (not just splats). 9944 // This fold is done in general by InstCombine, but extra fmul insts 9945 // may have been generated during lowering. 9946 SDValue N00 = N0.getOperand(0); 9947 SDValue N01 = N0.getOperand(1); 9948 auto *BV1 = dyn_cast<BuildVectorSDNode>(N1); 9949 auto *BV00 = dyn_cast<BuildVectorSDNode>(N00); 9950 auto *BV01 = dyn_cast<BuildVectorSDNode>(N01); 9951 9952 // Check 1: Make sure that the first operand of the inner multiply is NOT 9953 // a constant. Otherwise, we may induce infinite looping. 9954 if (!(isConstOrConstSplatFP(N00) || (BV00 && BV00->isConstant()))) { 9955 // Check 2: Make sure that the second operand of the inner multiply and 9956 // the second operand of the outer multiply are constants. 9957 if ((N1CFP && isConstOrConstSplatFP(N01)) || 9958 (BV1 && BV01 && BV1->isConstant() && BV01->isConstant())) { 9959 SDValue MulConsts = DAG.getNode(ISD::FMUL, DL, VT, N01, N1, Flags); 9960 return DAG.getNode(ISD::FMUL, DL, VT, N00, MulConsts, Flags); 9961 } 9962 } 9963 } 9964 9965 // fold (fmul (fadd x, x), c) -> (fmul x, (fmul 2.0, c)) 9966 // Undo the fmul 2.0, x -> fadd x, x transformation, since if it occurs 9967 // during an early run of DAGCombiner can prevent folding with fmuls 9968 // inserted during lowering. 9969 if (N0.getOpcode() == ISD::FADD && 9970 (N0.getOperand(0) == N0.getOperand(1)) && 9971 N0.hasOneUse()) { 9972 const SDValue Two = DAG.getConstantFP(2.0, DL, VT); 9973 SDValue MulConsts = DAG.getNode(ISD::FMUL, DL, VT, Two, N1, Flags); 9974 return DAG.getNode(ISD::FMUL, DL, VT, N0.getOperand(0), MulConsts, Flags); 9975 } 9976 } 9977 9978 // fold (fmul X, 2.0) -> (fadd X, X) 9979 if (N1CFP && N1CFP->isExactlyValue(+2.0)) 9980 return DAG.getNode(ISD::FADD, DL, VT, N0, N0, Flags); 9981 9982 // fold (fmul X, -1.0) -> (fneg X) 9983 if (N1CFP && N1CFP->isExactlyValue(-1.0)) 9984 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) 9985 return DAG.getNode(ISD::FNEG, DL, VT, N0); 9986 9987 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y) 9988 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI, &Options)) { 9989 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI, &Options)) { 9990 // Both can be negated for free, check to see if at least one is cheaper 9991 // negated. 9992 if (LHSNeg == 2 || RHSNeg == 2) 9993 return DAG.getNode(ISD::FMUL, DL, VT, 9994 GetNegatedExpression(N0, DAG, LegalOperations), 9995 GetNegatedExpression(N1, DAG, LegalOperations), 9996 Flags); 9997 } 9998 } 9999 10000 // fold (fmul X, (select (fcmp X > 0.0), -1.0, 1.0)) -> (fneg (fabs X)) 10001 // fold (fmul X, (select (fcmp X > 0.0), 1.0, -1.0)) -> (fabs X) 10002 if (Flags.hasNoNaNs() && Flags.hasNoSignedZeros() && 10003 (N0.getOpcode() == ISD::SELECT || N1.getOpcode() == ISD::SELECT) && 10004 TLI.isOperationLegal(ISD::FABS, VT)) { 10005 SDValue Select = N0, X = N1; 10006 if (Select.getOpcode() != ISD::SELECT) 10007 std::swap(Select, X); 10008 10009 SDValue Cond = Select.getOperand(0); 10010 auto TrueOpnd = dyn_cast<ConstantFPSDNode>(Select.getOperand(1)); 10011 auto FalseOpnd = dyn_cast<ConstantFPSDNode>(Select.getOperand(2)); 10012 10013 if (TrueOpnd && FalseOpnd && 10014 Cond.getOpcode() == ISD::SETCC && Cond.getOperand(0) == X && 10015 isa<ConstantFPSDNode>(Cond.getOperand(1)) && 10016 cast<ConstantFPSDNode>(Cond.getOperand(1))->isExactlyValue(0.0)) { 10017 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get(); 10018 switch (CC) { 10019 default: break; 10020 case ISD::SETOLT: 10021 case ISD::SETULT: 10022 case ISD::SETOLE: 10023 case ISD::SETULE: 10024 case ISD::SETLT: 10025 case ISD::SETLE: 10026 std::swap(TrueOpnd, FalseOpnd); 10027 // Fall through 10028 case ISD::SETOGT: 10029 case ISD::SETUGT: 10030 case ISD::SETOGE: 10031 case ISD::SETUGE: 10032 case ISD::SETGT: 10033 case ISD::SETGE: 10034 if (TrueOpnd->isExactlyValue(-1.0) && FalseOpnd->isExactlyValue(1.0) && 10035 TLI.isOperationLegal(ISD::FNEG, VT)) 10036 return DAG.getNode(ISD::FNEG, DL, VT, 10037 DAG.getNode(ISD::FABS, DL, VT, X)); 10038 if (TrueOpnd->isExactlyValue(1.0) && FalseOpnd->isExactlyValue(-1.0)) 10039 return DAG.getNode(ISD::FABS, DL, VT, X); 10040 10041 break; 10042 } 10043 } 10044 } 10045 10046 // FMUL -> FMA combines: 10047 if (SDValue Fused = visitFMULForFMADistributiveCombine(N)) { 10048 AddToWorklist(Fused.getNode()); 10049 return Fused; 10050 } 10051 10052 return SDValue(); 10053 } 10054 10055 SDValue DAGCombiner::visitFMA(SDNode *N) { 10056 SDValue N0 = N->getOperand(0); 10057 SDValue N1 = N->getOperand(1); 10058 SDValue N2 = N->getOperand(2); 10059 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 10060 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 10061 EVT VT = N->getValueType(0); 10062 SDLoc DL(N); 10063 const TargetOptions &Options = DAG.getTarget().Options; 10064 10065 // Constant fold FMA. 10066 if (isa<ConstantFPSDNode>(N0) && 10067 isa<ConstantFPSDNode>(N1) && 10068 isa<ConstantFPSDNode>(N2)) { 10069 return DAG.getNode(ISD::FMA, DL, VT, N0, N1, N2); 10070 } 10071 10072 if (Options.UnsafeFPMath) { 10073 if (N0CFP && N0CFP->isZero()) 10074 return N2; 10075 if (N1CFP && N1CFP->isZero()) 10076 return N2; 10077 } 10078 // TODO: The FMA node should have flags that propagate to these nodes. 10079 if (N0CFP && N0CFP->isExactlyValue(1.0)) 10080 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N2); 10081 if (N1CFP && N1CFP->isExactlyValue(1.0)) 10082 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N2); 10083 10084 // Canonicalize (fma c, x, y) -> (fma x, c, y) 10085 if (isConstantFPBuildVectorOrConstantFP(N0) && 10086 !isConstantFPBuildVectorOrConstantFP(N1)) 10087 return DAG.getNode(ISD::FMA, SDLoc(N), VT, N1, N0, N2); 10088 10089 // TODO: FMA nodes should have flags that propagate to the created nodes. 10090 // For now, create a Flags object for use with all unsafe math transforms. 10091 SDNodeFlags Flags; 10092 Flags.setUnsafeAlgebra(true); 10093 10094 if (Options.UnsafeFPMath) { 10095 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2) 10096 if (N2.getOpcode() == ISD::FMUL && N0 == N2.getOperand(0) && 10097 isConstantFPBuildVectorOrConstantFP(N1) && 10098 isConstantFPBuildVectorOrConstantFP(N2.getOperand(1))) { 10099 return DAG.getNode(ISD::FMUL, DL, VT, N0, 10100 DAG.getNode(ISD::FADD, DL, VT, N1, N2.getOperand(1), 10101 Flags), Flags); 10102 } 10103 10104 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y) 10105 if (N0.getOpcode() == ISD::FMUL && 10106 isConstantFPBuildVectorOrConstantFP(N1) && 10107 isConstantFPBuildVectorOrConstantFP(N0.getOperand(1))) { 10108 return DAG.getNode(ISD::FMA, DL, VT, 10109 N0.getOperand(0), 10110 DAG.getNode(ISD::FMUL, DL, VT, N1, N0.getOperand(1), 10111 Flags), 10112 N2); 10113 } 10114 } 10115 10116 // (fma x, 1, y) -> (fadd x, y) 10117 // (fma x, -1, y) -> (fadd (fneg x), y) 10118 if (N1CFP) { 10119 if (N1CFP->isExactlyValue(1.0)) 10120 // TODO: The FMA node should have flags that propagate to this node. 10121 return DAG.getNode(ISD::FADD, DL, VT, N0, N2); 10122 10123 if (N1CFP->isExactlyValue(-1.0) && 10124 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) { 10125 SDValue RHSNeg = DAG.getNode(ISD::FNEG, DL, VT, N0); 10126 AddToWorklist(RHSNeg.getNode()); 10127 // TODO: The FMA node should have flags that propagate to this node. 10128 return DAG.getNode(ISD::FADD, DL, VT, N2, RHSNeg); 10129 } 10130 10131 // fma (fneg x), K, y -> fma x -K, y 10132 if (N0.getOpcode() == ISD::FNEG && 10133 (TLI.isOperationLegal(ISD::ConstantFP, VT) || 10134 (N1.hasOneUse() && !TLI.isFPImmLegal(N1CFP->getValueAPF(), VT)))) { 10135 return DAG.getNode(ISD::FMA, DL, VT, N0.getOperand(0), 10136 DAG.getNode(ISD::FNEG, DL, VT, N1, Flags), N2); 10137 } 10138 } 10139 10140 if (Options.UnsafeFPMath) { 10141 // (fma x, c, x) -> (fmul x, (c+1)) 10142 if (N1CFP && N0 == N2) { 10143 return DAG.getNode(ISD::FMUL, DL, VT, N0, 10144 DAG.getNode(ISD::FADD, DL, VT, N1, 10145 DAG.getConstantFP(1.0, DL, VT), Flags), 10146 Flags); 10147 } 10148 10149 // (fma x, c, (fneg x)) -> (fmul x, (c-1)) 10150 if (N1CFP && N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0) { 10151 return DAG.getNode(ISD::FMUL, DL, VT, N0, 10152 DAG.getNode(ISD::FADD, DL, VT, N1, 10153 DAG.getConstantFP(-1.0, DL, VT), Flags), 10154 Flags); 10155 } 10156 } 10157 10158 return SDValue(); 10159 } 10160 10161 // Combine multiple FDIVs with the same divisor into multiple FMULs by the 10162 // reciprocal. 10163 // E.g., (a / D; b / D;) -> (recip = 1.0 / D; a * recip; b * recip) 10164 // Notice that this is not always beneficial. One reason is different targets 10165 // may have different costs for FDIV and FMUL, so sometimes the cost of two 10166 // FDIVs may be lower than the cost of one FDIV and two FMULs. Another reason 10167 // is the critical path is increased from "one FDIV" to "one FDIV + one FMUL". 10168 SDValue DAGCombiner::combineRepeatedFPDivisors(SDNode *N) { 10169 bool UnsafeMath = DAG.getTarget().Options.UnsafeFPMath; 10170 const SDNodeFlags Flags = N->getFlags(); 10171 if (!UnsafeMath && !Flags.hasAllowReciprocal()) 10172 return SDValue(); 10173 10174 // Skip if current node is a reciprocal. 10175 SDValue N0 = N->getOperand(0); 10176 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 10177 if (N0CFP && N0CFP->isExactlyValue(1.0)) 10178 return SDValue(); 10179 10180 // Exit early if the target does not want this transform or if there can't 10181 // possibly be enough uses of the divisor to make the transform worthwhile. 10182 SDValue N1 = N->getOperand(1); 10183 unsigned MinUses = TLI.combineRepeatedFPDivisors(); 10184 if (!MinUses || N1->use_size() < MinUses) 10185 return SDValue(); 10186 10187 // Find all FDIV users of the same divisor. 10188 // Use a set because duplicates may be present in the user list. 10189 SetVector<SDNode *> Users; 10190 for (auto *U : N1->uses()) { 10191 if (U->getOpcode() == ISD::FDIV && U->getOperand(1) == N1) { 10192 // This division is eligible for optimization only if global unsafe math 10193 // is enabled or if this division allows reciprocal formation. 10194 if (UnsafeMath || U->getFlags().hasAllowReciprocal()) 10195 Users.insert(U); 10196 } 10197 } 10198 10199 // Now that we have the actual number of divisor uses, make sure it meets 10200 // the minimum threshold specified by the target. 10201 if (Users.size() < MinUses) 10202 return SDValue(); 10203 10204 EVT VT = N->getValueType(0); 10205 SDLoc DL(N); 10206 SDValue FPOne = DAG.getConstantFP(1.0, DL, VT); 10207 SDValue Reciprocal = DAG.getNode(ISD::FDIV, DL, VT, FPOne, N1, Flags); 10208 10209 // Dividend / Divisor -> Dividend * Reciprocal 10210 for (auto *U : Users) { 10211 SDValue Dividend = U->getOperand(0); 10212 if (Dividend != FPOne) { 10213 SDValue NewNode = DAG.getNode(ISD::FMUL, SDLoc(U), VT, Dividend, 10214 Reciprocal, Flags); 10215 CombineTo(U, NewNode); 10216 } else if (U != Reciprocal.getNode()) { 10217 // In the absence of fast-math-flags, this user node is always the 10218 // same node as Reciprocal, but with FMF they may be different nodes. 10219 CombineTo(U, Reciprocal); 10220 } 10221 } 10222 return SDValue(N, 0); // N was replaced. 10223 } 10224 10225 SDValue DAGCombiner::visitFDIV(SDNode *N) { 10226 SDValue N0 = N->getOperand(0); 10227 SDValue N1 = N->getOperand(1); 10228 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 10229 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 10230 EVT VT = N->getValueType(0); 10231 SDLoc DL(N); 10232 const TargetOptions &Options = DAG.getTarget().Options; 10233 SDNodeFlags Flags = N->getFlags(); 10234 10235 // fold vector ops 10236 if (VT.isVector()) 10237 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 10238 return FoldedVOp; 10239 10240 // fold (fdiv c1, c2) -> c1/c2 10241 if (N0CFP && N1CFP) 10242 return DAG.getNode(ISD::FDIV, SDLoc(N), VT, N0, N1, Flags); 10243 10244 if (SDValue NewSel = foldBinOpIntoSelect(N)) 10245 return NewSel; 10246 10247 if (Options.UnsafeFPMath) { 10248 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable. 10249 if (N1CFP) { 10250 // Compute the reciprocal 1.0 / c2. 10251 const APFloat &N1APF = N1CFP->getValueAPF(); 10252 APFloat Recip(N1APF.getSemantics(), 1); // 1.0 10253 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven); 10254 // Only do the transform if the reciprocal is a legal fp immediate that 10255 // isn't too nasty (eg NaN, denormal, ...). 10256 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty 10257 (!LegalOperations || 10258 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM 10259 // backend)... we should handle this gracefully after Legalize. 10260 // TLI.isOperationLegalOrCustom(ISD::ConstantFP, VT) || 10261 TLI.isOperationLegal(ISD::ConstantFP, VT) || 10262 TLI.isFPImmLegal(Recip, VT))) 10263 return DAG.getNode(ISD::FMUL, DL, VT, N0, 10264 DAG.getConstantFP(Recip, DL, VT), Flags); 10265 } 10266 10267 // If this FDIV is part of a reciprocal square root, it may be folded 10268 // into a target-specific square root estimate instruction. 10269 if (N1.getOpcode() == ISD::FSQRT) { 10270 if (SDValue RV = buildRsqrtEstimate(N1.getOperand(0), Flags)) { 10271 return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags); 10272 } 10273 } else if (N1.getOpcode() == ISD::FP_EXTEND && 10274 N1.getOperand(0).getOpcode() == ISD::FSQRT) { 10275 if (SDValue RV = buildRsqrtEstimate(N1.getOperand(0).getOperand(0), 10276 Flags)) { 10277 RV = DAG.getNode(ISD::FP_EXTEND, SDLoc(N1), VT, RV); 10278 AddToWorklist(RV.getNode()); 10279 return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags); 10280 } 10281 } else if (N1.getOpcode() == ISD::FP_ROUND && 10282 N1.getOperand(0).getOpcode() == ISD::FSQRT) { 10283 if (SDValue RV = buildRsqrtEstimate(N1.getOperand(0).getOperand(0), 10284 Flags)) { 10285 RV = DAG.getNode(ISD::FP_ROUND, SDLoc(N1), VT, RV, N1.getOperand(1)); 10286 AddToWorklist(RV.getNode()); 10287 return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags); 10288 } 10289 } else if (N1.getOpcode() == ISD::FMUL) { 10290 // Look through an FMUL. Even though this won't remove the FDIV directly, 10291 // it's still worthwhile to get rid of the FSQRT if possible. 10292 SDValue SqrtOp; 10293 SDValue OtherOp; 10294 if (N1.getOperand(0).getOpcode() == ISD::FSQRT) { 10295 SqrtOp = N1.getOperand(0); 10296 OtherOp = N1.getOperand(1); 10297 } else if (N1.getOperand(1).getOpcode() == ISD::FSQRT) { 10298 SqrtOp = N1.getOperand(1); 10299 OtherOp = N1.getOperand(0); 10300 } 10301 if (SqrtOp.getNode()) { 10302 // We found a FSQRT, so try to make this fold: 10303 // x / (y * sqrt(z)) -> x * (rsqrt(z) / y) 10304 if (SDValue RV = buildRsqrtEstimate(SqrtOp.getOperand(0), Flags)) { 10305 RV = DAG.getNode(ISD::FDIV, SDLoc(N1), VT, RV, OtherOp, Flags); 10306 AddToWorklist(RV.getNode()); 10307 return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags); 10308 } 10309 } 10310 } 10311 10312 // Fold into a reciprocal estimate and multiply instead of a real divide. 10313 if (SDValue RV = BuildReciprocalEstimate(N1, Flags)) { 10314 AddToWorklist(RV.getNode()); 10315 return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags); 10316 } 10317 } 10318 10319 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y) 10320 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI, &Options)) { 10321 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI, &Options)) { 10322 // Both can be negated for free, check to see if at least one is cheaper 10323 // negated. 10324 if (LHSNeg == 2 || RHSNeg == 2) 10325 return DAG.getNode(ISD::FDIV, SDLoc(N), VT, 10326 GetNegatedExpression(N0, DAG, LegalOperations), 10327 GetNegatedExpression(N1, DAG, LegalOperations), 10328 Flags); 10329 } 10330 } 10331 10332 if (SDValue CombineRepeatedDivisors = combineRepeatedFPDivisors(N)) 10333 return CombineRepeatedDivisors; 10334 10335 return SDValue(); 10336 } 10337 10338 SDValue DAGCombiner::visitFREM(SDNode *N) { 10339 SDValue N0 = N->getOperand(0); 10340 SDValue N1 = N->getOperand(1); 10341 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 10342 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 10343 EVT VT = N->getValueType(0); 10344 10345 // fold (frem c1, c2) -> fmod(c1,c2) 10346 if (N0CFP && N1CFP) 10347 return DAG.getNode(ISD::FREM, SDLoc(N), VT, N0, N1, N->getFlags()); 10348 10349 if (SDValue NewSel = foldBinOpIntoSelect(N)) 10350 return NewSel; 10351 10352 return SDValue(); 10353 } 10354 10355 SDValue DAGCombiner::visitFSQRT(SDNode *N) { 10356 if (!DAG.getTarget().Options.UnsafeFPMath) 10357 return SDValue(); 10358 10359 SDValue N0 = N->getOperand(0); 10360 if (TLI.isFsqrtCheap(N0, DAG)) 10361 return SDValue(); 10362 10363 // TODO: FSQRT nodes should have flags that propagate to the created nodes. 10364 // For now, create a Flags object for use with all unsafe math transforms. 10365 SDNodeFlags Flags; 10366 Flags.setUnsafeAlgebra(true); 10367 return buildSqrtEstimate(N0, Flags); 10368 } 10369 10370 /// copysign(x, fp_extend(y)) -> copysign(x, y) 10371 /// copysign(x, fp_round(y)) -> copysign(x, y) 10372 static inline bool CanCombineFCOPYSIGN_EXTEND_ROUND(SDNode *N) { 10373 SDValue N1 = N->getOperand(1); 10374 if ((N1.getOpcode() == ISD::FP_EXTEND || 10375 N1.getOpcode() == ISD::FP_ROUND)) { 10376 // Do not optimize out type conversion of f128 type yet. 10377 // For some targets like x86_64, configuration is changed to keep one f128 10378 // value in one SSE register, but instruction selection cannot handle 10379 // FCOPYSIGN on SSE registers yet. 10380 EVT N1VT = N1->getValueType(0); 10381 EVT N1Op0VT = N1->getOperand(0)->getValueType(0); 10382 return (N1VT == N1Op0VT || N1Op0VT != MVT::f128); 10383 } 10384 return false; 10385 } 10386 10387 SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) { 10388 SDValue N0 = N->getOperand(0); 10389 SDValue N1 = N->getOperand(1); 10390 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 10391 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 10392 EVT VT = N->getValueType(0); 10393 10394 if (N0CFP && N1CFP) // Constant fold 10395 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1); 10396 10397 if (N1CFP) { 10398 const APFloat &V = N1CFP->getValueAPF(); 10399 // copysign(x, c1) -> fabs(x) iff ispos(c1) 10400 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1) 10401 if (!V.isNegative()) { 10402 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT)) 10403 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0); 10404 } else { 10405 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) 10406 return DAG.getNode(ISD::FNEG, SDLoc(N), VT, 10407 DAG.getNode(ISD::FABS, SDLoc(N0), VT, N0)); 10408 } 10409 } 10410 10411 // copysign(fabs(x), y) -> copysign(x, y) 10412 // copysign(fneg(x), y) -> copysign(x, y) 10413 // copysign(copysign(x,z), y) -> copysign(x, y) 10414 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG || 10415 N0.getOpcode() == ISD::FCOPYSIGN) 10416 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0.getOperand(0), N1); 10417 10418 // copysign(x, abs(y)) -> abs(x) 10419 if (N1.getOpcode() == ISD::FABS) 10420 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0); 10421 10422 // copysign(x, copysign(y,z)) -> copysign(x, z) 10423 if (N1.getOpcode() == ISD::FCOPYSIGN) 10424 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1.getOperand(1)); 10425 10426 // copysign(x, fp_extend(y)) -> copysign(x, y) 10427 // copysign(x, fp_round(y)) -> copysign(x, y) 10428 if (CanCombineFCOPYSIGN_EXTEND_ROUND(N)) 10429 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1.getOperand(0)); 10430 10431 return SDValue(); 10432 } 10433 10434 SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) { 10435 SDValue N0 = N->getOperand(0); 10436 EVT VT = N->getValueType(0); 10437 EVT OpVT = N0.getValueType(); 10438 10439 // fold (sint_to_fp c1) -> c1fp 10440 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 10441 // ...but only if the target supports immediate floating-point values 10442 (!LegalOperations || 10443 TLI.isOperationLegalOrCustom(ISD::ConstantFP, VT))) 10444 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0); 10445 10446 // If the input is a legal type, and SINT_TO_FP is not legal on this target, 10447 // but UINT_TO_FP is legal on this target, try to convert. 10448 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) && 10449 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) { 10450 // If the sign bit is known to be zero, we can change this to UINT_TO_FP. 10451 if (DAG.SignBitIsZero(N0)) 10452 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0); 10453 } 10454 10455 // The next optimizations are desirable only if SELECT_CC can be lowered. 10456 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT) || !LegalOperations) { 10457 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc) 10458 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 && 10459 !VT.isVector() && 10460 (!LegalOperations || 10461 TLI.isOperationLegalOrCustom(ISD::ConstantFP, VT))) { 10462 SDLoc DL(N); 10463 SDValue Ops[] = 10464 { N0.getOperand(0), N0.getOperand(1), 10465 DAG.getConstantFP(-1.0, DL, VT), DAG.getConstantFP(0.0, DL, VT), 10466 N0.getOperand(2) }; 10467 return DAG.getNode(ISD::SELECT_CC, DL, VT, Ops); 10468 } 10469 10470 // fold (sint_to_fp (zext (setcc x, y, cc))) -> 10471 // (select_cc x, y, 1.0, 0.0,, cc) 10472 if (N0.getOpcode() == ISD::ZERO_EXTEND && 10473 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() && 10474 (!LegalOperations || 10475 TLI.isOperationLegalOrCustom(ISD::ConstantFP, VT))) { 10476 SDLoc DL(N); 10477 SDValue Ops[] = 10478 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1), 10479 DAG.getConstantFP(1.0, DL, VT), DAG.getConstantFP(0.0, DL, VT), 10480 N0.getOperand(0).getOperand(2) }; 10481 return DAG.getNode(ISD::SELECT_CC, DL, VT, Ops); 10482 } 10483 } 10484 10485 return SDValue(); 10486 } 10487 10488 SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) { 10489 SDValue N0 = N->getOperand(0); 10490 EVT VT = N->getValueType(0); 10491 EVT OpVT = N0.getValueType(); 10492 10493 // fold (uint_to_fp c1) -> c1fp 10494 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 10495 // ...but only if the target supports immediate floating-point values 10496 (!LegalOperations || 10497 TLI.isOperationLegalOrCustom(ISD::ConstantFP, VT))) 10498 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0); 10499 10500 // If the input is a legal type, and UINT_TO_FP is not legal on this target, 10501 // but SINT_TO_FP is legal on this target, try to convert. 10502 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) && 10503 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) { 10504 // If the sign bit is known to be zero, we can change this to SINT_TO_FP. 10505 if (DAG.SignBitIsZero(N0)) 10506 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0); 10507 } 10508 10509 // The next optimizations are desirable only if SELECT_CC can be lowered. 10510 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT) || !LegalOperations) { 10511 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc) 10512 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() && 10513 (!LegalOperations || 10514 TLI.isOperationLegalOrCustom(ISD::ConstantFP, VT))) { 10515 SDLoc DL(N); 10516 SDValue Ops[] = 10517 { N0.getOperand(0), N0.getOperand(1), 10518 DAG.getConstantFP(1.0, DL, VT), DAG.getConstantFP(0.0, DL, VT), 10519 N0.getOperand(2) }; 10520 return DAG.getNode(ISD::SELECT_CC, DL, VT, Ops); 10521 } 10522 } 10523 10524 return SDValue(); 10525 } 10526 10527 // Fold (fp_to_{s/u}int ({s/u}int_to_fpx)) -> zext x, sext x, trunc x, or x 10528 static SDValue FoldIntToFPToInt(SDNode *N, SelectionDAG &DAG) { 10529 SDValue N0 = N->getOperand(0); 10530 EVT VT = N->getValueType(0); 10531 10532 if (N0.getOpcode() != ISD::UINT_TO_FP && N0.getOpcode() != ISD::SINT_TO_FP) 10533 return SDValue(); 10534 10535 SDValue Src = N0.getOperand(0); 10536 EVT SrcVT = Src.getValueType(); 10537 bool IsInputSigned = N0.getOpcode() == ISD::SINT_TO_FP; 10538 bool IsOutputSigned = N->getOpcode() == ISD::FP_TO_SINT; 10539 10540 // We can safely assume the conversion won't overflow the output range, 10541 // because (for example) (uint8_t)18293.f is undefined behavior. 10542 10543 // Since we can assume the conversion won't overflow, our decision as to 10544 // whether the input will fit in the float should depend on the minimum 10545 // of the input range and output range. 10546 10547 // This means this is also safe for a signed input and unsigned output, since 10548 // a negative input would lead to undefined behavior. 10549 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; 10550 unsigned OutputSize = (int)VT.getScalarSizeInBits() - IsOutputSigned; 10551 unsigned ActualSize = std::min(InputSize, OutputSize); 10552 const fltSemantics &sem = DAG.EVTToAPFloatSemantics(N0.getValueType()); 10553 10554 // We can only fold away the float conversion if the input range can be 10555 // represented exactly in the float range. 10556 if (APFloat::semanticsPrecision(sem) >= ActualSize) { 10557 if (VT.getScalarSizeInBits() > SrcVT.getScalarSizeInBits()) { 10558 unsigned ExtOp = IsInputSigned && IsOutputSigned ? ISD::SIGN_EXTEND 10559 : ISD::ZERO_EXTEND; 10560 return DAG.getNode(ExtOp, SDLoc(N), VT, Src); 10561 } 10562 if (VT.getScalarSizeInBits() < SrcVT.getScalarSizeInBits()) 10563 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Src); 10564 return DAG.getBitcast(VT, Src); 10565 } 10566 return SDValue(); 10567 } 10568 10569 SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) { 10570 SDValue N0 = N->getOperand(0); 10571 EVT VT = N->getValueType(0); 10572 10573 // fold (fp_to_sint c1fp) -> c1 10574 if (isConstantFPBuildVectorOrConstantFP(N0)) 10575 return DAG.getNode(ISD::FP_TO_SINT, SDLoc(N), VT, N0); 10576 10577 return FoldIntToFPToInt(N, DAG); 10578 } 10579 10580 SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) { 10581 SDValue N0 = N->getOperand(0); 10582 EVT VT = N->getValueType(0); 10583 10584 // fold (fp_to_uint c1fp) -> c1 10585 if (isConstantFPBuildVectorOrConstantFP(N0)) 10586 return DAG.getNode(ISD::FP_TO_UINT, SDLoc(N), VT, N0); 10587 10588 return FoldIntToFPToInt(N, DAG); 10589 } 10590 10591 SDValue DAGCombiner::visitFP_ROUND(SDNode *N) { 10592 SDValue N0 = N->getOperand(0); 10593 SDValue N1 = N->getOperand(1); 10594 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 10595 EVT VT = N->getValueType(0); 10596 10597 // fold (fp_round c1fp) -> c1fp 10598 if (N0CFP) 10599 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0, N1); 10600 10601 // fold (fp_round (fp_extend x)) -> x 10602 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType()) 10603 return N0.getOperand(0); 10604 10605 // fold (fp_round (fp_round x)) -> (fp_round x) 10606 if (N0.getOpcode() == ISD::FP_ROUND) { 10607 const bool NIsTrunc = N->getConstantOperandVal(1) == 1; 10608 const bool N0IsTrunc = N0.getConstantOperandVal(1) == 1; 10609 10610 // Skip this folding if it results in an fp_round from f80 to f16. 10611 // 10612 // f80 to f16 always generates an expensive (and as yet, unimplemented) 10613 // libcall to __truncxfhf2 instead of selecting native f16 conversion 10614 // instructions from f32 or f64. Moreover, the first (value-preserving) 10615 // fp_round from f80 to either f32 or f64 may become a NOP in platforms like 10616 // x86. 10617 if (N0.getOperand(0).getValueType() == MVT::f80 && VT == MVT::f16) 10618 return SDValue(); 10619 10620 // If the first fp_round isn't a value preserving truncation, it might 10621 // introduce a tie in the second fp_round, that wouldn't occur in the 10622 // single-step fp_round we want to fold to. 10623 // In other words, double rounding isn't the same as rounding. 10624 // Also, this is a value preserving truncation iff both fp_round's are. 10625 if (DAG.getTarget().Options.UnsafeFPMath || N0IsTrunc) { 10626 SDLoc DL(N); 10627 return DAG.getNode(ISD::FP_ROUND, DL, VT, N0.getOperand(0), 10628 DAG.getIntPtrConstant(NIsTrunc && N0IsTrunc, DL)); 10629 } 10630 } 10631 10632 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y) 10633 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) { 10634 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, SDLoc(N0), VT, 10635 N0.getOperand(0), N1); 10636 AddToWorklist(Tmp.getNode()); 10637 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, 10638 Tmp, N0.getOperand(1)); 10639 } 10640 10641 if (SDValue NewVSel = matchVSelectOpSizesWithSetCC(N)) 10642 return NewVSel; 10643 10644 return SDValue(); 10645 } 10646 10647 SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) { 10648 SDValue N0 = N->getOperand(0); 10649 EVT VT = N->getValueType(0); 10650 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT(); 10651 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 10652 10653 // fold (fp_round_inreg c1fp) -> c1fp 10654 if (N0CFP && isTypeLegal(EVT)) { 10655 SDLoc DL(N); 10656 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), DL, EVT); 10657 return DAG.getNode(ISD::FP_EXTEND, DL, VT, Round); 10658 } 10659 10660 return SDValue(); 10661 } 10662 10663 SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) { 10664 SDValue N0 = N->getOperand(0); 10665 EVT VT = N->getValueType(0); 10666 10667 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded. 10668 if (N->hasOneUse() && 10669 N->use_begin()->getOpcode() == ISD::FP_ROUND) 10670 return SDValue(); 10671 10672 // fold (fp_extend c1fp) -> c1fp 10673 if (isConstantFPBuildVectorOrConstantFP(N0)) 10674 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, N0); 10675 10676 // fold (fp_extend (fp16_to_fp op)) -> (fp16_to_fp op) 10677 if (N0.getOpcode() == ISD::FP16_TO_FP && 10678 TLI.getOperationAction(ISD::FP16_TO_FP, VT) == TargetLowering::Legal) 10679 return DAG.getNode(ISD::FP16_TO_FP, SDLoc(N), VT, N0.getOperand(0)); 10680 10681 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the 10682 // value of X. 10683 if (N0.getOpcode() == ISD::FP_ROUND 10684 && N0.getConstantOperandVal(1) == 1) { 10685 SDValue In = N0.getOperand(0); 10686 if (In.getValueType() == VT) return In; 10687 if (VT.bitsLT(In.getValueType())) 10688 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, 10689 In, N0.getOperand(1)); 10690 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, In); 10691 } 10692 10693 // fold (fpext (load x)) -> (fpext (fptrunc (extload x))) 10694 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() && 10695 TLI.isLoadExtLegal(ISD::EXTLOAD, VT, N0.getValueType())) { 10696 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 10697 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT, 10698 LN0->getChain(), 10699 LN0->getBasePtr(), N0.getValueType(), 10700 LN0->getMemOperand()); 10701 CombineTo(N, ExtLoad); 10702 CombineTo(N0.getNode(), 10703 DAG.getNode(ISD::FP_ROUND, SDLoc(N0), 10704 N0.getValueType(), ExtLoad, 10705 DAG.getIntPtrConstant(1, SDLoc(N0))), 10706 ExtLoad.getValue(1)); 10707 return SDValue(N, 0); // Return N so it doesn't get rechecked! 10708 } 10709 10710 if (SDValue NewVSel = matchVSelectOpSizesWithSetCC(N)) 10711 return NewVSel; 10712 10713 return SDValue(); 10714 } 10715 10716 SDValue DAGCombiner::visitFCEIL(SDNode *N) { 10717 SDValue N0 = N->getOperand(0); 10718 EVT VT = N->getValueType(0); 10719 10720 // fold (fceil c1) -> fceil(c1) 10721 if (isConstantFPBuildVectorOrConstantFP(N0)) 10722 return DAG.getNode(ISD::FCEIL, SDLoc(N), VT, N0); 10723 10724 return SDValue(); 10725 } 10726 10727 SDValue DAGCombiner::visitFTRUNC(SDNode *N) { 10728 SDValue N0 = N->getOperand(0); 10729 EVT VT = N->getValueType(0); 10730 10731 // fold (ftrunc c1) -> ftrunc(c1) 10732 if (isConstantFPBuildVectorOrConstantFP(N0)) 10733 return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0); 10734 10735 // fold ftrunc (known rounded int x) -> x 10736 // ftrunc is a part of fptosi/fptoui expansion on some targets, so this is 10737 // likely to be generated to extract integer from a rounded floating value. 10738 switch (N0.getOpcode()) { 10739 default: break; 10740 case ISD::FRINT: 10741 case ISD::FTRUNC: 10742 case ISD::FNEARBYINT: 10743 case ISD::FFLOOR: 10744 case ISD::FCEIL: 10745 return N0; 10746 } 10747 10748 return SDValue(); 10749 } 10750 10751 SDValue DAGCombiner::visitFFLOOR(SDNode *N) { 10752 SDValue N0 = N->getOperand(0); 10753 EVT VT = N->getValueType(0); 10754 10755 // fold (ffloor c1) -> ffloor(c1) 10756 if (isConstantFPBuildVectorOrConstantFP(N0)) 10757 return DAG.getNode(ISD::FFLOOR, SDLoc(N), VT, N0); 10758 10759 return SDValue(); 10760 } 10761 10762 // FIXME: FNEG and FABS have a lot in common; refactor. 10763 SDValue DAGCombiner::visitFNEG(SDNode *N) { 10764 SDValue N0 = N->getOperand(0); 10765 EVT VT = N->getValueType(0); 10766 10767 // Constant fold FNEG. 10768 if (isConstantFPBuildVectorOrConstantFP(N0)) 10769 return DAG.getNode(ISD::FNEG, SDLoc(N), VT, N0); 10770 10771 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(), 10772 &DAG.getTarget().Options)) 10773 return GetNegatedExpression(N0, DAG, LegalOperations); 10774 10775 // Transform fneg(bitconvert(x)) -> bitconvert(x ^ sign) to avoid loading 10776 // constant pool values. 10777 if (!TLI.isFNegFree(VT) && 10778 N0.getOpcode() == ISD::BITCAST && 10779 N0.getNode()->hasOneUse()) { 10780 SDValue Int = N0.getOperand(0); 10781 EVT IntVT = Int.getValueType(); 10782 if (IntVT.isInteger() && !IntVT.isVector()) { 10783 APInt SignMask; 10784 if (N0.getValueType().isVector()) { 10785 // For a vector, get a mask such as 0x80... per scalar element 10786 // and splat it. 10787 SignMask = APInt::getSignMask(N0.getScalarValueSizeInBits()); 10788 SignMask = APInt::getSplat(IntVT.getSizeInBits(), SignMask); 10789 } else { 10790 // For a scalar, just generate 0x80... 10791 SignMask = APInt::getSignMask(IntVT.getSizeInBits()); 10792 } 10793 SDLoc DL0(N0); 10794 Int = DAG.getNode(ISD::XOR, DL0, IntVT, Int, 10795 DAG.getConstant(SignMask, DL0, IntVT)); 10796 AddToWorklist(Int.getNode()); 10797 return DAG.getBitcast(VT, Int); 10798 } 10799 } 10800 10801 // (fneg (fmul c, x)) -> (fmul -c, x) 10802 if (N0.getOpcode() == ISD::FMUL && 10803 (N0.getNode()->hasOneUse() || !TLI.isFNegFree(VT))) { 10804 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1)); 10805 if (CFP1) { 10806 APFloat CVal = CFP1->getValueAPF(); 10807 CVal.changeSign(); 10808 if (Level >= AfterLegalizeDAG && 10809 (TLI.isFPImmLegal(CVal, VT) || 10810 TLI.isOperationLegal(ISD::ConstantFP, VT))) 10811 return DAG.getNode( 10812 ISD::FMUL, SDLoc(N), VT, N0.getOperand(0), 10813 DAG.getNode(ISD::FNEG, SDLoc(N), VT, N0.getOperand(1)), 10814 N0->getFlags()); 10815 } 10816 } 10817 10818 return SDValue(); 10819 } 10820 10821 SDValue DAGCombiner::visitFMINNUM(SDNode *N) { 10822 SDValue N0 = N->getOperand(0); 10823 SDValue N1 = N->getOperand(1); 10824 EVT VT = N->getValueType(0); 10825 const ConstantFPSDNode *N0CFP = isConstOrConstSplatFP(N0); 10826 const ConstantFPSDNode *N1CFP = isConstOrConstSplatFP(N1); 10827 10828 if (N0CFP && N1CFP) { 10829 const APFloat &C0 = N0CFP->getValueAPF(); 10830 const APFloat &C1 = N1CFP->getValueAPF(); 10831 return DAG.getConstantFP(minnum(C0, C1), SDLoc(N), VT); 10832 } 10833 10834 // Canonicalize to constant on RHS. 10835 if (isConstantFPBuildVectorOrConstantFP(N0) && 10836 !isConstantFPBuildVectorOrConstantFP(N1)) 10837 return DAG.getNode(ISD::FMINNUM, SDLoc(N), VT, N1, N0); 10838 10839 return SDValue(); 10840 } 10841 10842 SDValue DAGCombiner::visitFMAXNUM(SDNode *N) { 10843 SDValue N0 = N->getOperand(0); 10844 SDValue N1 = N->getOperand(1); 10845 EVT VT = N->getValueType(0); 10846 const ConstantFPSDNode *N0CFP = isConstOrConstSplatFP(N0); 10847 const ConstantFPSDNode *N1CFP = isConstOrConstSplatFP(N1); 10848 10849 if (N0CFP && N1CFP) { 10850 const APFloat &C0 = N0CFP->getValueAPF(); 10851 const APFloat &C1 = N1CFP->getValueAPF(); 10852 return DAG.getConstantFP(maxnum(C0, C1), SDLoc(N), VT); 10853 } 10854 10855 // Canonicalize to constant on RHS. 10856 if (isConstantFPBuildVectorOrConstantFP(N0) && 10857 !isConstantFPBuildVectorOrConstantFP(N1)) 10858 return DAG.getNode(ISD::FMAXNUM, SDLoc(N), VT, N1, N0); 10859 10860 return SDValue(); 10861 } 10862 10863 SDValue DAGCombiner::visitFABS(SDNode *N) { 10864 SDValue N0 = N->getOperand(0); 10865 EVT VT = N->getValueType(0); 10866 10867 // fold (fabs c1) -> fabs(c1) 10868 if (isConstantFPBuildVectorOrConstantFP(N0)) 10869 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0); 10870 10871 // fold (fabs (fabs x)) -> (fabs x) 10872 if (N0.getOpcode() == ISD::FABS) 10873 return N->getOperand(0); 10874 10875 // fold (fabs (fneg x)) -> (fabs x) 10876 // fold (fabs (fcopysign x, y)) -> (fabs x) 10877 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN) 10878 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0.getOperand(0)); 10879 10880 // Transform fabs(bitconvert(x)) -> bitconvert(x & ~sign) to avoid loading 10881 // constant pool values. 10882 if (!TLI.isFAbsFree(VT) && 10883 N0.getOpcode() == ISD::BITCAST && 10884 N0.getNode()->hasOneUse()) { 10885 SDValue Int = N0.getOperand(0); 10886 EVT IntVT = Int.getValueType(); 10887 if (IntVT.isInteger() && !IntVT.isVector()) { 10888 APInt SignMask; 10889 if (N0.getValueType().isVector()) { 10890 // For a vector, get a mask such as 0x7f... per scalar element 10891 // and splat it. 10892 SignMask = ~APInt::getSignMask(N0.getScalarValueSizeInBits()); 10893 SignMask = APInt::getSplat(IntVT.getSizeInBits(), SignMask); 10894 } else { 10895 // For a scalar, just generate 0x7f... 10896 SignMask = ~APInt::getSignMask(IntVT.getSizeInBits()); 10897 } 10898 SDLoc DL(N0); 10899 Int = DAG.getNode(ISD::AND, DL, IntVT, Int, 10900 DAG.getConstant(SignMask, DL, IntVT)); 10901 AddToWorklist(Int.getNode()); 10902 return DAG.getBitcast(N->getValueType(0), Int); 10903 } 10904 } 10905 10906 return SDValue(); 10907 } 10908 10909 SDValue DAGCombiner::visitBRCOND(SDNode *N) { 10910 SDValue Chain = N->getOperand(0); 10911 SDValue N1 = N->getOperand(1); 10912 SDValue N2 = N->getOperand(2); 10913 10914 // If N is a constant we could fold this into a fallthrough or unconditional 10915 // branch. However that doesn't happen very often in normal code, because 10916 // Instcombine/SimplifyCFG should have handled the available opportunities. 10917 // If we did this folding here, it would be necessary to update the 10918 // MachineBasicBlock CFG, which is awkward. 10919 10920 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal 10921 // on the target. 10922 if (N1.getOpcode() == ISD::SETCC && 10923 TLI.isOperationLegalOrCustom(ISD::BR_CC, 10924 N1.getOperand(0).getValueType())) { 10925 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other, 10926 Chain, N1.getOperand(2), 10927 N1.getOperand(0), N1.getOperand(1), N2); 10928 } 10929 10930 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) || 10931 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) && 10932 (N1.getOperand(0).hasOneUse() && 10933 N1.getOperand(0).getOpcode() == ISD::SRL))) { 10934 SDNode *Trunc = nullptr; 10935 if (N1.getOpcode() == ISD::TRUNCATE) { 10936 // Look pass the truncate. 10937 Trunc = N1.getNode(); 10938 N1 = N1.getOperand(0); 10939 } 10940 10941 // Match this pattern so that we can generate simpler code: 10942 // 10943 // %a = ... 10944 // %b = and i32 %a, 2 10945 // %c = srl i32 %b, 1 10946 // brcond i32 %c ... 10947 // 10948 // into 10949 // 10950 // %a = ... 10951 // %b = and i32 %a, 2 10952 // %c = setcc eq %b, 0 10953 // brcond %c ... 10954 // 10955 // This applies only when the AND constant value has one bit set and the 10956 // SRL constant is equal to the log2 of the AND constant. The back-end is 10957 // smart enough to convert the result into a TEST/JMP sequence. 10958 SDValue Op0 = N1.getOperand(0); 10959 SDValue Op1 = N1.getOperand(1); 10960 10961 if (Op0.getOpcode() == ISD::AND && 10962 Op1.getOpcode() == ISD::Constant) { 10963 SDValue AndOp1 = Op0.getOperand(1); 10964 10965 if (AndOp1.getOpcode() == ISD::Constant) { 10966 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue(); 10967 10968 if (AndConst.isPowerOf2() && 10969 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) { 10970 SDLoc DL(N); 10971 SDValue SetCC = 10972 DAG.getSetCC(DL, 10973 getSetCCResultType(Op0.getValueType()), 10974 Op0, DAG.getConstant(0, DL, Op0.getValueType()), 10975 ISD::SETNE); 10976 10977 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, DL, 10978 MVT::Other, Chain, SetCC, N2); 10979 // Don't add the new BRCond into the worklist or else SimplifySelectCC 10980 // will convert it back to (X & C1) >> C2. 10981 CombineTo(N, NewBRCond, false); 10982 // Truncate is dead. 10983 if (Trunc) 10984 deleteAndRecombine(Trunc); 10985 // Replace the uses of SRL with SETCC 10986 WorklistRemover DeadNodes(*this); 10987 DAG.ReplaceAllUsesOfValueWith(N1, SetCC); 10988 deleteAndRecombine(N1.getNode()); 10989 return SDValue(N, 0); // Return N so it doesn't get rechecked! 10990 } 10991 } 10992 } 10993 10994 if (Trunc) 10995 // Restore N1 if the above transformation doesn't match. 10996 N1 = N->getOperand(1); 10997 } 10998 10999 // Transform br(xor(x, y)) -> br(x != y) 11000 // Transform br(xor(xor(x,y), 1)) -> br (x == y) 11001 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) { 11002 SDNode *TheXor = N1.getNode(); 11003 SDValue Op0 = TheXor->getOperand(0); 11004 SDValue Op1 = TheXor->getOperand(1); 11005 if (Op0.getOpcode() == Op1.getOpcode()) { 11006 // Avoid missing important xor optimizations. 11007 if (SDValue Tmp = visitXOR(TheXor)) { 11008 if (Tmp.getNode() != TheXor) { 11009 DEBUG(dbgs() << "\nReplacing.8 "; 11010 TheXor->dump(&DAG); 11011 dbgs() << "\nWith: "; 11012 Tmp.getNode()->dump(&DAG); 11013 dbgs() << '\n'); 11014 WorklistRemover DeadNodes(*this); 11015 DAG.ReplaceAllUsesOfValueWith(N1, Tmp); 11016 deleteAndRecombine(TheXor); 11017 return DAG.getNode(ISD::BRCOND, SDLoc(N), 11018 MVT::Other, Chain, Tmp, N2); 11019 } 11020 11021 // visitXOR has changed XOR's operands or replaced the XOR completely, 11022 // bail out. 11023 return SDValue(N, 0); 11024 } 11025 } 11026 11027 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) { 11028 bool Equal = false; 11029 if (isOneConstant(Op0) && Op0.hasOneUse() && 11030 Op0.getOpcode() == ISD::XOR) { 11031 TheXor = Op0.getNode(); 11032 Equal = true; 11033 } 11034 11035 EVT SetCCVT = N1.getValueType(); 11036 if (LegalTypes) 11037 SetCCVT = getSetCCResultType(SetCCVT); 11038 SDValue SetCC = DAG.getSetCC(SDLoc(TheXor), 11039 SetCCVT, 11040 Op0, Op1, 11041 Equal ? ISD::SETEQ : ISD::SETNE); 11042 // Replace the uses of XOR with SETCC 11043 WorklistRemover DeadNodes(*this); 11044 DAG.ReplaceAllUsesOfValueWith(N1, SetCC); 11045 deleteAndRecombine(N1.getNode()); 11046 return DAG.getNode(ISD::BRCOND, SDLoc(N), 11047 MVT::Other, Chain, SetCC, N2); 11048 } 11049 } 11050 11051 return SDValue(); 11052 } 11053 11054 // Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB. 11055 // 11056 SDValue DAGCombiner::visitBR_CC(SDNode *N) { 11057 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1)); 11058 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3); 11059 11060 // If N is a constant we could fold this into a fallthrough or unconditional 11061 // branch. However that doesn't happen very often in normal code, because 11062 // Instcombine/SimplifyCFG should have handled the available opportunities. 11063 // If we did this folding here, it would be necessary to update the 11064 // MachineBasicBlock CFG, which is awkward. 11065 11066 // Use SimplifySetCC to simplify SETCC's. 11067 SDValue Simp = SimplifySetCC(getSetCCResultType(CondLHS.getValueType()), 11068 CondLHS, CondRHS, CC->get(), SDLoc(N), 11069 false); 11070 if (Simp.getNode()) AddToWorklist(Simp.getNode()); 11071 11072 // fold to a simpler setcc 11073 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC) 11074 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other, 11075 N->getOperand(0), Simp.getOperand(2), 11076 Simp.getOperand(0), Simp.getOperand(1), 11077 N->getOperand(4)); 11078 11079 return SDValue(); 11080 } 11081 11082 /// Return true if 'Use' is a load or a store that uses N as its base pointer 11083 /// and that N may be folded in the load / store addressing mode. 11084 static bool canFoldInAddressingMode(SDNode *N, SDNode *Use, 11085 SelectionDAG &DAG, 11086 const TargetLowering &TLI) { 11087 EVT VT; 11088 unsigned AS; 11089 11090 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) { 11091 if (LD->isIndexed() || LD->getBasePtr().getNode() != N) 11092 return false; 11093 VT = LD->getMemoryVT(); 11094 AS = LD->getAddressSpace(); 11095 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) { 11096 if (ST->isIndexed() || ST->getBasePtr().getNode() != N) 11097 return false; 11098 VT = ST->getMemoryVT(); 11099 AS = ST->getAddressSpace(); 11100 } else 11101 return false; 11102 11103 TargetLowering::AddrMode AM; 11104 if (N->getOpcode() == ISD::ADD) { 11105 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1)); 11106 if (Offset) 11107 // [reg +/- imm] 11108 AM.BaseOffs = Offset->getSExtValue(); 11109 else 11110 // [reg +/- reg] 11111 AM.Scale = 1; 11112 } else if (N->getOpcode() == ISD::SUB) { 11113 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1)); 11114 if (Offset) 11115 // [reg +/- imm] 11116 AM.BaseOffs = -Offset->getSExtValue(); 11117 else 11118 // [reg +/- reg] 11119 AM.Scale = 1; 11120 } else 11121 return false; 11122 11123 return TLI.isLegalAddressingMode(DAG.getDataLayout(), AM, 11124 VT.getTypeForEVT(*DAG.getContext()), AS); 11125 } 11126 11127 /// Try turning a load/store into a pre-indexed load/store when the base 11128 /// pointer is an add or subtract and it has other uses besides the load/store. 11129 /// After the transformation, the new indexed load/store has effectively folded 11130 /// the add/subtract in and all of its other uses are redirected to the 11131 /// new load/store. 11132 bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) { 11133 if (Level < AfterLegalizeDAG) 11134 return false; 11135 11136 bool isLoad = true; 11137 SDValue Ptr; 11138 EVT VT; 11139 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 11140 if (LD->isIndexed()) 11141 return false; 11142 VT = LD->getMemoryVT(); 11143 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) && 11144 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT)) 11145 return false; 11146 Ptr = LD->getBasePtr(); 11147 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { 11148 if (ST->isIndexed()) 11149 return false; 11150 VT = ST->getMemoryVT(); 11151 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) && 11152 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT)) 11153 return false; 11154 Ptr = ST->getBasePtr(); 11155 isLoad = false; 11156 } else { 11157 return false; 11158 } 11159 11160 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail 11161 // out. There is no reason to make this a preinc/predec. 11162 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) || 11163 Ptr.getNode()->hasOneUse()) 11164 return false; 11165 11166 // Ask the target to do addressing mode selection. 11167 SDValue BasePtr; 11168 SDValue Offset; 11169 ISD::MemIndexedMode AM = ISD::UNINDEXED; 11170 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG)) 11171 return false; 11172 11173 // Backends without true r+i pre-indexed forms may need to pass a 11174 // constant base with a variable offset so that constant coercion 11175 // will work with the patterns in canonical form. 11176 bool Swapped = false; 11177 if (isa<ConstantSDNode>(BasePtr)) { 11178 std::swap(BasePtr, Offset); 11179 Swapped = true; 11180 } 11181 11182 // Don't create a indexed load / store with zero offset. 11183 if (isNullConstant(Offset)) 11184 return false; 11185 11186 // Try turning it into a pre-indexed load / store except when: 11187 // 1) The new base ptr is a frame index. 11188 // 2) If N is a store and the new base ptr is either the same as or is a 11189 // predecessor of the value being stored. 11190 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded 11191 // that would create a cycle. 11192 // 4) All uses are load / store ops that use it as old base ptr. 11193 11194 // Check #1. Preinc'ing a frame index would require copying the stack pointer 11195 // (plus the implicit offset) to a register to preinc anyway. 11196 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr)) 11197 return false; 11198 11199 // Check #2. 11200 if (!isLoad) { 11201 SDValue Val = cast<StoreSDNode>(N)->getValue(); 11202 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode())) 11203 return false; 11204 } 11205 11206 // Caches for hasPredecessorHelper. 11207 SmallPtrSet<const SDNode *, 32> Visited; 11208 SmallVector<const SDNode *, 16> Worklist; 11209 Worklist.push_back(N); 11210 11211 // If the offset is a constant, there may be other adds of constants that 11212 // can be folded with this one. We should do this to avoid having to keep 11213 // a copy of the original base pointer. 11214 SmallVector<SDNode *, 16> OtherUses; 11215 if (isa<ConstantSDNode>(Offset)) 11216 for (SDNode::use_iterator UI = BasePtr.getNode()->use_begin(), 11217 UE = BasePtr.getNode()->use_end(); 11218 UI != UE; ++UI) { 11219 SDUse &Use = UI.getUse(); 11220 // Skip the use that is Ptr and uses of other results from BasePtr's 11221 // node (important for nodes that return multiple results). 11222 if (Use.getUser() == Ptr.getNode() || Use != BasePtr) 11223 continue; 11224 11225 if (SDNode::hasPredecessorHelper(Use.getUser(), Visited, Worklist)) 11226 continue; 11227 11228 if (Use.getUser()->getOpcode() != ISD::ADD && 11229 Use.getUser()->getOpcode() != ISD::SUB) { 11230 OtherUses.clear(); 11231 break; 11232 } 11233 11234 SDValue Op1 = Use.getUser()->getOperand((UI.getOperandNo() + 1) & 1); 11235 if (!isa<ConstantSDNode>(Op1)) { 11236 OtherUses.clear(); 11237 break; 11238 } 11239 11240 // FIXME: In some cases, we can be smarter about this. 11241 if (Op1.getValueType() != Offset.getValueType()) { 11242 OtherUses.clear(); 11243 break; 11244 } 11245 11246 OtherUses.push_back(Use.getUser()); 11247 } 11248 11249 if (Swapped) 11250 std::swap(BasePtr, Offset); 11251 11252 // Now check for #3 and #4. 11253 bool RealUse = false; 11254 11255 for (SDNode *Use : Ptr.getNode()->uses()) { 11256 if (Use == N) 11257 continue; 11258 if (SDNode::hasPredecessorHelper(Use, Visited, Worklist)) 11259 return false; 11260 11261 // If Ptr may be folded in addressing mode of other use, then it's 11262 // not profitable to do this transformation. 11263 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI)) 11264 RealUse = true; 11265 } 11266 11267 if (!RealUse) 11268 return false; 11269 11270 SDValue Result; 11271 if (isLoad) 11272 Result = DAG.getIndexedLoad(SDValue(N,0), SDLoc(N), 11273 BasePtr, Offset, AM); 11274 else 11275 Result = DAG.getIndexedStore(SDValue(N,0), SDLoc(N), 11276 BasePtr, Offset, AM); 11277 ++PreIndexedNodes; 11278 ++NodesCombined; 11279 DEBUG(dbgs() << "\nReplacing.4 "; 11280 N->dump(&DAG); 11281 dbgs() << "\nWith: "; 11282 Result.getNode()->dump(&DAG); 11283 dbgs() << '\n'); 11284 WorklistRemover DeadNodes(*this); 11285 if (isLoad) { 11286 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0)); 11287 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2)); 11288 } else { 11289 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1)); 11290 } 11291 11292 // Finally, since the node is now dead, remove it from the graph. 11293 deleteAndRecombine(N); 11294 11295 if (Swapped) 11296 std::swap(BasePtr, Offset); 11297 11298 // Replace other uses of BasePtr that can be updated to use Ptr 11299 for (unsigned i = 0, e = OtherUses.size(); i != e; ++i) { 11300 unsigned OffsetIdx = 1; 11301 if (OtherUses[i]->getOperand(OffsetIdx).getNode() == BasePtr.getNode()) 11302 OffsetIdx = 0; 11303 assert(OtherUses[i]->getOperand(!OffsetIdx).getNode() == 11304 BasePtr.getNode() && "Expected BasePtr operand"); 11305 11306 // We need to replace ptr0 in the following expression: 11307 // x0 * offset0 + y0 * ptr0 = t0 11308 // knowing that 11309 // x1 * offset1 + y1 * ptr0 = t1 (the indexed load/store) 11310 // 11311 // where x0, x1, y0 and y1 in {-1, 1} are given by the types of the 11312 // indexed load/store and the expression that needs to be re-written. 11313 // 11314 // Therefore, we have: 11315 // t0 = (x0 * offset0 - x1 * y0 * y1 *offset1) + (y0 * y1) * t1 11316 11317 ConstantSDNode *CN = 11318 cast<ConstantSDNode>(OtherUses[i]->getOperand(OffsetIdx)); 11319 int X0, X1, Y0, Y1; 11320 const APInt &Offset0 = CN->getAPIntValue(); 11321 APInt Offset1 = cast<ConstantSDNode>(Offset)->getAPIntValue(); 11322 11323 X0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 1) ? -1 : 1; 11324 Y0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 0) ? -1 : 1; 11325 X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1; 11326 Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1; 11327 11328 unsigned Opcode = (Y0 * Y1 < 0) ? ISD::SUB : ISD::ADD; 11329 11330 APInt CNV = Offset0; 11331 if (X0 < 0) CNV = -CNV; 11332 if (X1 * Y0 * Y1 < 0) CNV = CNV + Offset1; 11333 else CNV = CNV - Offset1; 11334 11335 SDLoc DL(OtherUses[i]); 11336 11337 // We can now generate the new expression. 11338 SDValue NewOp1 = DAG.getConstant(CNV, DL, CN->getValueType(0)); 11339 SDValue NewOp2 = Result.getValue(isLoad ? 1 : 0); 11340 11341 SDValue NewUse = DAG.getNode(Opcode, 11342 DL, 11343 OtherUses[i]->getValueType(0), NewOp1, NewOp2); 11344 DAG.ReplaceAllUsesOfValueWith(SDValue(OtherUses[i], 0), NewUse); 11345 deleteAndRecombine(OtherUses[i]); 11346 } 11347 11348 // Replace the uses of Ptr with uses of the updated base value. 11349 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0)); 11350 deleteAndRecombine(Ptr.getNode()); 11351 11352 return true; 11353 } 11354 11355 /// Try to combine a load/store with a add/sub of the base pointer node into a 11356 /// post-indexed load/store. The transformation folded the add/subtract into the 11357 /// new indexed load/store effectively and all of its uses are redirected to the 11358 /// new load/store. 11359 bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) { 11360 if (Level < AfterLegalizeDAG) 11361 return false; 11362 11363 bool isLoad = true; 11364 SDValue Ptr; 11365 EVT VT; 11366 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 11367 if (LD->isIndexed()) 11368 return false; 11369 VT = LD->getMemoryVT(); 11370 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) && 11371 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT)) 11372 return false; 11373 Ptr = LD->getBasePtr(); 11374 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { 11375 if (ST->isIndexed()) 11376 return false; 11377 VT = ST->getMemoryVT(); 11378 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) && 11379 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT)) 11380 return false; 11381 Ptr = ST->getBasePtr(); 11382 isLoad = false; 11383 } else { 11384 return false; 11385 } 11386 11387 if (Ptr.getNode()->hasOneUse()) 11388 return false; 11389 11390 for (SDNode *Op : Ptr.getNode()->uses()) { 11391 if (Op == N || 11392 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB)) 11393 continue; 11394 11395 SDValue BasePtr; 11396 SDValue Offset; 11397 ISD::MemIndexedMode AM = ISD::UNINDEXED; 11398 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) { 11399 // Don't create a indexed load / store with zero offset. 11400 if (isNullConstant(Offset)) 11401 continue; 11402 11403 // Try turning it into a post-indexed load / store except when 11404 // 1) All uses are load / store ops that use it as base ptr (and 11405 // it may be folded as addressing mmode). 11406 // 2) Op must be independent of N, i.e. Op is neither a predecessor 11407 // nor a successor of N. Otherwise, if Op is folded that would 11408 // create a cycle. 11409 11410 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr)) 11411 continue; 11412 11413 // Check for #1. 11414 bool TryNext = false; 11415 for (SDNode *Use : BasePtr.getNode()->uses()) { 11416 if (Use == Ptr.getNode()) 11417 continue; 11418 11419 // If all the uses are load / store addresses, then don't do the 11420 // transformation. 11421 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){ 11422 bool RealUse = false; 11423 for (SDNode *UseUse : Use->uses()) { 11424 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI)) 11425 RealUse = true; 11426 } 11427 11428 if (!RealUse) { 11429 TryNext = true; 11430 break; 11431 } 11432 } 11433 } 11434 11435 if (TryNext) 11436 continue; 11437 11438 // Check for #2 11439 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) { 11440 SDValue Result = isLoad 11441 ? DAG.getIndexedLoad(SDValue(N,0), SDLoc(N), 11442 BasePtr, Offset, AM) 11443 : DAG.getIndexedStore(SDValue(N,0), SDLoc(N), 11444 BasePtr, Offset, AM); 11445 ++PostIndexedNodes; 11446 ++NodesCombined; 11447 DEBUG(dbgs() << "\nReplacing.5 "; 11448 N->dump(&DAG); 11449 dbgs() << "\nWith: "; 11450 Result.getNode()->dump(&DAG); 11451 dbgs() << '\n'); 11452 WorklistRemover DeadNodes(*this); 11453 if (isLoad) { 11454 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0)); 11455 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2)); 11456 } else { 11457 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1)); 11458 } 11459 11460 // Finally, since the node is now dead, remove it from the graph. 11461 deleteAndRecombine(N); 11462 11463 // Replace the uses of Use with uses of the updated base value. 11464 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0), 11465 Result.getValue(isLoad ? 1 : 0)); 11466 deleteAndRecombine(Op); 11467 return true; 11468 } 11469 } 11470 } 11471 11472 return false; 11473 } 11474 11475 /// \brief Return the base-pointer arithmetic from an indexed \p LD. 11476 SDValue DAGCombiner::SplitIndexingFromLoad(LoadSDNode *LD) { 11477 ISD::MemIndexedMode AM = LD->getAddressingMode(); 11478 assert(AM != ISD::UNINDEXED); 11479 SDValue BP = LD->getOperand(1); 11480 SDValue Inc = LD->getOperand(2); 11481 11482 // Some backends use TargetConstants for load offsets, but don't expect 11483 // TargetConstants in general ADD nodes. We can convert these constants into 11484 // regular Constants (if the constant is not opaque). 11485 assert((Inc.getOpcode() != ISD::TargetConstant || 11486 !cast<ConstantSDNode>(Inc)->isOpaque()) && 11487 "Cannot split out indexing using opaque target constants"); 11488 if (Inc.getOpcode() == ISD::TargetConstant) { 11489 ConstantSDNode *ConstInc = cast<ConstantSDNode>(Inc); 11490 Inc = DAG.getConstant(*ConstInc->getConstantIntValue(), SDLoc(Inc), 11491 ConstInc->getValueType(0)); 11492 } 11493 11494 unsigned Opc = 11495 (AM == ISD::PRE_INC || AM == ISD::POST_INC ? ISD::ADD : ISD::SUB); 11496 return DAG.getNode(Opc, SDLoc(LD), BP.getSimpleValueType(), BP, Inc); 11497 } 11498 11499 SDValue DAGCombiner::visitLOAD(SDNode *N) { 11500 LoadSDNode *LD = cast<LoadSDNode>(N); 11501 SDValue Chain = LD->getChain(); 11502 SDValue Ptr = LD->getBasePtr(); 11503 11504 // If load is not volatile and there are no uses of the loaded value (and 11505 // the updated indexed value in case of indexed loads), change uses of the 11506 // chain value into uses of the chain input (i.e. delete the dead load). 11507 if (!LD->isVolatile()) { 11508 if (N->getValueType(1) == MVT::Other) { 11509 // Unindexed loads. 11510 if (!N->hasAnyUseOfValue(0)) { 11511 // It's not safe to use the two value CombineTo variant here. e.g. 11512 // v1, chain2 = load chain1, loc 11513 // v2, chain3 = load chain2, loc 11514 // v3 = add v2, c 11515 // Now we replace use of chain2 with chain1. This makes the second load 11516 // isomorphic to the one we are deleting, and thus makes this load live. 11517 DEBUG(dbgs() << "\nReplacing.6 "; 11518 N->dump(&DAG); 11519 dbgs() << "\nWith chain: "; 11520 Chain.getNode()->dump(&DAG); 11521 dbgs() << "\n"); 11522 WorklistRemover DeadNodes(*this); 11523 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain); 11524 AddUsersToWorklist(Chain.getNode()); 11525 if (N->use_empty()) 11526 deleteAndRecombine(N); 11527 11528 return SDValue(N, 0); // Return N so it doesn't get rechecked! 11529 } 11530 } else { 11531 // Indexed loads. 11532 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?"); 11533 11534 // If this load has an opaque TargetConstant offset, then we cannot split 11535 // the indexing into an add/sub directly (that TargetConstant may not be 11536 // valid for a different type of node, and we cannot convert an opaque 11537 // target constant into a regular constant). 11538 bool HasOTCInc = LD->getOperand(2).getOpcode() == ISD::TargetConstant && 11539 cast<ConstantSDNode>(LD->getOperand(2))->isOpaque(); 11540 11541 if (!N->hasAnyUseOfValue(0) && 11542 ((MaySplitLoadIndex && !HasOTCInc) || !N->hasAnyUseOfValue(1))) { 11543 SDValue Undef = DAG.getUNDEF(N->getValueType(0)); 11544 SDValue Index; 11545 if (N->hasAnyUseOfValue(1) && MaySplitLoadIndex && !HasOTCInc) { 11546 Index = SplitIndexingFromLoad(LD); 11547 // Try to fold the base pointer arithmetic into subsequent loads and 11548 // stores. 11549 AddUsersToWorklist(N); 11550 } else 11551 Index = DAG.getUNDEF(N->getValueType(1)); 11552 DEBUG(dbgs() << "\nReplacing.7 "; 11553 N->dump(&DAG); 11554 dbgs() << "\nWith: "; 11555 Undef.getNode()->dump(&DAG); 11556 dbgs() << " and 2 other values\n"); 11557 WorklistRemover DeadNodes(*this); 11558 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef); 11559 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Index); 11560 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain); 11561 deleteAndRecombine(N); 11562 return SDValue(N, 0); // Return N so it doesn't get rechecked! 11563 } 11564 } 11565 } 11566 11567 // If this load is directly stored, replace the load value with the stored 11568 // value. 11569 // TODO: Handle store large -> read small portion. 11570 // TODO: Handle TRUNCSTORE/LOADEXT 11571 if (OptLevel != CodeGenOpt::None && 11572 ISD::isNormalLoad(N) && !LD->isVolatile()) { 11573 if (ISD::isNON_TRUNCStore(Chain.getNode())) { 11574 StoreSDNode *PrevST = cast<StoreSDNode>(Chain); 11575 if (PrevST->getBasePtr() == Ptr && 11576 PrevST->getValue().getValueType() == N->getValueType(0)) 11577 return CombineTo(N, PrevST->getOperand(1), Chain); 11578 } 11579 } 11580 11581 // Try to infer better alignment information than the load already has. 11582 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) { 11583 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) { 11584 if (Align > LD->getMemOperand()->getBaseAlignment()) { 11585 SDValue NewLoad = DAG.getExtLoad( 11586 LD->getExtensionType(), SDLoc(N), LD->getValueType(0), Chain, Ptr, 11587 LD->getPointerInfo(), LD->getMemoryVT(), Align, 11588 LD->getMemOperand()->getFlags(), LD->getAAInfo()); 11589 if (NewLoad.getNode() != N) 11590 return CombineTo(N, NewLoad, SDValue(NewLoad.getNode(), 1), true); 11591 } 11592 } 11593 } 11594 11595 if (LD->isUnindexed()) { 11596 // Walk up chain skipping non-aliasing memory nodes. 11597 SDValue BetterChain = FindBetterChain(N, Chain); 11598 11599 // If there is a better chain. 11600 if (Chain != BetterChain) { 11601 SDValue ReplLoad; 11602 11603 // Replace the chain to void dependency. 11604 if (LD->getExtensionType() == ISD::NON_EXTLOAD) { 11605 ReplLoad = DAG.getLoad(N->getValueType(0), SDLoc(LD), 11606 BetterChain, Ptr, LD->getMemOperand()); 11607 } else { 11608 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD), 11609 LD->getValueType(0), 11610 BetterChain, Ptr, LD->getMemoryVT(), 11611 LD->getMemOperand()); 11612 } 11613 11614 // Create token factor to keep old chain connected. 11615 SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N), 11616 MVT::Other, Chain, ReplLoad.getValue(1)); 11617 11618 // Replace uses with load result and token factor 11619 return CombineTo(N, ReplLoad.getValue(0), Token); 11620 } 11621 } 11622 11623 // Try transforming N to an indexed load. 11624 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N)) 11625 return SDValue(N, 0); 11626 11627 // Try to slice up N to more direct loads if the slices are mapped to 11628 // different register banks or pairing can take place. 11629 if (SliceUpLoad(N)) 11630 return SDValue(N, 0); 11631 11632 return SDValue(); 11633 } 11634 11635 namespace { 11636 11637 /// \brief Helper structure used to slice a load in smaller loads. 11638 /// Basically a slice is obtained from the following sequence: 11639 /// Origin = load Ty1, Base 11640 /// Shift = srl Ty1 Origin, CstTy Amount 11641 /// Inst = trunc Shift to Ty2 11642 /// 11643 /// Then, it will be rewritten into: 11644 /// Slice = load SliceTy, Base + SliceOffset 11645 /// [Inst = zext Slice to Ty2], only if SliceTy <> Ty2 11646 /// 11647 /// SliceTy is deduced from the number of bits that are actually used to 11648 /// build Inst. 11649 struct LoadedSlice { 11650 /// \brief Helper structure used to compute the cost of a slice. 11651 struct Cost { 11652 /// Are we optimizing for code size. 11653 bool ForCodeSize; 11654 11655 /// Various cost. 11656 unsigned Loads = 0; 11657 unsigned Truncates = 0; 11658 unsigned CrossRegisterBanksCopies = 0; 11659 unsigned ZExts = 0; 11660 unsigned Shift = 0; 11661 11662 Cost(bool ForCodeSize = false) : ForCodeSize(ForCodeSize) {} 11663 11664 /// \brief Get the cost of one isolated slice. 11665 Cost(const LoadedSlice &LS, bool ForCodeSize = false) 11666 : ForCodeSize(ForCodeSize), Loads(1) { 11667 EVT TruncType = LS.Inst->getValueType(0); 11668 EVT LoadedType = LS.getLoadedType(); 11669 if (TruncType != LoadedType && 11670 !LS.DAG->getTargetLoweringInfo().isZExtFree(LoadedType, TruncType)) 11671 ZExts = 1; 11672 } 11673 11674 /// \brief Account for slicing gain in the current cost. 11675 /// Slicing provide a few gains like removing a shift or a 11676 /// truncate. This method allows to grow the cost of the original 11677 /// load with the gain from this slice. 11678 void addSliceGain(const LoadedSlice &LS) { 11679 // Each slice saves a truncate. 11680 const TargetLowering &TLI = LS.DAG->getTargetLoweringInfo(); 11681 if (!TLI.isTruncateFree(LS.Inst->getOperand(0).getValueType(), 11682 LS.Inst->getValueType(0))) 11683 ++Truncates; 11684 // If there is a shift amount, this slice gets rid of it. 11685 if (LS.Shift) 11686 ++Shift; 11687 // If this slice can merge a cross register bank copy, account for it. 11688 if (LS.canMergeExpensiveCrossRegisterBankCopy()) 11689 ++CrossRegisterBanksCopies; 11690 } 11691 11692 Cost &operator+=(const Cost &RHS) { 11693 Loads += RHS.Loads; 11694 Truncates += RHS.Truncates; 11695 CrossRegisterBanksCopies += RHS.CrossRegisterBanksCopies; 11696 ZExts += RHS.ZExts; 11697 Shift += RHS.Shift; 11698 return *this; 11699 } 11700 11701 bool operator==(const Cost &RHS) const { 11702 return Loads == RHS.Loads && Truncates == RHS.Truncates && 11703 CrossRegisterBanksCopies == RHS.CrossRegisterBanksCopies && 11704 ZExts == RHS.ZExts && Shift == RHS.Shift; 11705 } 11706 11707 bool operator!=(const Cost &RHS) const { return !(*this == RHS); } 11708 11709 bool operator<(const Cost &RHS) const { 11710 // Assume cross register banks copies are as expensive as loads. 11711 // FIXME: Do we want some more target hooks? 11712 unsigned ExpensiveOpsLHS = Loads + CrossRegisterBanksCopies; 11713 unsigned ExpensiveOpsRHS = RHS.Loads + RHS.CrossRegisterBanksCopies; 11714 // Unless we are optimizing for code size, consider the 11715 // expensive operation first. 11716 if (!ForCodeSize && ExpensiveOpsLHS != ExpensiveOpsRHS) 11717 return ExpensiveOpsLHS < ExpensiveOpsRHS; 11718 return (Truncates + ZExts + Shift + ExpensiveOpsLHS) < 11719 (RHS.Truncates + RHS.ZExts + RHS.Shift + ExpensiveOpsRHS); 11720 } 11721 11722 bool operator>(const Cost &RHS) const { return RHS < *this; } 11723 11724 bool operator<=(const Cost &RHS) const { return !(RHS < *this); } 11725 11726 bool operator>=(const Cost &RHS) const { return !(*this < RHS); } 11727 }; 11728 11729 // The last instruction that represent the slice. This should be a 11730 // truncate instruction. 11731 SDNode *Inst; 11732 11733 // The original load instruction. 11734 LoadSDNode *Origin; 11735 11736 // The right shift amount in bits from the original load. 11737 unsigned Shift; 11738 11739 // The DAG from which Origin came from. 11740 // This is used to get some contextual information about legal types, etc. 11741 SelectionDAG *DAG; 11742 11743 LoadedSlice(SDNode *Inst = nullptr, LoadSDNode *Origin = nullptr, 11744 unsigned Shift = 0, SelectionDAG *DAG = nullptr) 11745 : Inst(Inst), Origin(Origin), Shift(Shift), DAG(DAG) {} 11746 11747 /// \brief Get the bits used in a chunk of bits \p BitWidth large. 11748 /// \return Result is \p BitWidth and has used bits set to 1 and 11749 /// not used bits set to 0. 11750 APInt getUsedBits() const { 11751 // Reproduce the trunc(lshr) sequence: 11752 // - Start from the truncated value. 11753 // - Zero extend to the desired bit width. 11754 // - Shift left. 11755 assert(Origin && "No original load to compare against."); 11756 unsigned BitWidth = Origin->getValueSizeInBits(0); 11757 assert(Inst && "This slice is not bound to an instruction"); 11758 assert(Inst->getValueSizeInBits(0) <= BitWidth && 11759 "Extracted slice is bigger than the whole type!"); 11760 APInt UsedBits(Inst->getValueSizeInBits(0), 0); 11761 UsedBits.setAllBits(); 11762 UsedBits = UsedBits.zext(BitWidth); 11763 UsedBits <<= Shift; 11764 return UsedBits; 11765 } 11766 11767 /// \brief Get the size of the slice to be loaded in bytes. 11768 unsigned getLoadedSize() const { 11769 unsigned SliceSize = getUsedBits().countPopulation(); 11770 assert(!(SliceSize & 0x7) && "Size is not a multiple of a byte."); 11771 return SliceSize / 8; 11772 } 11773 11774 /// \brief Get the type that will be loaded for this slice. 11775 /// Note: This may not be the final type for the slice. 11776 EVT getLoadedType() const { 11777 assert(DAG && "Missing context"); 11778 LLVMContext &Ctxt = *DAG->getContext(); 11779 return EVT::getIntegerVT(Ctxt, getLoadedSize() * 8); 11780 } 11781 11782 /// \brief Get the alignment of the load used for this slice. 11783 unsigned getAlignment() const { 11784 unsigned Alignment = Origin->getAlignment(); 11785 unsigned Offset = getOffsetFromBase(); 11786 if (Offset != 0) 11787 Alignment = MinAlign(Alignment, Alignment + Offset); 11788 return Alignment; 11789 } 11790 11791 /// \brief Check if this slice can be rewritten with legal operations. 11792 bool isLegal() const { 11793 // An invalid slice is not legal. 11794 if (!Origin || !Inst || !DAG) 11795 return false; 11796 11797 // Offsets are for indexed load only, we do not handle that. 11798 if (!Origin->getOffset().isUndef()) 11799 return false; 11800 11801 const TargetLowering &TLI = DAG->getTargetLoweringInfo(); 11802 11803 // Check that the type is legal. 11804 EVT SliceType = getLoadedType(); 11805 if (!TLI.isTypeLegal(SliceType)) 11806 return false; 11807 11808 // Check that the load is legal for this type. 11809 if (!TLI.isOperationLegal(ISD::LOAD, SliceType)) 11810 return false; 11811 11812 // Check that the offset can be computed. 11813 // 1. Check its type. 11814 EVT PtrType = Origin->getBasePtr().getValueType(); 11815 if (PtrType == MVT::Untyped || PtrType.isExtended()) 11816 return false; 11817 11818 // 2. Check that it fits in the immediate. 11819 if (!TLI.isLegalAddImmediate(getOffsetFromBase())) 11820 return false; 11821 11822 // 3. Check that the computation is legal. 11823 if (!TLI.isOperationLegal(ISD::ADD, PtrType)) 11824 return false; 11825 11826 // Check that the zext is legal if it needs one. 11827 EVT TruncateType = Inst->getValueType(0); 11828 if (TruncateType != SliceType && 11829 !TLI.isOperationLegal(ISD::ZERO_EXTEND, TruncateType)) 11830 return false; 11831 11832 return true; 11833 } 11834 11835 /// \brief Get the offset in bytes of this slice in the original chunk of 11836 /// bits. 11837 /// \pre DAG != nullptr. 11838 uint64_t getOffsetFromBase() const { 11839 assert(DAG && "Missing context."); 11840 bool IsBigEndian = DAG->getDataLayout().isBigEndian(); 11841 assert(!(Shift & 0x7) && "Shifts not aligned on Bytes are not supported."); 11842 uint64_t Offset = Shift / 8; 11843 unsigned TySizeInBytes = Origin->getValueSizeInBits(0) / 8; 11844 assert(!(Origin->getValueSizeInBits(0) & 0x7) && 11845 "The size of the original loaded type is not a multiple of a" 11846 " byte."); 11847 // If Offset is bigger than TySizeInBytes, it means we are loading all 11848 // zeros. This should have been optimized before in the process. 11849 assert(TySizeInBytes > Offset && 11850 "Invalid shift amount for given loaded size"); 11851 if (IsBigEndian) 11852 Offset = TySizeInBytes - Offset - getLoadedSize(); 11853 return Offset; 11854 } 11855 11856 /// \brief Generate the sequence of instructions to load the slice 11857 /// represented by this object and redirect the uses of this slice to 11858 /// this new sequence of instructions. 11859 /// \pre this->Inst && this->Origin are valid Instructions and this 11860 /// object passed the legal check: LoadedSlice::isLegal returned true. 11861 /// \return The last instruction of the sequence used to load the slice. 11862 SDValue loadSlice() const { 11863 assert(Inst && Origin && "Unable to replace a non-existing slice."); 11864 const SDValue &OldBaseAddr = Origin->getBasePtr(); 11865 SDValue BaseAddr = OldBaseAddr; 11866 // Get the offset in that chunk of bytes w.r.t. the endianness. 11867 int64_t Offset = static_cast<int64_t>(getOffsetFromBase()); 11868 assert(Offset >= 0 && "Offset too big to fit in int64_t!"); 11869 if (Offset) { 11870 // BaseAddr = BaseAddr + Offset. 11871 EVT ArithType = BaseAddr.getValueType(); 11872 SDLoc DL(Origin); 11873 BaseAddr = DAG->getNode(ISD::ADD, DL, ArithType, BaseAddr, 11874 DAG->getConstant(Offset, DL, ArithType)); 11875 } 11876 11877 // Create the type of the loaded slice according to its size. 11878 EVT SliceType = getLoadedType(); 11879 11880 // Create the load for the slice. 11881 SDValue LastInst = 11882 DAG->getLoad(SliceType, SDLoc(Origin), Origin->getChain(), BaseAddr, 11883 Origin->getPointerInfo().getWithOffset(Offset), 11884 getAlignment(), Origin->getMemOperand()->getFlags()); 11885 // If the final type is not the same as the loaded type, this means that 11886 // we have to pad with zero. Create a zero extend for that. 11887 EVT FinalType = Inst->getValueType(0); 11888 if (SliceType != FinalType) 11889 LastInst = 11890 DAG->getNode(ISD::ZERO_EXTEND, SDLoc(LastInst), FinalType, LastInst); 11891 return LastInst; 11892 } 11893 11894 /// \brief Check if this slice can be merged with an expensive cross register 11895 /// bank copy. E.g., 11896 /// i = load i32 11897 /// f = bitcast i32 i to float 11898 bool canMergeExpensiveCrossRegisterBankCopy() const { 11899 if (!Inst || !Inst->hasOneUse()) 11900 return false; 11901 SDNode *Use = *Inst->use_begin(); 11902 if (Use->getOpcode() != ISD::BITCAST) 11903 return false; 11904 assert(DAG && "Missing context"); 11905 const TargetLowering &TLI = DAG->getTargetLoweringInfo(); 11906 EVT ResVT = Use->getValueType(0); 11907 const TargetRegisterClass *ResRC = TLI.getRegClassFor(ResVT.getSimpleVT()); 11908 const TargetRegisterClass *ArgRC = 11909 TLI.getRegClassFor(Use->getOperand(0).getValueType().getSimpleVT()); 11910 if (ArgRC == ResRC || !TLI.isOperationLegal(ISD::LOAD, ResVT)) 11911 return false; 11912 11913 // At this point, we know that we perform a cross-register-bank copy. 11914 // Check if it is expensive. 11915 const TargetRegisterInfo *TRI = DAG->getSubtarget().getRegisterInfo(); 11916 // Assume bitcasts are cheap, unless both register classes do not 11917 // explicitly share a common sub class. 11918 if (!TRI || TRI->getCommonSubClass(ArgRC, ResRC)) 11919 return false; 11920 11921 // Check if it will be merged with the load. 11922 // 1. Check the alignment constraint. 11923 unsigned RequiredAlignment = DAG->getDataLayout().getABITypeAlignment( 11924 ResVT.getTypeForEVT(*DAG->getContext())); 11925 11926 if (RequiredAlignment > getAlignment()) 11927 return false; 11928 11929 // 2. Check that the load is a legal operation for that type. 11930 if (!TLI.isOperationLegal(ISD::LOAD, ResVT)) 11931 return false; 11932 11933 // 3. Check that we do not have a zext in the way. 11934 if (Inst->getValueType(0) != getLoadedType()) 11935 return false; 11936 11937 return true; 11938 } 11939 }; 11940 11941 } // end anonymous namespace 11942 11943 /// \brief Check that all bits set in \p UsedBits form a dense region, i.e., 11944 /// \p UsedBits looks like 0..0 1..1 0..0. 11945 static bool areUsedBitsDense(const APInt &UsedBits) { 11946 // If all the bits are one, this is dense! 11947 if (UsedBits.isAllOnesValue()) 11948 return true; 11949 11950 // Get rid of the unused bits on the right. 11951 APInt NarrowedUsedBits = UsedBits.lshr(UsedBits.countTrailingZeros()); 11952 // Get rid of the unused bits on the left. 11953 if (NarrowedUsedBits.countLeadingZeros()) 11954 NarrowedUsedBits = NarrowedUsedBits.trunc(NarrowedUsedBits.getActiveBits()); 11955 // Check that the chunk of bits is completely used. 11956 return NarrowedUsedBits.isAllOnesValue(); 11957 } 11958 11959 /// \brief Check whether or not \p First and \p Second are next to each other 11960 /// in memory. This means that there is no hole between the bits loaded 11961 /// by \p First and the bits loaded by \p Second. 11962 static bool areSlicesNextToEachOther(const LoadedSlice &First, 11963 const LoadedSlice &Second) { 11964 assert(First.Origin == Second.Origin && First.Origin && 11965 "Unable to match different memory origins."); 11966 APInt UsedBits = First.getUsedBits(); 11967 assert((UsedBits & Second.getUsedBits()) == 0 && 11968 "Slices are not supposed to overlap."); 11969 UsedBits |= Second.getUsedBits(); 11970 return areUsedBitsDense(UsedBits); 11971 } 11972 11973 /// \brief Adjust the \p GlobalLSCost according to the target 11974 /// paring capabilities and the layout of the slices. 11975 /// \pre \p GlobalLSCost should account for at least as many loads as 11976 /// there is in the slices in \p LoadedSlices. 11977 static void adjustCostForPairing(SmallVectorImpl<LoadedSlice> &LoadedSlices, 11978 LoadedSlice::Cost &GlobalLSCost) { 11979 unsigned NumberOfSlices = LoadedSlices.size(); 11980 // If there is less than 2 elements, no pairing is possible. 11981 if (NumberOfSlices < 2) 11982 return; 11983 11984 // Sort the slices so that elements that are likely to be next to each 11985 // other in memory are next to each other in the list. 11986 std::sort(LoadedSlices.begin(), LoadedSlices.end(), 11987 [](const LoadedSlice &LHS, const LoadedSlice &RHS) { 11988 assert(LHS.Origin == RHS.Origin && "Different bases not implemented."); 11989 return LHS.getOffsetFromBase() < RHS.getOffsetFromBase(); 11990 }); 11991 const TargetLowering &TLI = LoadedSlices[0].DAG->getTargetLoweringInfo(); 11992 // First (resp. Second) is the first (resp. Second) potentially candidate 11993 // to be placed in a paired load. 11994 const LoadedSlice *First = nullptr; 11995 const LoadedSlice *Second = nullptr; 11996 for (unsigned CurrSlice = 0; CurrSlice < NumberOfSlices; ++CurrSlice, 11997 // Set the beginning of the pair. 11998 First = Second) { 11999 Second = &LoadedSlices[CurrSlice]; 12000 12001 // If First is NULL, it means we start a new pair. 12002 // Get to the next slice. 12003 if (!First) 12004 continue; 12005 12006 EVT LoadedType = First->getLoadedType(); 12007 12008 // If the types of the slices are different, we cannot pair them. 12009 if (LoadedType != Second->getLoadedType()) 12010 continue; 12011 12012 // Check if the target supplies paired loads for this type. 12013 unsigned RequiredAlignment = 0; 12014 if (!TLI.hasPairedLoad(LoadedType, RequiredAlignment)) { 12015 // move to the next pair, this type is hopeless. 12016 Second = nullptr; 12017 continue; 12018 } 12019 // Check if we meet the alignment requirement. 12020 if (RequiredAlignment > First->getAlignment()) 12021 continue; 12022 12023 // Check that both loads are next to each other in memory. 12024 if (!areSlicesNextToEachOther(*First, *Second)) 12025 continue; 12026 12027 assert(GlobalLSCost.Loads > 0 && "We save more loads than we created!"); 12028 --GlobalLSCost.Loads; 12029 // Move to the next pair. 12030 Second = nullptr; 12031 } 12032 } 12033 12034 /// \brief Check the profitability of all involved LoadedSlice. 12035 /// Currently, it is considered profitable if there is exactly two 12036 /// involved slices (1) which are (2) next to each other in memory, and 12037 /// whose cost (\see LoadedSlice::Cost) is smaller than the original load (3). 12038 /// 12039 /// Note: The order of the elements in \p LoadedSlices may be modified, but not 12040 /// the elements themselves. 12041 /// 12042 /// FIXME: When the cost model will be mature enough, we can relax 12043 /// constraints (1) and (2). 12044 static bool isSlicingProfitable(SmallVectorImpl<LoadedSlice> &LoadedSlices, 12045 const APInt &UsedBits, bool ForCodeSize) { 12046 unsigned NumberOfSlices = LoadedSlices.size(); 12047 if (StressLoadSlicing) 12048 return NumberOfSlices > 1; 12049 12050 // Check (1). 12051 if (NumberOfSlices != 2) 12052 return false; 12053 12054 // Check (2). 12055 if (!areUsedBitsDense(UsedBits)) 12056 return false; 12057 12058 // Check (3). 12059 LoadedSlice::Cost OrigCost(ForCodeSize), GlobalSlicingCost(ForCodeSize); 12060 // The original code has one big load. 12061 OrigCost.Loads = 1; 12062 for (unsigned CurrSlice = 0; CurrSlice < NumberOfSlices; ++CurrSlice) { 12063 const LoadedSlice &LS = LoadedSlices[CurrSlice]; 12064 // Accumulate the cost of all the slices. 12065 LoadedSlice::Cost SliceCost(LS, ForCodeSize); 12066 GlobalSlicingCost += SliceCost; 12067 12068 // Account as cost in the original configuration the gain obtained 12069 // with the current slices. 12070 OrigCost.addSliceGain(LS); 12071 } 12072 12073 // If the target supports paired load, adjust the cost accordingly. 12074 adjustCostForPairing(LoadedSlices, GlobalSlicingCost); 12075 return OrigCost > GlobalSlicingCost; 12076 } 12077 12078 /// \brief If the given load, \p LI, is used only by trunc or trunc(lshr) 12079 /// operations, split it in the various pieces being extracted. 12080 /// 12081 /// This sort of thing is introduced by SROA. 12082 /// This slicing takes care not to insert overlapping loads. 12083 /// \pre LI is a simple load (i.e., not an atomic or volatile load). 12084 bool DAGCombiner::SliceUpLoad(SDNode *N) { 12085 if (Level < AfterLegalizeDAG) 12086 return false; 12087 12088 LoadSDNode *LD = cast<LoadSDNode>(N); 12089 if (LD->isVolatile() || !ISD::isNormalLoad(LD) || 12090 !LD->getValueType(0).isInteger()) 12091 return false; 12092 12093 // Keep track of already used bits to detect overlapping values. 12094 // In that case, we will just abort the transformation. 12095 APInt UsedBits(LD->getValueSizeInBits(0), 0); 12096 12097 SmallVector<LoadedSlice, 4> LoadedSlices; 12098 12099 // Check if this load is used as several smaller chunks of bits. 12100 // Basically, look for uses in trunc or trunc(lshr) and record a new chain 12101 // of computation for each trunc. 12102 for (SDNode::use_iterator UI = LD->use_begin(), UIEnd = LD->use_end(); 12103 UI != UIEnd; ++UI) { 12104 // Skip the uses of the chain. 12105 if (UI.getUse().getResNo() != 0) 12106 continue; 12107 12108 SDNode *User = *UI; 12109 unsigned Shift = 0; 12110 12111 // Check if this is a trunc(lshr). 12112 if (User->getOpcode() == ISD::SRL && User->hasOneUse() && 12113 isa<ConstantSDNode>(User->getOperand(1))) { 12114 Shift = User->getConstantOperandVal(1); 12115 User = *User->use_begin(); 12116 } 12117 12118 // At this point, User is a Truncate, iff we encountered, trunc or 12119 // trunc(lshr). 12120 if (User->getOpcode() != ISD::TRUNCATE) 12121 return false; 12122 12123 // The width of the type must be a power of 2 and greater than 8-bits. 12124 // Otherwise the load cannot be represented in LLVM IR. 12125 // Moreover, if we shifted with a non-8-bits multiple, the slice 12126 // will be across several bytes. We do not support that. 12127 unsigned Width = User->getValueSizeInBits(0); 12128 if (Width < 8 || !isPowerOf2_32(Width) || (Shift & 0x7)) 12129 return false; 12130 12131 // Build the slice for this chain of computations. 12132 LoadedSlice LS(User, LD, Shift, &DAG); 12133 APInt CurrentUsedBits = LS.getUsedBits(); 12134 12135 // Check if this slice overlaps with another. 12136 if ((CurrentUsedBits & UsedBits) != 0) 12137 return false; 12138 // Update the bits used globally. 12139 UsedBits |= CurrentUsedBits; 12140 12141 // Check if the new slice would be legal. 12142 if (!LS.isLegal()) 12143 return false; 12144 12145 // Record the slice. 12146 LoadedSlices.push_back(LS); 12147 } 12148 12149 // Abort slicing if it does not seem to be profitable. 12150 if (!isSlicingProfitable(LoadedSlices, UsedBits, ForCodeSize)) 12151 return false; 12152 12153 ++SlicedLoads; 12154 12155 // Rewrite each chain to use an independent load. 12156 // By construction, each chain can be represented by a unique load. 12157 12158 // Prepare the argument for the new token factor for all the slices. 12159 SmallVector<SDValue, 8> ArgChains; 12160 for (SmallVectorImpl<LoadedSlice>::const_iterator 12161 LSIt = LoadedSlices.begin(), 12162 LSItEnd = LoadedSlices.end(); 12163 LSIt != LSItEnd; ++LSIt) { 12164 SDValue SliceInst = LSIt->loadSlice(); 12165 CombineTo(LSIt->Inst, SliceInst, true); 12166 if (SliceInst.getOpcode() != ISD::LOAD) 12167 SliceInst = SliceInst.getOperand(0); 12168 assert(SliceInst->getOpcode() == ISD::LOAD && 12169 "It takes more than a zext to get to the loaded slice!!"); 12170 ArgChains.push_back(SliceInst.getValue(1)); 12171 } 12172 12173 SDValue Chain = DAG.getNode(ISD::TokenFactor, SDLoc(LD), MVT::Other, 12174 ArgChains); 12175 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain); 12176 AddToWorklist(Chain.getNode()); 12177 return true; 12178 } 12179 12180 /// Check to see if V is (and load (ptr), imm), where the load is having 12181 /// specific bytes cleared out. If so, return the byte size being masked out 12182 /// and the shift amount. 12183 static std::pair<unsigned, unsigned> 12184 CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) { 12185 std::pair<unsigned, unsigned> Result(0, 0); 12186 12187 // Check for the structure we're looking for. 12188 if (V->getOpcode() != ISD::AND || 12189 !isa<ConstantSDNode>(V->getOperand(1)) || 12190 !ISD::isNormalLoad(V->getOperand(0).getNode())) 12191 return Result; 12192 12193 // Check the chain and pointer. 12194 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0)); 12195 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer. 12196 12197 // The store should be chained directly to the load or be an operand of a 12198 // tokenfactor. 12199 if (LD == Chain.getNode()) 12200 ; // ok. 12201 else if (Chain->getOpcode() != ISD::TokenFactor) 12202 return Result; // Fail. 12203 else { 12204 bool isOk = false; 12205 for (const SDValue &ChainOp : Chain->op_values()) 12206 if (ChainOp.getNode() == LD) { 12207 isOk = true; 12208 break; 12209 } 12210 if (!isOk) return Result; 12211 } 12212 12213 // This only handles simple types. 12214 if (V.getValueType() != MVT::i16 && 12215 V.getValueType() != MVT::i32 && 12216 V.getValueType() != MVT::i64) 12217 return Result; 12218 12219 // Check the constant mask. Invert it so that the bits being masked out are 12220 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits 12221 // follow the sign bit for uniformity. 12222 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); 12223 unsigned NotMaskLZ = countLeadingZeros(NotMask); 12224 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte. 12225 unsigned NotMaskTZ = countTrailingZeros(NotMask); 12226 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte. 12227 if (NotMaskLZ == 64) return Result; // All zero mask. 12228 12229 // See if we have a continuous run of bits. If so, we have 0*1+0* 12230 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) 12231 return Result; 12232 12233 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64. 12234 if (V.getValueType() != MVT::i64 && NotMaskLZ) 12235 NotMaskLZ -= 64-V.getValueSizeInBits(); 12236 12237 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; 12238 switch (MaskedBytes) { 12239 case 1: 12240 case 2: 12241 case 4: break; 12242 default: return Result; // All one mask, or 5-byte mask. 12243 } 12244 12245 // Verify that the first bit starts at a multiple of mask so that the access 12246 // is aligned the same as the access width. 12247 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result; 12248 12249 Result.first = MaskedBytes; 12250 Result.second = NotMaskTZ/8; 12251 return Result; 12252 } 12253 12254 /// Check to see if IVal is something that provides a value as specified by 12255 /// MaskInfo. If so, replace the specified store with a narrower store of 12256 /// truncated IVal. 12257 static SDNode * 12258 ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo, 12259 SDValue IVal, StoreSDNode *St, 12260 DAGCombiner *DC) { 12261 unsigned NumBytes = MaskInfo.first; 12262 unsigned ByteShift = MaskInfo.second; 12263 SelectionDAG &DAG = DC->getDAG(); 12264 12265 // Check to see if IVal is all zeros in the part being masked in by the 'or' 12266 // that uses this. If not, this is not a replacement. 12267 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(), 12268 ByteShift*8, (ByteShift+NumBytes)*8); 12269 if (!DAG.MaskedValueIsZero(IVal, Mask)) return nullptr; 12270 12271 // Check that it is legal on the target to do this. It is legal if the new 12272 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type 12273 // legalization. 12274 MVT VT = MVT::getIntegerVT(NumBytes*8); 12275 if (!DC->isTypeLegal(VT)) 12276 return nullptr; 12277 12278 // Okay, we can do this! Replace the 'St' store with a store of IVal that is 12279 // shifted by ByteShift and truncated down to NumBytes. 12280 if (ByteShift) { 12281 SDLoc DL(IVal); 12282 IVal = DAG.getNode(ISD::SRL, DL, IVal.getValueType(), IVal, 12283 DAG.getConstant(ByteShift*8, DL, 12284 DC->getShiftAmountTy(IVal.getValueType()))); 12285 } 12286 12287 // Figure out the offset for the store and the alignment of the access. 12288 unsigned StOffset; 12289 unsigned NewAlign = St->getAlignment(); 12290 12291 if (DAG.getDataLayout().isLittleEndian()) 12292 StOffset = ByteShift; 12293 else 12294 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; 12295 12296 SDValue Ptr = St->getBasePtr(); 12297 if (StOffset) { 12298 SDLoc DL(IVal); 12299 Ptr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), 12300 Ptr, DAG.getConstant(StOffset, DL, Ptr.getValueType())); 12301 NewAlign = MinAlign(NewAlign, StOffset); 12302 } 12303 12304 // Truncate down to the new size. 12305 IVal = DAG.getNode(ISD::TRUNCATE, SDLoc(IVal), VT, IVal); 12306 12307 ++OpsNarrowed; 12308 return DAG 12309 .getStore(St->getChain(), SDLoc(St), IVal, Ptr, 12310 St->getPointerInfo().getWithOffset(StOffset), NewAlign) 12311 .getNode(); 12312 } 12313 12314 /// Look for sequence of load / op / store where op is one of 'or', 'xor', and 12315 /// 'and' of immediates. If 'op' is only touching some of the loaded bits, try 12316 /// narrowing the load and store if it would end up being a win for performance 12317 /// or code size. 12318 SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) { 12319 StoreSDNode *ST = cast<StoreSDNode>(N); 12320 if (ST->isVolatile()) 12321 return SDValue(); 12322 12323 SDValue Chain = ST->getChain(); 12324 SDValue Value = ST->getValue(); 12325 SDValue Ptr = ST->getBasePtr(); 12326 EVT VT = Value.getValueType(); 12327 12328 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse()) 12329 return SDValue(); 12330 12331 unsigned Opc = Value.getOpcode(); 12332 12333 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst 12334 // is a byte mask indicating a consecutive number of bytes, check to see if 12335 // Y is known to provide just those bytes. If so, we try to replace the 12336 // load + replace + store sequence with a single (narrower) store, which makes 12337 // the load dead. 12338 if (Opc == ISD::OR) { 12339 std::pair<unsigned, unsigned> MaskedLoad; 12340 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain); 12341 if (MaskedLoad.first) 12342 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad, 12343 Value.getOperand(1), ST,this)) 12344 return SDValue(NewST, 0); 12345 12346 // Or is commutative, so try swapping X and Y. 12347 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain); 12348 if (MaskedLoad.first) 12349 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad, 12350 Value.getOperand(0), ST,this)) 12351 return SDValue(NewST, 0); 12352 } 12353 12354 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) || 12355 Value.getOperand(1).getOpcode() != ISD::Constant) 12356 return SDValue(); 12357 12358 SDValue N0 = Value.getOperand(0); 12359 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() && 12360 Chain == SDValue(N0.getNode(), 1)) { 12361 LoadSDNode *LD = cast<LoadSDNode>(N0); 12362 if (LD->getBasePtr() != Ptr || 12363 LD->getPointerInfo().getAddrSpace() != 12364 ST->getPointerInfo().getAddrSpace()) 12365 return SDValue(); 12366 12367 // Find the type to narrow it the load / op / store to. 12368 SDValue N1 = Value.getOperand(1); 12369 unsigned BitWidth = N1.getValueSizeInBits(); 12370 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue(); 12371 if (Opc == ISD::AND) 12372 Imm ^= APInt::getAllOnesValue(BitWidth); 12373 if (Imm == 0 || Imm.isAllOnesValue()) 12374 return SDValue(); 12375 unsigned ShAmt = Imm.countTrailingZeros(); 12376 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1; 12377 unsigned NewBW = NextPowerOf2(MSB - ShAmt); 12378 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); 12379 // The narrowing should be profitable, the load/store operation should be 12380 // legal (or custom) and the store size should be equal to the NewVT width. 12381 while (NewBW < BitWidth && 12382 (NewVT.getStoreSizeInBits() != NewBW || 12383 !TLI.isOperationLegalOrCustom(Opc, NewVT) || 12384 !TLI.isNarrowingProfitable(VT, NewVT))) { 12385 NewBW = NextPowerOf2(NewBW); 12386 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); 12387 } 12388 if (NewBW >= BitWidth) 12389 return SDValue(); 12390 12391 // If the lsb changed does not start at the type bitwidth boundary, 12392 // start at the previous one. 12393 if (ShAmt % NewBW) 12394 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW; 12395 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, 12396 std::min(BitWidth, ShAmt + NewBW)); 12397 if ((Imm & Mask) == Imm) { 12398 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW); 12399 if (Opc == ISD::AND) 12400 NewImm ^= APInt::getAllOnesValue(NewBW); 12401 uint64_t PtrOff = ShAmt / 8; 12402 // For big endian targets, we need to adjust the offset to the pointer to 12403 // load the correct bytes. 12404 if (DAG.getDataLayout().isBigEndian()) 12405 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff; 12406 12407 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff); 12408 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext()); 12409 if (NewAlign < DAG.getDataLayout().getABITypeAlignment(NewVTTy)) 12410 return SDValue(); 12411 12412 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LD), 12413 Ptr.getValueType(), Ptr, 12414 DAG.getConstant(PtrOff, SDLoc(LD), 12415 Ptr.getValueType())); 12416 SDValue NewLD = 12417 DAG.getLoad(NewVT, SDLoc(N0), LD->getChain(), NewPtr, 12418 LD->getPointerInfo().getWithOffset(PtrOff), NewAlign, 12419 LD->getMemOperand()->getFlags(), LD->getAAInfo()); 12420 SDValue NewVal = DAG.getNode(Opc, SDLoc(Value), NewVT, NewLD, 12421 DAG.getConstant(NewImm, SDLoc(Value), 12422 NewVT)); 12423 SDValue NewST = 12424 DAG.getStore(Chain, SDLoc(N), NewVal, NewPtr, 12425 ST->getPointerInfo().getWithOffset(PtrOff), NewAlign); 12426 12427 AddToWorklist(NewPtr.getNode()); 12428 AddToWorklist(NewLD.getNode()); 12429 AddToWorklist(NewVal.getNode()); 12430 WorklistRemover DeadNodes(*this); 12431 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1)); 12432 ++OpsNarrowed; 12433 return NewST; 12434 } 12435 } 12436 12437 return SDValue(); 12438 } 12439 12440 /// For a given floating point load / store pair, if the load value isn't used 12441 /// by any other operations, then consider transforming the pair to integer 12442 /// load / store operations if the target deems the transformation profitable. 12443 SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) { 12444 StoreSDNode *ST = cast<StoreSDNode>(N); 12445 SDValue Chain = ST->getChain(); 12446 SDValue Value = ST->getValue(); 12447 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) && 12448 Value.hasOneUse() && 12449 Chain == SDValue(Value.getNode(), 1)) { 12450 LoadSDNode *LD = cast<LoadSDNode>(Value); 12451 EVT VT = LD->getMemoryVT(); 12452 if (!VT.isFloatingPoint() || 12453 VT != ST->getMemoryVT() || 12454 LD->isNonTemporal() || 12455 ST->isNonTemporal() || 12456 LD->getPointerInfo().getAddrSpace() != 0 || 12457 ST->getPointerInfo().getAddrSpace() != 0) 12458 return SDValue(); 12459 12460 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits()); 12461 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) || 12462 !TLI.isOperationLegal(ISD::STORE, IntVT) || 12463 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) || 12464 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT)) 12465 return SDValue(); 12466 12467 unsigned LDAlign = LD->getAlignment(); 12468 unsigned STAlign = ST->getAlignment(); 12469 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext()); 12470 unsigned ABIAlign = DAG.getDataLayout().getABITypeAlignment(IntVTTy); 12471 if (LDAlign < ABIAlign || STAlign < ABIAlign) 12472 return SDValue(); 12473 12474 SDValue NewLD = 12475 DAG.getLoad(IntVT, SDLoc(Value), LD->getChain(), LD->getBasePtr(), 12476 LD->getPointerInfo(), LDAlign); 12477 12478 SDValue NewST = 12479 DAG.getStore(NewLD.getValue(1), SDLoc(N), NewLD, ST->getBasePtr(), 12480 ST->getPointerInfo(), STAlign); 12481 12482 AddToWorklist(NewLD.getNode()); 12483 AddToWorklist(NewST.getNode()); 12484 WorklistRemover DeadNodes(*this); 12485 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1)); 12486 ++LdStFP2Int; 12487 return NewST; 12488 } 12489 12490 return SDValue(); 12491 } 12492 12493 // This is a helper function for visitMUL to check the profitability 12494 // of folding (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2). 12495 // MulNode is the original multiply, AddNode is (add x, c1), 12496 // and ConstNode is c2. 12497 // 12498 // If the (add x, c1) has multiple uses, we could increase 12499 // the number of adds if we make this transformation. 12500 // It would only be worth doing this if we can remove a 12501 // multiply in the process. Check for that here. 12502 // To illustrate: 12503 // (A + c1) * c3 12504 // (A + c2) * c3 12505 // We're checking for cases where we have common "c3 * A" expressions. 12506 bool DAGCombiner::isMulAddWithConstProfitable(SDNode *MulNode, 12507 SDValue &AddNode, 12508 SDValue &ConstNode) { 12509 APInt Val; 12510 12511 // If the add only has one use, this would be OK to do. 12512 if (AddNode.getNode()->hasOneUse()) 12513 return true; 12514 12515 // Walk all the users of the constant with which we're multiplying. 12516 for (SDNode *Use : ConstNode->uses()) { 12517 if (Use == MulNode) // This use is the one we're on right now. Skip it. 12518 continue; 12519 12520 if (Use->getOpcode() == ISD::MUL) { // We have another multiply use. 12521 SDNode *OtherOp; 12522 SDNode *MulVar = AddNode.getOperand(0).getNode(); 12523 12524 // OtherOp is what we're multiplying against the constant. 12525 if (Use->getOperand(0) == ConstNode) 12526 OtherOp = Use->getOperand(1).getNode(); 12527 else 12528 OtherOp = Use->getOperand(0).getNode(); 12529 12530 // Check to see if multiply is with the same operand of our "add". 12531 // 12532 // ConstNode = CONST 12533 // Use = ConstNode * A <-- visiting Use. OtherOp is A. 12534 // ... 12535 // AddNode = (A + c1) <-- MulVar is A. 12536 // = AddNode * ConstNode <-- current visiting instruction. 12537 // 12538 // If we make this transformation, we will have a common 12539 // multiply (ConstNode * A) that we can save. 12540 if (OtherOp == MulVar) 12541 return true; 12542 12543 // Now check to see if a future expansion will give us a common 12544 // multiply. 12545 // 12546 // ConstNode = CONST 12547 // AddNode = (A + c1) 12548 // ... = AddNode * ConstNode <-- current visiting instruction. 12549 // ... 12550 // OtherOp = (A + c2) 12551 // Use = OtherOp * ConstNode <-- visiting Use. 12552 // 12553 // If we make this transformation, we will have a common 12554 // multiply (CONST * A) after we also do the same transformation 12555 // to the "t2" instruction. 12556 if (OtherOp->getOpcode() == ISD::ADD && 12557 DAG.isConstantIntBuildVectorOrConstantInt(OtherOp->getOperand(1)) && 12558 OtherOp->getOperand(0).getNode() == MulVar) 12559 return true; 12560 } 12561 } 12562 12563 // Didn't find a case where this would be profitable. 12564 return false; 12565 } 12566 12567 static SDValue peekThroughBitcast(SDValue V) { 12568 while (V.getOpcode() == ISD::BITCAST) 12569 V = V.getOperand(0); 12570 return V; 12571 } 12572 12573 SDValue DAGCombiner::getMergeStoreChains(SmallVectorImpl<MemOpLink> &StoreNodes, 12574 unsigned NumStores) { 12575 SmallVector<SDValue, 8> Chains; 12576 SmallPtrSet<const SDNode *, 8> Visited; 12577 SDLoc StoreDL(StoreNodes[0].MemNode); 12578 12579 for (unsigned i = 0; i < NumStores; ++i) { 12580 Visited.insert(StoreNodes[i].MemNode); 12581 } 12582 12583 // don't include nodes that are children 12584 for (unsigned i = 0; i < NumStores; ++i) { 12585 if (Visited.count(StoreNodes[i].MemNode->getChain().getNode()) == 0) 12586 Chains.push_back(StoreNodes[i].MemNode->getChain()); 12587 } 12588 12589 assert(Chains.size() > 0 && "Chain should have generated a chain"); 12590 return DAG.getNode(ISD::TokenFactor, StoreDL, MVT::Other, Chains); 12591 } 12592 12593 bool DAGCombiner::MergeStoresOfConstantsOrVecElts( 12594 SmallVectorImpl<MemOpLink> &StoreNodes, EVT MemVT, unsigned NumStores, 12595 bool IsConstantSrc, bool UseVector, bool UseTrunc) { 12596 // Make sure we have something to merge. 12597 if (NumStores < 2) 12598 return false; 12599 12600 // The latest Node in the DAG. 12601 SDLoc DL(StoreNodes[0].MemNode); 12602 12603 int64_t ElementSizeBytes = MemVT.getSizeInBits() / 8; 12604 unsigned SizeInBits = NumStores * ElementSizeBytes * 8; 12605 unsigned NumMemElts = MemVT.isVector() ? MemVT.getVectorNumElements() : 1; 12606 12607 EVT StoreTy; 12608 if (UseVector) { 12609 unsigned Elts = NumStores * NumMemElts; 12610 // Get the type for the merged vector store. 12611 StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(), Elts); 12612 } else 12613 StoreTy = EVT::getIntegerVT(*DAG.getContext(), SizeInBits); 12614 12615 SDValue StoredVal; 12616 if (UseVector) { 12617 if (IsConstantSrc) { 12618 SmallVector<SDValue, 8> BuildVector; 12619 for (unsigned I = 0; I != NumStores; ++I) { 12620 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[I].MemNode); 12621 SDValue Val = St->getValue(); 12622 // If constant is of the wrong type, convert it now. 12623 if (MemVT != Val.getValueType()) { 12624 Val = peekThroughBitcast(Val); 12625 // Deal with constants of wrong size. 12626 if (ElementSizeBytes * 8 != Val.getValueSizeInBits()) { 12627 EVT IntMemVT = 12628 EVT::getIntegerVT(*DAG.getContext(), MemVT.getSizeInBits()); 12629 if (auto *CFP = dyn_cast<ConstantFPSDNode>(Val)) 12630 Val = DAG.getConstant( 12631 CFP->getValueAPF().bitcastToAPInt().zextOrTrunc( 12632 8 * ElementSizeBytes), 12633 SDLoc(CFP), IntMemVT); 12634 else if (auto *C = dyn_cast<ConstantSDNode>(Val)) 12635 Val = DAG.getConstant( 12636 C->getAPIntValue().zextOrTrunc(8 * ElementSizeBytes), 12637 SDLoc(C), IntMemVT); 12638 } 12639 // Make sure correctly size type is the correct type. 12640 Val = DAG.getBitcast(MemVT, Val); 12641 } 12642 BuildVector.push_back(Val); 12643 } 12644 StoredVal = DAG.getNode(MemVT.isVector() ? ISD::CONCAT_VECTORS 12645 : ISD::BUILD_VECTOR, 12646 DL, StoreTy, BuildVector); 12647 } else { 12648 SmallVector<SDValue, 8> Ops; 12649 for (unsigned i = 0; i < NumStores; ++i) { 12650 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); 12651 SDValue Val = peekThroughBitcast(St->getValue()); 12652 // All operands of BUILD_VECTOR / CONCAT_VECTOR must be of 12653 // type MemVT. If the underlying value is not the correct 12654 // type, but it is an extraction of an appropriate vector we 12655 // can recast Val to be of the correct type. This may require 12656 // converting between EXTRACT_VECTOR_ELT and 12657 // EXTRACT_SUBVECTOR. 12658 if ((MemVT != Val.getValueType()) && 12659 (Val.getOpcode() == ISD::EXTRACT_VECTOR_ELT || 12660 Val.getOpcode() == ISD::EXTRACT_SUBVECTOR)) { 12661 SDValue Vec = Val.getOperand(0); 12662 EVT MemVTScalarTy = MemVT.getScalarType(); 12663 // We may need to add a bitcast here to get types to line up. 12664 if (MemVTScalarTy != Vec.getValueType()) { 12665 unsigned Elts = Vec.getValueType().getSizeInBits() / 12666 MemVTScalarTy.getSizeInBits(); 12667 EVT NewVecTy = 12668 EVT::getVectorVT(*DAG.getContext(), MemVTScalarTy, Elts); 12669 Vec = DAG.getBitcast(NewVecTy, Vec); 12670 } 12671 auto OpC = (MemVT.isVector()) ? ISD::EXTRACT_SUBVECTOR 12672 : ISD::EXTRACT_VECTOR_ELT; 12673 Val = DAG.getNode(OpC, SDLoc(Val), MemVT, Vec, Val.getOperand(1)); 12674 } 12675 Ops.push_back(Val); 12676 } 12677 12678 // Build the extracted vector elements back into a vector. 12679 StoredVal = DAG.getNode(MemVT.isVector() ? ISD::CONCAT_VECTORS 12680 : ISD::BUILD_VECTOR, 12681 DL, StoreTy, Ops); 12682 } 12683 } else { 12684 // We should always use a vector store when merging extracted vector 12685 // elements, so this path implies a store of constants. 12686 assert(IsConstantSrc && "Merged vector elements should use vector store"); 12687 12688 APInt StoreInt(SizeInBits, 0); 12689 12690 // Construct a single integer constant which is made of the smaller 12691 // constant inputs. 12692 bool IsLE = DAG.getDataLayout().isLittleEndian(); 12693 for (unsigned i = 0; i < NumStores; ++i) { 12694 unsigned Idx = IsLE ? (NumStores - 1 - i) : i; 12695 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode); 12696 12697 SDValue Val = St->getValue(); 12698 StoreInt <<= ElementSizeBytes * 8; 12699 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) { 12700 StoreInt |= C->getAPIntValue().zextOrTrunc(SizeInBits); 12701 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) { 12702 StoreInt |= C->getValueAPF().bitcastToAPInt().zextOrTrunc(SizeInBits); 12703 } else { 12704 llvm_unreachable("Invalid constant element type"); 12705 } 12706 } 12707 12708 // Create the new Load and Store operations. 12709 StoredVal = DAG.getConstant(StoreInt, DL, StoreTy); 12710 } 12711 12712 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode; 12713 SDValue NewChain = getMergeStoreChains(StoreNodes, NumStores); 12714 12715 // make sure we use trunc store if it's necessary to be legal. 12716 SDValue NewStore; 12717 if (!UseTrunc) { 12718 NewStore = DAG.getStore(NewChain, DL, StoredVal, FirstInChain->getBasePtr(), 12719 FirstInChain->getPointerInfo(), 12720 FirstInChain->getAlignment()); 12721 } else { // Must be realized as a trunc store 12722 EVT LegalizedStoredValueTy = 12723 TLI.getTypeToTransformTo(*DAG.getContext(), StoredVal.getValueType()); 12724 unsigned LegalizedStoreSize = LegalizedStoredValueTy.getSizeInBits(); 12725 ConstantSDNode *C = cast<ConstantSDNode>(StoredVal); 12726 SDValue ExtendedStoreVal = 12727 DAG.getConstant(C->getAPIntValue().zextOrTrunc(LegalizedStoreSize), DL, 12728 LegalizedStoredValueTy); 12729 NewStore = DAG.getTruncStore( 12730 NewChain, DL, ExtendedStoreVal, FirstInChain->getBasePtr(), 12731 FirstInChain->getPointerInfo(), StoredVal.getValueType() /*TVT*/, 12732 FirstInChain->getAlignment(), 12733 FirstInChain->getMemOperand()->getFlags()); 12734 } 12735 12736 // Replace all merged stores with the new store. 12737 for (unsigned i = 0; i < NumStores; ++i) 12738 CombineTo(StoreNodes[i].MemNode, NewStore); 12739 12740 AddToWorklist(NewChain.getNode()); 12741 return true; 12742 } 12743 12744 void DAGCombiner::getStoreMergeCandidates( 12745 StoreSDNode *St, SmallVectorImpl<MemOpLink> &StoreNodes) { 12746 // This holds the base pointer, index, and the offset in bytes from the base 12747 // pointer. 12748 BaseIndexOffset BasePtr = BaseIndexOffset::match(St->getBasePtr(), DAG); 12749 EVT MemVT = St->getMemoryVT(); 12750 12751 SDValue Val = peekThroughBitcast(St->getValue()); 12752 // We must have a base and an offset. 12753 if (!BasePtr.getBase().getNode()) 12754 return; 12755 12756 // Do not handle stores to undef base pointers. 12757 if (BasePtr.getBase().isUndef()) 12758 return; 12759 12760 bool IsConstantSrc = isa<ConstantSDNode>(Val) || isa<ConstantFPSDNode>(Val); 12761 bool IsExtractVecSrc = (Val.getOpcode() == ISD::EXTRACT_VECTOR_ELT || 12762 Val.getOpcode() == ISD::EXTRACT_SUBVECTOR); 12763 bool IsLoadSrc = isa<LoadSDNode>(Val); 12764 BaseIndexOffset LBasePtr; 12765 // Match on loadbaseptr if relevant. 12766 EVT LoadVT; 12767 if (IsLoadSrc) { 12768 auto *Ld = cast<LoadSDNode>(Val); 12769 LBasePtr = BaseIndexOffset::match(Ld->getBasePtr(), DAG); 12770 LoadVT = Ld->getMemoryVT(); 12771 // Load and store should be the same type. 12772 if (MemVT != LoadVT) 12773 return; 12774 } 12775 auto CandidateMatch = [&](StoreSDNode *Other, BaseIndexOffset &Ptr, 12776 int64_t &Offset) -> bool { 12777 if (Other->isVolatile() || Other->isIndexed()) 12778 return false; 12779 SDValue Val = peekThroughBitcast(Other->getValue()); 12780 // Allow merging constants of different types as integers. 12781 bool NoTypeMatch = (MemVT.isInteger()) ? !MemVT.bitsEq(Other->getMemoryVT()) 12782 : Other->getMemoryVT() != MemVT; 12783 if (IsLoadSrc) { 12784 if (NoTypeMatch) 12785 return false; 12786 // The Load's Base Ptr must also match 12787 if (LoadSDNode *OtherLd = dyn_cast<LoadSDNode>(Val)) { 12788 auto LPtr = BaseIndexOffset::match(OtherLd->getBasePtr(), DAG); 12789 if (LoadVT != OtherLd->getMemoryVT()) 12790 return false; 12791 if (!(LBasePtr.equalBaseIndex(LPtr, DAG))) 12792 return false; 12793 } else 12794 return false; 12795 } 12796 if (IsConstantSrc) { 12797 if (NoTypeMatch) 12798 return false; 12799 if (!(isa<ConstantSDNode>(Val) || isa<ConstantFPSDNode>(Val))) 12800 return false; 12801 } 12802 if (IsExtractVecSrc) { 12803 // Do not merge truncated stores here. 12804 if (Other->isTruncatingStore()) 12805 return false; 12806 if (!MemVT.bitsEq(Val.getValueType())) 12807 return false; 12808 if (Val.getOpcode() != ISD::EXTRACT_VECTOR_ELT && 12809 Val.getOpcode() != ISD::EXTRACT_SUBVECTOR) 12810 return false; 12811 } 12812 Ptr = BaseIndexOffset::match(Other->getBasePtr(), DAG); 12813 return (BasePtr.equalBaseIndex(Ptr, DAG, Offset)); 12814 }; 12815 12816 // We looking for a root node which is an ancestor to all mergable 12817 // stores. We search up through a load, to our root and then down 12818 // through all children. For instance we will find Store{1,2,3} if 12819 // St is Store1, Store2. or Store3 where the root is not a load 12820 // which always true for nonvolatile ops. TODO: Expand 12821 // the search to find all valid candidates through multiple layers of loads. 12822 // 12823 // Root 12824 // |-------|-------| 12825 // Load Load Store3 12826 // | | 12827 // Store1 Store2 12828 // 12829 // FIXME: We should be able to climb and 12830 // descend TokenFactors to find candidates as well. 12831 12832 SDNode *RootNode = (St->getChain()).getNode(); 12833 12834 if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(RootNode)) { 12835 RootNode = Ldn->getChain().getNode(); 12836 for (auto I = RootNode->use_begin(), E = RootNode->use_end(); I != E; ++I) 12837 if (I.getOperandNo() == 0 && isa<LoadSDNode>(*I)) // walk down chain 12838 for (auto I2 = (*I)->use_begin(), E2 = (*I)->use_end(); I2 != E2; ++I2) 12839 if (I2.getOperandNo() == 0) 12840 if (StoreSDNode *OtherST = dyn_cast<StoreSDNode>(*I2)) { 12841 BaseIndexOffset Ptr; 12842 int64_t PtrDiff; 12843 if (CandidateMatch(OtherST, Ptr, PtrDiff)) 12844 StoreNodes.push_back(MemOpLink(OtherST, PtrDiff)); 12845 } 12846 } else 12847 for (auto I = RootNode->use_begin(), E = RootNode->use_end(); I != E; ++I) 12848 if (I.getOperandNo() == 0) 12849 if (StoreSDNode *OtherST = dyn_cast<StoreSDNode>(*I)) { 12850 BaseIndexOffset Ptr; 12851 int64_t PtrDiff; 12852 if (CandidateMatch(OtherST, Ptr, PtrDiff)) 12853 StoreNodes.push_back(MemOpLink(OtherST, PtrDiff)); 12854 } 12855 } 12856 12857 // We need to check that merging these stores does not cause a loop in 12858 // the DAG. Any store candidate may depend on another candidate 12859 // indirectly through its operand (we already consider dependencies 12860 // through the chain). Check in parallel by searching up from 12861 // non-chain operands of candidates. 12862 bool DAGCombiner::checkMergeStoreCandidatesForDependencies( 12863 SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores) { 12864 // FIXME: We should be able to truncate a full search of 12865 // predecessors by doing a BFS and keeping tabs the originating 12866 // stores from which worklist nodes come from in a similar way to 12867 // TokenFactor simplfication. 12868 12869 SmallPtrSet<const SDNode *, 16> Visited; 12870 SmallVector<const SDNode *, 8> Worklist; 12871 unsigned int Max = 8192; 12872 // Search Ops of store candidates. 12873 for (unsigned i = 0; i < NumStores; ++i) { 12874 SDNode *n = StoreNodes[i].MemNode; 12875 // Potential loops may happen only through non-chain operands 12876 for (unsigned j = 1; j < n->getNumOperands(); ++j) 12877 Worklist.push_back(n->getOperand(j).getNode()); 12878 } 12879 // Search through DAG. We can stop early if we find a store node. 12880 for (unsigned i = 0; i < NumStores; ++i) { 12881 if (SDNode::hasPredecessorHelper(StoreNodes[i].MemNode, Visited, Worklist, 12882 Max)) 12883 return false; 12884 // Check if we ended early, failing conservatively if so. 12885 if (Visited.size() >= Max) 12886 return false; 12887 } 12888 return true; 12889 } 12890 12891 bool DAGCombiner::MergeConsecutiveStores(StoreSDNode *St) { 12892 if (OptLevel == CodeGenOpt::None) 12893 return false; 12894 12895 EVT MemVT = St->getMemoryVT(); 12896 int64_t ElementSizeBytes = MemVT.getSizeInBits() / 8; 12897 unsigned NumMemElts = MemVT.isVector() ? MemVT.getVectorNumElements() : 1; 12898 12899 if (MemVT.getSizeInBits() * 2 > MaximumLegalStoreInBits) 12900 return false; 12901 12902 bool NoVectors = DAG.getMachineFunction().getFunction()->hasFnAttribute( 12903 Attribute::NoImplicitFloat); 12904 12905 // This function cannot currently deal with non-byte-sized memory sizes. 12906 if (ElementSizeBytes * 8 != MemVT.getSizeInBits()) 12907 return false; 12908 12909 if (!MemVT.isSimple()) 12910 return false; 12911 12912 // Perform an early exit check. Do not bother looking at stored values that 12913 // are not constants, loads, or extracted vector elements. 12914 SDValue StoredVal = peekThroughBitcast(St->getValue()); 12915 bool IsLoadSrc = isa<LoadSDNode>(StoredVal); 12916 bool IsConstantSrc = isa<ConstantSDNode>(StoredVal) || 12917 isa<ConstantFPSDNode>(StoredVal); 12918 bool IsExtractVecSrc = (StoredVal.getOpcode() == ISD::EXTRACT_VECTOR_ELT || 12919 StoredVal.getOpcode() == ISD::EXTRACT_SUBVECTOR); 12920 12921 if (!IsConstantSrc && !IsLoadSrc && !IsExtractVecSrc) 12922 return false; 12923 12924 SmallVector<MemOpLink, 8> StoreNodes; 12925 // Find potential store merge candidates by searching through chain sub-DAG 12926 getStoreMergeCandidates(St, StoreNodes); 12927 12928 // Check if there is anything to merge. 12929 if (StoreNodes.size() < 2) 12930 return false; 12931 12932 // Sort the memory operands according to their distance from the 12933 // base pointer. 12934 std::sort(StoreNodes.begin(), StoreNodes.end(), 12935 [](MemOpLink LHS, MemOpLink RHS) { 12936 return LHS.OffsetFromBase < RHS.OffsetFromBase; 12937 }); 12938 12939 // Store Merge attempts to merge the lowest stores. This generally 12940 // works out as if successful, as the remaining stores are checked 12941 // after the first collection of stores is merged. However, in the 12942 // case that a non-mergeable store is found first, e.g., {p[-2], 12943 // p[0], p[1], p[2], p[3]}, we would fail and miss the subsequent 12944 // mergeable cases. To prevent this, we prune such stores from the 12945 // front of StoreNodes here. 12946 12947 bool RV = false; 12948 while (StoreNodes.size() > 1) { 12949 unsigned StartIdx = 0; 12950 while ((StartIdx + 1 < StoreNodes.size()) && 12951 StoreNodes[StartIdx].OffsetFromBase + ElementSizeBytes != 12952 StoreNodes[StartIdx + 1].OffsetFromBase) 12953 ++StartIdx; 12954 12955 // Bail if we don't have enough candidates to merge. 12956 if (StartIdx + 1 >= StoreNodes.size()) 12957 return RV; 12958 12959 if (StartIdx) 12960 StoreNodes.erase(StoreNodes.begin(), StoreNodes.begin() + StartIdx); 12961 12962 // Scan the memory operations on the chain and find the first 12963 // non-consecutive store memory address. 12964 unsigned NumConsecutiveStores = 1; 12965 int64_t StartAddress = StoreNodes[0].OffsetFromBase; 12966 // Check that the addresses are consecutive starting from the second 12967 // element in the list of stores. 12968 for (unsigned i = 1, e = StoreNodes.size(); i < e; ++i) { 12969 int64_t CurrAddress = StoreNodes[i].OffsetFromBase; 12970 if (CurrAddress - StartAddress != (ElementSizeBytes * i)) 12971 break; 12972 NumConsecutiveStores = i + 1; 12973 } 12974 12975 if (NumConsecutiveStores < 2) { 12976 StoreNodes.erase(StoreNodes.begin(), 12977 StoreNodes.begin() + NumConsecutiveStores); 12978 continue; 12979 } 12980 12981 // Check that we can merge these candidates without causing a cycle 12982 if (!checkMergeStoreCandidatesForDependencies(StoreNodes, 12983 NumConsecutiveStores)) { 12984 StoreNodes.erase(StoreNodes.begin(), 12985 StoreNodes.begin() + NumConsecutiveStores); 12986 continue; 12987 } 12988 12989 // The node with the lowest store address. 12990 LLVMContext &Context = *DAG.getContext(); 12991 const DataLayout &DL = DAG.getDataLayout(); 12992 12993 // Store the constants into memory as one consecutive store. 12994 if (IsConstantSrc) { 12995 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode; 12996 unsigned FirstStoreAS = FirstInChain->getAddressSpace(); 12997 unsigned FirstStoreAlign = FirstInChain->getAlignment(); 12998 unsigned LastLegalType = 1; 12999 unsigned LastLegalVectorType = 1; 13000 bool LastIntegerTrunc = false; 13001 bool NonZero = false; 13002 unsigned FirstZeroAfterNonZero = NumConsecutiveStores; 13003 for (unsigned i = 0; i < NumConsecutiveStores; ++i) { 13004 StoreSDNode *ST = cast<StoreSDNode>(StoreNodes[i].MemNode); 13005 SDValue StoredVal = ST->getValue(); 13006 bool IsElementZero = false; 13007 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) 13008 IsElementZero = C->isNullValue(); 13009 else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) 13010 IsElementZero = C->getConstantFPValue()->isNullValue(); 13011 if (IsElementZero) { 13012 if (NonZero && FirstZeroAfterNonZero == NumConsecutiveStores) 13013 FirstZeroAfterNonZero = i; 13014 } 13015 NonZero |= !IsElementZero; 13016 13017 // Find a legal type for the constant store. 13018 unsigned SizeInBits = (i + 1) * ElementSizeBytes * 8; 13019 EVT StoreTy = EVT::getIntegerVT(Context, SizeInBits); 13020 bool IsFast = false; 13021 if (TLI.isTypeLegal(StoreTy) && 13022 TLI.canMergeStoresTo(FirstStoreAS, StoreTy, DAG) && 13023 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstStoreAS, 13024 FirstStoreAlign, &IsFast) && 13025 IsFast) { 13026 LastIntegerTrunc = false; 13027 LastLegalType = i + 1; 13028 // Or check whether a truncstore is legal. 13029 } else if (TLI.getTypeAction(Context, StoreTy) == 13030 TargetLowering::TypePromoteInteger) { 13031 EVT LegalizedStoredValueTy = 13032 TLI.getTypeToTransformTo(Context, StoredVal.getValueType()); 13033 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy) && 13034 TLI.canMergeStoresTo(FirstStoreAS, LegalizedStoredValueTy, DAG) && 13035 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstStoreAS, 13036 FirstStoreAlign, &IsFast) && 13037 IsFast) { 13038 LastIntegerTrunc = true; 13039 LastLegalType = i + 1; 13040 } 13041 } 13042 13043 // We only use vectors if the constant is known to be zero or the target 13044 // allows it and the function is not marked with the noimplicitfloat 13045 // attribute. 13046 if ((!NonZero || 13047 TLI.storeOfVectorConstantIsCheap(MemVT, i + 1, FirstStoreAS)) && 13048 !NoVectors) { 13049 // Find a legal type for the vector store. 13050 unsigned Elts = (i + 1) * NumMemElts; 13051 EVT Ty = EVT::getVectorVT(Context, MemVT.getScalarType(), Elts); 13052 if (TLI.isTypeLegal(Ty) && 13053 TLI.canMergeStoresTo(FirstStoreAS, Ty, DAG) && 13054 TLI.allowsMemoryAccess(Context, DL, Ty, FirstStoreAS, 13055 FirstStoreAlign, &IsFast) && 13056 IsFast) 13057 LastLegalVectorType = i + 1; 13058 } 13059 } 13060 13061 bool UseVector = (LastLegalVectorType > LastLegalType) && !NoVectors; 13062 unsigned NumElem = (UseVector) ? LastLegalVectorType : LastLegalType; 13063 13064 // Check if we found a legal integer type that creates a meaningful merge. 13065 if (NumElem < 2) { 13066 // We know that candidate stores are in order and of correct 13067 // shape. While there is no mergeable sequence from the 13068 // beginning one may start later in the sequence. The only 13069 // reason a merge of size N could have failed where another of 13070 // the same size would not have, is if the alignment has 13071 // improved or we've dropped a non-zero value. Drop as many 13072 // candidates as we can here. 13073 unsigned NumSkip = 1; 13074 while ( 13075 (NumSkip < NumConsecutiveStores) && 13076 (NumSkip < FirstZeroAfterNonZero) && 13077 (StoreNodes[NumSkip].MemNode->getAlignment() <= FirstStoreAlign)) { 13078 NumSkip++; 13079 } 13080 StoreNodes.erase(StoreNodes.begin(), StoreNodes.begin() + NumSkip); 13081 continue; 13082 } 13083 13084 bool Merged = MergeStoresOfConstantsOrVecElts( 13085 StoreNodes, MemVT, NumElem, true, UseVector, LastIntegerTrunc); 13086 RV |= Merged; 13087 13088 // Remove merged stores for next iteration. 13089 StoreNodes.erase(StoreNodes.begin(), StoreNodes.begin() + NumElem); 13090 continue; 13091 } 13092 13093 // When extracting multiple vector elements, try to store them 13094 // in one vector store rather than a sequence of scalar stores. 13095 if (IsExtractVecSrc) { 13096 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode; 13097 unsigned FirstStoreAS = FirstInChain->getAddressSpace(); 13098 unsigned FirstStoreAlign = FirstInChain->getAlignment(); 13099 unsigned NumStoresToMerge = 1; 13100 for (unsigned i = 0; i < NumConsecutiveStores; ++i) { 13101 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); 13102 SDValue StVal = peekThroughBitcast(St->getValue()); 13103 // This restriction could be loosened. 13104 // Bail out if any stored values are not elements extracted from a 13105 // vector. It should be possible to handle mixed sources, but load 13106 // sources need more careful handling (see the block of code below that 13107 // handles consecutive loads). 13108 if (StVal.getOpcode() != ISD::EXTRACT_VECTOR_ELT && 13109 StVal.getOpcode() != ISD::EXTRACT_SUBVECTOR) 13110 return RV; 13111 13112 // Find a legal type for the vector store. 13113 unsigned Elts = (i + 1) * NumMemElts; 13114 EVT Ty = 13115 EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(), Elts); 13116 bool IsFast; 13117 if (TLI.isTypeLegal(Ty) && 13118 TLI.canMergeStoresTo(FirstStoreAS, Ty, DAG) && 13119 TLI.allowsMemoryAccess(Context, DL, Ty, FirstStoreAS, 13120 FirstStoreAlign, &IsFast) && 13121 IsFast) 13122 NumStoresToMerge = i + 1; 13123 } 13124 13125 // Check if we found a legal integer type that creates a meaningful merge. 13126 if (NumStoresToMerge < 2) { 13127 // We know that candidate stores are in order and of correct 13128 // shape. While there is no mergeable sequence from the 13129 // beginning one may start later in the sequence. The only 13130 // reason a merge of size N could have failed where another of 13131 // the same size would not have, is if the alignment has 13132 // improved. Drop as many candidates as we can here. 13133 unsigned NumSkip = 1; 13134 while ((NumSkip < NumConsecutiveStores) && 13135 (StoreNodes[NumSkip].MemNode->getAlignment() <= FirstStoreAlign)) 13136 NumSkip++; 13137 13138 StoreNodes.erase(StoreNodes.begin(), StoreNodes.begin() + NumSkip); 13139 continue; 13140 } 13141 13142 bool Merged = MergeStoresOfConstantsOrVecElts( 13143 StoreNodes, MemVT, NumStoresToMerge, false, true, false); 13144 if (!Merged) { 13145 StoreNodes.erase(StoreNodes.begin(), 13146 StoreNodes.begin() + NumStoresToMerge); 13147 continue; 13148 } 13149 // Remove merged stores for next iteration. 13150 StoreNodes.erase(StoreNodes.begin(), 13151 StoreNodes.begin() + NumStoresToMerge); 13152 RV = true; 13153 continue; 13154 } 13155 13156 // Below we handle the case of multiple consecutive stores that 13157 // come from multiple consecutive loads. We merge them into a single 13158 // wide load and a single wide store. 13159 13160 // Look for load nodes which are used by the stored values. 13161 SmallVector<MemOpLink, 8> LoadNodes; 13162 13163 // Find acceptable loads. Loads need to have the same chain (token factor), 13164 // must not be zext, volatile, indexed, and they must be consecutive. 13165 BaseIndexOffset LdBasePtr; 13166 for (unsigned i = 0; i < NumConsecutiveStores; ++i) { 13167 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); 13168 SDValue Val = peekThroughBitcast(St->getValue()); 13169 LoadSDNode *Ld = dyn_cast<LoadSDNode>(Val); 13170 if (!Ld) 13171 break; 13172 13173 // Loads must only have one use. 13174 if (!Ld->hasNUsesOfValue(1, 0)) 13175 break; 13176 13177 // The memory operands must not be volatile. 13178 if (Ld->isVolatile() || Ld->isIndexed()) 13179 break; 13180 13181 // The stored memory type must be the same. 13182 if (Ld->getMemoryVT() != MemVT) 13183 break; 13184 13185 BaseIndexOffset LdPtr = BaseIndexOffset::match(Ld->getBasePtr(), DAG); 13186 // If this is not the first ptr that we check. 13187 int64_t LdOffset = 0; 13188 if (LdBasePtr.getBase().getNode()) { 13189 // The base ptr must be the same. 13190 if (!LdBasePtr.equalBaseIndex(LdPtr, DAG, LdOffset)) 13191 break; 13192 } else { 13193 // Check that all other base pointers are the same as this one. 13194 LdBasePtr = LdPtr; 13195 } 13196 13197 // We found a potential memory operand to merge. 13198 LoadNodes.push_back(MemOpLink(Ld, LdOffset)); 13199 } 13200 13201 if (LoadNodes.size() < 2) { 13202 StoreNodes.erase(StoreNodes.begin(), StoreNodes.begin() + 1); 13203 continue; 13204 } 13205 13206 // If we have load/store pair instructions and we only have two values, 13207 // don't bother merging. 13208 unsigned RequiredAlignment; 13209 if (LoadNodes.size() == 2 && TLI.hasPairedLoad(MemVT, RequiredAlignment) && 13210 StoreNodes[0].MemNode->getAlignment() >= RequiredAlignment) { 13211 StoreNodes.erase(StoreNodes.begin(), StoreNodes.begin() + 2); 13212 continue; 13213 } 13214 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode; 13215 unsigned FirstStoreAS = FirstInChain->getAddressSpace(); 13216 unsigned FirstStoreAlign = FirstInChain->getAlignment(); 13217 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode); 13218 unsigned FirstLoadAS = FirstLoad->getAddressSpace(); 13219 unsigned FirstLoadAlign = FirstLoad->getAlignment(); 13220 13221 // Scan the memory operations on the chain and find the first 13222 // non-consecutive load memory address. These variables hold the index in 13223 // the store node array. 13224 unsigned LastConsecutiveLoad = 1; 13225 // This variable refers to the size and not index in the array. 13226 unsigned LastLegalVectorType = 1; 13227 unsigned LastLegalIntegerType = 1; 13228 bool isDereferenceable = true; 13229 bool DoIntegerTruncate = false; 13230 StartAddress = LoadNodes[0].OffsetFromBase; 13231 SDValue FirstChain = FirstLoad->getChain(); 13232 for (unsigned i = 1; i < LoadNodes.size(); ++i) { 13233 // All loads must share the same chain. 13234 if (LoadNodes[i].MemNode->getChain() != FirstChain) 13235 break; 13236 13237 int64_t CurrAddress = LoadNodes[i].OffsetFromBase; 13238 if (CurrAddress - StartAddress != (ElementSizeBytes * i)) 13239 break; 13240 LastConsecutiveLoad = i; 13241 13242 if (isDereferenceable && !LoadNodes[i].MemNode->isDereferenceable()) 13243 isDereferenceable = false; 13244 13245 // Find a legal type for the vector store. 13246 unsigned Elts = (i + 1) * NumMemElts; 13247 EVT StoreTy = EVT::getVectorVT(Context, MemVT.getScalarType(), Elts); 13248 13249 bool IsFastSt, IsFastLd; 13250 if (TLI.isTypeLegal(StoreTy) && 13251 TLI.canMergeStoresTo(FirstStoreAS, StoreTy, DAG) && 13252 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstStoreAS, 13253 FirstStoreAlign, &IsFastSt) && 13254 IsFastSt && 13255 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstLoadAS, 13256 FirstLoadAlign, &IsFastLd) && 13257 IsFastLd) { 13258 LastLegalVectorType = i + 1; 13259 } 13260 13261 // Find a legal type for the integer store. 13262 unsigned SizeInBits = (i + 1) * ElementSizeBytes * 8; 13263 StoreTy = EVT::getIntegerVT(Context, SizeInBits); 13264 if (TLI.isTypeLegal(StoreTy) && 13265 TLI.canMergeStoresTo(FirstStoreAS, StoreTy, DAG) && 13266 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstStoreAS, 13267 FirstStoreAlign, &IsFastSt) && 13268 IsFastSt && 13269 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstLoadAS, 13270 FirstLoadAlign, &IsFastLd) && 13271 IsFastLd) { 13272 LastLegalIntegerType = i + 1; 13273 DoIntegerTruncate = false; 13274 // Or check whether a truncstore and extload is legal. 13275 } else if (TLI.getTypeAction(Context, StoreTy) == 13276 TargetLowering::TypePromoteInteger) { 13277 EVT LegalizedStoredValueTy = TLI.getTypeToTransformTo(Context, StoreTy); 13278 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy) && 13279 TLI.canMergeStoresTo(FirstStoreAS, LegalizedStoredValueTy, DAG) && 13280 TLI.isLoadExtLegal(ISD::ZEXTLOAD, LegalizedStoredValueTy, 13281 StoreTy) && 13282 TLI.isLoadExtLegal(ISD::SEXTLOAD, LegalizedStoredValueTy, 13283 StoreTy) && 13284 TLI.isLoadExtLegal(ISD::EXTLOAD, LegalizedStoredValueTy, StoreTy) && 13285 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstStoreAS, 13286 FirstStoreAlign, &IsFastSt) && 13287 IsFastSt && 13288 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstLoadAS, 13289 FirstLoadAlign, &IsFastLd) && 13290 IsFastLd) { 13291 LastLegalIntegerType = i + 1; 13292 DoIntegerTruncate = true; 13293 } 13294 } 13295 } 13296 13297 // Only use vector types if the vector type is larger than the integer type. 13298 // If they are the same, use integers. 13299 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType && !NoVectors; 13300 unsigned LastLegalType = 13301 std::max(LastLegalVectorType, LastLegalIntegerType); 13302 13303 // We add +1 here because the LastXXX variables refer to location while 13304 // the NumElem refers to array/index size. 13305 unsigned NumElem = std::min(NumConsecutiveStores, LastConsecutiveLoad + 1); 13306 NumElem = std::min(LastLegalType, NumElem); 13307 13308 if (NumElem < 2) { 13309 // We know that candidate stores are in order and of correct 13310 // shape. While there is no mergeable sequence from the 13311 // beginning one may start later in the sequence. The only 13312 // reason a merge of size N could have failed where another of 13313 // the same size would not have is if the alignment or either 13314 // the load or store has improved. Drop as many candidates as we 13315 // can here. 13316 unsigned NumSkip = 1; 13317 while ((NumSkip < LoadNodes.size()) && 13318 (LoadNodes[NumSkip].MemNode->getAlignment() <= FirstLoadAlign) && 13319 (StoreNodes[NumSkip].MemNode->getAlignment() <= FirstStoreAlign)) 13320 NumSkip++; 13321 StoreNodes.erase(StoreNodes.begin(), StoreNodes.begin() + NumSkip); 13322 continue; 13323 } 13324 13325 // Find if it is better to use vectors or integers to load and store 13326 // to memory. 13327 EVT JointMemOpVT; 13328 if (UseVectorTy) { 13329 // Find a legal type for the vector store. 13330 unsigned Elts = NumElem * NumMemElts; 13331 JointMemOpVT = EVT::getVectorVT(Context, MemVT.getScalarType(), Elts); 13332 } else { 13333 unsigned SizeInBits = NumElem * ElementSizeBytes * 8; 13334 JointMemOpVT = EVT::getIntegerVT(Context, SizeInBits); 13335 } 13336 13337 SDLoc LoadDL(LoadNodes[0].MemNode); 13338 SDLoc StoreDL(StoreNodes[0].MemNode); 13339 13340 // The merged loads are required to have the same incoming chain, so 13341 // using the first's chain is acceptable. 13342 13343 SDValue NewStoreChain = getMergeStoreChains(StoreNodes, NumElem); 13344 AddToWorklist(NewStoreChain.getNode()); 13345 13346 MachineMemOperand::Flags MMOFlags = isDereferenceable ? 13347 MachineMemOperand::MODereferenceable: 13348 MachineMemOperand::MONone; 13349 13350 SDValue NewLoad, NewStore; 13351 if (UseVectorTy || !DoIntegerTruncate) { 13352 NewLoad = DAG.getLoad(JointMemOpVT, LoadDL, FirstLoad->getChain(), 13353 FirstLoad->getBasePtr(), 13354 FirstLoad->getPointerInfo(), FirstLoadAlign, 13355 MMOFlags); 13356 NewStore = DAG.getStore(NewStoreChain, StoreDL, NewLoad, 13357 FirstInChain->getBasePtr(), 13358 FirstInChain->getPointerInfo(), FirstStoreAlign); 13359 } else { // This must be the truncstore/extload case 13360 EVT ExtendedTy = 13361 TLI.getTypeToTransformTo(*DAG.getContext(), JointMemOpVT); 13362 NewLoad = 13363 DAG.getExtLoad(ISD::EXTLOAD, LoadDL, ExtendedTy, FirstLoad->getChain(), 13364 FirstLoad->getBasePtr(), FirstLoad->getPointerInfo(), 13365 JointMemOpVT, FirstLoadAlign, MMOFlags); 13366 NewStore = DAG.getTruncStore(NewStoreChain, StoreDL, NewLoad, 13367 FirstInChain->getBasePtr(), 13368 FirstInChain->getPointerInfo(), JointMemOpVT, 13369 FirstInChain->getAlignment(), 13370 FirstInChain->getMemOperand()->getFlags()); 13371 } 13372 13373 // Transfer chain users from old loads to the new load. 13374 for (unsigned i = 0; i < NumElem; ++i) { 13375 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode); 13376 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), 13377 SDValue(NewLoad.getNode(), 1)); 13378 } 13379 13380 // Replace the all stores with the new store. Recursively remove 13381 // corresponding value if its no longer used. 13382 for (unsigned i = 0; i < NumElem; ++i) { 13383 SDValue Val = StoreNodes[i].MemNode->getOperand(1); 13384 CombineTo(StoreNodes[i].MemNode, NewStore); 13385 if (Val.getNode()->use_empty()) 13386 recursivelyDeleteUnusedNodes(Val.getNode()); 13387 } 13388 13389 RV = true; 13390 StoreNodes.erase(StoreNodes.begin(), StoreNodes.begin() + NumElem); 13391 } 13392 return RV; 13393 } 13394 13395 SDValue DAGCombiner::replaceStoreChain(StoreSDNode *ST, SDValue BetterChain) { 13396 SDLoc SL(ST); 13397 SDValue ReplStore; 13398 13399 // Replace the chain to avoid dependency. 13400 if (ST->isTruncatingStore()) { 13401 ReplStore = DAG.getTruncStore(BetterChain, SL, ST->getValue(), 13402 ST->getBasePtr(), ST->getMemoryVT(), 13403 ST->getMemOperand()); 13404 } else { 13405 ReplStore = DAG.getStore(BetterChain, SL, ST->getValue(), ST->getBasePtr(), 13406 ST->getMemOperand()); 13407 } 13408 13409 // Create token to keep both nodes around. 13410 SDValue Token = DAG.getNode(ISD::TokenFactor, SL, 13411 MVT::Other, ST->getChain(), ReplStore); 13412 13413 // Make sure the new and old chains are cleaned up. 13414 AddToWorklist(Token.getNode()); 13415 13416 // Don't add users to work list. 13417 return CombineTo(ST, Token, false); 13418 } 13419 13420 SDValue DAGCombiner::replaceStoreOfFPConstant(StoreSDNode *ST) { 13421 SDValue Value = ST->getValue(); 13422 if (Value.getOpcode() == ISD::TargetConstantFP) 13423 return SDValue(); 13424 13425 SDLoc DL(ST); 13426 13427 SDValue Chain = ST->getChain(); 13428 SDValue Ptr = ST->getBasePtr(); 13429 13430 const ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Value); 13431 13432 // NOTE: If the original store is volatile, this transform must not increase 13433 // the number of stores. For example, on x86-32 an f64 can be stored in one 13434 // processor operation but an i64 (which is not legal) requires two. So the 13435 // transform should not be done in this case. 13436 13437 SDValue Tmp; 13438 switch (CFP->getSimpleValueType(0).SimpleTy) { 13439 default: 13440 llvm_unreachable("Unknown FP type"); 13441 case MVT::f16: // We don't do this for these yet. 13442 case MVT::f80: 13443 case MVT::f128: 13444 case MVT::ppcf128: 13445 return SDValue(); 13446 case MVT::f32: 13447 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) || 13448 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) { 13449 ; 13450 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF(). 13451 bitcastToAPInt().getZExtValue(), SDLoc(CFP), 13452 MVT::i32); 13453 return DAG.getStore(Chain, DL, Tmp, Ptr, ST->getMemOperand()); 13454 } 13455 13456 return SDValue(); 13457 case MVT::f64: 13458 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations && 13459 !ST->isVolatile()) || 13460 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) { 13461 ; 13462 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt(). 13463 getZExtValue(), SDLoc(CFP), MVT::i64); 13464 return DAG.getStore(Chain, DL, Tmp, 13465 Ptr, ST->getMemOperand()); 13466 } 13467 13468 if (!ST->isVolatile() && 13469 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) { 13470 // Many FP stores are not made apparent until after legalize, e.g. for 13471 // argument passing. Since this is so common, custom legalize the 13472 // 64-bit integer store into two 32-bit stores. 13473 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue(); 13474 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, SDLoc(CFP), MVT::i32); 13475 SDValue Hi = DAG.getConstant(Val >> 32, SDLoc(CFP), MVT::i32); 13476 if (DAG.getDataLayout().isBigEndian()) 13477 std::swap(Lo, Hi); 13478 13479 unsigned Alignment = ST->getAlignment(); 13480 MachineMemOperand::Flags MMOFlags = ST->getMemOperand()->getFlags(); 13481 AAMDNodes AAInfo = ST->getAAInfo(); 13482 13483 SDValue St0 = DAG.getStore(Chain, DL, Lo, Ptr, ST->getPointerInfo(), 13484 ST->getAlignment(), MMOFlags, AAInfo); 13485 Ptr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr, 13486 DAG.getConstant(4, DL, Ptr.getValueType())); 13487 Alignment = MinAlign(Alignment, 4U); 13488 SDValue St1 = DAG.getStore(Chain, DL, Hi, Ptr, 13489 ST->getPointerInfo().getWithOffset(4), 13490 Alignment, MMOFlags, AAInfo); 13491 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, 13492 St0, St1); 13493 } 13494 13495 return SDValue(); 13496 } 13497 } 13498 13499 SDValue DAGCombiner::visitSTORE(SDNode *N) { 13500 StoreSDNode *ST = cast<StoreSDNode>(N); 13501 SDValue Chain = ST->getChain(); 13502 SDValue Value = ST->getValue(); 13503 SDValue Ptr = ST->getBasePtr(); 13504 13505 // If this is a store of a bit convert, store the input value if the 13506 // resultant store does not need a higher alignment than the original. 13507 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() && 13508 ST->isUnindexed()) { 13509 EVT SVT = Value.getOperand(0).getValueType(); 13510 if (((!LegalOperations && !ST->isVolatile()) || 13511 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)) && 13512 TLI.isStoreBitCastBeneficial(Value.getValueType(), SVT)) { 13513 unsigned OrigAlign = ST->getAlignment(); 13514 bool Fast = false; 13515 if (TLI.allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), SVT, 13516 ST->getAddressSpace(), OrigAlign, &Fast) && 13517 Fast) { 13518 return DAG.getStore(Chain, SDLoc(N), Value.getOperand(0), Ptr, 13519 ST->getPointerInfo(), OrigAlign, 13520 ST->getMemOperand()->getFlags(), ST->getAAInfo()); 13521 } 13522 } 13523 } 13524 13525 // Turn 'store undef, Ptr' -> nothing. 13526 if (Value.isUndef() && ST->isUnindexed()) 13527 return Chain; 13528 13529 // Try to infer better alignment information than the store already has. 13530 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) { 13531 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) { 13532 if (Align > ST->getAlignment()) { 13533 SDValue NewStore = 13534 DAG.getTruncStore(Chain, SDLoc(N), Value, Ptr, ST->getPointerInfo(), 13535 ST->getMemoryVT(), Align, 13536 ST->getMemOperand()->getFlags(), ST->getAAInfo()); 13537 if (NewStore.getNode() != N) 13538 return CombineTo(ST, NewStore, true); 13539 } 13540 } 13541 } 13542 13543 // Try transforming a pair floating point load / store ops to integer 13544 // load / store ops. 13545 if (SDValue NewST = TransformFPLoadStorePair(N)) 13546 return NewST; 13547 13548 if (ST->isUnindexed()) { 13549 // Walk up chain skipping non-aliasing memory nodes, on this store and any 13550 // adjacent stores. 13551 if (findBetterNeighborChains(ST)) { 13552 // replaceStoreChain uses CombineTo, which handled all of the worklist 13553 // manipulation. Return the original node to not do anything else. 13554 return SDValue(ST, 0); 13555 } 13556 Chain = ST->getChain(); 13557 } 13558 13559 // FIXME: is there such a thing as a truncating indexed store? 13560 if (ST->isTruncatingStore() && ST->isUnindexed() && 13561 Value.getValueType().isInteger()) { 13562 // See if we can simplify the input to this truncstore with knowledge that 13563 // only the low bits are being used. For example: 13564 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8" 13565 SDValue Shorter = DAG.GetDemandedBits( 13566 Value, APInt::getLowBitsSet(Value.getScalarValueSizeInBits(), 13567 ST->getMemoryVT().getScalarSizeInBits())); 13568 AddToWorklist(Value.getNode()); 13569 if (Shorter.getNode()) 13570 return DAG.getTruncStore(Chain, SDLoc(N), Shorter, 13571 Ptr, ST->getMemoryVT(), ST->getMemOperand()); 13572 13573 // Otherwise, see if we can simplify the operation with 13574 // SimplifyDemandedBits, which only works if the value has a single use. 13575 if (SimplifyDemandedBits( 13576 Value, 13577 APInt::getLowBitsSet(Value.getScalarValueSizeInBits(), 13578 ST->getMemoryVT().getScalarSizeInBits()))) { 13579 // Re-visit the store if anything changed and the store hasn't been merged 13580 // with another node (N is deleted) SimplifyDemandedBits will add Value's 13581 // node back to the worklist if necessary, but we also need to re-visit 13582 // the Store node itself. 13583 if (N->getOpcode() != ISD::DELETED_NODE) 13584 AddToWorklist(N); 13585 return SDValue(N, 0); 13586 } 13587 } 13588 13589 // If this is a load followed by a store to the same location, then the store 13590 // is dead/noop. 13591 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) { 13592 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() && 13593 ST->isUnindexed() && !ST->isVolatile() && 13594 // There can't be any side effects between the load and store, such as 13595 // a call or store. 13596 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) { 13597 // The store is dead, remove it. 13598 return Chain; 13599 } 13600 } 13601 13602 if (StoreSDNode *ST1 = dyn_cast<StoreSDNode>(Chain)) { 13603 if (ST->isUnindexed() && !ST->isVolatile() && ST1->isUnindexed() && 13604 !ST1->isVolatile() && ST1->getBasePtr() == Ptr && 13605 ST->getMemoryVT() == ST1->getMemoryVT()) { 13606 // If this is a store followed by a store with the same value to the same 13607 // location, then the store is dead/noop. 13608 if (ST1->getValue() == Value) { 13609 // The store is dead, remove it. 13610 return Chain; 13611 } 13612 13613 // If this is a store who's preceeding store to the same location 13614 // and no one other node is chained to that store we can effectively 13615 // drop the store. Do not remove stores to undef as they may be used as 13616 // data sinks. 13617 if (OptLevel != CodeGenOpt::None && ST1->hasOneUse() && 13618 !ST1->getBasePtr().isUndef()) { 13619 // ST1 is fully overwritten and can be elided. Combine with it's chain 13620 // value. 13621 CombineTo(ST1, ST1->getChain()); 13622 return SDValue(); 13623 } 13624 } 13625 } 13626 13627 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a 13628 // truncating store. We can do this even if this is already a truncstore. 13629 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE) 13630 && Value.getNode()->hasOneUse() && ST->isUnindexed() && 13631 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(), 13632 ST->getMemoryVT())) { 13633 return DAG.getTruncStore(Chain, SDLoc(N), Value.getOperand(0), 13634 Ptr, ST->getMemoryVT(), ST->getMemOperand()); 13635 } 13636 13637 // Always perform this optimization before types are legal. If the target 13638 // prefers, also try this after legalization to catch stores that were created 13639 // by intrinsics or other nodes. 13640 if (!LegalTypes || (TLI.mergeStoresAfterLegalization())) { 13641 while (true) { 13642 // There can be multiple store sequences on the same chain. 13643 // Keep trying to merge store sequences until we are unable to do so 13644 // or until we merge the last store on the chain. 13645 bool Changed = MergeConsecutiveStores(ST); 13646 if (!Changed) break; 13647 // Return N as merge only uses CombineTo and no worklist clean 13648 // up is necessary. 13649 if (N->getOpcode() == ISD::DELETED_NODE || !isa<StoreSDNode>(N)) 13650 return SDValue(N, 0); 13651 } 13652 } 13653 13654 // Try transforming N to an indexed store. 13655 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N)) 13656 return SDValue(N, 0); 13657 13658 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr' 13659 // 13660 // Make sure to do this only after attempting to merge stores in order to 13661 // avoid changing the types of some subset of stores due to visit order, 13662 // preventing their merging. 13663 if (isa<ConstantFPSDNode>(ST->getValue())) { 13664 if (SDValue NewSt = replaceStoreOfFPConstant(ST)) 13665 return NewSt; 13666 } 13667 13668 if (SDValue NewSt = splitMergedValStore(ST)) 13669 return NewSt; 13670 13671 return ReduceLoadOpStoreWidth(N); 13672 } 13673 13674 /// For the instruction sequence of store below, F and I values 13675 /// are bundled together as an i64 value before being stored into memory. 13676 /// Sometimes it is more efficent to generate separate stores for F and I, 13677 /// which can remove the bitwise instructions or sink them to colder places. 13678 /// 13679 /// (store (or (zext (bitcast F to i32) to i64), 13680 /// (shl (zext I to i64), 32)), addr) --> 13681 /// (store F, addr) and (store I, addr+4) 13682 /// 13683 /// Similarly, splitting for other merged store can also be beneficial, like: 13684 /// For pair of {i32, i32}, i64 store --> two i32 stores. 13685 /// For pair of {i32, i16}, i64 store --> two i32 stores. 13686 /// For pair of {i16, i16}, i32 store --> two i16 stores. 13687 /// For pair of {i16, i8}, i32 store --> two i16 stores. 13688 /// For pair of {i8, i8}, i16 store --> two i8 stores. 13689 /// 13690 /// We allow each target to determine specifically which kind of splitting is 13691 /// supported. 13692 /// 13693 /// The store patterns are commonly seen from the simple code snippet below 13694 /// if only std::make_pair(...) is sroa transformed before inlined into hoo. 13695 /// void goo(const std::pair<int, float> &); 13696 /// hoo() { 13697 /// ... 13698 /// goo(std::make_pair(tmp, ftmp)); 13699 /// ... 13700 /// } 13701 /// 13702 SDValue DAGCombiner::splitMergedValStore(StoreSDNode *ST) { 13703 if (OptLevel == CodeGenOpt::None) 13704 return SDValue(); 13705 13706 SDValue Val = ST->getValue(); 13707 SDLoc DL(ST); 13708 13709 // Match OR operand. 13710 if (!Val.getValueType().isScalarInteger() || Val.getOpcode() != ISD::OR) 13711 return SDValue(); 13712 13713 // Match SHL operand and get Lower and Higher parts of Val. 13714 SDValue Op1 = Val.getOperand(0); 13715 SDValue Op2 = Val.getOperand(1); 13716 SDValue Lo, Hi; 13717 if (Op1.getOpcode() != ISD::SHL) { 13718 std::swap(Op1, Op2); 13719 if (Op1.getOpcode() != ISD::SHL) 13720 return SDValue(); 13721 } 13722 Lo = Op2; 13723 Hi = Op1.getOperand(0); 13724 if (!Op1.hasOneUse()) 13725 return SDValue(); 13726 13727 // Match shift amount to HalfValBitSize. 13728 unsigned HalfValBitSize = Val.getValueSizeInBits() / 2; 13729 ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(Op1.getOperand(1)); 13730 if (!ShAmt || ShAmt->getAPIntValue() != HalfValBitSize) 13731 return SDValue(); 13732 13733 // Lo and Hi are zero-extended from int with size less equal than 32 13734 // to i64. 13735 if (Lo.getOpcode() != ISD::ZERO_EXTEND || !Lo.hasOneUse() || 13736 !Lo.getOperand(0).getValueType().isScalarInteger() || 13737 Lo.getOperand(0).getValueSizeInBits() > HalfValBitSize || 13738 Hi.getOpcode() != ISD::ZERO_EXTEND || !Hi.hasOneUse() || 13739 !Hi.getOperand(0).getValueType().isScalarInteger() || 13740 Hi.getOperand(0).getValueSizeInBits() > HalfValBitSize) 13741 return SDValue(); 13742 13743 // Use the EVT of low and high parts before bitcast as the input 13744 // of target query. 13745 EVT LowTy = (Lo.getOperand(0).getOpcode() == ISD::BITCAST) 13746 ? Lo.getOperand(0).getValueType() 13747 : Lo.getValueType(); 13748 EVT HighTy = (Hi.getOperand(0).getOpcode() == ISD::BITCAST) 13749 ? Hi.getOperand(0).getValueType() 13750 : Hi.getValueType(); 13751 if (!TLI.isMultiStoresCheaperThanBitsMerge(LowTy, HighTy)) 13752 return SDValue(); 13753 13754 // Start to split store. 13755 unsigned Alignment = ST->getAlignment(); 13756 MachineMemOperand::Flags MMOFlags = ST->getMemOperand()->getFlags(); 13757 AAMDNodes AAInfo = ST->getAAInfo(); 13758 13759 // Change the sizes of Lo and Hi's value types to HalfValBitSize. 13760 EVT VT = EVT::getIntegerVT(*DAG.getContext(), HalfValBitSize); 13761 Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Lo.getOperand(0)); 13762 Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Hi.getOperand(0)); 13763 13764 SDValue Chain = ST->getChain(); 13765 SDValue Ptr = ST->getBasePtr(); 13766 // Lower value store. 13767 SDValue St0 = DAG.getStore(Chain, DL, Lo, Ptr, ST->getPointerInfo(), 13768 ST->getAlignment(), MMOFlags, AAInfo); 13769 Ptr = 13770 DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr, 13771 DAG.getConstant(HalfValBitSize / 8, DL, Ptr.getValueType())); 13772 // Higher value store. 13773 SDValue St1 = 13774 DAG.getStore(St0, DL, Hi, Ptr, 13775 ST->getPointerInfo().getWithOffset(HalfValBitSize / 8), 13776 Alignment / 2, MMOFlags, AAInfo); 13777 return St1; 13778 } 13779 13780 /// Convert a disguised subvector insertion into a shuffle: 13781 /// insert_vector_elt V, (bitcast X from vector type), IdxC --> 13782 /// bitcast(shuffle (bitcast V), (extended X), Mask) 13783 /// Note: We do not use an insert_subvector node because that requires a legal 13784 /// subvector type. 13785 SDValue DAGCombiner::combineInsertEltToShuffle(SDNode *N, unsigned InsIndex) { 13786 SDValue InsertVal = N->getOperand(1); 13787 if (InsertVal.getOpcode() != ISD::BITCAST || !InsertVal.hasOneUse() || 13788 !InsertVal.getOperand(0).getValueType().isVector()) 13789 return SDValue(); 13790 13791 SDValue SubVec = InsertVal.getOperand(0); 13792 SDValue DestVec = N->getOperand(0); 13793 EVT SubVecVT = SubVec.getValueType(); 13794 EVT VT = DestVec.getValueType(); 13795 unsigned NumSrcElts = SubVecVT.getVectorNumElements(); 13796 unsigned ExtendRatio = VT.getSizeInBits() / SubVecVT.getSizeInBits(); 13797 unsigned NumMaskVals = ExtendRatio * NumSrcElts; 13798 13799 // Step 1: Create a shuffle mask that implements this insert operation. The 13800 // vector that we are inserting into will be operand 0 of the shuffle, so 13801 // those elements are just 'i'. The inserted subvector is in the first 13802 // positions of operand 1 of the shuffle. Example: 13803 // insert v4i32 V, (v2i16 X), 2 --> shuffle v8i16 V', X', {0,1,2,3,8,9,6,7} 13804 SmallVector<int, 16> Mask(NumMaskVals); 13805 for (unsigned i = 0; i != NumMaskVals; ++i) { 13806 if (i / NumSrcElts == InsIndex) 13807 Mask[i] = (i % NumSrcElts) + NumMaskVals; 13808 else 13809 Mask[i] = i; 13810 } 13811 13812 // Bail out if the target can not handle the shuffle we want to create. 13813 EVT SubVecEltVT = SubVecVT.getVectorElementType(); 13814 EVT ShufVT = EVT::getVectorVT(*DAG.getContext(), SubVecEltVT, NumMaskVals); 13815 if (!TLI.isShuffleMaskLegal(Mask, ShufVT)) 13816 return SDValue(); 13817 13818 // Step 2: Create a wide vector from the inserted source vector by appending 13819 // undefined elements. This is the same size as our destination vector. 13820 SDLoc DL(N); 13821 SmallVector<SDValue, 8> ConcatOps(ExtendRatio, DAG.getUNDEF(SubVecVT)); 13822 ConcatOps[0] = SubVec; 13823 SDValue PaddedSubV = DAG.getNode(ISD::CONCAT_VECTORS, DL, ShufVT, ConcatOps); 13824 13825 // Step 3: Shuffle in the padded subvector. 13826 SDValue DestVecBC = DAG.getBitcast(ShufVT, DestVec); 13827 SDValue Shuf = DAG.getVectorShuffle(ShufVT, DL, DestVecBC, PaddedSubV, Mask); 13828 AddToWorklist(PaddedSubV.getNode()); 13829 AddToWorklist(DestVecBC.getNode()); 13830 AddToWorklist(Shuf.getNode()); 13831 return DAG.getBitcast(VT, Shuf); 13832 } 13833 13834 SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) { 13835 SDValue InVec = N->getOperand(0); 13836 SDValue InVal = N->getOperand(1); 13837 SDValue EltNo = N->getOperand(2); 13838 SDLoc DL(N); 13839 13840 // If the inserted element is an UNDEF, just use the input vector. 13841 if (InVal.isUndef()) 13842 return InVec; 13843 13844 EVT VT = InVec.getValueType(); 13845 13846 // Remove redundant insertions: 13847 // (insert_vector_elt x (extract_vector_elt x idx) idx) -> x 13848 if (InVal.getOpcode() == ISD::EXTRACT_VECTOR_ELT && 13849 InVec == InVal.getOperand(0) && EltNo == InVal.getOperand(1)) 13850 return InVec; 13851 13852 // We must know which element is being inserted for folds below here. 13853 auto *IndexC = dyn_cast<ConstantSDNode>(EltNo); 13854 if (!IndexC) 13855 return SDValue(); 13856 unsigned Elt = IndexC->getZExtValue(); 13857 13858 if (SDValue Shuf = combineInsertEltToShuffle(N, Elt)) 13859 return Shuf; 13860 13861 // Canonicalize insert_vector_elt dag nodes. 13862 // Example: 13863 // (insert_vector_elt (insert_vector_elt A, Idx0), Idx1) 13864 // -> (insert_vector_elt (insert_vector_elt A, Idx1), Idx0) 13865 // 13866 // Do this only if the child insert_vector node has one use; also 13867 // do this only if indices are both constants and Idx1 < Idx0. 13868 if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT && InVec.hasOneUse() 13869 && isa<ConstantSDNode>(InVec.getOperand(2))) { 13870 unsigned OtherElt = InVec.getConstantOperandVal(2); 13871 if (Elt < OtherElt) { 13872 // Swap nodes. 13873 SDValue NewOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, 13874 InVec.getOperand(0), InVal, EltNo); 13875 AddToWorklist(NewOp.getNode()); 13876 return DAG.getNode(ISD::INSERT_VECTOR_ELT, SDLoc(InVec.getNode()), 13877 VT, NewOp, InVec.getOperand(1), InVec.getOperand(2)); 13878 } 13879 } 13880 13881 // If we can't generate a legal BUILD_VECTOR, exit 13882 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) 13883 return SDValue(); 13884 13885 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially 13886 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the 13887 // vector elements. 13888 SmallVector<SDValue, 8> Ops; 13889 // Do not combine these two vectors if the output vector will not replace 13890 // the input vector. 13891 if (InVec.getOpcode() == ISD::BUILD_VECTOR && InVec.hasOneUse()) { 13892 Ops.append(InVec.getNode()->op_begin(), 13893 InVec.getNode()->op_end()); 13894 } else if (InVec.isUndef()) { 13895 unsigned NElts = VT.getVectorNumElements(); 13896 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType())); 13897 } else { 13898 return SDValue(); 13899 } 13900 13901 // Insert the element 13902 if (Elt < Ops.size()) { 13903 // All the operands of BUILD_VECTOR must have the same type; 13904 // we enforce that here. 13905 EVT OpVT = Ops[0].getValueType(); 13906 Ops[Elt] = OpVT.isInteger() ? DAG.getAnyExtOrTrunc(InVal, DL, OpVT) : InVal; 13907 } 13908 13909 // Return the new vector 13910 return DAG.getBuildVector(VT, DL, Ops); 13911 } 13912 13913 SDValue DAGCombiner::ReplaceExtractVectorEltOfLoadWithNarrowedLoad( 13914 SDNode *EVE, EVT InVecVT, SDValue EltNo, LoadSDNode *OriginalLoad) { 13915 assert(!OriginalLoad->isVolatile()); 13916 13917 EVT ResultVT = EVE->getValueType(0); 13918 EVT VecEltVT = InVecVT.getVectorElementType(); 13919 unsigned Align = OriginalLoad->getAlignment(); 13920 unsigned NewAlign = DAG.getDataLayout().getABITypeAlignment( 13921 VecEltVT.getTypeForEVT(*DAG.getContext())); 13922 13923 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VecEltVT)) 13924 return SDValue(); 13925 13926 ISD::LoadExtType ExtTy = ResultVT.bitsGT(VecEltVT) ? 13927 ISD::NON_EXTLOAD : ISD::EXTLOAD; 13928 if (!TLI.shouldReduceLoadWidth(OriginalLoad, ExtTy, VecEltVT)) 13929 return SDValue(); 13930 13931 Align = NewAlign; 13932 13933 SDValue NewPtr = OriginalLoad->getBasePtr(); 13934 SDValue Offset; 13935 EVT PtrType = NewPtr.getValueType(); 13936 MachinePointerInfo MPI; 13937 SDLoc DL(EVE); 13938 if (auto *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo)) { 13939 int Elt = ConstEltNo->getZExtValue(); 13940 unsigned PtrOff = VecEltVT.getSizeInBits() * Elt / 8; 13941 Offset = DAG.getConstant(PtrOff, DL, PtrType); 13942 MPI = OriginalLoad->getPointerInfo().getWithOffset(PtrOff); 13943 } else { 13944 Offset = DAG.getZExtOrTrunc(EltNo, DL, PtrType); 13945 Offset = DAG.getNode( 13946 ISD::MUL, DL, PtrType, Offset, 13947 DAG.getConstant(VecEltVT.getStoreSize(), DL, PtrType)); 13948 MPI = OriginalLoad->getPointerInfo(); 13949 } 13950 NewPtr = DAG.getNode(ISD::ADD, DL, PtrType, NewPtr, Offset); 13951 13952 // The replacement we need to do here is a little tricky: we need to 13953 // replace an extractelement of a load with a load. 13954 // Use ReplaceAllUsesOfValuesWith to do the replacement. 13955 // Note that this replacement assumes that the extractvalue is the only 13956 // use of the load; that's okay because we don't want to perform this 13957 // transformation in other cases anyway. 13958 SDValue Load; 13959 SDValue Chain; 13960 if (ResultVT.bitsGT(VecEltVT)) { 13961 // If the result type of vextract is wider than the load, then issue an 13962 // extending load instead. 13963 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, ResultVT, 13964 VecEltVT) 13965 ? ISD::ZEXTLOAD 13966 : ISD::EXTLOAD; 13967 Load = DAG.getExtLoad(ExtType, SDLoc(EVE), ResultVT, 13968 OriginalLoad->getChain(), NewPtr, MPI, VecEltVT, 13969 Align, OriginalLoad->getMemOperand()->getFlags(), 13970 OriginalLoad->getAAInfo()); 13971 Chain = Load.getValue(1); 13972 } else { 13973 Load = DAG.getLoad(VecEltVT, SDLoc(EVE), OriginalLoad->getChain(), NewPtr, 13974 MPI, Align, OriginalLoad->getMemOperand()->getFlags(), 13975 OriginalLoad->getAAInfo()); 13976 Chain = Load.getValue(1); 13977 if (ResultVT.bitsLT(VecEltVT)) 13978 Load = DAG.getNode(ISD::TRUNCATE, SDLoc(EVE), ResultVT, Load); 13979 else 13980 Load = DAG.getBitcast(ResultVT, Load); 13981 } 13982 WorklistRemover DeadNodes(*this); 13983 SDValue From[] = { SDValue(EVE, 0), SDValue(OriginalLoad, 1) }; 13984 SDValue To[] = { Load, Chain }; 13985 DAG.ReplaceAllUsesOfValuesWith(From, To, 2); 13986 // Since we're explicitly calling ReplaceAllUses, add the new node to the 13987 // worklist explicitly as well. 13988 AddToWorklist(Load.getNode()); 13989 AddUsersToWorklist(Load.getNode()); // Add users too 13990 // Make sure to revisit this node to clean it up; it will usually be dead. 13991 AddToWorklist(EVE); 13992 ++OpsNarrowed; 13993 return SDValue(EVE, 0); 13994 } 13995 13996 SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) { 13997 // (vextract (scalar_to_vector val, 0) -> val 13998 SDValue InVec = N->getOperand(0); 13999 EVT VT = InVec.getValueType(); 14000 EVT NVT = N->getValueType(0); 14001 14002 if (InVec.isUndef()) 14003 return DAG.getUNDEF(NVT); 14004 14005 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) { 14006 // Check if the result type doesn't match the inserted element type. A 14007 // SCALAR_TO_VECTOR may truncate the inserted element and the 14008 // EXTRACT_VECTOR_ELT may widen the extracted vector. 14009 SDValue InOp = InVec.getOperand(0); 14010 if (InOp.getValueType() != NVT) { 14011 assert(InOp.getValueType().isInteger() && NVT.isInteger()); 14012 return DAG.getSExtOrTrunc(InOp, SDLoc(InVec), NVT); 14013 } 14014 return InOp; 14015 } 14016 14017 SDValue EltNo = N->getOperand(1); 14018 ConstantSDNode *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo); 14019 14020 // extract_vector_elt (build_vector x, y), 1 -> y 14021 if (ConstEltNo && 14022 InVec.getOpcode() == ISD::BUILD_VECTOR && 14023 TLI.isTypeLegal(VT) && 14024 (InVec.hasOneUse() || 14025 TLI.aggressivelyPreferBuildVectorSources(VT))) { 14026 SDValue Elt = InVec.getOperand(ConstEltNo->getZExtValue()); 14027 EVT InEltVT = Elt.getValueType(); 14028 14029 // Sometimes build_vector's scalar input types do not match result type. 14030 if (NVT == InEltVT) 14031 return Elt; 14032 14033 // TODO: It may be useful to truncate if free if the build_vector implicitly 14034 // converts. 14035 } 14036 14037 // extract_vector_elt (v2i32 (bitcast i64:x)), EltTrunc -> i32 (trunc i64:x) 14038 bool isLE = DAG.getDataLayout().isLittleEndian(); 14039 unsigned EltTrunc = isLE ? 0 : VT.getVectorNumElements() - 1; 14040 if (ConstEltNo && InVec.getOpcode() == ISD::BITCAST && InVec.hasOneUse() && 14041 ConstEltNo->getZExtValue() == EltTrunc && VT.isInteger()) { 14042 SDValue BCSrc = InVec.getOperand(0); 14043 if (BCSrc.getValueType().isScalarInteger()) 14044 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), NVT, BCSrc); 14045 } 14046 14047 // extract_vector_elt (insert_vector_elt vec, val, idx), idx) -> val 14048 // 14049 // This only really matters if the index is non-constant since other combines 14050 // on the constant elements already work. 14051 if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT && 14052 EltNo == InVec.getOperand(2)) { 14053 SDValue Elt = InVec.getOperand(1); 14054 return VT.isInteger() ? DAG.getAnyExtOrTrunc(Elt, SDLoc(N), NVT) : Elt; 14055 } 14056 14057 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT. 14058 // We only perform this optimization before the op legalization phase because 14059 // we may introduce new vector instructions which are not backed by TD 14060 // patterns. For example on AVX, extracting elements from a wide vector 14061 // without using extract_subvector. However, if we can find an underlying 14062 // scalar value, then we can always use that. 14063 if (ConstEltNo && InVec.getOpcode() == ISD::VECTOR_SHUFFLE) { 14064 int NumElem = VT.getVectorNumElements(); 14065 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec); 14066 // Find the new index to extract from. 14067 int OrigElt = SVOp->getMaskElt(ConstEltNo->getZExtValue()); 14068 14069 // Extracting an undef index is undef. 14070 if (OrigElt == -1) 14071 return DAG.getUNDEF(NVT); 14072 14073 // Select the right vector half to extract from. 14074 SDValue SVInVec; 14075 if (OrigElt < NumElem) { 14076 SVInVec = InVec->getOperand(0); 14077 } else { 14078 SVInVec = InVec->getOperand(1); 14079 OrigElt -= NumElem; 14080 } 14081 14082 if (SVInVec.getOpcode() == ISD::BUILD_VECTOR) { 14083 SDValue InOp = SVInVec.getOperand(OrigElt); 14084 if (InOp.getValueType() != NVT) { 14085 assert(InOp.getValueType().isInteger() && NVT.isInteger()); 14086 InOp = DAG.getSExtOrTrunc(InOp, SDLoc(SVInVec), NVT); 14087 } 14088 14089 return InOp; 14090 } 14091 14092 // FIXME: We should handle recursing on other vector shuffles and 14093 // scalar_to_vector here as well. 14094 14095 if (!LegalOperations || 14096 // FIXME: Should really be just isOperationLegalOrCustom. 14097 TLI.isOperationLegal(ISD::EXTRACT_VECTOR_ELT, VT) || 14098 TLI.isOperationExpand(ISD::VECTOR_SHUFFLE, VT)) { 14099 EVT IndexTy = TLI.getVectorIdxTy(DAG.getDataLayout()); 14100 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(N), NVT, SVInVec, 14101 DAG.getConstant(OrigElt, SDLoc(SVOp), IndexTy)); 14102 } 14103 } 14104 14105 bool BCNumEltsChanged = false; 14106 EVT ExtVT = VT.getVectorElementType(); 14107 EVT LVT = ExtVT; 14108 14109 // If the result of load has to be truncated, then it's not necessarily 14110 // profitable. 14111 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT)) 14112 return SDValue(); 14113 14114 if (InVec.getOpcode() == ISD::BITCAST) { 14115 // Don't duplicate a load with other uses. 14116 if (!InVec.hasOneUse()) 14117 return SDValue(); 14118 14119 EVT BCVT = InVec.getOperand(0).getValueType(); 14120 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType())) 14121 return SDValue(); 14122 if (VT.getVectorNumElements() != BCVT.getVectorNumElements()) 14123 BCNumEltsChanged = true; 14124 InVec = InVec.getOperand(0); 14125 ExtVT = BCVT.getVectorElementType(); 14126 } 14127 14128 // (vextract (vN[if]M load $addr), i) -> ([if]M load $addr + i * size) 14129 if (!LegalOperations && !ConstEltNo && InVec.hasOneUse() && 14130 ISD::isNormalLoad(InVec.getNode()) && 14131 !N->getOperand(1)->hasPredecessor(InVec.getNode())) { 14132 SDValue Index = N->getOperand(1); 14133 if (LoadSDNode *OrigLoad = dyn_cast<LoadSDNode>(InVec)) { 14134 if (!OrigLoad->isVolatile()) { 14135 return ReplaceExtractVectorEltOfLoadWithNarrowedLoad(N, VT, Index, 14136 OrigLoad); 14137 } 14138 } 14139 } 14140 14141 // Perform only after legalization to ensure build_vector / vector_shuffle 14142 // optimizations have already been done. 14143 if (!LegalOperations) return SDValue(); 14144 14145 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size) 14146 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size) 14147 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr) 14148 14149 if (ConstEltNo) { 14150 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); 14151 14152 LoadSDNode *LN0 = nullptr; 14153 const ShuffleVectorSDNode *SVN = nullptr; 14154 if (ISD::isNormalLoad(InVec.getNode())) { 14155 LN0 = cast<LoadSDNode>(InVec); 14156 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR && 14157 InVec.getOperand(0).getValueType() == ExtVT && 14158 ISD::isNormalLoad(InVec.getOperand(0).getNode())) { 14159 // Don't duplicate a load with other uses. 14160 if (!InVec.hasOneUse()) 14161 return SDValue(); 14162 14163 LN0 = cast<LoadSDNode>(InVec.getOperand(0)); 14164 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) { 14165 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1) 14166 // => 14167 // (load $addr+1*size) 14168 14169 // Don't duplicate a load with other uses. 14170 if (!InVec.hasOneUse()) 14171 return SDValue(); 14172 14173 // If the bit convert changed the number of elements, it is unsafe 14174 // to examine the mask. 14175 if (BCNumEltsChanged) 14176 return SDValue(); 14177 14178 // Select the input vector, guarding against out of range extract vector. 14179 unsigned NumElems = VT.getVectorNumElements(); 14180 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt); 14181 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1); 14182 14183 if (InVec.getOpcode() == ISD::BITCAST) { 14184 // Don't duplicate a load with other uses. 14185 if (!InVec.hasOneUse()) 14186 return SDValue(); 14187 14188 InVec = InVec.getOperand(0); 14189 } 14190 if (ISD::isNormalLoad(InVec.getNode())) { 14191 LN0 = cast<LoadSDNode>(InVec); 14192 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems; 14193 EltNo = DAG.getConstant(Elt, SDLoc(EltNo), EltNo.getValueType()); 14194 } 14195 } 14196 14197 // Make sure we found a non-volatile load and the extractelement is 14198 // the only use. 14199 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile()) 14200 return SDValue(); 14201 14202 // If Idx was -1 above, Elt is going to be -1, so just return undef. 14203 if (Elt == -1) 14204 return DAG.getUNDEF(LVT); 14205 14206 return ReplaceExtractVectorEltOfLoadWithNarrowedLoad(N, VT, EltNo, LN0); 14207 } 14208 14209 return SDValue(); 14210 } 14211 14212 // Simplify (build_vec (ext )) to (bitcast (build_vec )) 14213 SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) { 14214 // We perform this optimization post type-legalization because 14215 // the type-legalizer often scalarizes integer-promoted vectors. 14216 // Performing this optimization before may create bit-casts which 14217 // will be type-legalized to complex code sequences. 14218 // We perform this optimization only before the operation legalizer because we 14219 // may introduce illegal operations. 14220 if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes) 14221 return SDValue(); 14222 14223 unsigned NumInScalars = N->getNumOperands(); 14224 SDLoc DL(N); 14225 EVT VT = N->getValueType(0); 14226 14227 // Check to see if this is a BUILD_VECTOR of a bunch of values 14228 // which come from any_extend or zero_extend nodes. If so, we can create 14229 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR 14230 // optimizations. We do not handle sign-extend because we can't fill the sign 14231 // using shuffles. 14232 EVT SourceType = MVT::Other; 14233 bool AllAnyExt = true; 14234 14235 for (unsigned i = 0; i != NumInScalars; ++i) { 14236 SDValue In = N->getOperand(i); 14237 // Ignore undef inputs. 14238 if (In.isUndef()) continue; 14239 14240 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND; 14241 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND; 14242 14243 // Abort if the element is not an extension. 14244 if (!ZeroExt && !AnyExt) { 14245 SourceType = MVT::Other; 14246 break; 14247 } 14248 14249 // The input is a ZeroExt or AnyExt. Check the original type. 14250 EVT InTy = In.getOperand(0).getValueType(); 14251 14252 // Check that all of the widened source types are the same. 14253 if (SourceType == MVT::Other) 14254 // First time. 14255 SourceType = InTy; 14256 else if (InTy != SourceType) { 14257 // Multiple income types. Abort. 14258 SourceType = MVT::Other; 14259 break; 14260 } 14261 14262 // Check if all of the extends are ANY_EXTENDs. 14263 AllAnyExt &= AnyExt; 14264 } 14265 14266 // In order to have valid types, all of the inputs must be extended from the 14267 // same source type and all of the inputs must be any or zero extend. 14268 // Scalar sizes must be a power of two. 14269 EVT OutScalarTy = VT.getScalarType(); 14270 bool ValidTypes = SourceType != MVT::Other && 14271 isPowerOf2_32(OutScalarTy.getSizeInBits()) && 14272 isPowerOf2_32(SourceType.getSizeInBits()); 14273 14274 // Create a new simpler BUILD_VECTOR sequence which other optimizations can 14275 // turn into a single shuffle instruction. 14276 if (!ValidTypes) 14277 return SDValue(); 14278 14279 bool isLE = DAG.getDataLayout().isLittleEndian(); 14280 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits(); 14281 assert(ElemRatio > 1 && "Invalid element size ratio"); 14282 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType): 14283 DAG.getConstant(0, DL, SourceType); 14284 14285 unsigned NewBVElems = ElemRatio * VT.getVectorNumElements(); 14286 SmallVector<SDValue, 8> Ops(NewBVElems, Filler); 14287 14288 // Populate the new build_vector 14289 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 14290 SDValue Cast = N->getOperand(i); 14291 assert((Cast.getOpcode() == ISD::ANY_EXTEND || 14292 Cast.getOpcode() == ISD::ZERO_EXTEND || 14293 Cast.isUndef()) && "Invalid cast opcode"); 14294 SDValue In; 14295 if (Cast.isUndef()) 14296 In = DAG.getUNDEF(SourceType); 14297 else 14298 In = Cast->getOperand(0); 14299 unsigned Index = isLE ? (i * ElemRatio) : 14300 (i * ElemRatio + (ElemRatio - 1)); 14301 14302 assert(Index < Ops.size() && "Invalid index"); 14303 Ops[Index] = In; 14304 } 14305 14306 // The type of the new BUILD_VECTOR node. 14307 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems); 14308 assert(VecVT.getSizeInBits() == VT.getSizeInBits() && 14309 "Invalid vector size"); 14310 // Check if the new vector type is legal. 14311 if (!isTypeLegal(VecVT)) return SDValue(); 14312 14313 // Make the new BUILD_VECTOR. 14314 SDValue BV = DAG.getBuildVector(VecVT, DL, Ops); 14315 14316 // The new BUILD_VECTOR node has the potential to be further optimized. 14317 AddToWorklist(BV.getNode()); 14318 // Bitcast to the desired type. 14319 return DAG.getBitcast(VT, BV); 14320 } 14321 14322 SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) { 14323 EVT VT = N->getValueType(0); 14324 14325 unsigned NumInScalars = N->getNumOperands(); 14326 SDLoc DL(N); 14327 14328 EVT SrcVT = MVT::Other; 14329 unsigned Opcode = ISD::DELETED_NODE; 14330 unsigned NumDefs = 0; 14331 14332 for (unsigned i = 0; i != NumInScalars; ++i) { 14333 SDValue In = N->getOperand(i); 14334 unsigned Opc = In.getOpcode(); 14335 14336 if (Opc == ISD::UNDEF) 14337 continue; 14338 14339 // If all scalar values are floats and converted from integers. 14340 if (Opcode == ISD::DELETED_NODE && 14341 (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) { 14342 Opcode = Opc; 14343 } 14344 14345 if (Opc != Opcode) 14346 return SDValue(); 14347 14348 EVT InVT = In.getOperand(0).getValueType(); 14349 14350 // If all scalar values are typed differently, bail out. It's chosen to 14351 // simplify BUILD_VECTOR of integer types. 14352 if (SrcVT == MVT::Other) 14353 SrcVT = InVT; 14354 if (SrcVT != InVT) 14355 return SDValue(); 14356 NumDefs++; 14357 } 14358 14359 // If the vector has just one element defined, it's not worth to fold it into 14360 // a vectorized one. 14361 if (NumDefs < 2) 14362 return SDValue(); 14363 14364 assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP) 14365 && "Should only handle conversion from integer to float."); 14366 assert(SrcVT != MVT::Other && "Cannot determine source type!"); 14367 14368 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars); 14369 14370 if (!TLI.isOperationLegalOrCustom(Opcode, NVT)) 14371 return SDValue(); 14372 14373 // Just because the floating-point vector type is legal does not necessarily 14374 // mean that the corresponding integer vector type is. 14375 if (!isTypeLegal(NVT)) 14376 return SDValue(); 14377 14378 SmallVector<SDValue, 8> Opnds; 14379 for (unsigned i = 0; i != NumInScalars; ++i) { 14380 SDValue In = N->getOperand(i); 14381 14382 if (In.isUndef()) 14383 Opnds.push_back(DAG.getUNDEF(SrcVT)); 14384 else 14385 Opnds.push_back(In.getOperand(0)); 14386 } 14387 SDValue BV = DAG.getBuildVector(NVT, DL, Opnds); 14388 AddToWorklist(BV.getNode()); 14389 14390 return DAG.getNode(Opcode, DL, VT, BV); 14391 } 14392 14393 SDValue DAGCombiner::createBuildVecShuffle(const SDLoc &DL, SDNode *N, 14394 ArrayRef<int> VectorMask, 14395 SDValue VecIn1, SDValue VecIn2, 14396 unsigned LeftIdx) { 14397 MVT IdxTy = TLI.getVectorIdxTy(DAG.getDataLayout()); 14398 SDValue ZeroIdx = DAG.getConstant(0, DL, IdxTy); 14399 14400 EVT VT = N->getValueType(0); 14401 EVT InVT1 = VecIn1.getValueType(); 14402 EVT InVT2 = VecIn2.getNode() ? VecIn2.getValueType() : InVT1; 14403 14404 unsigned Vec2Offset = 0; 14405 unsigned NumElems = VT.getVectorNumElements(); 14406 unsigned ShuffleNumElems = NumElems; 14407 14408 // In case both the input vectors are extracted from same base 14409 // vector we do not need extra addend (Vec2Offset) while 14410 // computing shuffle mask. 14411 if (!VecIn2 || !(VecIn1.getOpcode() == ISD::EXTRACT_SUBVECTOR) || 14412 !(VecIn2.getOpcode() == ISD::EXTRACT_SUBVECTOR) || 14413 !(VecIn1.getOperand(0) == VecIn2.getOperand(0))) 14414 Vec2Offset = InVT1.getVectorNumElements(); 14415 14416 // We can't generate a shuffle node with mismatched input and output types. 14417 // Try to make the types match the type of the output. 14418 if (InVT1 != VT || InVT2 != VT) { 14419 if ((VT.getSizeInBits() % InVT1.getSizeInBits() == 0) && InVT1 == InVT2) { 14420 // If the output vector length is a multiple of both input lengths, 14421 // we can concatenate them and pad the rest with undefs. 14422 unsigned NumConcats = VT.getSizeInBits() / InVT1.getSizeInBits(); 14423 assert(NumConcats >= 2 && "Concat needs at least two inputs!"); 14424 SmallVector<SDValue, 2> ConcatOps(NumConcats, DAG.getUNDEF(InVT1)); 14425 ConcatOps[0] = VecIn1; 14426 ConcatOps[1] = VecIn2 ? VecIn2 : DAG.getUNDEF(InVT1); 14427 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, ConcatOps); 14428 VecIn2 = SDValue(); 14429 } else if (InVT1.getSizeInBits() == VT.getSizeInBits() * 2) { 14430 if (!TLI.isExtractSubvectorCheap(VT, InVT1, NumElems)) 14431 return SDValue(); 14432 14433 if (!VecIn2.getNode()) { 14434 // If we only have one input vector, and it's twice the size of the 14435 // output, split it in two. 14436 VecIn2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, VecIn1, 14437 DAG.getConstant(NumElems, DL, IdxTy)); 14438 VecIn1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, VecIn1, ZeroIdx); 14439 // Since we now have shorter input vectors, adjust the offset of the 14440 // second vector's start. 14441 Vec2Offset = NumElems; 14442 } else if (InVT2.getSizeInBits() <= InVT1.getSizeInBits()) { 14443 // VecIn1 is wider than the output, and we have another, possibly 14444 // smaller input. Pad the smaller input with undefs, shuffle at the 14445 // input vector width, and extract the output. 14446 // The shuffle type is different than VT, so check legality again. 14447 if (LegalOperations && 14448 !TLI.isOperationLegal(ISD::VECTOR_SHUFFLE, InVT1)) 14449 return SDValue(); 14450 14451 // Legalizing INSERT_SUBVECTOR is tricky - you basically have to 14452 // lower it back into a BUILD_VECTOR. So if the inserted type is 14453 // illegal, don't even try. 14454 if (InVT1 != InVT2) { 14455 if (!TLI.isTypeLegal(InVT2)) 14456 return SDValue(); 14457 VecIn2 = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, InVT1, 14458 DAG.getUNDEF(InVT1), VecIn2, ZeroIdx); 14459 } 14460 ShuffleNumElems = NumElems * 2; 14461 } else { 14462 // Both VecIn1 and VecIn2 are wider than the output, and VecIn2 is wider 14463 // than VecIn1. We can't handle this for now - this case will disappear 14464 // when we start sorting the vectors by type. 14465 return SDValue(); 14466 } 14467 } else if (InVT2.getSizeInBits() * 2 == VT.getSizeInBits() && 14468 InVT1.getSizeInBits() == VT.getSizeInBits()) { 14469 SmallVector<SDValue, 2> ConcatOps(2, DAG.getUNDEF(InVT2)); 14470 ConcatOps[0] = VecIn2; 14471 VecIn2 = DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, ConcatOps); 14472 } else { 14473 // TODO: Support cases where the length mismatch isn't exactly by a 14474 // factor of 2. 14475 // TODO: Move this check upwards, so that if we have bad type 14476 // mismatches, we don't create any DAG nodes. 14477 return SDValue(); 14478 } 14479 } 14480 14481 // Initialize mask to undef. 14482 SmallVector<int, 8> Mask(ShuffleNumElems, -1); 14483 14484 // Only need to run up to the number of elements actually used, not the 14485 // total number of elements in the shuffle - if we are shuffling a wider 14486 // vector, the high lanes should be set to undef. 14487 for (unsigned i = 0; i != NumElems; ++i) { 14488 if (VectorMask[i] <= 0) 14489 continue; 14490 14491 unsigned ExtIndex = N->getOperand(i).getConstantOperandVal(1); 14492 if (VectorMask[i] == (int)LeftIdx) { 14493 Mask[i] = ExtIndex; 14494 } else if (VectorMask[i] == (int)LeftIdx + 1) { 14495 Mask[i] = Vec2Offset + ExtIndex; 14496 } 14497 } 14498 14499 // The type the input vectors may have changed above. 14500 InVT1 = VecIn1.getValueType(); 14501 14502 // If we already have a VecIn2, it should have the same type as VecIn1. 14503 // If we don't, get an undef/zero vector of the appropriate type. 14504 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(InVT1); 14505 assert(InVT1 == VecIn2.getValueType() && "Unexpected second input type."); 14506 14507 SDValue Shuffle = DAG.getVectorShuffle(InVT1, DL, VecIn1, VecIn2, Mask); 14508 if (ShuffleNumElems > NumElems) 14509 Shuffle = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, Shuffle, ZeroIdx); 14510 14511 return Shuffle; 14512 } 14513 14514 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT 14515 // operations. If the types of the vectors we're extracting from allow it, 14516 // turn this into a vector_shuffle node. 14517 SDValue DAGCombiner::reduceBuildVecToShuffle(SDNode *N) { 14518 SDLoc DL(N); 14519 EVT VT = N->getValueType(0); 14520 14521 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes. 14522 if (!isTypeLegal(VT)) 14523 return SDValue(); 14524 14525 // May only combine to shuffle after legalize if shuffle is legal. 14526 if (LegalOperations && !TLI.isOperationLegal(ISD::VECTOR_SHUFFLE, VT)) 14527 return SDValue(); 14528 14529 bool UsesZeroVector = false; 14530 unsigned NumElems = N->getNumOperands(); 14531 14532 // Record, for each element of the newly built vector, which input vector 14533 // that element comes from. -1 stands for undef, 0 for the zero vector, 14534 // and positive values for the input vectors. 14535 // VectorMask maps each element to its vector number, and VecIn maps vector 14536 // numbers to their initial SDValues. 14537 14538 SmallVector<int, 8> VectorMask(NumElems, -1); 14539 SmallVector<SDValue, 8> VecIn; 14540 VecIn.push_back(SDValue()); 14541 14542 for (unsigned i = 0; i != NumElems; ++i) { 14543 SDValue Op = N->getOperand(i); 14544 14545 if (Op.isUndef()) 14546 continue; 14547 14548 // See if we can use a blend with a zero vector. 14549 // TODO: Should we generalize this to a blend with an arbitrary constant 14550 // vector? 14551 if (isNullConstant(Op) || isNullFPConstant(Op)) { 14552 UsesZeroVector = true; 14553 VectorMask[i] = 0; 14554 continue; 14555 } 14556 14557 // Not an undef or zero. If the input is something other than an 14558 // EXTRACT_VECTOR_ELT with a constant index, bail out. 14559 if (Op.getOpcode() != ISD::EXTRACT_VECTOR_ELT || 14560 !isa<ConstantSDNode>(Op.getOperand(1))) 14561 return SDValue(); 14562 SDValue ExtractedFromVec = Op.getOperand(0); 14563 14564 // All inputs must have the same element type as the output. 14565 if (VT.getVectorElementType() != 14566 ExtractedFromVec.getValueType().getVectorElementType()) 14567 return SDValue(); 14568 14569 // Have we seen this input vector before? 14570 // The vectors are expected to be tiny (usually 1 or 2 elements), so using 14571 // a map back from SDValues to numbers isn't worth it. 14572 unsigned Idx = std::distance( 14573 VecIn.begin(), std::find(VecIn.begin(), VecIn.end(), ExtractedFromVec)); 14574 if (Idx == VecIn.size()) 14575 VecIn.push_back(ExtractedFromVec); 14576 14577 VectorMask[i] = Idx; 14578 } 14579 14580 // If we didn't find at least one input vector, bail out. 14581 if (VecIn.size() < 2) 14582 return SDValue(); 14583 14584 // If all the Operands of BUILD_VECTOR extract from same 14585 // vector, then split the vector efficiently based on the maximum 14586 // vector access index and adjust the VectorMask and 14587 // VecIn accordingly. 14588 if (VecIn.size() == 2) { 14589 unsigned MaxIndex = 0; 14590 unsigned NearestPow2 = 0; 14591 SDValue Vec = VecIn.back(); 14592 EVT InVT = Vec.getValueType(); 14593 MVT IdxTy = TLI.getVectorIdxTy(DAG.getDataLayout()); 14594 SmallVector<unsigned, 8> IndexVec(NumElems, 0); 14595 14596 for (unsigned i = 0; i < NumElems; i++) { 14597 if (VectorMask[i] <= 0) 14598 continue; 14599 unsigned Index = N->getOperand(i).getConstantOperandVal(1); 14600 IndexVec[i] = Index; 14601 MaxIndex = std::max(MaxIndex, Index); 14602 } 14603 14604 NearestPow2 = PowerOf2Ceil(MaxIndex); 14605 if (InVT.isSimple() && NearestPow2 > 2 && MaxIndex < NearestPow2 && 14606 NumElems * 2 < NearestPow2) { 14607 unsigned SplitSize = NearestPow2 / 2; 14608 EVT SplitVT = EVT::getVectorVT(*DAG.getContext(), 14609 InVT.getVectorElementType(), SplitSize); 14610 if (TLI.isTypeLegal(SplitVT)) { 14611 SDValue VecIn2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SplitVT, Vec, 14612 DAG.getConstant(SplitSize, DL, IdxTy)); 14613 SDValue VecIn1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SplitVT, Vec, 14614 DAG.getConstant(0, DL, IdxTy)); 14615 VecIn.pop_back(); 14616 VecIn.push_back(VecIn1); 14617 VecIn.push_back(VecIn2); 14618 14619 for (unsigned i = 0; i < NumElems; i++) { 14620 if (VectorMask[i] <= 0) 14621 continue; 14622 VectorMask[i] = (IndexVec[i] < SplitSize) ? 1 : 2; 14623 } 14624 } 14625 } 14626 } 14627 14628 // TODO: We want to sort the vectors by descending length, so that adjacent 14629 // pairs have similar length, and the longer vector is always first in the 14630 // pair. 14631 14632 // TODO: Should this fire if some of the input vectors has illegal type (like 14633 // it does now), or should we let legalization run its course first? 14634 14635 // Shuffle phase: 14636 // Take pairs of vectors, and shuffle them so that the result has elements 14637 // from these vectors in the correct places. 14638 // For example, given: 14639 // t10: i32 = extract_vector_elt t1, Constant:i64<0> 14640 // t11: i32 = extract_vector_elt t2, Constant:i64<0> 14641 // t12: i32 = extract_vector_elt t3, Constant:i64<0> 14642 // t13: i32 = extract_vector_elt t1, Constant:i64<1> 14643 // t14: v4i32 = BUILD_VECTOR t10, t11, t12, t13 14644 // We will generate: 14645 // t20: v4i32 = vector_shuffle<0,4,u,1> t1, t2 14646 // t21: v4i32 = vector_shuffle<u,u,0,u> t3, undef 14647 SmallVector<SDValue, 4> Shuffles; 14648 for (unsigned In = 0, Len = (VecIn.size() / 2); In < Len; ++In) { 14649 unsigned LeftIdx = 2 * In + 1; 14650 SDValue VecLeft = VecIn[LeftIdx]; 14651 SDValue VecRight = 14652 (LeftIdx + 1) < VecIn.size() ? VecIn[LeftIdx + 1] : SDValue(); 14653 14654 if (SDValue Shuffle = createBuildVecShuffle(DL, N, VectorMask, VecLeft, 14655 VecRight, LeftIdx)) 14656 Shuffles.push_back(Shuffle); 14657 else 14658 return SDValue(); 14659 } 14660 14661 // If we need the zero vector as an "ingredient" in the blend tree, add it 14662 // to the list of shuffles. 14663 if (UsesZeroVector) 14664 Shuffles.push_back(VT.isInteger() ? DAG.getConstant(0, DL, VT) 14665 : DAG.getConstantFP(0.0, DL, VT)); 14666 14667 // If we only have one shuffle, we're done. 14668 if (Shuffles.size() == 1) 14669 return Shuffles[0]; 14670 14671 // Update the vector mask to point to the post-shuffle vectors. 14672 for (int &Vec : VectorMask) 14673 if (Vec == 0) 14674 Vec = Shuffles.size() - 1; 14675 else 14676 Vec = (Vec - 1) / 2; 14677 14678 // More than one shuffle. Generate a binary tree of blends, e.g. if from 14679 // the previous step we got the set of shuffles t10, t11, t12, t13, we will 14680 // generate: 14681 // t10: v8i32 = vector_shuffle<0,8,u,u,u,u,u,u> t1, t2 14682 // t11: v8i32 = vector_shuffle<u,u,0,8,u,u,u,u> t3, t4 14683 // t12: v8i32 = vector_shuffle<u,u,u,u,0,8,u,u> t5, t6 14684 // t13: v8i32 = vector_shuffle<u,u,u,u,u,u,0,8> t7, t8 14685 // t20: v8i32 = vector_shuffle<0,1,10,11,u,u,u,u> t10, t11 14686 // t21: v8i32 = vector_shuffle<u,u,u,u,4,5,14,15> t12, t13 14687 // t30: v8i32 = vector_shuffle<0,1,2,3,12,13,14,15> t20, t21 14688 14689 // Make sure the initial size of the shuffle list is even. 14690 if (Shuffles.size() % 2) 14691 Shuffles.push_back(DAG.getUNDEF(VT)); 14692 14693 for (unsigned CurSize = Shuffles.size(); CurSize > 1; CurSize /= 2) { 14694 if (CurSize % 2) { 14695 Shuffles[CurSize] = DAG.getUNDEF(VT); 14696 CurSize++; 14697 } 14698 for (unsigned In = 0, Len = CurSize / 2; In < Len; ++In) { 14699 int Left = 2 * In; 14700 int Right = 2 * In + 1; 14701 SmallVector<int, 8> Mask(NumElems, -1); 14702 for (unsigned i = 0; i != NumElems; ++i) { 14703 if (VectorMask[i] == Left) { 14704 Mask[i] = i; 14705 VectorMask[i] = In; 14706 } else if (VectorMask[i] == Right) { 14707 Mask[i] = i + NumElems; 14708 VectorMask[i] = In; 14709 } 14710 } 14711 14712 Shuffles[In] = 14713 DAG.getVectorShuffle(VT, DL, Shuffles[Left], Shuffles[Right], Mask); 14714 } 14715 } 14716 return Shuffles[0]; 14717 } 14718 14719 SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) { 14720 EVT VT = N->getValueType(0); 14721 14722 // A vector built entirely of undefs is undef. 14723 if (ISD::allOperandsUndef(N)) 14724 return DAG.getUNDEF(VT); 14725 14726 // Check if we can express BUILD VECTOR via subvector extract. 14727 if (!LegalTypes && (N->getNumOperands() > 1)) { 14728 SDValue Op0 = N->getOperand(0); 14729 auto checkElem = [&](SDValue Op) -> uint64_t { 14730 if ((Op.getOpcode() == ISD::EXTRACT_VECTOR_ELT) && 14731 (Op0.getOperand(0) == Op.getOperand(0))) 14732 if (auto CNode = dyn_cast<ConstantSDNode>(Op.getOperand(1))) 14733 return CNode->getZExtValue(); 14734 return -1; 14735 }; 14736 14737 int Offset = checkElem(Op0); 14738 for (unsigned i = 0; i < N->getNumOperands(); ++i) { 14739 if (Offset + i != checkElem(N->getOperand(i))) { 14740 Offset = -1; 14741 break; 14742 } 14743 } 14744 14745 if ((Offset == 0) && 14746 (Op0.getOperand(0).getValueType() == N->getValueType(0))) 14747 return Op0.getOperand(0); 14748 if ((Offset != -1) && 14749 ((Offset % N->getValueType(0).getVectorNumElements()) == 14750 0)) // IDX must be multiple of output size. 14751 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, SDLoc(N), N->getValueType(0), 14752 Op0.getOperand(0), Op0.getOperand(1)); 14753 } 14754 14755 if (SDValue V = reduceBuildVecExtToExtBuildVec(N)) 14756 return V; 14757 14758 if (SDValue V = reduceBuildVecConvertToConvertBuildVec(N)) 14759 return V; 14760 14761 if (SDValue V = reduceBuildVecToShuffle(N)) 14762 return V; 14763 14764 return SDValue(); 14765 } 14766 14767 static SDValue combineConcatVectorOfScalars(SDNode *N, SelectionDAG &DAG) { 14768 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 14769 EVT OpVT = N->getOperand(0).getValueType(); 14770 14771 // If the operands are legal vectors, leave them alone. 14772 if (TLI.isTypeLegal(OpVT)) 14773 return SDValue(); 14774 14775 SDLoc DL(N); 14776 EVT VT = N->getValueType(0); 14777 SmallVector<SDValue, 8> Ops; 14778 14779 EVT SVT = EVT::getIntegerVT(*DAG.getContext(), OpVT.getSizeInBits()); 14780 SDValue ScalarUndef = DAG.getNode(ISD::UNDEF, DL, SVT); 14781 14782 // Keep track of what we encounter. 14783 bool AnyInteger = false; 14784 bool AnyFP = false; 14785 for (const SDValue &Op : N->ops()) { 14786 if (ISD::BITCAST == Op.getOpcode() && 14787 !Op.getOperand(0).getValueType().isVector()) 14788 Ops.push_back(Op.getOperand(0)); 14789 else if (ISD::UNDEF == Op.getOpcode()) 14790 Ops.push_back(ScalarUndef); 14791 else 14792 return SDValue(); 14793 14794 // Note whether we encounter an integer or floating point scalar. 14795 // If it's neither, bail out, it could be something weird like x86mmx. 14796 EVT LastOpVT = Ops.back().getValueType(); 14797 if (LastOpVT.isFloatingPoint()) 14798 AnyFP = true; 14799 else if (LastOpVT.isInteger()) 14800 AnyInteger = true; 14801 else 14802 return SDValue(); 14803 } 14804 14805 // If any of the operands is a floating point scalar bitcast to a vector, 14806 // use floating point types throughout, and bitcast everything. 14807 // Replace UNDEFs by another scalar UNDEF node, of the final desired type. 14808 if (AnyFP) { 14809 SVT = EVT::getFloatingPointVT(OpVT.getSizeInBits()); 14810 ScalarUndef = DAG.getNode(ISD::UNDEF, DL, SVT); 14811 if (AnyInteger) { 14812 for (SDValue &Op : Ops) { 14813 if (Op.getValueType() == SVT) 14814 continue; 14815 if (Op.isUndef()) 14816 Op = ScalarUndef; 14817 else 14818 Op = DAG.getBitcast(SVT, Op); 14819 } 14820 } 14821 } 14822 14823 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SVT, 14824 VT.getSizeInBits() / SVT.getSizeInBits()); 14825 return DAG.getBitcast(VT, DAG.getBuildVector(VecVT, DL, Ops)); 14826 } 14827 14828 // Check to see if this is a CONCAT_VECTORS of a bunch of EXTRACT_SUBVECTOR 14829 // operations. If so, and if the EXTRACT_SUBVECTOR vector inputs come from at 14830 // most two distinct vectors the same size as the result, attempt to turn this 14831 // into a legal shuffle. 14832 static SDValue combineConcatVectorOfExtracts(SDNode *N, SelectionDAG &DAG) { 14833 EVT VT = N->getValueType(0); 14834 EVT OpVT = N->getOperand(0).getValueType(); 14835 int NumElts = VT.getVectorNumElements(); 14836 int NumOpElts = OpVT.getVectorNumElements(); 14837 14838 SDValue SV0 = DAG.getUNDEF(VT), SV1 = DAG.getUNDEF(VT); 14839 SmallVector<int, 8> Mask; 14840 14841 for (SDValue Op : N->ops()) { 14842 // Peek through any bitcast. 14843 Op = peekThroughBitcast(Op); 14844 14845 // UNDEF nodes convert to UNDEF shuffle mask values. 14846 if (Op.isUndef()) { 14847 Mask.append((unsigned)NumOpElts, -1); 14848 continue; 14849 } 14850 14851 if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR) 14852 return SDValue(); 14853 14854 // What vector are we extracting the subvector from and at what index? 14855 SDValue ExtVec = Op.getOperand(0); 14856 14857 // We want the EVT of the original extraction to correctly scale the 14858 // extraction index. 14859 EVT ExtVT = ExtVec.getValueType(); 14860 14861 // Peek through any bitcast. 14862 ExtVec = peekThroughBitcast(ExtVec); 14863 14864 // UNDEF nodes convert to UNDEF shuffle mask values. 14865 if (ExtVec.isUndef()) { 14866 Mask.append((unsigned)NumOpElts, -1); 14867 continue; 14868 } 14869 14870 if (!isa<ConstantSDNode>(Op.getOperand(1))) 14871 return SDValue(); 14872 int ExtIdx = Op.getConstantOperandVal(1); 14873 14874 // Ensure that we are extracting a subvector from a vector the same 14875 // size as the result. 14876 if (ExtVT.getSizeInBits() != VT.getSizeInBits()) 14877 return SDValue(); 14878 14879 // Scale the subvector index to account for any bitcast. 14880 int NumExtElts = ExtVT.getVectorNumElements(); 14881 if (0 == (NumExtElts % NumElts)) 14882 ExtIdx /= (NumExtElts / NumElts); 14883 else if (0 == (NumElts % NumExtElts)) 14884 ExtIdx *= (NumElts / NumExtElts); 14885 else 14886 return SDValue(); 14887 14888 // At most we can reference 2 inputs in the final shuffle. 14889 if (SV0.isUndef() || SV0 == ExtVec) { 14890 SV0 = ExtVec; 14891 for (int i = 0; i != NumOpElts; ++i) 14892 Mask.push_back(i + ExtIdx); 14893 } else if (SV1.isUndef() || SV1 == ExtVec) { 14894 SV1 = ExtVec; 14895 for (int i = 0; i != NumOpElts; ++i) 14896 Mask.push_back(i + ExtIdx + NumElts); 14897 } else { 14898 return SDValue(); 14899 } 14900 } 14901 14902 if (!DAG.getTargetLoweringInfo().isShuffleMaskLegal(Mask, VT)) 14903 return SDValue(); 14904 14905 return DAG.getVectorShuffle(VT, SDLoc(N), DAG.getBitcast(VT, SV0), 14906 DAG.getBitcast(VT, SV1), Mask); 14907 } 14908 14909 SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) { 14910 // If we only have one input vector, we don't need to do any concatenation. 14911 if (N->getNumOperands() == 1) 14912 return N->getOperand(0); 14913 14914 // Check if all of the operands are undefs. 14915 EVT VT = N->getValueType(0); 14916 if (ISD::allOperandsUndef(N)) 14917 return DAG.getUNDEF(VT); 14918 14919 // Optimize concat_vectors where all but the first of the vectors are undef. 14920 if (std::all_of(std::next(N->op_begin()), N->op_end(), [](const SDValue &Op) { 14921 return Op.isUndef(); 14922 })) { 14923 SDValue In = N->getOperand(0); 14924 assert(In.getValueType().isVector() && "Must concat vectors"); 14925 14926 // Transform: concat_vectors(scalar, undef) -> scalar_to_vector(sclr). 14927 if (In->getOpcode() == ISD::BITCAST && 14928 !In->getOperand(0)->getValueType(0).isVector()) { 14929 SDValue Scalar = In->getOperand(0); 14930 14931 // If the bitcast type isn't legal, it might be a trunc of a legal type; 14932 // look through the trunc so we can still do the transform: 14933 // concat_vectors(trunc(scalar), undef) -> scalar_to_vector(scalar) 14934 if (Scalar->getOpcode() == ISD::TRUNCATE && 14935 !TLI.isTypeLegal(Scalar.getValueType()) && 14936 TLI.isTypeLegal(Scalar->getOperand(0).getValueType())) 14937 Scalar = Scalar->getOperand(0); 14938 14939 EVT SclTy = Scalar->getValueType(0); 14940 14941 if (!SclTy.isFloatingPoint() && !SclTy.isInteger()) 14942 return SDValue(); 14943 14944 unsigned VNTNumElms = VT.getSizeInBits() / SclTy.getSizeInBits(); 14945 if (VNTNumElms < 2) 14946 return SDValue(); 14947 14948 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SclTy, VNTNumElms); 14949 if (!TLI.isTypeLegal(NVT) || !TLI.isTypeLegal(Scalar.getValueType())) 14950 return SDValue(); 14951 14952 SDValue Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(N), NVT, Scalar); 14953 return DAG.getBitcast(VT, Res); 14954 } 14955 } 14956 14957 // Fold any combination of BUILD_VECTOR or UNDEF nodes into one BUILD_VECTOR. 14958 // We have already tested above for an UNDEF only concatenation. 14959 // fold (concat_vectors (BUILD_VECTOR A, B, ...), (BUILD_VECTOR C, D, ...)) 14960 // -> (BUILD_VECTOR A, B, ..., C, D, ...) 14961 auto IsBuildVectorOrUndef = [](const SDValue &Op) { 14962 return ISD::UNDEF == Op.getOpcode() || ISD::BUILD_VECTOR == Op.getOpcode(); 14963 }; 14964 if (llvm::all_of(N->ops(), IsBuildVectorOrUndef)) { 14965 SmallVector<SDValue, 8> Opnds; 14966 EVT SVT = VT.getScalarType(); 14967 14968 EVT MinVT = SVT; 14969 if (!SVT.isFloatingPoint()) { 14970 // If BUILD_VECTOR are from built from integer, they may have different 14971 // operand types. Get the smallest type and truncate all operands to it. 14972 bool FoundMinVT = false; 14973 for (const SDValue &Op : N->ops()) 14974 if (ISD::BUILD_VECTOR == Op.getOpcode()) { 14975 EVT OpSVT = Op.getOperand(0)->getValueType(0); 14976 MinVT = (!FoundMinVT || OpSVT.bitsLE(MinVT)) ? OpSVT : MinVT; 14977 FoundMinVT = true; 14978 } 14979 assert(FoundMinVT && "Concat vector type mismatch"); 14980 } 14981 14982 for (const SDValue &Op : N->ops()) { 14983 EVT OpVT = Op.getValueType(); 14984 unsigned NumElts = OpVT.getVectorNumElements(); 14985 14986 if (ISD::UNDEF == Op.getOpcode()) 14987 Opnds.append(NumElts, DAG.getUNDEF(MinVT)); 14988 14989 if (ISD::BUILD_VECTOR == Op.getOpcode()) { 14990 if (SVT.isFloatingPoint()) { 14991 assert(SVT == OpVT.getScalarType() && "Concat vector type mismatch"); 14992 Opnds.append(Op->op_begin(), Op->op_begin() + NumElts); 14993 } else { 14994 for (unsigned i = 0; i != NumElts; ++i) 14995 Opnds.push_back( 14996 DAG.getNode(ISD::TRUNCATE, SDLoc(N), MinVT, Op.getOperand(i))); 14997 } 14998 } 14999 } 15000 15001 assert(VT.getVectorNumElements() == Opnds.size() && 15002 "Concat vector type mismatch"); 15003 return DAG.getBuildVector(VT, SDLoc(N), Opnds); 15004 } 15005 15006 // Fold CONCAT_VECTORS of only bitcast scalars (or undef) to BUILD_VECTOR. 15007 if (SDValue V = combineConcatVectorOfScalars(N, DAG)) 15008 return V; 15009 15010 // Fold CONCAT_VECTORS of EXTRACT_SUBVECTOR (or undef) to VECTOR_SHUFFLE. 15011 if (Level < AfterLegalizeVectorOps && TLI.isTypeLegal(VT)) 15012 if (SDValue V = combineConcatVectorOfExtracts(N, DAG)) 15013 return V; 15014 15015 // Type legalization of vectors and DAG canonicalization of SHUFFLE_VECTOR 15016 // nodes often generate nop CONCAT_VECTOR nodes. 15017 // Scan the CONCAT_VECTOR operands and look for a CONCAT operations that 15018 // place the incoming vectors at the exact same location. 15019 SDValue SingleSource = SDValue(); 15020 unsigned PartNumElem = N->getOperand(0).getValueType().getVectorNumElements(); 15021 15022 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 15023 SDValue Op = N->getOperand(i); 15024 15025 if (Op.isUndef()) 15026 continue; 15027 15028 // Check if this is the identity extract: 15029 if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR) 15030 return SDValue(); 15031 15032 // Find the single incoming vector for the extract_subvector. 15033 if (SingleSource.getNode()) { 15034 if (Op.getOperand(0) != SingleSource) 15035 return SDValue(); 15036 } else { 15037 SingleSource = Op.getOperand(0); 15038 15039 // Check the source type is the same as the type of the result. 15040 // If not, this concat may extend the vector, so we can not 15041 // optimize it away. 15042 if (SingleSource.getValueType() != N->getValueType(0)) 15043 return SDValue(); 15044 } 15045 15046 unsigned IdentityIndex = i * PartNumElem; 15047 ConstantSDNode *CS = dyn_cast<ConstantSDNode>(Op.getOperand(1)); 15048 // The extract index must be constant. 15049 if (!CS) 15050 return SDValue(); 15051 15052 // Check that we are reading from the identity index. 15053 if (CS->getZExtValue() != IdentityIndex) 15054 return SDValue(); 15055 } 15056 15057 if (SingleSource.getNode()) 15058 return SingleSource; 15059 15060 return SDValue(); 15061 } 15062 15063 /// If we are extracting a subvector produced by a wide binary operator with at 15064 /// at least one operand that was the result of a vector concatenation, then try 15065 /// to use the narrow vector operands directly to avoid the concatenation and 15066 /// extraction. 15067 static SDValue narrowExtractedVectorBinOp(SDNode *Extract, SelectionDAG &DAG) { 15068 // TODO: Refactor with the caller (visitEXTRACT_SUBVECTOR), so we can share 15069 // some of these bailouts with other transforms. 15070 15071 // The extract index must be a constant, so we can map it to a concat operand. 15072 auto *ExtractIndex = dyn_cast<ConstantSDNode>(Extract->getOperand(1)); 15073 if (!ExtractIndex) 15074 return SDValue(); 15075 15076 // Only handle the case where we are doubling and then halving. A larger ratio 15077 // may require more than two narrow binops to replace the wide binop. 15078 EVT VT = Extract->getValueType(0); 15079 unsigned NumElems = VT.getVectorNumElements(); 15080 assert((ExtractIndex->getZExtValue() % NumElems) == 0 && 15081 "Extract index is not a multiple of the vector length."); 15082 if (Extract->getOperand(0).getValueSizeInBits() != VT.getSizeInBits() * 2) 15083 return SDValue(); 15084 15085 // We are looking for an optionally bitcasted wide vector binary operator 15086 // feeding an extract subvector. 15087 SDValue BinOp = peekThroughBitcast(Extract->getOperand(0)); 15088 15089 // TODO: The motivating case for this transform is an x86 AVX1 target. That 15090 // target has temptingly almost legal versions of bitwise logic ops in 256-bit 15091 // flavors, but no other 256-bit integer support. This could be extended to 15092 // handle any binop, but that may require fixing/adding other folds to avoid 15093 // codegen regressions. 15094 unsigned BOpcode = BinOp.getOpcode(); 15095 if (BOpcode != ISD::AND && BOpcode != ISD::OR && BOpcode != ISD::XOR) 15096 return SDValue(); 15097 15098 // The binop must be a vector type, so we can chop it in half. 15099 EVT WideBVT = BinOp.getValueType(); 15100 if (!WideBVT.isVector()) 15101 return SDValue(); 15102 15103 // Bail out if the target does not support a narrower version of the binop. 15104 EVT NarrowBVT = EVT::getVectorVT(*DAG.getContext(), WideBVT.getScalarType(), 15105 WideBVT.getVectorNumElements() / 2); 15106 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 15107 if (!TLI.isOperationLegalOrCustomOrPromote(BOpcode, NarrowBVT)) 15108 return SDValue(); 15109 15110 // Peek through bitcasts of the binary operator operands if needed. 15111 SDValue LHS = peekThroughBitcast(BinOp.getOperand(0)); 15112 SDValue RHS = peekThroughBitcast(BinOp.getOperand(1)); 15113 15114 // We need at least one concatenation operation of a binop operand to make 15115 // this transform worthwhile. The concat must double the input vector sizes. 15116 // TODO: Should we also handle INSERT_SUBVECTOR patterns? 15117 bool ConcatL = 15118 LHS.getOpcode() == ISD::CONCAT_VECTORS && LHS.getNumOperands() == 2; 15119 bool ConcatR = 15120 RHS.getOpcode() == ISD::CONCAT_VECTORS && RHS.getNumOperands() == 2; 15121 if (!ConcatL && !ConcatR) 15122 return SDValue(); 15123 15124 // If one of the binop operands was not the result of a concat, we must 15125 // extract a half-sized operand for our new narrow binop. We can't just reuse 15126 // the original extract index operand because we may have bitcasted. 15127 unsigned ConcatOpNum = ExtractIndex->getZExtValue() / NumElems; 15128 unsigned ExtBOIdx = ConcatOpNum * NarrowBVT.getVectorNumElements(); 15129 EVT ExtBOIdxVT = Extract->getOperand(1).getValueType(); 15130 SDLoc DL(Extract); 15131 15132 // extract (binop (concat X1, X2), (concat Y1, Y2)), N --> binop XN, YN 15133 // extract (binop (concat X1, X2), Y), N --> binop XN, (extract Y, N) 15134 // extract (binop X, (concat Y1, Y2)), N --> binop (extract X, N), YN 15135 SDValue X = ConcatL ? DAG.getBitcast(NarrowBVT, LHS.getOperand(ConcatOpNum)) 15136 : DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, NarrowBVT, 15137 BinOp.getOperand(0), 15138 DAG.getConstant(ExtBOIdx, DL, ExtBOIdxVT)); 15139 15140 SDValue Y = ConcatR ? DAG.getBitcast(NarrowBVT, RHS.getOperand(ConcatOpNum)) 15141 : DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, NarrowBVT, 15142 BinOp.getOperand(1), 15143 DAG.getConstant(ExtBOIdx, DL, ExtBOIdxVT)); 15144 15145 SDValue NarrowBinOp = DAG.getNode(BOpcode, DL, NarrowBVT, X, Y); 15146 return DAG.getBitcast(VT, NarrowBinOp); 15147 } 15148 15149 /// If we are extracting a subvector from a wide vector load, convert to a 15150 /// narrow load to eliminate the extraction: 15151 /// (extract_subvector (load wide vector)) --> (load narrow vector) 15152 static SDValue narrowExtractedVectorLoad(SDNode *Extract, SelectionDAG &DAG) { 15153 // TODO: Add support for big-endian. The offset calculation must be adjusted. 15154 if (DAG.getDataLayout().isBigEndian()) 15155 return SDValue(); 15156 15157 // TODO: The one-use check is overly conservative. Check the cost of the 15158 // extract instead or remove that condition entirely. 15159 auto *Ld = dyn_cast<LoadSDNode>(Extract->getOperand(0)); 15160 auto *ExtIdx = dyn_cast<ConstantSDNode>(Extract->getOperand(1)); 15161 if (!Ld || !Ld->hasOneUse() || Ld->getExtensionType() || Ld->isVolatile() || 15162 !ExtIdx) 15163 return SDValue(); 15164 15165 // The narrow load will be offset from the base address of the old load if 15166 // we are extracting from something besides index 0 (little-endian). 15167 EVT VT = Extract->getValueType(0); 15168 SDLoc DL(Extract); 15169 SDValue BaseAddr = Ld->getOperand(1); 15170 unsigned Offset = ExtIdx->getZExtValue() * VT.getScalarType().getStoreSize(); 15171 15172 // TODO: Use "BaseIndexOffset" to make this more effective. 15173 SDValue NewAddr = DAG.getMemBasePlusOffset(BaseAddr, Offset, DL); 15174 MachineFunction &MF = DAG.getMachineFunction(); 15175 MachineMemOperand *MMO = MF.getMachineMemOperand(Ld->getMemOperand(), Offset, 15176 VT.getStoreSize()); 15177 SDValue NewLd = DAG.getLoad(VT, DL, Ld->getChain(), NewAddr, MMO); 15178 DAG.makeEquivalentMemoryOrdering(Ld, NewLd); 15179 return NewLd; 15180 } 15181 15182 SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) { 15183 EVT NVT = N->getValueType(0); 15184 SDValue V = N->getOperand(0); 15185 15186 // Extract from UNDEF is UNDEF. 15187 if (V.isUndef()) 15188 return DAG.getUNDEF(NVT); 15189 15190 if (TLI.isOperationLegalOrCustomOrPromote(ISD::LOAD, NVT)) 15191 if (SDValue NarrowLoad = narrowExtractedVectorLoad(N, DAG)) 15192 return NarrowLoad; 15193 15194 // Combine: 15195 // (extract_subvec (concat V1, V2, ...), i) 15196 // Into: 15197 // Vi if possible 15198 // Only operand 0 is checked as 'concat' assumes all inputs of the same 15199 // type. 15200 if (V->getOpcode() == ISD::CONCAT_VECTORS && 15201 isa<ConstantSDNode>(N->getOperand(1)) && 15202 V->getOperand(0).getValueType() == NVT) { 15203 unsigned Idx = N->getConstantOperandVal(1); 15204 unsigned NumElems = NVT.getVectorNumElements(); 15205 assert((Idx % NumElems) == 0 && 15206 "IDX in concat is not a multiple of the result vector length."); 15207 return V->getOperand(Idx / NumElems); 15208 } 15209 15210 // Skip bitcasting 15211 V = peekThroughBitcast(V); 15212 15213 // If the input is a build vector. Try to make a smaller build vector. 15214 if (V->getOpcode() == ISD::BUILD_VECTOR) { 15215 if (auto *Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))) { 15216 EVT InVT = V->getValueType(0); 15217 unsigned ExtractSize = NVT.getSizeInBits(); 15218 unsigned EltSize = InVT.getScalarSizeInBits(); 15219 // Only do this if we won't split any elements. 15220 if (ExtractSize % EltSize == 0) { 15221 unsigned NumElems = ExtractSize / EltSize; 15222 EVT ExtractVT = EVT::getVectorVT(*DAG.getContext(), 15223 InVT.getVectorElementType(), NumElems); 15224 if ((!LegalOperations || 15225 TLI.isOperationLegal(ISD::BUILD_VECTOR, ExtractVT)) && 15226 (!LegalTypes || TLI.isTypeLegal(ExtractVT))) { 15227 unsigned IdxVal = (Idx->getZExtValue() * NVT.getScalarSizeInBits()) / 15228 EltSize; 15229 15230 // Extract the pieces from the original build_vector. 15231 SDValue BuildVec = DAG.getBuildVector(ExtractVT, SDLoc(N), 15232 makeArrayRef(V->op_begin() + IdxVal, 15233 NumElems)); 15234 return DAG.getBitcast(NVT, BuildVec); 15235 } 15236 } 15237 } 15238 } 15239 15240 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) { 15241 // Handle only simple case where vector being inserted and vector 15242 // being extracted are of same size. 15243 EVT SmallVT = V->getOperand(1).getValueType(); 15244 if (!NVT.bitsEq(SmallVT)) 15245 return SDValue(); 15246 15247 // Only handle cases where both indexes are constants. 15248 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1)); 15249 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2)); 15250 15251 if (InsIdx && ExtIdx) { 15252 // Combine: 15253 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx) 15254 // Into: 15255 // indices are equal or bit offsets are equal => V1 15256 // otherwise => (extract_subvec V1, ExtIdx) 15257 if (InsIdx->getZExtValue() * SmallVT.getScalarSizeInBits() == 15258 ExtIdx->getZExtValue() * NVT.getScalarSizeInBits()) 15259 return DAG.getBitcast(NVT, V->getOperand(1)); 15260 return DAG.getNode( 15261 ISD::EXTRACT_SUBVECTOR, SDLoc(N), NVT, 15262 DAG.getBitcast(N->getOperand(0).getValueType(), V->getOperand(0)), 15263 N->getOperand(1)); 15264 } 15265 } 15266 15267 if (SDValue NarrowBOp = narrowExtractedVectorBinOp(N, DAG)) 15268 return NarrowBOp; 15269 15270 return SDValue(); 15271 } 15272 15273 static SDValue simplifyShuffleOperandRecursively(SmallBitVector &UsedElements, 15274 SDValue V, SelectionDAG &DAG) { 15275 SDLoc DL(V); 15276 EVT VT = V.getValueType(); 15277 15278 switch (V.getOpcode()) { 15279 default: 15280 return V; 15281 15282 case ISD::CONCAT_VECTORS: { 15283 EVT OpVT = V->getOperand(0).getValueType(); 15284 int OpSize = OpVT.getVectorNumElements(); 15285 SmallBitVector OpUsedElements(OpSize, false); 15286 bool FoundSimplification = false; 15287 SmallVector<SDValue, 4> NewOps; 15288 NewOps.reserve(V->getNumOperands()); 15289 for (int i = 0, NumOps = V->getNumOperands(); i < NumOps; ++i) { 15290 SDValue Op = V->getOperand(i); 15291 bool OpUsed = false; 15292 for (int j = 0; j < OpSize; ++j) 15293 if (UsedElements[i * OpSize + j]) { 15294 OpUsedElements[j] = true; 15295 OpUsed = true; 15296 } 15297 NewOps.push_back( 15298 OpUsed ? simplifyShuffleOperandRecursively(OpUsedElements, Op, DAG) 15299 : DAG.getUNDEF(OpVT)); 15300 FoundSimplification |= Op == NewOps.back(); 15301 OpUsedElements.reset(); 15302 } 15303 if (FoundSimplification) 15304 V = DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, NewOps); 15305 return V; 15306 } 15307 15308 case ISD::INSERT_SUBVECTOR: { 15309 SDValue BaseV = V->getOperand(0); 15310 SDValue SubV = V->getOperand(1); 15311 auto *IdxN = dyn_cast<ConstantSDNode>(V->getOperand(2)); 15312 if (!IdxN) 15313 return V; 15314 15315 int SubSize = SubV.getValueType().getVectorNumElements(); 15316 int Idx = IdxN->getZExtValue(); 15317 bool SubVectorUsed = false; 15318 SmallBitVector SubUsedElements(SubSize, false); 15319 for (int i = 0; i < SubSize; ++i) 15320 if (UsedElements[i + Idx]) { 15321 SubVectorUsed = true; 15322 SubUsedElements[i] = true; 15323 UsedElements[i + Idx] = false; 15324 } 15325 15326 // Now recurse on both the base and sub vectors. 15327 SDValue SimplifiedSubV = 15328 SubVectorUsed 15329 ? simplifyShuffleOperandRecursively(SubUsedElements, SubV, DAG) 15330 : DAG.getUNDEF(SubV.getValueType()); 15331 SDValue SimplifiedBaseV = simplifyShuffleOperandRecursively(UsedElements, BaseV, DAG); 15332 if (SimplifiedSubV != SubV || SimplifiedBaseV != BaseV) 15333 V = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, VT, 15334 SimplifiedBaseV, SimplifiedSubV, V->getOperand(2)); 15335 return V; 15336 } 15337 } 15338 } 15339 15340 static SDValue simplifyShuffleOperands(ShuffleVectorSDNode *SVN, SDValue N0, 15341 SDValue N1, SelectionDAG &DAG) { 15342 EVT VT = SVN->getValueType(0); 15343 int NumElts = VT.getVectorNumElements(); 15344 SmallBitVector N0UsedElements(NumElts, false), N1UsedElements(NumElts, false); 15345 for (int M : SVN->getMask()) 15346 if (M >= 0 && M < NumElts) 15347 N0UsedElements[M] = true; 15348 else if (M >= NumElts) 15349 N1UsedElements[M - NumElts] = true; 15350 15351 SDValue S0 = simplifyShuffleOperandRecursively(N0UsedElements, N0, DAG); 15352 SDValue S1 = simplifyShuffleOperandRecursively(N1UsedElements, N1, DAG); 15353 if (S0 == N0 && S1 == N1) 15354 return SDValue(); 15355 15356 return DAG.getVectorShuffle(VT, SDLoc(SVN), S0, S1, SVN->getMask()); 15357 } 15358 15359 static SDValue simplifyShuffleMask(ShuffleVectorSDNode *SVN, SDValue N0, 15360 SDValue N1, SelectionDAG &DAG) { 15361 auto isUndefElt = [](SDValue V, int Idx) { 15362 // TODO - handle more cases as required. 15363 if (V.getOpcode() == ISD::BUILD_VECTOR) 15364 return V.getOperand(Idx).isUndef(); 15365 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR) 15366 return (Idx != 0) || V.getOperand(0).isUndef(); 15367 return false; 15368 }; 15369 15370 EVT VT = SVN->getValueType(0); 15371 unsigned NumElts = VT.getVectorNumElements(); 15372 15373 bool Changed = false; 15374 SmallVector<int, 8> NewMask; 15375 for (unsigned i = 0; i != NumElts; ++i) { 15376 int Idx = SVN->getMaskElt(i); 15377 if ((0 <= Idx && Idx < (int)NumElts && isUndefElt(N0, Idx)) || 15378 ((int)NumElts < Idx && isUndefElt(N1, Idx - NumElts))) { 15379 Changed = true; 15380 Idx = -1; 15381 } 15382 NewMask.push_back(Idx); 15383 } 15384 if (Changed) 15385 return DAG.getVectorShuffle(VT, SDLoc(SVN), N0, N1, NewMask); 15386 15387 return SDValue(); 15388 } 15389 15390 // Tries to turn a shuffle of two CONCAT_VECTORS into a single concat, 15391 // or turn a shuffle of a single concat into simpler shuffle then concat. 15392 static SDValue partitionShuffleOfConcats(SDNode *N, SelectionDAG &DAG) { 15393 EVT VT = N->getValueType(0); 15394 unsigned NumElts = VT.getVectorNumElements(); 15395 15396 SDValue N0 = N->getOperand(0); 15397 SDValue N1 = N->getOperand(1); 15398 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); 15399 15400 SmallVector<SDValue, 4> Ops; 15401 EVT ConcatVT = N0.getOperand(0).getValueType(); 15402 unsigned NumElemsPerConcat = ConcatVT.getVectorNumElements(); 15403 unsigned NumConcats = NumElts / NumElemsPerConcat; 15404 15405 // Special case: shuffle(concat(A,B)) can be more efficiently represented 15406 // as concat(shuffle(A,B),UNDEF) if the shuffle doesn't set any of the high 15407 // half vector elements. 15408 if (NumElemsPerConcat * 2 == NumElts && N1.isUndef() && 15409 std::all_of(SVN->getMask().begin() + NumElemsPerConcat, 15410 SVN->getMask().end(), [](int i) { return i == -1; })) { 15411 N0 = DAG.getVectorShuffle(ConcatVT, SDLoc(N), N0.getOperand(0), N0.getOperand(1), 15412 makeArrayRef(SVN->getMask().begin(), NumElemsPerConcat)); 15413 N1 = DAG.getUNDEF(ConcatVT); 15414 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, N0, N1); 15415 } 15416 15417 // Look at every vector that's inserted. We're looking for exact 15418 // subvector-sized copies from a concatenated vector 15419 for (unsigned I = 0; I != NumConcats; ++I) { 15420 // Make sure we're dealing with a copy. 15421 unsigned Begin = I * NumElemsPerConcat; 15422 bool AllUndef = true, NoUndef = true; 15423 for (unsigned J = Begin; J != Begin + NumElemsPerConcat; ++J) { 15424 if (SVN->getMaskElt(J) >= 0) 15425 AllUndef = false; 15426 else 15427 NoUndef = false; 15428 } 15429 15430 if (NoUndef) { 15431 if (SVN->getMaskElt(Begin) % NumElemsPerConcat != 0) 15432 return SDValue(); 15433 15434 for (unsigned J = 1; J != NumElemsPerConcat; ++J) 15435 if (SVN->getMaskElt(Begin + J - 1) + 1 != SVN->getMaskElt(Begin + J)) 15436 return SDValue(); 15437 15438 unsigned FirstElt = SVN->getMaskElt(Begin) / NumElemsPerConcat; 15439 if (FirstElt < N0.getNumOperands()) 15440 Ops.push_back(N0.getOperand(FirstElt)); 15441 else 15442 Ops.push_back(N1.getOperand(FirstElt - N0.getNumOperands())); 15443 15444 } else if (AllUndef) { 15445 Ops.push_back(DAG.getUNDEF(N0.getOperand(0).getValueType())); 15446 } else { // Mixed with general masks and undefs, can't do optimization. 15447 return SDValue(); 15448 } 15449 } 15450 15451 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Ops); 15452 } 15453 15454 // Attempt to combine a shuffle of 2 inputs of 'scalar sources' - 15455 // BUILD_VECTOR or SCALAR_TO_VECTOR into a single BUILD_VECTOR. 15456 // 15457 // SHUFFLE(BUILD_VECTOR(), BUILD_VECTOR()) -> BUILD_VECTOR() is always 15458 // a simplification in some sense, but it isn't appropriate in general: some 15459 // BUILD_VECTORs are substantially cheaper than others. The general case 15460 // of a BUILD_VECTOR requires inserting each element individually (or 15461 // performing the equivalent in a temporary stack variable). A BUILD_VECTOR of 15462 // all constants is a single constant pool load. A BUILD_VECTOR where each 15463 // element is identical is a splat. A BUILD_VECTOR where most of the operands 15464 // are undef lowers to a small number of element insertions. 15465 // 15466 // To deal with this, we currently use a bunch of mostly arbitrary heuristics. 15467 // We don't fold shuffles where one side is a non-zero constant, and we don't 15468 // fold shuffles if the resulting (non-splat) BUILD_VECTOR would have duplicate 15469 // non-constant operands. This seems to work out reasonably well in practice. 15470 static SDValue combineShuffleOfScalars(ShuffleVectorSDNode *SVN, 15471 SelectionDAG &DAG, 15472 const TargetLowering &TLI) { 15473 EVT VT = SVN->getValueType(0); 15474 unsigned NumElts = VT.getVectorNumElements(); 15475 SDValue N0 = SVN->getOperand(0); 15476 SDValue N1 = SVN->getOperand(1); 15477 15478 if (!N0->hasOneUse() || !N1->hasOneUse()) 15479 return SDValue(); 15480 15481 // If only one of N1,N2 is constant, bail out if it is not ALL_ZEROS as 15482 // discussed above. 15483 if (!N1.isUndef()) { 15484 bool N0AnyConst = isAnyConstantBuildVector(N0.getNode()); 15485 bool N1AnyConst = isAnyConstantBuildVector(N1.getNode()); 15486 if (N0AnyConst && !N1AnyConst && !ISD::isBuildVectorAllZeros(N0.getNode())) 15487 return SDValue(); 15488 if (!N0AnyConst && N1AnyConst && !ISD::isBuildVectorAllZeros(N1.getNode())) 15489 return SDValue(); 15490 } 15491 15492 // If both inputs are splats of the same value then we can safely merge this 15493 // to a single BUILD_VECTOR with undef elements based on the shuffle mask. 15494 bool IsSplat = false; 15495 auto *BV0 = dyn_cast<BuildVectorSDNode>(N0); 15496 auto *BV1 = dyn_cast<BuildVectorSDNode>(N1); 15497 if (BV0 && BV1) 15498 if (SDValue Splat0 = BV0->getSplatValue()) 15499 IsSplat = (Splat0 == BV1->getSplatValue()); 15500 15501 SmallVector<SDValue, 8> Ops; 15502 SmallSet<SDValue, 16> DuplicateOps; 15503 for (int M : SVN->getMask()) { 15504 SDValue Op = DAG.getUNDEF(VT.getScalarType()); 15505 if (M >= 0) { 15506 int Idx = M < (int)NumElts ? M : M - NumElts; 15507 SDValue &S = (M < (int)NumElts ? N0 : N1); 15508 if (S.getOpcode() == ISD::BUILD_VECTOR) { 15509 Op = S.getOperand(Idx); 15510 } else if (S.getOpcode() == ISD::SCALAR_TO_VECTOR) { 15511 assert(Idx == 0 && "Unexpected SCALAR_TO_VECTOR operand index."); 15512 Op = S.getOperand(0); 15513 } else { 15514 // Operand can't be combined - bail out. 15515 return SDValue(); 15516 } 15517 } 15518 15519 // Don't duplicate a non-constant BUILD_VECTOR operand unless we're 15520 // generating a splat; semantically, this is fine, but it's likely to 15521 // generate low-quality code if the target can't reconstruct an appropriate 15522 // shuffle. 15523 if (!Op.isUndef() && !isa<ConstantSDNode>(Op) && !isa<ConstantFPSDNode>(Op)) 15524 if (!IsSplat && !DuplicateOps.insert(Op).second) 15525 return SDValue(); 15526 15527 Ops.push_back(Op); 15528 } 15529 15530 // BUILD_VECTOR requires all inputs to be of the same type, find the 15531 // maximum type and extend them all. 15532 EVT SVT = VT.getScalarType(); 15533 if (SVT.isInteger()) 15534 for (SDValue &Op : Ops) 15535 SVT = (SVT.bitsLT(Op.getValueType()) ? Op.getValueType() : SVT); 15536 if (SVT != VT.getScalarType()) 15537 for (SDValue &Op : Ops) 15538 Op = TLI.isZExtFree(Op.getValueType(), SVT) 15539 ? DAG.getZExtOrTrunc(Op, SDLoc(SVN), SVT) 15540 : DAG.getSExtOrTrunc(Op, SDLoc(SVN), SVT); 15541 return DAG.getBuildVector(VT, SDLoc(SVN), Ops); 15542 } 15543 15544 // Match shuffles that can be converted to any_vector_extend_in_reg. 15545 // This is often generated during legalization. 15546 // e.g. v4i32 <0,u,1,u> -> (v2i64 any_vector_extend_in_reg(v4i32 src)) 15547 // TODO Add support for ZERO_EXTEND_VECTOR_INREG when we have a test case. 15548 static SDValue combineShuffleToVectorExtend(ShuffleVectorSDNode *SVN, 15549 SelectionDAG &DAG, 15550 const TargetLowering &TLI, 15551 bool LegalOperations, 15552 bool LegalTypes) { 15553 EVT VT = SVN->getValueType(0); 15554 bool IsBigEndian = DAG.getDataLayout().isBigEndian(); 15555 15556 // TODO Add support for big-endian when we have a test case. 15557 if (!VT.isInteger() || IsBigEndian) 15558 return SDValue(); 15559 15560 unsigned NumElts = VT.getVectorNumElements(); 15561 unsigned EltSizeInBits = VT.getScalarSizeInBits(); 15562 ArrayRef<int> Mask = SVN->getMask(); 15563 SDValue N0 = SVN->getOperand(0); 15564 15565 // shuffle<0,-1,1,-1> == (v2i64 anyextend_vector_inreg(v4i32)) 15566 auto isAnyExtend = [&Mask, &NumElts](unsigned Scale) { 15567 for (unsigned i = 0; i != NumElts; ++i) { 15568 if (Mask[i] < 0) 15569 continue; 15570 if ((i % Scale) == 0 && Mask[i] == (int)(i / Scale)) 15571 continue; 15572 return false; 15573 } 15574 return true; 15575 }; 15576 15577 // Attempt to match a '*_extend_vector_inreg' shuffle, we just search for 15578 // power-of-2 extensions as they are the most likely. 15579 for (unsigned Scale = 2; Scale < NumElts; Scale *= 2) { 15580 // Check for non power of 2 vector sizes 15581 if (NumElts % Scale != 0) 15582 continue; 15583 if (!isAnyExtend(Scale)) 15584 continue; 15585 15586 EVT OutSVT = EVT::getIntegerVT(*DAG.getContext(), EltSizeInBits * Scale); 15587 EVT OutVT = EVT::getVectorVT(*DAG.getContext(), OutSVT, NumElts / Scale); 15588 if (!LegalTypes || TLI.isTypeLegal(OutVT)) 15589 if (!LegalOperations || 15590 TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND_VECTOR_INREG, OutVT)) 15591 return DAG.getBitcast(VT, 15592 DAG.getAnyExtendVectorInReg(N0, SDLoc(SVN), OutVT)); 15593 } 15594 15595 return SDValue(); 15596 } 15597 15598 // Detect 'truncate_vector_inreg' style shuffles that pack the lower parts of 15599 // each source element of a large type into the lowest elements of a smaller 15600 // destination type. This is often generated during legalization. 15601 // If the source node itself was a '*_extend_vector_inreg' node then we should 15602 // then be able to remove it. 15603 static SDValue combineTruncationShuffle(ShuffleVectorSDNode *SVN, 15604 SelectionDAG &DAG) { 15605 EVT VT = SVN->getValueType(0); 15606 bool IsBigEndian = DAG.getDataLayout().isBigEndian(); 15607 15608 // TODO Add support for big-endian when we have a test case. 15609 if (!VT.isInteger() || IsBigEndian) 15610 return SDValue(); 15611 15612 SDValue N0 = peekThroughBitcast(SVN->getOperand(0)); 15613 15614 unsigned Opcode = N0.getOpcode(); 15615 if (Opcode != ISD::ANY_EXTEND_VECTOR_INREG && 15616 Opcode != ISD::SIGN_EXTEND_VECTOR_INREG && 15617 Opcode != ISD::ZERO_EXTEND_VECTOR_INREG) 15618 return SDValue(); 15619 15620 SDValue N00 = N0.getOperand(0); 15621 ArrayRef<int> Mask = SVN->getMask(); 15622 unsigned NumElts = VT.getVectorNumElements(); 15623 unsigned EltSizeInBits = VT.getScalarSizeInBits(); 15624 unsigned ExtSrcSizeInBits = N00.getScalarValueSizeInBits(); 15625 unsigned ExtDstSizeInBits = N0.getScalarValueSizeInBits(); 15626 15627 if (ExtDstSizeInBits % ExtSrcSizeInBits != 0) 15628 return SDValue(); 15629 unsigned ExtScale = ExtDstSizeInBits / ExtSrcSizeInBits; 15630 15631 // (v4i32 truncate_vector_inreg(v2i64)) == shuffle<0,2-1,-1> 15632 // (v8i16 truncate_vector_inreg(v4i32)) == shuffle<0,2,4,6,-1,-1,-1,-1> 15633 // (v8i16 truncate_vector_inreg(v2i64)) == shuffle<0,4,-1,-1,-1,-1,-1,-1> 15634 auto isTruncate = [&Mask, &NumElts](unsigned Scale) { 15635 for (unsigned i = 0; i != NumElts; ++i) { 15636 if (Mask[i] < 0) 15637 continue; 15638 if ((i * Scale) < NumElts && Mask[i] == (int)(i * Scale)) 15639 continue; 15640 return false; 15641 } 15642 return true; 15643 }; 15644 15645 // At the moment we just handle the case where we've truncated back to the 15646 // same size as before the extension. 15647 // TODO: handle more extension/truncation cases as cases arise. 15648 if (EltSizeInBits != ExtSrcSizeInBits) 15649 return SDValue(); 15650 15651 // We can remove *extend_vector_inreg only if the truncation happens at 15652 // the same scale as the extension. 15653 if (isTruncate(ExtScale)) 15654 return DAG.getBitcast(VT, N00); 15655 15656 return SDValue(); 15657 } 15658 15659 // Combine shuffles of splat-shuffles of the form: 15660 // shuffle (shuffle V, undef, splat-mask), undef, M 15661 // If splat-mask contains undef elements, we need to be careful about 15662 // introducing undef's in the folded mask which are not the result of composing 15663 // the masks of the shuffles. 15664 static SDValue combineShuffleOfSplat(ArrayRef<int> UserMask, 15665 ShuffleVectorSDNode *Splat, 15666 SelectionDAG &DAG) { 15667 ArrayRef<int> SplatMask = Splat->getMask(); 15668 assert(UserMask.size() == SplatMask.size() && "Mask length mismatch"); 15669 15670 // Prefer simplifying to the splat-shuffle, if possible. This is legal if 15671 // every undef mask element in the splat-shuffle has a corresponding undef 15672 // element in the user-shuffle's mask or if the composition of mask elements 15673 // would result in undef. 15674 // Examples for (shuffle (shuffle v, undef, SplatMask), undef, UserMask): 15675 // * UserMask=[0,2,u,u], SplatMask=[2,u,2,u] -> [2,2,u,u] 15676 // In this case it is not legal to simplify to the splat-shuffle because we 15677 // may be exposing the users of the shuffle an undef element at index 1 15678 // which was not there before the combine. 15679 // * UserMask=[0,u,2,u], SplatMask=[2,u,2,u] -> [2,u,2,u] 15680 // In this case the composition of masks yields SplatMask, so it's ok to 15681 // simplify to the splat-shuffle. 15682 // * UserMask=[3,u,2,u], SplatMask=[2,u,2,u] -> [u,u,2,u] 15683 // In this case the composed mask includes all undef elements of SplatMask 15684 // and in addition sets element zero to undef. It is safe to simplify to 15685 // the splat-shuffle. 15686 auto CanSimplifyToExistingSplat = [](ArrayRef<int> UserMask, 15687 ArrayRef<int> SplatMask) { 15688 for (unsigned i = 0, e = UserMask.size(); i != e; ++i) 15689 if (UserMask[i] != -1 && SplatMask[i] == -1 && 15690 SplatMask[UserMask[i]] != -1) 15691 return false; 15692 return true; 15693 }; 15694 if (CanSimplifyToExistingSplat(UserMask, SplatMask)) 15695 return SDValue(Splat, 0); 15696 15697 // Create a new shuffle with a mask that is composed of the two shuffles' 15698 // masks. 15699 SmallVector<int, 32> NewMask; 15700 for (int Idx : UserMask) 15701 NewMask.push_back(Idx == -1 ? -1 : SplatMask[Idx]); 15702 15703 return DAG.getVectorShuffle(Splat->getValueType(0), SDLoc(Splat), 15704 Splat->getOperand(0), Splat->getOperand(1), 15705 NewMask); 15706 } 15707 15708 SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) { 15709 EVT VT = N->getValueType(0); 15710 unsigned NumElts = VT.getVectorNumElements(); 15711 15712 SDValue N0 = N->getOperand(0); 15713 SDValue N1 = N->getOperand(1); 15714 15715 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG"); 15716 15717 // Canonicalize shuffle undef, undef -> undef 15718 if (N0.isUndef() && N1.isUndef()) 15719 return DAG.getUNDEF(VT); 15720 15721 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); 15722 15723 // Canonicalize shuffle v, v -> v, undef 15724 if (N0 == N1) { 15725 SmallVector<int, 8> NewMask; 15726 for (unsigned i = 0; i != NumElts; ++i) { 15727 int Idx = SVN->getMaskElt(i); 15728 if (Idx >= (int)NumElts) Idx -= NumElts; 15729 NewMask.push_back(Idx); 15730 } 15731 return DAG.getVectorShuffle(VT, SDLoc(N), N0, DAG.getUNDEF(VT), NewMask); 15732 } 15733 15734 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask. 15735 if (N0.isUndef()) 15736 return DAG.getCommutedVectorShuffle(*SVN); 15737 15738 // Remove references to rhs if it is undef 15739 if (N1.isUndef()) { 15740 bool Changed = false; 15741 SmallVector<int, 8> NewMask; 15742 for (unsigned i = 0; i != NumElts; ++i) { 15743 int Idx = SVN->getMaskElt(i); 15744 if (Idx >= (int)NumElts) { 15745 Idx = -1; 15746 Changed = true; 15747 } 15748 NewMask.push_back(Idx); 15749 } 15750 if (Changed) 15751 return DAG.getVectorShuffle(VT, SDLoc(N), N0, N1, NewMask); 15752 } 15753 15754 // Simplify shuffle mask if a referenced element is UNDEF. 15755 if (SDValue V = simplifyShuffleMask(SVN, N0, N1, DAG)) 15756 return V; 15757 15758 // A shuffle of a single vector that is a splat can always be folded. 15759 if (auto *N0Shuf = dyn_cast<ShuffleVectorSDNode>(N0)) 15760 if (N1->isUndef() && N0Shuf->isSplat()) 15761 return combineShuffleOfSplat(SVN->getMask(), N0Shuf, DAG); 15762 15763 // If it is a splat, check if the argument vector is another splat or a 15764 // build_vector. 15765 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) { 15766 SDNode *V = N0.getNode(); 15767 15768 // If this is a bit convert that changes the element type of the vector but 15769 // not the number of vector elements, look through it. Be careful not to 15770 // look though conversions that change things like v4f32 to v2f64. 15771 if (V->getOpcode() == ISD::BITCAST) { 15772 SDValue ConvInput = V->getOperand(0); 15773 if (ConvInput.getValueType().isVector() && 15774 ConvInput.getValueType().getVectorNumElements() == NumElts) 15775 V = ConvInput.getNode(); 15776 } 15777 15778 if (V->getOpcode() == ISD::BUILD_VECTOR) { 15779 assert(V->getNumOperands() == NumElts && 15780 "BUILD_VECTOR has wrong number of operands"); 15781 SDValue Base; 15782 bool AllSame = true; 15783 for (unsigned i = 0; i != NumElts; ++i) { 15784 if (!V->getOperand(i).isUndef()) { 15785 Base = V->getOperand(i); 15786 break; 15787 } 15788 } 15789 // Splat of <u, u, u, u>, return <u, u, u, u> 15790 if (!Base.getNode()) 15791 return N0; 15792 for (unsigned i = 0; i != NumElts; ++i) { 15793 if (V->getOperand(i) != Base) { 15794 AllSame = false; 15795 break; 15796 } 15797 } 15798 // Splat of <x, x, x, x>, return <x, x, x, x> 15799 if (AllSame) 15800 return N0; 15801 15802 // Canonicalize any other splat as a build_vector. 15803 const SDValue &Splatted = V->getOperand(SVN->getSplatIndex()); 15804 SmallVector<SDValue, 8> Ops(NumElts, Splatted); 15805 SDValue NewBV = DAG.getBuildVector(V->getValueType(0), SDLoc(N), Ops); 15806 15807 // We may have jumped through bitcasts, so the type of the 15808 // BUILD_VECTOR may not match the type of the shuffle. 15809 if (V->getValueType(0) != VT) 15810 NewBV = DAG.getBitcast(VT, NewBV); 15811 return NewBV; 15812 } 15813 } 15814 15815 // There are various patterns used to build up a vector from smaller vectors, 15816 // subvectors, or elements. Scan chains of these and replace unused insertions 15817 // or components with undef. 15818 if (SDValue S = simplifyShuffleOperands(SVN, N0, N1, DAG)) 15819 return S; 15820 15821 // Match shuffles that can be converted to any_vector_extend_in_reg. 15822 if (SDValue V = combineShuffleToVectorExtend(SVN, DAG, TLI, LegalOperations, LegalTypes)) 15823 return V; 15824 15825 // Combine "truncate_vector_in_reg" style shuffles. 15826 if (SDValue V = combineTruncationShuffle(SVN, DAG)) 15827 return V; 15828 15829 if (N0.getOpcode() == ISD::CONCAT_VECTORS && 15830 Level < AfterLegalizeVectorOps && 15831 (N1.isUndef() || 15832 (N1.getOpcode() == ISD::CONCAT_VECTORS && 15833 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()))) { 15834 if (SDValue V = partitionShuffleOfConcats(N, DAG)) 15835 return V; 15836 } 15837 15838 // Attempt to combine a shuffle of 2 inputs of 'scalar sources' - 15839 // BUILD_VECTOR or SCALAR_TO_VECTOR into a single BUILD_VECTOR. 15840 if (Level < AfterLegalizeVectorOps && TLI.isTypeLegal(VT)) 15841 if (SDValue Res = combineShuffleOfScalars(SVN, DAG, TLI)) 15842 return Res; 15843 15844 // If this shuffle only has a single input that is a bitcasted shuffle, 15845 // attempt to merge the 2 shuffles and suitably bitcast the inputs/output 15846 // back to their original types. 15847 if (N0.getOpcode() == ISD::BITCAST && N0.hasOneUse() && 15848 N1.isUndef() && Level < AfterLegalizeVectorOps && 15849 TLI.isTypeLegal(VT)) { 15850 15851 // Peek through the bitcast only if there is one user. 15852 SDValue BC0 = N0; 15853 while (BC0.getOpcode() == ISD::BITCAST) { 15854 if (!BC0.hasOneUse()) 15855 break; 15856 BC0 = BC0.getOperand(0); 15857 } 15858 15859 auto ScaleShuffleMask = [](ArrayRef<int> Mask, int Scale) { 15860 if (Scale == 1) 15861 return SmallVector<int, 8>(Mask.begin(), Mask.end()); 15862 15863 SmallVector<int, 8> NewMask; 15864 for (int M : Mask) 15865 for (int s = 0; s != Scale; ++s) 15866 NewMask.push_back(M < 0 ? -1 : Scale * M + s); 15867 return NewMask; 15868 }; 15869 15870 if (BC0.getOpcode() == ISD::VECTOR_SHUFFLE && BC0.hasOneUse()) { 15871 EVT SVT = VT.getScalarType(); 15872 EVT InnerVT = BC0->getValueType(0); 15873 EVT InnerSVT = InnerVT.getScalarType(); 15874 15875 // Determine which shuffle works with the smaller scalar type. 15876 EVT ScaleVT = SVT.bitsLT(InnerSVT) ? VT : InnerVT; 15877 EVT ScaleSVT = ScaleVT.getScalarType(); 15878 15879 if (TLI.isTypeLegal(ScaleVT) && 15880 0 == (InnerSVT.getSizeInBits() % ScaleSVT.getSizeInBits()) && 15881 0 == (SVT.getSizeInBits() % ScaleSVT.getSizeInBits())) { 15882 int InnerScale = InnerSVT.getSizeInBits() / ScaleSVT.getSizeInBits(); 15883 int OuterScale = SVT.getSizeInBits() / ScaleSVT.getSizeInBits(); 15884 15885 // Scale the shuffle masks to the smaller scalar type. 15886 ShuffleVectorSDNode *InnerSVN = cast<ShuffleVectorSDNode>(BC0); 15887 SmallVector<int, 8> InnerMask = 15888 ScaleShuffleMask(InnerSVN->getMask(), InnerScale); 15889 SmallVector<int, 8> OuterMask = 15890 ScaleShuffleMask(SVN->getMask(), OuterScale); 15891 15892 // Merge the shuffle masks. 15893 SmallVector<int, 8> NewMask; 15894 for (int M : OuterMask) 15895 NewMask.push_back(M < 0 ? -1 : InnerMask[M]); 15896 15897 // Test for shuffle mask legality over both commutations. 15898 SDValue SV0 = BC0->getOperand(0); 15899 SDValue SV1 = BC0->getOperand(1); 15900 bool LegalMask = TLI.isShuffleMaskLegal(NewMask, ScaleVT); 15901 if (!LegalMask) { 15902 std::swap(SV0, SV1); 15903 ShuffleVectorSDNode::commuteMask(NewMask); 15904 LegalMask = TLI.isShuffleMaskLegal(NewMask, ScaleVT); 15905 } 15906 15907 if (LegalMask) { 15908 SV0 = DAG.getBitcast(ScaleVT, SV0); 15909 SV1 = DAG.getBitcast(ScaleVT, SV1); 15910 return DAG.getBitcast( 15911 VT, DAG.getVectorShuffle(ScaleVT, SDLoc(N), SV0, SV1, NewMask)); 15912 } 15913 } 15914 } 15915 } 15916 15917 // Canonicalize shuffles according to rules: 15918 // shuffle(A, shuffle(A, B)) -> shuffle(shuffle(A,B), A) 15919 // shuffle(B, shuffle(A, B)) -> shuffle(shuffle(A,B), B) 15920 // shuffle(B, shuffle(A, Undef)) -> shuffle(shuffle(A, Undef), B) 15921 if (N1.getOpcode() == ISD::VECTOR_SHUFFLE && 15922 N0.getOpcode() != ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG && 15923 TLI.isTypeLegal(VT)) { 15924 // The incoming shuffle must be of the same type as the result of the 15925 // current shuffle. 15926 assert(N1->getOperand(0).getValueType() == VT && 15927 "Shuffle types don't match"); 15928 15929 SDValue SV0 = N1->getOperand(0); 15930 SDValue SV1 = N1->getOperand(1); 15931 bool HasSameOp0 = N0 == SV0; 15932 bool IsSV1Undef = SV1.isUndef(); 15933 if (HasSameOp0 || IsSV1Undef || N0 == SV1) 15934 // Commute the operands of this shuffle so that next rule 15935 // will trigger. 15936 return DAG.getCommutedVectorShuffle(*SVN); 15937 } 15938 15939 // Try to fold according to rules: 15940 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(A, B, M2) 15941 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(A, C, M2) 15942 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(B, C, M2) 15943 // Don't try to fold shuffles with illegal type. 15944 // Only fold if this shuffle is the only user of the other shuffle. 15945 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && N->isOnlyUserOf(N0.getNode()) && 15946 Level < AfterLegalizeDAG && TLI.isTypeLegal(VT)) { 15947 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0); 15948 15949 // Don't try to fold splats; they're likely to simplify somehow, or they 15950 // might be free. 15951 if (OtherSV->isSplat()) 15952 return SDValue(); 15953 15954 // The incoming shuffle must be of the same type as the result of the 15955 // current shuffle. 15956 assert(OtherSV->getOperand(0).getValueType() == VT && 15957 "Shuffle types don't match"); 15958 15959 SDValue SV0, SV1; 15960 SmallVector<int, 4> Mask; 15961 // Compute the combined shuffle mask for a shuffle with SV0 as the first 15962 // operand, and SV1 as the second operand. 15963 for (unsigned i = 0; i != NumElts; ++i) { 15964 int Idx = SVN->getMaskElt(i); 15965 if (Idx < 0) { 15966 // Propagate Undef. 15967 Mask.push_back(Idx); 15968 continue; 15969 } 15970 15971 SDValue CurrentVec; 15972 if (Idx < (int)NumElts) { 15973 // This shuffle index refers to the inner shuffle N0. Lookup the inner 15974 // shuffle mask to identify which vector is actually referenced. 15975 Idx = OtherSV->getMaskElt(Idx); 15976 if (Idx < 0) { 15977 // Propagate Undef. 15978 Mask.push_back(Idx); 15979 continue; 15980 } 15981 15982 CurrentVec = (Idx < (int) NumElts) ? OtherSV->getOperand(0) 15983 : OtherSV->getOperand(1); 15984 } else { 15985 // This shuffle index references an element within N1. 15986 CurrentVec = N1; 15987 } 15988 15989 // Simple case where 'CurrentVec' is UNDEF. 15990 if (CurrentVec.isUndef()) { 15991 Mask.push_back(-1); 15992 continue; 15993 } 15994 15995 // Canonicalize the shuffle index. We don't know yet if CurrentVec 15996 // will be the first or second operand of the combined shuffle. 15997 Idx = Idx % NumElts; 15998 if (!SV0.getNode() || SV0 == CurrentVec) { 15999 // Ok. CurrentVec is the left hand side. 16000 // Update the mask accordingly. 16001 SV0 = CurrentVec; 16002 Mask.push_back(Idx); 16003 continue; 16004 } 16005 16006 // Bail out if we cannot convert the shuffle pair into a single shuffle. 16007 if (SV1.getNode() && SV1 != CurrentVec) 16008 return SDValue(); 16009 16010 // Ok. CurrentVec is the right hand side. 16011 // Update the mask accordingly. 16012 SV1 = CurrentVec; 16013 Mask.push_back(Idx + NumElts); 16014 } 16015 16016 // Check if all indices in Mask are Undef. In case, propagate Undef. 16017 bool isUndefMask = true; 16018 for (unsigned i = 0; i != NumElts && isUndefMask; ++i) 16019 isUndefMask &= Mask[i] < 0; 16020 16021 if (isUndefMask) 16022 return DAG.getUNDEF(VT); 16023 16024 if (!SV0.getNode()) 16025 SV0 = DAG.getUNDEF(VT); 16026 if (!SV1.getNode()) 16027 SV1 = DAG.getUNDEF(VT); 16028 16029 // Avoid introducing shuffles with illegal mask. 16030 if (!TLI.isShuffleMaskLegal(Mask, VT)) { 16031 ShuffleVectorSDNode::commuteMask(Mask); 16032 16033 if (!TLI.isShuffleMaskLegal(Mask, VT)) 16034 return SDValue(); 16035 16036 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(B, A, M2) 16037 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(C, A, M2) 16038 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(C, B, M2) 16039 std::swap(SV0, SV1); 16040 } 16041 16042 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(A, B, M2) 16043 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(A, C, M2) 16044 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(B, C, M2) 16045 return DAG.getVectorShuffle(VT, SDLoc(N), SV0, SV1, Mask); 16046 } 16047 16048 return SDValue(); 16049 } 16050 16051 SDValue DAGCombiner::visitSCALAR_TO_VECTOR(SDNode *N) { 16052 SDValue InVal = N->getOperand(0); 16053 EVT VT = N->getValueType(0); 16054 16055 // Replace a SCALAR_TO_VECTOR(EXTRACT_VECTOR_ELT(V,C0)) pattern 16056 // with a VECTOR_SHUFFLE and possible truncate. 16057 if (InVal.getOpcode() == ISD::EXTRACT_VECTOR_ELT) { 16058 SDValue InVec = InVal->getOperand(0); 16059 SDValue EltNo = InVal->getOperand(1); 16060 auto InVecT = InVec.getValueType(); 16061 if (ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(EltNo)) { 16062 SmallVector<int, 8> NewMask(InVecT.getVectorNumElements(), -1); 16063 int Elt = C0->getZExtValue(); 16064 NewMask[0] = Elt; 16065 SDValue Val; 16066 // If we have an implict truncate do truncate here as long as it's legal. 16067 // if it's not legal, this should 16068 if (VT.getScalarType() != InVal.getValueType() && 16069 InVal.getValueType().isScalarInteger() && 16070 isTypeLegal(VT.getScalarType())) { 16071 Val = 16072 DAG.getNode(ISD::TRUNCATE, SDLoc(InVal), VT.getScalarType(), InVal); 16073 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(N), VT, Val); 16074 } 16075 if (VT.getScalarType() == InVecT.getScalarType() && 16076 VT.getVectorNumElements() <= InVecT.getVectorNumElements() && 16077 TLI.isShuffleMaskLegal(NewMask, VT)) { 16078 Val = DAG.getVectorShuffle(InVecT, SDLoc(N), InVec, 16079 DAG.getUNDEF(InVecT), NewMask); 16080 // If the initial vector is the correct size this shuffle is a 16081 // valid result. 16082 if (VT == InVecT) 16083 return Val; 16084 // If not we must truncate the vector. 16085 if (VT.getVectorNumElements() != InVecT.getVectorNumElements()) { 16086 MVT IdxTy = TLI.getVectorIdxTy(DAG.getDataLayout()); 16087 SDValue ZeroIdx = DAG.getConstant(0, SDLoc(N), IdxTy); 16088 EVT SubVT = 16089 EVT::getVectorVT(*DAG.getContext(), InVecT.getVectorElementType(), 16090 VT.getVectorNumElements()); 16091 Val = DAG.getNode(ISD::EXTRACT_SUBVECTOR, SDLoc(N), SubVT, Val, 16092 ZeroIdx); 16093 return Val; 16094 } 16095 } 16096 } 16097 } 16098 16099 return SDValue(); 16100 } 16101 16102 SDValue DAGCombiner::visitINSERT_SUBVECTOR(SDNode *N) { 16103 EVT VT = N->getValueType(0); 16104 SDValue N0 = N->getOperand(0); 16105 SDValue N1 = N->getOperand(1); 16106 SDValue N2 = N->getOperand(2); 16107 16108 // If inserting an UNDEF, just return the original vector. 16109 if (N1.isUndef()) 16110 return N0; 16111 16112 // For nested INSERT_SUBVECTORs, attempt to combine inner node first to allow 16113 // us to pull BITCASTs from input to output. 16114 if (N0.hasOneUse() && N0->getOpcode() == ISD::INSERT_SUBVECTOR) 16115 if (SDValue NN0 = visitINSERT_SUBVECTOR(N0.getNode())) 16116 return DAG.getNode(ISD::INSERT_SUBVECTOR, SDLoc(N), VT, NN0, N1, N2); 16117 16118 // If this is an insert of an extracted vector into an undef vector, we can 16119 // just use the input to the extract. 16120 if (N0.isUndef() && N1.getOpcode() == ISD::EXTRACT_SUBVECTOR && 16121 N1.getOperand(1) == N2 && N1.getOperand(0).getValueType() == VT) 16122 return N1.getOperand(0); 16123 16124 // If we are inserting a bitcast value into an undef, with the same 16125 // number of elements, just use the bitcast input of the extract. 16126 // i.e. INSERT_SUBVECTOR UNDEF (BITCAST N1) N2 -> 16127 // BITCAST (INSERT_SUBVECTOR UNDEF N1 N2) 16128 if (N0.isUndef() && N1.getOpcode() == ISD::BITCAST && 16129 N1.getOperand(0).getOpcode() == ISD::EXTRACT_SUBVECTOR && 16130 N1.getOperand(0).getOperand(1) == N2 && 16131 N1.getOperand(0).getOperand(0).getValueType().getVectorNumElements() == 16132 VT.getVectorNumElements()) { 16133 return DAG.getBitcast(VT, N1.getOperand(0).getOperand(0)); 16134 } 16135 16136 // If both N1 and N2 are bitcast values on which insert_subvector 16137 // would makes sense, pull the bitcast through. 16138 // i.e. INSERT_SUBVECTOR (BITCAST N0) (BITCAST N1) N2 -> 16139 // BITCAST (INSERT_SUBVECTOR N0 N1 N2) 16140 if (N0.getOpcode() == ISD::BITCAST && N1.getOpcode() == ISD::BITCAST) { 16141 SDValue CN0 = N0.getOperand(0); 16142 SDValue CN1 = N1.getOperand(0); 16143 if (CN0.getValueType().getVectorElementType() == 16144 CN1.getValueType().getVectorElementType() && 16145 CN0.getValueType().getVectorNumElements() == 16146 VT.getVectorNumElements()) { 16147 SDValue NewINSERT = DAG.getNode(ISD::INSERT_SUBVECTOR, SDLoc(N), 16148 CN0.getValueType(), CN0, CN1, N2); 16149 return DAG.getBitcast(VT, NewINSERT); 16150 } 16151 } 16152 16153 // Combine INSERT_SUBVECTORs where we are inserting to the same index. 16154 // INSERT_SUBVECTOR( INSERT_SUBVECTOR( Vec, SubOld, Idx ), SubNew, Idx ) 16155 // --> INSERT_SUBVECTOR( Vec, SubNew, Idx ) 16156 if (N0.getOpcode() == ISD::INSERT_SUBVECTOR && 16157 N0.getOperand(1).getValueType() == N1.getValueType() && 16158 N0.getOperand(2) == N2) 16159 return DAG.getNode(ISD::INSERT_SUBVECTOR, SDLoc(N), VT, N0.getOperand(0), 16160 N1, N2); 16161 16162 if (!isa<ConstantSDNode>(N2)) 16163 return SDValue(); 16164 16165 unsigned InsIdx = cast<ConstantSDNode>(N2)->getZExtValue(); 16166 16167 // Canonicalize insert_subvector dag nodes. 16168 // Example: 16169 // (insert_subvector (insert_subvector A, Idx0), Idx1) 16170 // -> (insert_subvector (insert_subvector A, Idx1), Idx0) 16171 if (N0.getOpcode() == ISD::INSERT_SUBVECTOR && N0.hasOneUse() && 16172 N1.getValueType() == N0.getOperand(1).getValueType() && 16173 isa<ConstantSDNode>(N0.getOperand(2))) { 16174 unsigned OtherIdx = N0.getConstantOperandVal(2); 16175 if (InsIdx < OtherIdx) { 16176 // Swap nodes. 16177 SDValue NewOp = DAG.getNode(ISD::INSERT_SUBVECTOR, SDLoc(N), VT, 16178 N0.getOperand(0), N1, N2); 16179 AddToWorklist(NewOp.getNode()); 16180 return DAG.getNode(ISD::INSERT_SUBVECTOR, SDLoc(N0.getNode()), 16181 VT, NewOp, N0.getOperand(1), N0.getOperand(2)); 16182 } 16183 } 16184 16185 // If the input vector is a concatenation, and the insert replaces 16186 // one of the pieces, we can optimize into a single concat_vectors. 16187 if (N0.getOpcode() == ISD::CONCAT_VECTORS && N0.hasOneUse() && 16188 N0.getOperand(0).getValueType() == N1.getValueType()) { 16189 unsigned Factor = N1.getValueType().getVectorNumElements(); 16190 16191 SmallVector<SDValue, 8> Ops(N0->op_begin(), N0->op_end()); 16192 Ops[cast<ConstantSDNode>(N2)->getZExtValue() / Factor] = N1; 16193 16194 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Ops); 16195 } 16196 16197 return SDValue(); 16198 } 16199 16200 SDValue DAGCombiner::visitFP_TO_FP16(SDNode *N) { 16201 SDValue N0 = N->getOperand(0); 16202 16203 // fold (fp_to_fp16 (fp16_to_fp op)) -> op 16204 if (N0->getOpcode() == ISD::FP16_TO_FP) 16205 return N0->getOperand(0); 16206 16207 return SDValue(); 16208 } 16209 16210 SDValue DAGCombiner::visitFP16_TO_FP(SDNode *N) { 16211 SDValue N0 = N->getOperand(0); 16212 16213 // fold fp16_to_fp(op & 0xffff) -> fp16_to_fp(op) 16214 if (N0->getOpcode() == ISD::AND) { 16215 ConstantSDNode *AndConst = getAsNonOpaqueConstant(N0.getOperand(1)); 16216 if (AndConst && AndConst->getAPIntValue() == 0xffff) { 16217 return DAG.getNode(ISD::FP16_TO_FP, SDLoc(N), N->getValueType(0), 16218 N0.getOperand(0)); 16219 } 16220 } 16221 16222 return SDValue(); 16223 } 16224 16225 /// Returns a vector_shuffle if it able to transform an AND to a vector_shuffle 16226 /// with the destination vector and a zero vector. 16227 /// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==> 16228 /// vector_shuffle V, Zero, <0, 4, 2, 4> 16229 SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) { 16230 EVT VT = N->getValueType(0); 16231 SDValue LHS = N->getOperand(0); 16232 SDValue RHS = peekThroughBitcast(N->getOperand(1)); 16233 SDLoc DL(N); 16234 16235 // Make sure we're not running after operation legalization where it 16236 // may have custom lowered the vector shuffles. 16237 if (LegalOperations) 16238 return SDValue(); 16239 16240 if (N->getOpcode() != ISD::AND) 16241 return SDValue(); 16242 16243 if (RHS.getOpcode() != ISD::BUILD_VECTOR) 16244 return SDValue(); 16245 16246 EVT RVT = RHS.getValueType(); 16247 unsigned NumElts = RHS.getNumOperands(); 16248 16249 // Attempt to create a valid clear mask, splitting the mask into 16250 // sub elements and checking to see if each is 16251 // all zeros or all ones - suitable for shuffle masking. 16252 auto BuildClearMask = [&](int Split) { 16253 int NumSubElts = NumElts * Split; 16254 int NumSubBits = RVT.getScalarSizeInBits() / Split; 16255 16256 SmallVector<int, 8> Indices; 16257 for (int i = 0; i != NumSubElts; ++i) { 16258 int EltIdx = i / Split; 16259 int SubIdx = i % Split; 16260 SDValue Elt = RHS.getOperand(EltIdx); 16261 if (Elt.isUndef()) { 16262 Indices.push_back(-1); 16263 continue; 16264 } 16265 16266 APInt Bits; 16267 if (isa<ConstantSDNode>(Elt)) 16268 Bits = cast<ConstantSDNode>(Elt)->getAPIntValue(); 16269 else if (isa<ConstantFPSDNode>(Elt)) 16270 Bits = cast<ConstantFPSDNode>(Elt)->getValueAPF().bitcastToAPInt(); 16271 else 16272 return SDValue(); 16273 16274 // Extract the sub element from the constant bit mask. 16275 if (DAG.getDataLayout().isBigEndian()) { 16276 Bits.lshrInPlace((Split - SubIdx - 1) * NumSubBits); 16277 } else { 16278 Bits.lshrInPlace(SubIdx * NumSubBits); 16279 } 16280 16281 if (Split > 1) 16282 Bits = Bits.trunc(NumSubBits); 16283 16284 if (Bits.isAllOnesValue()) 16285 Indices.push_back(i); 16286 else if (Bits == 0) 16287 Indices.push_back(i + NumSubElts); 16288 else 16289 return SDValue(); 16290 } 16291 16292 // Let's see if the target supports this vector_shuffle. 16293 EVT ClearSVT = EVT::getIntegerVT(*DAG.getContext(), NumSubBits); 16294 EVT ClearVT = EVT::getVectorVT(*DAG.getContext(), ClearSVT, NumSubElts); 16295 if (!TLI.isVectorClearMaskLegal(Indices, ClearVT)) 16296 return SDValue(); 16297 16298 SDValue Zero = DAG.getConstant(0, DL, ClearVT); 16299 return DAG.getBitcast(VT, DAG.getVectorShuffle(ClearVT, DL, 16300 DAG.getBitcast(ClearVT, LHS), 16301 Zero, Indices)); 16302 }; 16303 16304 // Determine maximum split level (byte level masking). 16305 int MaxSplit = 1; 16306 if (RVT.getScalarSizeInBits() % 8 == 0) 16307 MaxSplit = RVT.getScalarSizeInBits() / 8; 16308 16309 for (int Split = 1; Split <= MaxSplit; ++Split) 16310 if (RVT.getScalarSizeInBits() % Split == 0) 16311 if (SDValue S = BuildClearMask(Split)) 16312 return S; 16313 16314 return SDValue(); 16315 } 16316 16317 /// Visit a binary vector operation, like ADD. 16318 SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) { 16319 assert(N->getValueType(0).isVector() && 16320 "SimplifyVBinOp only works on vectors!"); 16321 16322 SDValue LHS = N->getOperand(0); 16323 SDValue RHS = N->getOperand(1); 16324 SDValue Ops[] = {LHS, RHS}; 16325 16326 // See if we can constant fold the vector operation. 16327 if (SDValue Fold = DAG.FoldConstantVectorArithmetic( 16328 N->getOpcode(), SDLoc(LHS), LHS.getValueType(), Ops, N->getFlags())) 16329 return Fold; 16330 16331 // Try to convert a constant mask AND into a shuffle clear mask. 16332 if (SDValue Shuffle = XformToShuffleWithZero(N)) 16333 return Shuffle; 16334 16335 // Type legalization might introduce new shuffles in the DAG. 16336 // Fold (VBinOp (shuffle (A, Undef, Mask)), (shuffle (B, Undef, Mask))) 16337 // -> (shuffle (VBinOp (A, B)), Undef, Mask). 16338 if (LegalTypes && isa<ShuffleVectorSDNode>(LHS) && 16339 isa<ShuffleVectorSDNode>(RHS) && LHS.hasOneUse() && RHS.hasOneUse() && 16340 LHS.getOperand(1).isUndef() && 16341 RHS.getOperand(1).isUndef()) { 16342 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(LHS); 16343 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(RHS); 16344 16345 if (SVN0->getMask().equals(SVN1->getMask())) { 16346 EVT VT = N->getValueType(0); 16347 SDValue UndefVector = LHS.getOperand(1); 16348 SDValue NewBinOp = DAG.getNode(N->getOpcode(), SDLoc(N), VT, 16349 LHS.getOperand(0), RHS.getOperand(0), 16350 N->getFlags()); 16351 AddUsersToWorklist(N); 16352 return DAG.getVectorShuffle(VT, SDLoc(N), NewBinOp, UndefVector, 16353 SVN0->getMask()); 16354 } 16355 } 16356 16357 return SDValue(); 16358 } 16359 16360 SDValue DAGCombiner::SimplifySelect(const SDLoc &DL, SDValue N0, SDValue N1, 16361 SDValue N2) { 16362 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!"); 16363 16364 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2, 16365 cast<CondCodeSDNode>(N0.getOperand(2))->get()); 16366 16367 // If we got a simplified select_cc node back from SimplifySelectCC, then 16368 // break it down into a new SETCC node, and a new SELECT node, and then return 16369 // the SELECT node, since we were called with a SELECT node. 16370 if (SCC.getNode()) { 16371 // Check to see if we got a select_cc back (to turn into setcc/select). 16372 // Otherwise, just return whatever node we got back, like fabs. 16373 if (SCC.getOpcode() == ISD::SELECT_CC) { 16374 SDValue SETCC = DAG.getNode(ISD::SETCC, SDLoc(N0), 16375 N0.getValueType(), 16376 SCC.getOperand(0), SCC.getOperand(1), 16377 SCC.getOperand(4)); 16378 AddToWorklist(SETCC.getNode()); 16379 return DAG.getSelect(SDLoc(SCC), SCC.getValueType(), SETCC, 16380 SCC.getOperand(2), SCC.getOperand(3)); 16381 } 16382 16383 return SCC; 16384 } 16385 return SDValue(); 16386 } 16387 16388 /// Given a SELECT or a SELECT_CC node, where LHS and RHS are the two values 16389 /// being selected between, see if we can simplify the select. Callers of this 16390 /// should assume that TheSelect is deleted if this returns true. As such, they 16391 /// should return the appropriate thing (e.g. the node) back to the top-level of 16392 /// the DAG combiner loop to avoid it being looked at. 16393 bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS, 16394 SDValue RHS) { 16395 // fold (select (setcc x, [+-]0.0, *lt), NaN, (fsqrt x)) 16396 // The select + setcc is redundant, because fsqrt returns NaN for X < 0. 16397 if (const ConstantFPSDNode *NaN = isConstOrConstSplatFP(LHS)) { 16398 if (NaN->isNaN() && RHS.getOpcode() == ISD::FSQRT) { 16399 // We have: (select (setcc ?, ?, ?), NaN, (fsqrt ?)) 16400 SDValue Sqrt = RHS; 16401 ISD::CondCode CC; 16402 SDValue CmpLHS; 16403 const ConstantFPSDNode *Zero = nullptr; 16404 16405 if (TheSelect->getOpcode() == ISD::SELECT_CC) { 16406 CC = dyn_cast<CondCodeSDNode>(TheSelect->getOperand(4))->get(); 16407 CmpLHS = TheSelect->getOperand(0); 16408 Zero = isConstOrConstSplatFP(TheSelect->getOperand(1)); 16409 } else { 16410 // SELECT or VSELECT 16411 SDValue Cmp = TheSelect->getOperand(0); 16412 if (Cmp.getOpcode() == ISD::SETCC) { 16413 CC = dyn_cast<CondCodeSDNode>(Cmp.getOperand(2))->get(); 16414 CmpLHS = Cmp.getOperand(0); 16415 Zero = isConstOrConstSplatFP(Cmp.getOperand(1)); 16416 } 16417 } 16418 if (Zero && Zero->isZero() && 16419 Sqrt.getOperand(0) == CmpLHS && (CC == ISD::SETOLT || 16420 CC == ISD::SETULT || CC == ISD::SETLT)) { 16421 // We have: (select (setcc x, [+-]0.0, *lt), NaN, (fsqrt x)) 16422 CombineTo(TheSelect, Sqrt); 16423 return true; 16424 } 16425 } 16426 } 16427 // Cannot simplify select with vector condition 16428 if (TheSelect->getOperand(0).getValueType().isVector()) return false; 16429 16430 // If this is a select from two identical things, try to pull the operation 16431 // through the select. 16432 if (LHS.getOpcode() != RHS.getOpcode() || 16433 !LHS.hasOneUse() || !RHS.hasOneUse()) 16434 return false; 16435 16436 // If this is a load and the token chain is identical, replace the select 16437 // of two loads with a load through a select of the address to load from. 16438 // This triggers in things like "select bool X, 10.0, 123.0" after the FP 16439 // constants have been dropped into the constant pool. 16440 if (LHS.getOpcode() == ISD::LOAD) { 16441 LoadSDNode *LLD = cast<LoadSDNode>(LHS); 16442 LoadSDNode *RLD = cast<LoadSDNode>(RHS); 16443 16444 // Token chains must be identical. 16445 if (LHS.getOperand(0) != RHS.getOperand(0) || 16446 // Do not let this transformation reduce the number of volatile loads. 16447 LLD->isVolatile() || RLD->isVolatile() || 16448 // FIXME: If either is a pre/post inc/dec load, 16449 // we'd need to split out the address adjustment. 16450 LLD->isIndexed() || RLD->isIndexed() || 16451 // If this is an EXTLOAD, the VT's must match. 16452 LLD->getMemoryVT() != RLD->getMemoryVT() || 16453 // If this is an EXTLOAD, the kind of extension must match. 16454 (LLD->getExtensionType() != RLD->getExtensionType() && 16455 // The only exception is if one of the extensions is anyext. 16456 LLD->getExtensionType() != ISD::EXTLOAD && 16457 RLD->getExtensionType() != ISD::EXTLOAD) || 16458 // FIXME: this discards src value information. This is 16459 // over-conservative. It would be beneficial to be able to remember 16460 // both potential memory locations. Since we are discarding 16461 // src value info, don't do the transformation if the memory 16462 // locations are not in the default address space. 16463 LLD->getPointerInfo().getAddrSpace() != 0 || 16464 RLD->getPointerInfo().getAddrSpace() != 0 || 16465 !TLI.isOperationLegalOrCustom(TheSelect->getOpcode(), 16466 LLD->getBasePtr().getValueType())) 16467 return false; 16468 16469 // Check that the select condition doesn't reach either load. If so, 16470 // folding this will induce a cycle into the DAG. If not, this is safe to 16471 // xform, so create a select of the addresses. 16472 SDValue Addr; 16473 if (TheSelect->getOpcode() == ISD::SELECT) { 16474 SDNode *CondNode = TheSelect->getOperand(0).getNode(); 16475 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) || 16476 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode))) 16477 return false; 16478 // The loads must not depend on one another. 16479 if (LLD->isPredecessorOf(RLD) || 16480 RLD->isPredecessorOf(LLD)) 16481 return false; 16482 Addr = DAG.getSelect(SDLoc(TheSelect), 16483 LLD->getBasePtr().getValueType(), 16484 TheSelect->getOperand(0), LLD->getBasePtr(), 16485 RLD->getBasePtr()); 16486 } else { // Otherwise SELECT_CC 16487 SDNode *CondLHS = TheSelect->getOperand(0).getNode(); 16488 SDNode *CondRHS = TheSelect->getOperand(1).getNode(); 16489 16490 if ((LLD->hasAnyUseOfValue(1) && 16491 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) || 16492 (RLD->hasAnyUseOfValue(1) && 16493 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS)))) 16494 return false; 16495 16496 Addr = DAG.getNode(ISD::SELECT_CC, SDLoc(TheSelect), 16497 LLD->getBasePtr().getValueType(), 16498 TheSelect->getOperand(0), 16499 TheSelect->getOperand(1), 16500 LLD->getBasePtr(), RLD->getBasePtr(), 16501 TheSelect->getOperand(4)); 16502 } 16503 16504 SDValue Load; 16505 // It is safe to replace the two loads if they have different alignments, 16506 // but the new load must be the minimum (most restrictive) alignment of the 16507 // inputs. 16508 unsigned Alignment = std::min(LLD->getAlignment(), RLD->getAlignment()); 16509 MachineMemOperand::Flags MMOFlags = LLD->getMemOperand()->getFlags(); 16510 if (!RLD->isInvariant()) 16511 MMOFlags &= ~MachineMemOperand::MOInvariant; 16512 if (!RLD->isDereferenceable()) 16513 MMOFlags &= ~MachineMemOperand::MODereferenceable; 16514 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) { 16515 // FIXME: Discards pointer and AA info. 16516 Load = DAG.getLoad(TheSelect->getValueType(0), SDLoc(TheSelect), 16517 LLD->getChain(), Addr, MachinePointerInfo(), Alignment, 16518 MMOFlags); 16519 } else { 16520 // FIXME: Discards pointer and AA info. 16521 Load = DAG.getExtLoad( 16522 LLD->getExtensionType() == ISD::EXTLOAD ? RLD->getExtensionType() 16523 : LLD->getExtensionType(), 16524 SDLoc(TheSelect), TheSelect->getValueType(0), LLD->getChain(), Addr, 16525 MachinePointerInfo(), LLD->getMemoryVT(), Alignment, MMOFlags); 16526 } 16527 16528 // Users of the select now use the result of the load. 16529 CombineTo(TheSelect, Load); 16530 16531 // Users of the old loads now use the new load's chain. We know the 16532 // old-load value is dead now. 16533 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1)); 16534 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1)); 16535 return true; 16536 } 16537 16538 return false; 16539 } 16540 16541 /// Try to fold an expression of the form (N0 cond N1) ? N2 : N3 to a shift and 16542 /// bitwise 'and'. 16543 SDValue DAGCombiner::foldSelectCCToShiftAnd(const SDLoc &DL, SDValue N0, 16544 SDValue N1, SDValue N2, SDValue N3, 16545 ISD::CondCode CC) { 16546 // If this is a select where the false operand is zero and the compare is a 16547 // check of the sign bit, see if we can perform the "gzip trick": 16548 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A 16549 // select_cc setgt X, 0, A, 0 -> and (not (sra X, size(X)-1)), A 16550 EVT XType = N0.getValueType(); 16551 EVT AType = N2.getValueType(); 16552 if (!isNullConstant(N3) || !XType.bitsGE(AType)) 16553 return SDValue(); 16554 16555 // If the comparison is testing for a positive value, we have to invert 16556 // the sign bit mask, so only do that transform if the target has a bitwise 16557 // 'and not' instruction (the invert is free). 16558 if (CC == ISD::SETGT && TLI.hasAndNot(N2)) { 16559 // (X > -1) ? A : 0 16560 // (X > 0) ? X : 0 <-- This is canonical signed max. 16561 if (!(isAllOnesConstant(N1) || (isNullConstant(N1) && N0 == N2))) 16562 return SDValue(); 16563 } else if (CC == ISD::SETLT) { 16564 // (X < 0) ? A : 0 16565 // (X < 1) ? X : 0 <-- This is un-canonicalized signed min. 16566 if (!(isNullConstant(N1) || (isOneConstant(N1) && N0 == N2))) 16567 return SDValue(); 16568 } else { 16569 return SDValue(); 16570 } 16571 16572 // and (sra X, size(X)-1), A -> "and (srl X, C2), A" iff A is a single-bit 16573 // constant. 16574 EVT ShiftAmtTy = getShiftAmountTy(N0.getValueType()); 16575 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); 16576 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue() - 1)) == 0)) { 16577 unsigned ShCt = XType.getSizeInBits() - N2C->getAPIntValue().logBase2() - 1; 16578 SDValue ShiftAmt = DAG.getConstant(ShCt, DL, ShiftAmtTy); 16579 SDValue Shift = DAG.getNode(ISD::SRL, DL, XType, N0, ShiftAmt); 16580 AddToWorklist(Shift.getNode()); 16581 16582 if (XType.bitsGT(AType)) { 16583 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); 16584 AddToWorklist(Shift.getNode()); 16585 } 16586 16587 if (CC == ISD::SETGT) 16588 Shift = DAG.getNOT(DL, Shift, AType); 16589 16590 return DAG.getNode(ISD::AND, DL, AType, Shift, N2); 16591 } 16592 16593 SDValue ShiftAmt = DAG.getConstant(XType.getSizeInBits() - 1, DL, ShiftAmtTy); 16594 SDValue Shift = DAG.getNode(ISD::SRA, DL, XType, N0, ShiftAmt); 16595 AddToWorklist(Shift.getNode()); 16596 16597 if (XType.bitsGT(AType)) { 16598 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); 16599 AddToWorklist(Shift.getNode()); 16600 } 16601 16602 if (CC == ISD::SETGT) 16603 Shift = DAG.getNOT(DL, Shift, AType); 16604 16605 return DAG.getNode(ISD::AND, DL, AType, Shift, N2); 16606 } 16607 16608 /// Simplify an expression of the form (N0 cond N1) ? N2 : N3 16609 /// where 'cond' is the comparison specified by CC. 16610 SDValue DAGCombiner::SimplifySelectCC(const SDLoc &DL, SDValue N0, SDValue N1, 16611 SDValue N2, SDValue N3, ISD::CondCode CC, 16612 bool NotExtCompare) { 16613 // (x ? y : y) -> y. 16614 if (N2 == N3) return N2; 16615 16616 EVT VT = N2.getValueType(); 16617 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); 16618 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); 16619 16620 // Determine if the condition we're dealing with is constant 16621 SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()), 16622 N0, N1, CC, DL, false); 16623 if (SCC.getNode()) AddToWorklist(SCC.getNode()); 16624 16625 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) { 16626 // fold select_cc true, x, y -> x 16627 // fold select_cc false, x, y -> y 16628 return !SCCC->isNullValue() ? N2 : N3; 16629 } 16630 16631 // Check to see if we can simplify the select into an fabs node 16632 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) { 16633 // Allow either -0.0 or 0.0 16634 if (CFP->isZero()) { 16635 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs 16636 if ((CC == ISD::SETGE || CC == ISD::SETGT) && 16637 N0 == N2 && N3.getOpcode() == ISD::FNEG && 16638 N2 == N3.getOperand(0)) 16639 return DAG.getNode(ISD::FABS, DL, VT, N0); 16640 16641 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs 16642 if ((CC == ISD::SETLT || CC == ISD::SETLE) && 16643 N0 == N3 && N2.getOpcode() == ISD::FNEG && 16644 N2.getOperand(0) == N3) 16645 return DAG.getNode(ISD::FABS, DL, VT, N3); 16646 } 16647 } 16648 16649 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)" 16650 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0 16651 // in it. This is a win when the constant is not otherwise available because 16652 // it replaces two constant pool loads with one. We only do this if the FP 16653 // type is known to be legal, because if it isn't, then we are before legalize 16654 // types an we want the other legalization to happen first (e.g. to avoid 16655 // messing with soft float) and if the ConstantFP is not legal, because if 16656 // it is legal, we may not need to store the FP constant in a constant pool. 16657 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2)) 16658 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) { 16659 if (TLI.isTypeLegal(N2.getValueType()) && 16660 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) != 16661 TargetLowering::Legal && 16662 !TLI.isFPImmLegal(TV->getValueAPF(), TV->getValueType(0)) && 16663 !TLI.isFPImmLegal(FV->getValueAPF(), FV->getValueType(0))) && 16664 // If both constants have multiple uses, then we won't need to do an 16665 // extra load, they are likely around in registers for other users. 16666 (TV->hasOneUse() || FV->hasOneUse())) { 16667 Constant *Elts[] = { 16668 const_cast<ConstantFP*>(FV->getConstantFPValue()), 16669 const_cast<ConstantFP*>(TV->getConstantFPValue()) 16670 }; 16671 Type *FPTy = Elts[0]->getType(); 16672 const DataLayout &TD = DAG.getDataLayout(); 16673 16674 // Create a ConstantArray of the two constants. 16675 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts); 16676 SDValue CPIdx = 16677 DAG.getConstantPool(CA, TLI.getPointerTy(DAG.getDataLayout()), 16678 TD.getPrefTypeAlignment(FPTy)); 16679 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); 16680 16681 // Get the offsets to the 0 and 1 element of the array so that we can 16682 // select between them. 16683 SDValue Zero = DAG.getIntPtrConstant(0, DL); 16684 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType()); 16685 SDValue One = DAG.getIntPtrConstant(EltSize, SDLoc(FV)); 16686 16687 SDValue Cond = DAG.getSetCC(DL, 16688 getSetCCResultType(N0.getValueType()), 16689 N0, N1, CC); 16690 AddToWorklist(Cond.getNode()); 16691 SDValue CstOffset = DAG.getSelect(DL, Zero.getValueType(), 16692 Cond, One, Zero); 16693 AddToWorklist(CstOffset.getNode()); 16694 CPIdx = DAG.getNode(ISD::ADD, DL, CPIdx.getValueType(), CPIdx, 16695 CstOffset); 16696 AddToWorklist(CPIdx.getNode()); 16697 return DAG.getLoad( 16698 TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx, 16699 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), 16700 Alignment); 16701 } 16702 } 16703 16704 if (SDValue V = foldSelectCCToShiftAnd(DL, N0, N1, N2, N3, CC)) 16705 return V; 16706 16707 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A) 16708 // where y is has a single bit set. 16709 // A plaintext description would be, we can turn the SELECT_CC into an AND 16710 // when the condition can be materialized as an all-ones register. Any 16711 // single bit-test can be materialized as an all-ones register with 16712 // shift-left and shift-right-arith. 16713 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND && 16714 N0->getValueType(0) == VT && isNullConstant(N1) && isNullConstant(N2)) { 16715 SDValue AndLHS = N0->getOperand(0); 16716 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1)); 16717 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) { 16718 // Shift the tested bit over the sign bit. 16719 const APInt &AndMask = ConstAndRHS->getAPIntValue(); 16720 SDValue ShlAmt = 16721 DAG.getConstant(AndMask.countLeadingZeros(), SDLoc(AndLHS), 16722 getShiftAmountTy(AndLHS.getValueType())); 16723 SDValue Shl = DAG.getNode(ISD::SHL, SDLoc(N0), VT, AndLHS, ShlAmt); 16724 16725 // Now arithmetic right shift it all the way over, so the result is either 16726 // all-ones, or zero. 16727 SDValue ShrAmt = 16728 DAG.getConstant(AndMask.getBitWidth() - 1, SDLoc(Shl), 16729 getShiftAmountTy(Shl.getValueType())); 16730 SDValue Shr = DAG.getNode(ISD::SRA, SDLoc(N0), VT, Shl, ShrAmt); 16731 16732 return DAG.getNode(ISD::AND, DL, VT, Shr, N3); 16733 } 16734 } 16735 16736 // fold select C, 16, 0 -> shl C, 4 16737 if (N2C && isNullConstant(N3) && N2C->getAPIntValue().isPowerOf2() && 16738 TLI.getBooleanContents(N0.getValueType()) == 16739 TargetLowering::ZeroOrOneBooleanContent) { 16740 16741 // If the caller doesn't want us to simplify this into a zext of a compare, 16742 // don't do it. 16743 if (NotExtCompare && N2C->isOne()) 16744 return SDValue(); 16745 16746 // Get a SetCC of the condition 16747 // NOTE: Don't create a SETCC if it's not legal on this target. 16748 if (!LegalOperations || 16749 TLI.isOperationLegal(ISD::SETCC, N0.getValueType())) { 16750 SDValue Temp, SCC; 16751 // cast from setcc result type to select result type 16752 if (LegalTypes) { 16753 SCC = DAG.getSetCC(DL, getSetCCResultType(N0.getValueType()), 16754 N0, N1, CC); 16755 if (N2.getValueType().bitsLT(SCC.getValueType())) 16756 Temp = DAG.getZeroExtendInReg(SCC, SDLoc(N2), 16757 N2.getValueType()); 16758 else 16759 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2), 16760 N2.getValueType(), SCC); 16761 } else { 16762 SCC = DAG.getSetCC(SDLoc(N0), MVT::i1, N0, N1, CC); 16763 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2), 16764 N2.getValueType(), SCC); 16765 } 16766 16767 AddToWorklist(SCC.getNode()); 16768 AddToWorklist(Temp.getNode()); 16769 16770 if (N2C->isOne()) 16771 return Temp; 16772 16773 // shl setcc result by log2 n2c 16774 return DAG.getNode( 16775 ISD::SHL, DL, N2.getValueType(), Temp, 16776 DAG.getConstant(N2C->getAPIntValue().logBase2(), SDLoc(Temp), 16777 getShiftAmountTy(Temp.getValueType()))); 16778 } 16779 } 16780 16781 // Check to see if this is an integer abs. 16782 // select_cc setg[te] X, 0, X, -X -> 16783 // select_cc setgt X, -1, X, -X -> 16784 // select_cc setl[te] X, 0, -X, X -> 16785 // select_cc setlt X, 1, -X, X -> 16786 // Y = sra (X, size(X)-1); xor (add (X, Y), Y) 16787 if (N1C) { 16788 ConstantSDNode *SubC = nullptr; 16789 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) || 16790 (N1C->isAllOnesValue() && CC == ISD::SETGT)) && 16791 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) 16792 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0)); 16793 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) || 16794 (N1C->isOne() && CC == ISD::SETLT)) && 16795 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1)) 16796 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0)); 16797 16798 EVT XType = N0.getValueType(); 16799 if (SubC && SubC->isNullValue() && XType.isInteger()) { 16800 SDLoc DL(N0); 16801 SDValue Shift = DAG.getNode(ISD::SRA, DL, XType, 16802 N0, 16803 DAG.getConstant(XType.getSizeInBits() - 1, DL, 16804 getShiftAmountTy(N0.getValueType()))); 16805 SDValue Add = DAG.getNode(ISD::ADD, DL, 16806 XType, N0, Shift); 16807 AddToWorklist(Shift.getNode()); 16808 AddToWorklist(Add.getNode()); 16809 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift); 16810 } 16811 } 16812 16813 // select_cc seteq X, 0, sizeof(X), ctlz(X) -> ctlz(X) 16814 // select_cc seteq X, 0, sizeof(X), ctlz_zero_undef(X) -> ctlz(X) 16815 // select_cc seteq X, 0, sizeof(X), cttz(X) -> cttz(X) 16816 // select_cc seteq X, 0, sizeof(X), cttz_zero_undef(X) -> cttz(X) 16817 // select_cc setne X, 0, ctlz(X), sizeof(X) -> ctlz(X) 16818 // select_cc setne X, 0, ctlz_zero_undef(X), sizeof(X) -> ctlz(X) 16819 // select_cc setne X, 0, cttz(X), sizeof(X) -> cttz(X) 16820 // select_cc setne X, 0, cttz_zero_undef(X), sizeof(X) -> cttz(X) 16821 if (N1C && N1C->isNullValue() && (CC == ISD::SETEQ || CC == ISD::SETNE)) { 16822 SDValue ValueOnZero = N2; 16823 SDValue Count = N3; 16824 // If the condition is NE instead of E, swap the operands. 16825 if (CC == ISD::SETNE) 16826 std::swap(ValueOnZero, Count); 16827 // Check if the value on zero is a constant equal to the bits in the type. 16828 if (auto *ValueOnZeroC = dyn_cast<ConstantSDNode>(ValueOnZero)) { 16829 if (ValueOnZeroC->getAPIntValue() == VT.getSizeInBits()) { 16830 // If the other operand is cttz/cttz_zero_undef of N0, and cttz is 16831 // legal, combine to just cttz. 16832 if ((Count.getOpcode() == ISD::CTTZ || 16833 Count.getOpcode() == ISD::CTTZ_ZERO_UNDEF) && 16834 N0 == Count.getOperand(0) && 16835 (!LegalOperations || TLI.isOperationLegal(ISD::CTTZ, VT))) 16836 return DAG.getNode(ISD::CTTZ, DL, VT, N0); 16837 // If the other operand is ctlz/ctlz_zero_undef of N0, and ctlz is 16838 // legal, combine to just ctlz. 16839 if ((Count.getOpcode() == ISD::CTLZ || 16840 Count.getOpcode() == ISD::CTLZ_ZERO_UNDEF) && 16841 N0 == Count.getOperand(0) && 16842 (!LegalOperations || TLI.isOperationLegal(ISD::CTLZ, VT))) 16843 return DAG.getNode(ISD::CTLZ, DL, VT, N0); 16844 } 16845 } 16846 } 16847 16848 return SDValue(); 16849 } 16850 16851 /// This is a stub for TargetLowering::SimplifySetCC. 16852 SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0, SDValue N1, 16853 ISD::CondCode Cond, const SDLoc &DL, 16854 bool foldBooleans) { 16855 TargetLowering::DAGCombinerInfo 16856 DagCombineInfo(DAG, Level, false, this); 16857 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL); 16858 } 16859 16860 /// Given an ISD::SDIV node expressing a divide by constant, return 16861 /// a DAG expression to select that will generate the same value by multiplying 16862 /// by a magic number. 16863 /// Ref: "Hacker's Delight" or "The PowerPC Compiler Writer's Guide". 16864 SDValue DAGCombiner::BuildSDIV(SDNode *N) { 16865 // when optimising for minimum size, we don't want to expand a div to a mul 16866 // and a shift. 16867 if (DAG.getMachineFunction().getFunction()->optForMinSize()) 16868 return SDValue(); 16869 16870 ConstantSDNode *C = isConstOrConstSplat(N->getOperand(1)); 16871 if (!C) 16872 return SDValue(); 16873 16874 // Avoid division by zero. 16875 if (C->isNullValue()) 16876 return SDValue(); 16877 16878 std::vector<SDNode *> Built; 16879 SDValue S = 16880 TLI.BuildSDIV(N, C->getAPIntValue(), DAG, LegalOperations, &Built); 16881 16882 for (SDNode *N : Built) 16883 AddToWorklist(N); 16884 return S; 16885 } 16886 16887 /// Given an ISD::SDIV node expressing a divide by constant power of 2, return a 16888 /// DAG expression that will generate the same value by right shifting. 16889 SDValue DAGCombiner::BuildSDIVPow2(SDNode *N) { 16890 ConstantSDNode *C = isConstOrConstSplat(N->getOperand(1)); 16891 if (!C) 16892 return SDValue(); 16893 16894 // Avoid division by zero. 16895 if (C->isNullValue()) 16896 return SDValue(); 16897 16898 std::vector<SDNode *> Built; 16899 SDValue S = TLI.BuildSDIVPow2(N, C->getAPIntValue(), DAG, &Built); 16900 16901 for (SDNode *N : Built) 16902 AddToWorklist(N); 16903 return S; 16904 } 16905 16906 /// Given an ISD::UDIV node expressing a divide by constant, return a DAG 16907 /// expression that will generate the same value by multiplying by a magic 16908 /// number. 16909 /// Ref: "Hacker's Delight" or "The PowerPC Compiler Writer's Guide". 16910 SDValue DAGCombiner::BuildUDIV(SDNode *N) { 16911 // when optimising for minimum size, we don't want to expand a div to a mul 16912 // and a shift. 16913 if (DAG.getMachineFunction().getFunction()->optForMinSize()) 16914 return SDValue(); 16915 16916 ConstantSDNode *C = isConstOrConstSplat(N->getOperand(1)); 16917 if (!C) 16918 return SDValue(); 16919 16920 // Avoid division by zero. 16921 if (C->isNullValue()) 16922 return SDValue(); 16923 16924 std::vector<SDNode *> Built; 16925 SDValue S = 16926 TLI.BuildUDIV(N, C->getAPIntValue(), DAG, LegalOperations, &Built); 16927 16928 for (SDNode *N : Built) 16929 AddToWorklist(N); 16930 return S; 16931 } 16932 16933 /// Determines the LogBase2 value for a non-null input value using the 16934 /// transform: LogBase2(V) = (EltBits - 1) - ctlz(V). 16935 SDValue DAGCombiner::BuildLogBase2(SDValue V, const SDLoc &DL) { 16936 EVT VT = V.getValueType(); 16937 unsigned EltBits = VT.getScalarSizeInBits(); 16938 SDValue Ctlz = DAG.getNode(ISD::CTLZ, DL, VT, V); 16939 SDValue Base = DAG.getConstant(EltBits - 1, DL, VT); 16940 SDValue LogBase2 = DAG.getNode(ISD::SUB, DL, VT, Base, Ctlz); 16941 return LogBase2; 16942 } 16943 16944 /// Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i) 16945 /// For the reciprocal, we need to find the zero of the function: 16946 /// F(X) = A X - 1 [which has a zero at X = 1/A] 16947 /// => 16948 /// X_{i+1} = X_i (2 - A X_i) = X_i + X_i (1 - A X_i) [this second form 16949 /// does not require additional intermediate precision] 16950 SDValue DAGCombiner::BuildReciprocalEstimate(SDValue Op, SDNodeFlags Flags) { 16951 if (Level >= AfterLegalizeDAG) 16952 return SDValue(); 16953 16954 // TODO: Handle half and/or extended types? 16955 EVT VT = Op.getValueType(); 16956 if (VT.getScalarType() != MVT::f32 && VT.getScalarType() != MVT::f64) 16957 return SDValue(); 16958 16959 // If estimates are explicitly disabled for this function, we're done. 16960 MachineFunction &MF = DAG.getMachineFunction(); 16961 int Enabled = TLI.getRecipEstimateDivEnabled(VT, MF); 16962 if (Enabled == TLI.ReciprocalEstimate::Disabled) 16963 return SDValue(); 16964 16965 // Estimates may be explicitly enabled for this type with a custom number of 16966 // refinement steps. 16967 int Iterations = TLI.getDivRefinementSteps(VT, MF); 16968 if (SDValue Est = TLI.getRecipEstimate(Op, DAG, Enabled, Iterations)) { 16969 AddToWorklist(Est.getNode()); 16970 16971 if (Iterations) { 16972 EVT VT = Op.getValueType(); 16973 SDLoc DL(Op); 16974 SDValue FPOne = DAG.getConstantFP(1.0, DL, VT); 16975 16976 // Newton iterations: Est = Est + Est (1 - Arg * Est) 16977 for (int i = 0; i < Iterations; ++i) { 16978 SDValue NewEst = DAG.getNode(ISD::FMUL, DL, VT, Op, Est, Flags); 16979 AddToWorklist(NewEst.getNode()); 16980 16981 NewEst = DAG.getNode(ISD::FSUB, DL, VT, FPOne, NewEst, Flags); 16982 AddToWorklist(NewEst.getNode()); 16983 16984 NewEst = DAG.getNode(ISD::FMUL, DL, VT, Est, NewEst, Flags); 16985 AddToWorklist(NewEst.getNode()); 16986 16987 Est = DAG.getNode(ISD::FADD, DL, VT, Est, NewEst, Flags); 16988 AddToWorklist(Est.getNode()); 16989 } 16990 } 16991 return Est; 16992 } 16993 16994 return SDValue(); 16995 } 16996 16997 /// Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i) 16998 /// For the reciprocal sqrt, we need to find the zero of the function: 16999 /// F(X) = 1/X^2 - A [which has a zero at X = 1/sqrt(A)] 17000 /// => 17001 /// X_{i+1} = X_i (1.5 - A X_i^2 / 2) 17002 /// As a result, we precompute A/2 prior to the iteration loop. 17003 SDValue DAGCombiner::buildSqrtNROneConst(SDValue Arg, SDValue Est, 17004 unsigned Iterations, 17005 SDNodeFlags Flags, bool Reciprocal) { 17006 EVT VT = Arg.getValueType(); 17007 SDLoc DL(Arg); 17008 SDValue ThreeHalves = DAG.getConstantFP(1.5, DL, VT); 17009 17010 // We now need 0.5 * Arg which we can write as (1.5 * Arg - Arg) so that 17011 // this entire sequence requires only one FP constant. 17012 SDValue HalfArg = DAG.getNode(ISD::FMUL, DL, VT, ThreeHalves, Arg, Flags); 17013 AddToWorklist(HalfArg.getNode()); 17014 17015 HalfArg = DAG.getNode(ISD::FSUB, DL, VT, HalfArg, Arg, Flags); 17016 AddToWorklist(HalfArg.getNode()); 17017 17018 // Newton iterations: Est = Est * (1.5 - HalfArg * Est * Est) 17019 for (unsigned i = 0; i < Iterations; ++i) { 17020 SDValue NewEst = DAG.getNode(ISD::FMUL, DL, VT, Est, Est, Flags); 17021 AddToWorklist(NewEst.getNode()); 17022 17023 NewEst = DAG.getNode(ISD::FMUL, DL, VT, HalfArg, NewEst, Flags); 17024 AddToWorklist(NewEst.getNode()); 17025 17026 NewEst = DAG.getNode(ISD::FSUB, DL, VT, ThreeHalves, NewEst, Flags); 17027 AddToWorklist(NewEst.getNode()); 17028 17029 Est = DAG.getNode(ISD::FMUL, DL, VT, Est, NewEst, Flags); 17030 AddToWorklist(Est.getNode()); 17031 } 17032 17033 // If non-reciprocal square root is requested, multiply the result by Arg. 17034 if (!Reciprocal) { 17035 Est = DAG.getNode(ISD::FMUL, DL, VT, Est, Arg, Flags); 17036 AddToWorklist(Est.getNode()); 17037 } 17038 17039 return Est; 17040 } 17041 17042 /// Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i) 17043 /// For the reciprocal sqrt, we need to find the zero of the function: 17044 /// F(X) = 1/X^2 - A [which has a zero at X = 1/sqrt(A)] 17045 /// => 17046 /// X_{i+1} = (-0.5 * X_i) * (A * X_i * X_i + (-3.0)) 17047 SDValue DAGCombiner::buildSqrtNRTwoConst(SDValue Arg, SDValue Est, 17048 unsigned Iterations, 17049 SDNodeFlags Flags, bool Reciprocal) { 17050 EVT VT = Arg.getValueType(); 17051 SDLoc DL(Arg); 17052 SDValue MinusThree = DAG.getConstantFP(-3.0, DL, VT); 17053 SDValue MinusHalf = DAG.getConstantFP(-0.5, DL, VT); 17054 17055 // This routine must enter the loop below to work correctly 17056 // when (Reciprocal == false). 17057 assert(Iterations > 0); 17058 17059 // Newton iterations for reciprocal square root: 17060 // E = (E * -0.5) * ((A * E) * E + -3.0) 17061 for (unsigned i = 0; i < Iterations; ++i) { 17062 SDValue AE = DAG.getNode(ISD::FMUL, DL, VT, Arg, Est, Flags); 17063 AddToWorklist(AE.getNode()); 17064 17065 SDValue AEE = DAG.getNode(ISD::FMUL, DL, VT, AE, Est, Flags); 17066 AddToWorklist(AEE.getNode()); 17067 17068 SDValue RHS = DAG.getNode(ISD::FADD, DL, VT, AEE, MinusThree, Flags); 17069 AddToWorklist(RHS.getNode()); 17070 17071 // When calculating a square root at the last iteration build: 17072 // S = ((A * E) * -0.5) * ((A * E) * E + -3.0) 17073 // (notice a common subexpression) 17074 SDValue LHS; 17075 if (Reciprocal || (i + 1) < Iterations) { 17076 // RSQRT: LHS = (E * -0.5) 17077 LHS = DAG.getNode(ISD::FMUL, DL, VT, Est, MinusHalf, Flags); 17078 } else { 17079 // SQRT: LHS = (A * E) * -0.5 17080 LHS = DAG.getNode(ISD::FMUL, DL, VT, AE, MinusHalf, Flags); 17081 } 17082 AddToWorklist(LHS.getNode()); 17083 17084 Est = DAG.getNode(ISD::FMUL, DL, VT, LHS, RHS, Flags); 17085 AddToWorklist(Est.getNode()); 17086 } 17087 17088 return Est; 17089 } 17090 17091 /// Build code to calculate either rsqrt(Op) or sqrt(Op). In the latter case 17092 /// Op*rsqrt(Op) is actually computed, so additional postprocessing is needed if 17093 /// Op can be zero. 17094 SDValue DAGCombiner::buildSqrtEstimateImpl(SDValue Op, SDNodeFlags Flags, 17095 bool Reciprocal) { 17096 if (Level >= AfterLegalizeDAG) 17097 return SDValue(); 17098 17099 // TODO: Handle half and/or extended types? 17100 EVT VT = Op.getValueType(); 17101 if (VT.getScalarType() != MVT::f32 && VT.getScalarType() != MVT::f64) 17102 return SDValue(); 17103 17104 // If estimates are explicitly disabled for this function, we're done. 17105 MachineFunction &MF = DAG.getMachineFunction(); 17106 int Enabled = TLI.getRecipEstimateSqrtEnabled(VT, MF); 17107 if (Enabled == TLI.ReciprocalEstimate::Disabled) 17108 return SDValue(); 17109 17110 // Estimates may be explicitly enabled for this type with a custom number of 17111 // refinement steps. 17112 int Iterations = TLI.getSqrtRefinementSteps(VT, MF); 17113 17114 bool UseOneConstNR = false; 17115 if (SDValue Est = 17116 TLI.getSqrtEstimate(Op, DAG, Enabled, Iterations, UseOneConstNR, 17117 Reciprocal)) { 17118 AddToWorklist(Est.getNode()); 17119 17120 if (Iterations) { 17121 Est = UseOneConstNR 17122 ? buildSqrtNROneConst(Op, Est, Iterations, Flags, Reciprocal) 17123 : buildSqrtNRTwoConst(Op, Est, Iterations, Flags, Reciprocal); 17124 17125 if (!Reciprocal) { 17126 // Unfortunately, Est is now NaN if the input was exactly 0.0. 17127 // Select out this case and force the answer to 0.0. 17128 EVT VT = Op.getValueType(); 17129 SDLoc DL(Op); 17130 17131 SDValue FPZero = DAG.getConstantFP(0.0, DL, VT); 17132 EVT CCVT = getSetCCResultType(VT); 17133 SDValue ZeroCmp = DAG.getSetCC(DL, CCVT, Op, FPZero, ISD::SETEQ); 17134 AddToWorklist(ZeroCmp.getNode()); 17135 17136 Est = DAG.getNode(VT.isVector() ? ISD::VSELECT : ISD::SELECT, DL, VT, 17137 ZeroCmp, FPZero, Est); 17138 AddToWorklist(Est.getNode()); 17139 } 17140 } 17141 return Est; 17142 } 17143 17144 return SDValue(); 17145 } 17146 17147 SDValue DAGCombiner::buildRsqrtEstimate(SDValue Op, SDNodeFlags Flags) { 17148 return buildSqrtEstimateImpl(Op, Flags, true); 17149 } 17150 17151 SDValue DAGCombiner::buildSqrtEstimate(SDValue Op, SDNodeFlags Flags) { 17152 return buildSqrtEstimateImpl(Op, Flags, false); 17153 } 17154 17155 /// Return true if base is a frame index, which is known not to alias with 17156 /// anything but itself. Provides base object and offset as results. 17157 static bool findBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset, 17158 const GlobalValue *&GV, const void *&CV) { 17159 // Assume it is a primitive operation. 17160 Base = Ptr; Offset = 0; GV = nullptr; CV = nullptr; 17161 17162 // If it's an adding a simple constant then integrate the offset. 17163 if (Base.getOpcode() == ISD::ADD) { 17164 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) { 17165 Base = Base.getOperand(0); 17166 Offset += C->getSExtValue(); 17167 } 17168 } 17169 17170 // Return the underlying GlobalValue, and update the Offset. Return false 17171 // for GlobalAddressSDNode since the same GlobalAddress may be represented 17172 // by multiple nodes with different offsets. 17173 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) { 17174 GV = G->getGlobal(); 17175 Offset += G->getOffset(); 17176 return false; 17177 } 17178 17179 // Return the underlying Constant value, and update the Offset. Return false 17180 // for ConstantSDNodes since the same constant pool entry may be represented 17181 // by multiple nodes with different offsets. 17182 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) { 17183 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal() 17184 : (const void *)C->getConstVal(); 17185 Offset += C->getOffset(); 17186 return false; 17187 } 17188 // If it's any of the following then it can't alias with anything but itself. 17189 return isa<FrameIndexSDNode>(Base); 17190 } 17191 17192 /// Return true if there is any possibility that the two addresses overlap. 17193 bool DAGCombiner::isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) const { 17194 // If they are the same then they must be aliases. 17195 if (Op0->getBasePtr() == Op1->getBasePtr()) return true; 17196 17197 // If they are both volatile then they cannot be reordered. 17198 if (Op0->isVolatile() && Op1->isVolatile()) return true; 17199 17200 // If one operation reads from invariant memory, and the other may store, they 17201 // cannot alias. These should really be checking the equivalent of mayWrite, 17202 // but it only matters for memory nodes other than load /store. 17203 if (Op0->isInvariant() && Op1->writeMem()) 17204 return false; 17205 17206 if (Op1->isInvariant() && Op0->writeMem()) 17207 return false; 17208 17209 unsigned NumBytes0 = Op0->getMemoryVT().getSizeInBits() >> 3; 17210 unsigned NumBytes1 = Op1->getMemoryVT().getSizeInBits() >> 3; 17211 17212 // Check for BaseIndexOffset matching. 17213 BaseIndexOffset BasePtr0 = BaseIndexOffset::match(Op0->getBasePtr(), DAG); 17214 BaseIndexOffset BasePtr1 = BaseIndexOffset::match(Op1->getBasePtr(), DAG); 17215 int64_t PtrDiff; 17216 if (BasePtr0.equalBaseIndex(BasePtr1, DAG, PtrDiff)) 17217 return !((NumBytes0 <= PtrDiff) || (PtrDiff + NumBytes1 <= 0)); 17218 17219 // If both BasePtr0 and BasePtr1 are FrameIndexes, we will not be 17220 // able to calculate their relative offset if at least one arises 17221 // from an alloca. However, these allocas cannot overlap and we 17222 // can infer there is no alias. 17223 if (auto *A = dyn_cast<FrameIndexSDNode>(BasePtr0.getBase())) 17224 if (auto *B = dyn_cast<FrameIndexSDNode>(BasePtr1.getBase())) { 17225 MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo(); 17226 // If the base are the same frame index but the we couldn't find a 17227 // constant offset, (indices are different) be conservative. 17228 if (A != B && (!MFI.isFixedObjectIndex(A->getIndex()) || 17229 !MFI.isFixedObjectIndex(B->getIndex()))) 17230 return false; 17231 } 17232 17233 // FIXME: findBaseOffset and ConstantValue/GlobalValue/FrameIndex analysis 17234 // modified to use BaseIndexOffset. 17235 17236 // Gather base node and offset information. 17237 SDValue Base0, Base1; 17238 int64_t Offset0, Offset1; 17239 const GlobalValue *GV0, *GV1; 17240 const void *CV0, *CV1; 17241 bool IsFrameIndex0 = findBaseOffset(Op0->getBasePtr(), 17242 Base0, Offset0, GV0, CV0); 17243 bool IsFrameIndex1 = findBaseOffset(Op1->getBasePtr(), 17244 Base1, Offset1, GV1, CV1); 17245 17246 // If they have the same base address, then check to see if they overlap. 17247 if (Base0 == Base1 || (GV0 && (GV0 == GV1)) || (CV0 && (CV0 == CV1))) 17248 return !((Offset0 + NumBytes0) <= Offset1 || 17249 (Offset1 + NumBytes1) <= Offset0); 17250 17251 // It is possible for different frame indices to alias each other, mostly 17252 // when tail call optimization reuses return address slots for arguments. 17253 // To catch this case, look up the actual index of frame indices to compute 17254 // the real alias relationship. 17255 if (IsFrameIndex0 && IsFrameIndex1) { 17256 MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo(); 17257 Offset0 += MFI.getObjectOffset(cast<FrameIndexSDNode>(Base0)->getIndex()); 17258 Offset1 += MFI.getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex()); 17259 return !((Offset0 + NumBytes0) <= Offset1 || 17260 (Offset1 + NumBytes1) <= Offset0); 17261 } 17262 17263 // Otherwise, if we know what the bases are, and they aren't identical, then 17264 // we know they cannot alias. 17265 if ((IsFrameIndex0 || CV0 || GV0) && (IsFrameIndex1 || CV1 || GV1)) 17266 return false; 17267 17268 // If we know required SrcValue1 and SrcValue2 have relatively large alignment 17269 // compared to the size and offset of the access, we may be able to prove they 17270 // do not alias. This check is conservative for now to catch cases created by 17271 // splitting vector types. 17272 int64_t SrcValOffset0 = Op0->getSrcValueOffset(); 17273 int64_t SrcValOffset1 = Op1->getSrcValueOffset(); 17274 unsigned OrigAlignment0 = Op0->getOriginalAlignment(); 17275 unsigned OrigAlignment1 = Op1->getOriginalAlignment(); 17276 if (OrigAlignment0 == OrigAlignment1 && SrcValOffset0 != SrcValOffset1 && 17277 NumBytes0 == NumBytes1 && OrigAlignment0 > NumBytes0) { 17278 int64_t OffAlign0 = SrcValOffset0 % OrigAlignment0; 17279 int64_t OffAlign1 = SrcValOffset1 % OrigAlignment1; 17280 17281 // There is no overlap between these relatively aligned accesses of similar 17282 // size. Return no alias. 17283 if ((OffAlign0 + NumBytes0) <= OffAlign1 || 17284 (OffAlign1 + NumBytes1) <= OffAlign0) 17285 return false; 17286 } 17287 17288 bool UseAA = CombinerGlobalAA.getNumOccurrences() > 0 17289 ? CombinerGlobalAA 17290 : DAG.getSubtarget().useAA(); 17291 #ifndef NDEBUG 17292 if (CombinerAAOnlyFunc.getNumOccurrences() && 17293 CombinerAAOnlyFunc != DAG.getMachineFunction().getName()) 17294 UseAA = false; 17295 #endif 17296 17297 if (UseAA && AA && 17298 Op0->getMemOperand()->getValue() && Op1->getMemOperand()->getValue()) { 17299 // Use alias analysis information. 17300 int64_t MinOffset = std::min(SrcValOffset0, SrcValOffset1); 17301 int64_t Overlap0 = NumBytes0 + SrcValOffset0 - MinOffset; 17302 int64_t Overlap1 = NumBytes1 + SrcValOffset1 - MinOffset; 17303 AliasResult AAResult = 17304 AA->alias(MemoryLocation(Op0->getMemOperand()->getValue(), Overlap0, 17305 UseTBAA ? Op0->getAAInfo() : AAMDNodes()), 17306 MemoryLocation(Op1->getMemOperand()->getValue(), Overlap1, 17307 UseTBAA ? Op1->getAAInfo() : AAMDNodes()) ); 17308 if (AAResult == NoAlias) 17309 return false; 17310 } 17311 17312 // Otherwise we have to assume they alias. 17313 return true; 17314 } 17315 17316 /// Walk up chain skipping non-aliasing memory nodes, 17317 /// looking for aliasing nodes and adding them to the Aliases vector. 17318 void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain, 17319 SmallVectorImpl<SDValue> &Aliases) { 17320 SmallVector<SDValue, 8> Chains; // List of chains to visit. 17321 SmallPtrSet<SDNode *, 16> Visited; // Visited node set. 17322 17323 // Get alias information for node. 17324 bool IsLoad = isa<LoadSDNode>(N) && !cast<LSBaseSDNode>(N)->isVolatile(); 17325 17326 // Starting off. 17327 Chains.push_back(OriginalChain); 17328 unsigned Depth = 0; 17329 17330 // Look at each chain and determine if it is an alias. If so, add it to the 17331 // aliases list. If not, then continue up the chain looking for the next 17332 // candidate. 17333 while (!Chains.empty()) { 17334 SDValue Chain = Chains.pop_back_val(); 17335 17336 // For TokenFactor nodes, look at each operand and only continue up the 17337 // chain until we reach the depth limit. 17338 // 17339 // FIXME: The depth check could be made to return the last non-aliasing 17340 // chain we found before we hit a tokenfactor rather than the original 17341 // chain. 17342 if (Depth > TLI.getGatherAllAliasesMaxDepth()) { 17343 Aliases.clear(); 17344 Aliases.push_back(OriginalChain); 17345 return; 17346 } 17347 17348 // Don't bother if we've been before. 17349 if (!Visited.insert(Chain.getNode()).second) 17350 continue; 17351 17352 switch (Chain.getOpcode()) { 17353 case ISD::EntryToken: 17354 // Entry token is ideal chain operand, but handled in FindBetterChain. 17355 break; 17356 17357 case ISD::LOAD: 17358 case ISD::STORE: { 17359 // Get alias information for Chain. 17360 bool IsOpLoad = isa<LoadSDNode>(Chain.getNode()) && 17361 !cast<LSBaseSDNode>(Chain.getNode())->isVolatile(); 17362 17363 // If chain is alias then stop here. 17364 if (!(IsLoad && IsOpLoad) && 17365 isAlias(cast<LSBaseSDNode>(N), cast<LSBaseSDNode>(Chain.getNode()))) { 17366 Aliases.push_back(Chain); 17367 } else { 17368 // Look further up the chain. 17369 Chains.push_back(Chain.getOperand(0)); 17370 ++Depth; 17371 } 17372 break; 17373 } 17374 17375 case ISD::TokenFactor: 17376 // We have to check each of the operands of the token factor for "small" 17377 // token factors, so we queue them up. Adding the operands to the queue 17378 // (stack) in reverse order maintains the original order and increases the 17379 // likelihood that getNode will find a matching token factor (CSE.) 17380 if (Chain.getNumOperands() > 16) { 17381 Aliases.push_back(Chain); 17382 break; 17383 } 17384 for (unsigned n = Chain.getNumOperands(); n;) 17385 Chains.push_back(Chain.getOperand(--n)); 17386 ++Depth; 17387 break; 17388 17389 case ISD::CopyFromReg: 17390 // Forward past CopyFromReg. 17391 Chains.push_back(Chain.getOperand(0)); 17392 ++Depth; 17393 break; 17394 17395 default: 17396 // For all other instructions we will just have to take what we can get. 17397 Aliases.push_back(Chain); 17398 break; 17399 } 17400 } 17401 } 17402 17403 /// Walk up chain skipping non-aliasing memory nodes, looking for a better chain 17404 /// (aliasing node.) 17405 SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) { 17406 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor. 17407 17408 // Accumulate all the aliases to this node. 17409 GatherAllAliases(N, OldChain, Aliases); 17410 17411 // If no operands then chain to entry token. 17412 if (Aliases.size() == 0) 17413 return DAG.getEntryNode(); 17414 17415 // If a single operand then chain to it. We don't need to revisit it. 17416 if (Aliases.size() == 1) 17417 return Aliases[0]; 17418 17419 // Construct a custom tailored token factor. 17420 return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other, Aliases); 17421 } 17422 17423 // This function tries to collect a bunch of potentially interesting 17424 // nodes to improve the chains of, all at once. This might seem 17425 // redundant, as this function gets called when visiting every store 17426 // node, so why not let the work be done on each store as it's visited? 17427 // 17428 // I believe this is mainly important because MergeConsecutiveStores 17429 // is unable to deal with merging stores of different sizes, so unless 17430 // we improve the chains of all the potential candidates up-front 17431 // before running MergeConsecutiveStores, it might only see some of 17432 // the nodes that will eventually be candidates, and then not be able 17433 // to go from a partially-merged state to the desired final 17434 // fully-merged state. 17435 bool DAGCombiner::findBetterNeighborChains(StoreSDNode *St) { 17436 // This holds the base pointer, index, and the offset in bytes from the base 17437 // pointer. 17438 BaseIndexOffset BasePtr = BaseIndexOffset::match(St->getBasePtr(), DAG); 17439 17440 // We must have a base and an offset. 17441 if (!BasePtr.getBase().getNode()) 17442 return false; 17443 17444 // Do not handle stores to undef base pointers. 17445 if (BasePtr.getBase().isUndef()) 17446 return false; 17447 17448 SmallVector<StoreSDNode *, 8> ChainedStores; 17449 ChainedStores.push_back(St); 17450 17451 // Walk up the chain and look for nodes with offsets from the same 17452 // base pointer. Stop when reaching an instruction with a different kind 17453 // or instruction which has a different base pointer. 17454 StoreSDNode *Index = St; 17455 while (Index) { 17456 // If the chain has more than one use, then we can't reorder the mem ops. 17457 if (Index != St && !SDValue(Index, 0)->hasOneUse()) 17458 break; 17459 17460 if (Index->isVolatile() || Index->isIndexed()) 17461 break; 17462 17463 // Find the base pointer and offset for this memory node. 17464 BaseIndexOffset Ptr = BaseIndexOffset::match(Index->getBasePtr(), DAG); 17465 17466 // Check that the base pointer is the same as the original one. 17467 if (!BasePtr.equalBaseIndex(Ptr, DAG)) 17468 break; 17469 17470 // Walk up the chain to find the next store node, ignoring any 17471 // intermediate loads. Any other kind of node will halt the loop. 17472 SDNode *NextInChain = Index->getChain().getNode(); 17473 while (true) { 17474 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) { 17475 // We found a store node. Use it for the next iteration. 17476 if (STn->isVolatile() || STn->isIndexed()) { 17477 Index = nullptr; 17478 break; 17479 } 17480 ChainedStores.push_back(STn); 17481 Index = STn; 17482 break; 17483 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) { 17484 NextInChain = Ldn->getChain().getNode(); 17485 continue; 17486 } else { 17487 Index = nullptr; 17488 break; 17489 } 17490 } // end while 17491 } 17492 17493 // At this point, ChainedStores lists all of the Store nodes 17494 // reachable by iterating up through chain nodes matching the above 17495 // conditions. For each such store identified, try to find an 17496 // earlier chain to attach the store to which won't violate the 17497 // required ordering. 17498 bool MadeChangeToSt = false; 17499 SmallVector<std::pair<StoreSDNode *, SDValue>, 8> BetterChains; 17500 17501 for (StoreSDNode *ChainedStore : ChainedStores) { 17502 SDValue Chain = ChainedStore->getChain(); 17503 SDValue BetterChain = FindBetterChain(ChainedStore, Chain); 17504 17505 if (Chain != BetterChain) { 17506 if (ChainedStore == St) 17507 MadeChangeToSt = true; 17508 BetterChains.push_back(std::make_pair(ChainedStore, BetterChain)); 17509 } 17510 } 17511 17512 // Do all replacements after finding the replacements to make to avoid making 17513 // the chains more complicated by introducing new TokenFactors. 17514 for (auto Replacement : BetterChains) 17515 replaceStoreChain(Replacement.first, Replacement.second); 17516 17517 return MadeChangeToSt; 17518 } 17519 17520 /// This is the entry point for the file. 17521 void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis *AA, 17522 CodeGenOpt::Level OptLevel) { 17523 /// This is the main entry point to this class. 17524 DAGCombiner(*this, AA, OptLevel).Run(Level); 17525 } 17526