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/SetVector.h" 20 #include "llvm/ADT/SmallBitVector.h" 21 #include "llvm/ADT/SmallPtrSet.h" 22 #include "llvm/ADT/SmallSet.h" 23 #include "llvm/ADT/Statistic.h" 24 #include "llvm/Analysis/AliasAnalysis.h" 25 #include "llvm/CodeGen/MachineFrameInfo.h" 26 #include "llvm/CodeGen/MachineFunction.h" 27 #include "llvm/CodeGen/SelectionDAG.h" 28 #include "llvm/CodeGen/SelectionDAGTargetInfo.h" 29 #include "llvm/IR/DataLayout.h" 30 #include "llvm/IR/DerivedTypes.h" 31 #include "llvm/IR/Function.h" 32 #include "llvm/IR/LLVMContext.h" 33 #include "llvm/Support/CommandLine.h" 34 #include "llvm/Support/Debug.h" 35 #include "llvm/Support/ErrorHandling.h" 36 #include "llvm/Support/MathExtras.h" 37 #include "llvm/Support/raw_ostream.h" 38 #include "llvm/Target/TargetLowering.h" 39 #include "llvm/Target/TargetOptions.h" 40 #include "llvm/Target/TargetRegisterInfo.h" 41 #include "llvm/Target/TargetSubtargetInfo.h" 42 #include <algorithm> 43 using namespace llvm; 44 45 #define DEBUG_TYPE "dagcombine" 46 47 STATISTIC(NodesCombined , "Number of dag nodes combined"); 48 STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created"); 49 STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created"); 50 STATISTIC(OpsNarrowed , "Number of load/op/store narrowed"); 51 STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int"); 52 STATISTIC(SlicedLoads, "Number of load sliced"); 53 54 namespace { 55 static cl::opt<bool> 56 CombinerAA("combiner-alias-analysis", cl::Hidden, 57 cl::desc("Enable DAG combiner alias-analysis heuristics")); 58 59 static cl::opt<bool> 60 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden, 61 cl::desc("Enable DAG combiner's use of IR alias analysis")); 62 63 static cl::opt<bool> 64 UseTBAA("combiner-use-tbaa", cl::Hidden, cl::init(true), 65 cl::desc("Enable DAG combiner's use of TBAA")); 66 67 #ifndef NDEBUG 68 static cl::opt<std::string> 69 CombinerAAOnlyFunc("combiner-aa-only-func", cl::Hidden, 70 cl::desc("Only use DAG-combiner alias analysis in this" 71 " function")); 72 #endif 73 74 /// Hidden option to stress test load slicing, i.e., when this option 75 /// is enabled, load slicing bypasses most of its profitability guards. 76 static cl::opt<bool> 77 StressLoadSlicing("combiner-stress-load-slicing", cl::Hidden, 78 cl::desc("Bypass the profitability model of load " 79 "slicing"), 80 cl::init(false)); 81 82 static cl::opt<bool> 83 MaySplitLoadIndex("combiner-split-load-index", cl::Hidden, cl::init(true), 84 cl::desc("DAG combiner may split indexing from loads")); 85 86 //------------------------------ DAGCombiner ---------------------------------// 87 88 class DAGCombiner { 89 SelectionDAG &DAG; 90 const TargetLowering &TLI; 91 CombineLevel Level; 92 CodeGenOpt::Level OptLevel; 93 bool LegalOperations; 94 bool LegalTypes; 95 bool ForCodeSize; 96 97 /// \brief Worklist of all of the nodes that need to be simplified. 98 /// 99 /// This must behave as a stack -- new nodes to process are pushed onto the 100 /// back and when processing we pop off of the back. 101 /// 102 /// The worklist will not contain duplicates but may contain null entries 103 /// due to nodes being deleted from the underlying DAG. 104 SmallVector<SDNode *, 64> Worklist; 105 106 /// \brief Mapping from an SDNode to its position on the worklist. 107 /// 108 /// This is used to find and remove nodes from the worklist (by nulling 109 /// them) when they are deleted from the underlying DAG. It relies on 110 /// stable indices of nodes within the worklist. 111 DenseMap<SDNode *, unsigned> WorklistMap; 112 113 /// \brief Set of nodes which have been combined (at least once). 114 /// 115 /// This is used to allow us to reliably add any operands of a DAG node 116 /// which have not yet been combined to the worklist. 117 SmallPtrSet<SDNode *, 32> CombinedNodes; 118 119 // AA - Used for DAG load/store alias analysis. 120 AliasAnalysis &AA; 121 122 /// When an instruction is simplified, add all users of the instruction to 123 /// the work lists because they might get more simplified now. 124 void AddUsersToWorklist(SDNode *N) { 125 for (SDNode *Node : N->uses()) 126 AddToWorklist(Node); 127 } 128 129 /// Call the node-specific routine that folds each particular type of node. 130 SDValue visit(SDNode *N); 131 132 public: 133 /// Add to the worklist making sure its instance is at the back (next to be 134 /// processed.) 135 void AddToWorklist(SDNode *N) { 136 // Skip handle nodes as they can't usefully be combined and confuse the 137 // zero-use deletion strategy. 138 if (N->getOpcode() == ISD::HANDLENODE) 139 return; 140 141 if (WorklistMap.insert(std::make_pair(N, Worklist.size())).second) 142 Worklist.push_back(N); 143 } 144 145 /// Remove all instances of N from the worklist. 146 void removeFromWorklist(SDNode *N) { 147 CombinedNodes.erase(N); 148 149 auto It = WorklistMap.find(N); 150 if (It == WorklistMap.end()) 151 return; // Not in the worklist. 152 153 // Null out the entry rather than erasing it to avoid a linear operation. 154 Worklist[It->second] = nullptr; 155 WorklistMap.erase(It); 156 } 157 158 void deleteAndRecombine(SDNode *N); 159 bool recursivelyDeleteUnusedNodes(SDNode *N); 160 161 /// Replaces all uses of the results of one DAG node with new values. 162 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo, 163 bool AddTo = true); 164 165 /// Replaces all uses of the results of one DAG node with new values. 166 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) { 167 return CombineTo(N, &Res, 1, AddTo); 168 } 169 170 /// Replaces all uses of the results of one DAG node with new values. 171 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, 172 bool AddTo = true) { 173 SDValue To[] = { Res0, Res1 }; 174 return CombineTo(N, To, 2, AddTo); 175 } 176 177 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO); 178 179 private: 180 181 /// Check the specified integer node value to see if it can be simplified or 182 /// if things it uses can be simplified by bit propagation. 183 /// If so, return true. 184 bool SimplifyDemandedBits(SDValue Op) { 185 unsigned BitWidth = Op.getScalarValueSizeInBits(); 186 APInt Demanded = APInt::getAllOnesValue(BitWidth); 187 return SimplifyDemandedBits(Op, Demanded); 188 } 189 190 bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded); 191 192 bool CombineToPreIndexedLoadStore(SDNode *N); 193 bool CombineToPostIndexedLoadStore(SDNode *N); 194 SDValue SplitIndexingFromLoad(LoadSDNode *LD); 195 bool SliceUpLoad(SDNode *N); 196 197 /// \brief Replace an ISD::EXTRACT_VECTOR_ELT of a load with a narrowed 198 /// load. 199 /// 200 /// \param EVE ISD::EXTRACT_VECTOR_ELT to be replaced. 201 /// \param InVecVT type of the input vector to EVE with bitcasts resolved. 202 /// \param EltNo index of the vector element to load. 203 /// \param OriginalLoad load that EVE came from to be replaced. 204 /// \returns EVE on success SDValue() on failure. 205 SDValue ReplaceExtractVectorEltOfLoadWithNarrowedLoad( 206 SDNode *EVE, EVT InVecVT, SDValue EltNo, LoadSDNode *OriginalLoad); 207 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad); 208 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace); 209 SDValue SExtPromoteOperand(SDValue Op, EVT PVT); 210 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT); 211 SDValue PromoteIntBinOp(SDValue Op); 212 SDValue PromoteIntShiftOp(SDValue Op); 213 SDValue PromoteExtend(SDValue Op); 214 bool PromoteLoad(SDValue Op); 215 216 void ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs, SDValue Trunc, 217 SDValue ExtLoad, const SDLoc &DL, 218 ISD::NodeType ExtType); 219 220 /// Call the node-specific routine that knows how to fold each 221 /// particular type of node. If that doesn't do anything, try the 222 /// target-specific DAG combines. 223 SDValue combine(SDNode *N); 224 225 // Visitation implementation - Implement dag node combining for different 226 // node types. The semantics are as follows: 227 // Return Value: 228 // SDValue.getNode() == 0 - No change was made 229 // SDValue.getNode() == N - N was replaced, is dead and has been handled. 230 // otherwise - N should be replaced by the returned Operand. 231 // 232 SDValue visitTokenFactor(SDNode *N); 233 SDValue visitMERGE_VALUES(SDNode *N); 234 SDValue visitADD(SDNode *N); 235 SDValue visitSUB(SDNode *N); 236 SDValue visitADDC(SDNode *N); 237 SDValue visitSUBC(SDNode *N); 238 SDValue visitADDE(SDNode *N); 239 SDValue visitSUBE(SDNode *N); 240 SDValue visitMUL(SDNode *N); 241 SDValue useDivRem(SDNode *N); 242 SDValue visitSDIV(SDNode *N); 243 SDValue visitUDIV(SDNode *N); 244 SDValue visitREM(SDNode *N); 245 SDValue visitMULHU(SDNode *N); 246 SDValue visitMULHS(SDNode *N); 247 SDValue visitSMUL_LOHI(SDNode *N); 248 SDValue visitUMUL_LOHI(SDNode *N); 249 SDValue visitSMULO(SDNode *N); 250 SDValue visitUMULO(SDNode *N); 251 SDValue visitIMINMAX(SDNode *N); 252 SDValue visitAND(SDNode *N); 253 SDValue visitANDLike(SDValue N0, SDValue N1, SDNode *LocReference); 254 SDValue visitOR(SDNode *N); 255 SDValue visitORLike(SDValue N0, SDValue N1, SDNode *LocReference); 256 SDValue visitXOR(SDNode *N); 257 SDValue SimplifyVBinOp(SDNode *N); 258 SDValue visitSHL(SDNode *N); 259 SDValue visitSRA(SDNode *N); 260 SDValue visitSRL(SDNode *N); 261 SDValue visitRotate(SDNode *N); 262 SDValue visitBSWAP(SDNode *N); 263 SDValue visitBITREVERSE(SDNode *N); 264 SDValue visitCTLZ(SDNode *N); 265 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N); 266 SDValue visitCTTZ(SDNode *N); 267 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N); 268 SDValue visitCTPOP(SDNode *N); 269 SDValue visitSELECT(SDNode *N); 270 SDValue visitVSELECT(SDNode *N); 271 SDValue visitSELECT_CC(SDNode *N); 272 SDValue visitSETCC(SDNode *N); 273 SDValue visitSETCCE(SDNode *N); 274 SDValue visitSIGN_EXTEND(SDNode *N); 275 SDValue visitZERO_EXTEND(SDNode *N); 276 SDValue visitANY_EXTEND(SDNode *N); 277 SDValue visitSIGN_EXTEND_INREG(SDNode *N); 278 SDValue visitSIGN_EXTEND_VECTOR_INREG(SDNode *N); 279 SDValue visitZERO_EXTEND_VECTOR_INREG(SDNode *N); 280 SDValue visitTRUNCATE(SDNode *N); 281 SDValue visitBITCAST(SDNode *N); 282 SDValue visitBUILD_PAIR(SDNode *N); 283 SDValue visitFADD(SDNode *N); 284 SDValue visitFSUB(SDNode *N); 285 SDValue visitFMUL(SDNode *N); 286 SDValue visitFMA(SDNode *N); 287 SDValue visitFDIV(SDNode *N); 288 SDValue visitFREM(SDNode *N); 289 SDValue visitFSQRT(SDNode *N); 290 SDValue visitFCOPYSIGN(SDNode *N); 291 SDValue visitSINT_TO_FP(SDNode *N); 292 SDValue visitUINT_TO_FP(SDNode *N); 293 SDValue visitFP_TO_SINT(SDNode *N); 294 SDValue visitFP_TO_UINT(SDNode *N); 295 SDValue visitFP_ROUND(SDNode *N); 296 SDValue visitFP_ROUND_INREG(SDNode *N); 297 SDValue visitFP_EXTEND(SDNode *N); 298 SDValue visitFNEG(SDNode *N); 299 SDValue visitFABS(SDNode *N); 300 SDValue visitFCEIL(SDNode *N); 301 SDValue visitFTRUNC(SDNode *N); 302 SDValue visitFFLOOR(SDNode *N); 303 SDValue visitFMINNUM(SDNode *N); 304 SDValue visitFMAXNUM(SDNode *N); 305 SDValue visitBRCOND(SDNode *N); 306 SDValue visitBR_CC(SDNode *N); 307 SDValue visitLOAD(SDNode *N); 308 309 SDValue replaceStoreChain(StoreSDNode *ST, SDValue BetterChain); 310 SDValue replaceStoreOfFPConstant(StoreSDNode *ST); 311 312 SDValue visitSTORE(SDNode *N); 313 SDValue visitINSERT_VECTOR_ELT(SDNode *N); 314 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N); 315 SDValue visitBUILD_VECTOR(SDNode *N); 316 SDValue visitCONCAT_VECTORS(SDNode *N); 317 SDValue visitEXTRACT_SUBVECTOR(SDNode *N); 318 SDValue visitVECTOR_SHUFFLE(SDNode *N); 319 SDValue visitSCALAR_TO_VECTOR(SDNode *N); 320 SDValue visitINSERT_SUBVECTOR(SDNode *N); 321 SDValue visitMLOAD(SDNode *N); 322 SDValue visitMSTORE(SDNode *N); 323 SDValue visitMGATHER(SDNode *N); 324 SDValue visitMSCATTER(SDNode *N); 325 SDValue visitFP_TO_FP16(SDNode *N); 326 SDValue visitFP16_TO_FP(SDNode *N); 327 328 SDValue visitFADDForFMACombine(SDNode *N); 329 SDValue visitFSUBForFMACombine(SDNode *N); 330 SDValue visitFMULForFMADistributiveCombine(SDNode *N); 331 332 SDValue XformToShuffleWithZero(SDNode *N); 333 SDValue ReassociateOps(unsigned Opc, const SDLoc &DL, SDValue LHS, 334 SDValue RHS); 335 336 SDValue visitShiftByConstant(SDNode *N, ConstantSDNode *Amt); 337 338 SDValue foldSelectOfConstants(SDNode *N); 339 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS); 340 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N); 341 SDValue SimplifySelect(const SDLoc &DL, SDValue N0, SDValue N1, SDValue N2); 342 SDValue SimplifySelectCC(const SDLoc &DL, SDValue N0, SDValue N1, 343 SDValue N2, SDValue N3, ISD::CondCode CC, 344 bool NotExtCompare = false); 345 SDValue foldSelectCCToShiftAnd(const SDLoc &DL, SDValue N0, SDValue N1, 346 SDValue N2, SDValue N3, ISD::CondCode CC); 347 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond, 348 const SDLoc &DL, bool foldBooleans = true); 349 350 bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS, 351 SDValue &CC) const; 352 bool isOneUseSetCC(SDValue N) const; 353 354 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, 355 unsigned HiOp); 356 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT); 357 SDValue CombineExtLoad(SDNode *N); 358 SDValue combineRepeatedFPDivisors(SDNode *N); 359 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT); 360 SDValue BuildSDIV(SDNode *N); 361 SDValue BuildSDIVPow2(SDNode *N); 362 SDValue BuildUDIV(SDNode *N); 363 SDValue BuildLogBase2(SDValue Op, const SDLoc &DL); 364 SDValue BuildReciprocalEstimate(SDValue Op, SDNodeFlags *Flags); 365 SDValue buildRsqrtEstimate(SDValue Op, SDNodeFlags *Flags); 366 SDValue buildSqrtEstimate(SDValue Op, SDNodeFlags *Flags); 367 SDValue buildSqrtEstimateImpl(SDValue Op, SDNodeFlags *Flags, bool Recip); 368 SDValue buildSqrtNROneConst(SDValue Op, SDValue Est, unsigned Iterations, 369 SDNodeFlags *Flags, bool Reciprocal); 370 SDValue buildSqrtNRTwoConst(SDValue Op, SDValue Est, unsigned Iterations, 371 SDNodeFlags *Flags, bool Reciprocal); 372 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1, 373 bool DemandHighBits = true); 374 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1); 375 SDNode *MatchRotatePosNeg(SDValue Shifted, SDValue Pos, SDValue Neg, 376 SDValue InnerPos, SDValue InnerNeg, 377 unsigned PosOpcode, unsigned NegOpcode, 378 const SDLoc &DL); 379 SDNode *MatchRotate(SDValue LHS, SDValue RHS, const SDLoc &DL); 380 SDValue ReduceLoadWidth(SDNode *N); 381 SDValue ReduceLoadOpStoreWidth(SDNode *N); 382 SDValue splitMergedValStore(StoreSDNode *ST); 383 SDValue TransformFPLoadStorePair(SDNode *N); 384 SDValue reduceBuildVecExtToExtBuildVec(SDNode *N); 385 SDValue reduceBuildVecConvertToConvertBuildVec(SDNode *N); 386 SDValue reduceBuildVecToShuffle(SDNode *N); 387 SDValue createBuildVecShuffle(SDLoc DL, SDNode *N, ArrayRef<int> VectorMask, 388 SDValue VecIn1, SDValue VecIn2, 389 unsigned LeftIdx); 390 391 SDValue GetDemandedBits(SDValue V, const APInt &Mask); 392 393 /// Walk up chain skipping non-aliasing memory nodes, 394 /// looking for aliasing nodes and adding them to the Aliases vector. 395 void GatherAllAliases(SDNode *N, SDValue OriginalChain, 396 SmallVectorImpl<SDValue> &Aliases); 397 398 /// Return true if there is any possibility that the two addresses overlap. 399 bool isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) const; 400 401 /// Walk up chain skipping non-aliasing memory nodes, looking for a better 402 /// chain (aliasing node.) 403 SDValue FindBetterChain(SDNode *N, SDValue Chain); 404 405 /// Try to replace a store and any possibly adjacent stores on 406 /// consecutive chains with better chains. Return true only if St is 407 /// replaced. 408 /// 409 /// Notice that other chains may still be replaced even if the function 410 /// returns false. 411 bool findBetterNeighborChains(StoreSDNode *St); 412 413 /// Match "(X shl/srl V1) & V2" where V2 may not be present. 414 bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask); 415 416 /// Holds a pointer to an LSBaseSDNode as well as information on where it 417 /// is located in a sequence of memory operations connected by a chain. 418 struct MemOpLink { 419 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq): 420 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { } 421 // Ptr to the mem node. 422 LSBaseSDNode *MemNode; 423 // Offset from the base ptr. 424 int64_t OffsetFromBase; 425 // What is the sequence number of this mem node. 426 // Lowest mem operand in the DAG starts at zero. 427 unsigned SequenceNum; 428 }; 429 430 /// This is a helper function for visitMUL to check the profitability 431 /// of folding (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2). 432 /// MulNode is the original multiply, AddNode is (add x, c1), 433 /// and ConstNode is c2. 434 bool isMulAddWithConstProfitable(SDNode *MulNode, 435 SDValue &AddNode, 436 SDValue &ConstNode); 437 438 /// This is a helper function for MergeStoresOfConstantsOrVecElts. Returns a 439 /// constant build_vector of the stored constant values in Stores. 440 SDValue getMergedConstantVectorStore(SelectionDAG &DAG, const SDLoc &SL, 441 ArrayRef<MemOpLink> Stores, 442 SmallVectorImpl<SDValue> &Chains, 443 EVT Ty) const; 444 445 /// This is a helper function for visitAND and visitZERO_EXTEND. Returns 446 /// true if the (and (load x) c) pattern matches an extload. ExtVT returns 447 /// the type of the loaded value to be extended. LoadedVT returns the type 448 /// of the original loaded value. NarrowLoad returns whether the load would 449 /// need to be narrowed in order to match. 450 bool isAndLoadExtLoad(ConstantSDNode *AndC, LoadSDNode *LoadN, 451 EVT LoadResultTy, EVT &ExtVT, EVT &LoadedVT, 452 bool &NarrowLoad); 453 454 /// This is a helper function for MergeConsecutiveStores. When the source 455 /// elements of the consecutive stores are all constants or all extracted 456 /// vector elements, try to merge them into one larger store. 457 /// \return number of stores that were merged into a merged store (always 458 /// a prefix of \p StoreNode). 459 bool MergeStoresOfConstantsOrVecElts( 460 SmallVectorImpl<MemOpLink> &StoreNodes, EVT MemVT, unsigned NumStores, 461 bool IsConstantSrc, bool UseVector); 462 463 /// This is a helper function for MergeConsecutiveStores. 464 /// Stores that may be merged are placed in StoreNodes. 465 /// Loads that may alias with those stores are placed in AliasLoadNodes. 466 void getStoreMergeAndAliasCandidates( 467 StoreSDNode* St, SmallVectorImpl<MemOpLink> &StoreNodes, 468 SmallVectorImpl<LSBaseSDNode*> &AliasLoadNodes); 469 470 /// Helper function for MergeConsecutiveStores. Checks if 471 /// Candidate stores have indirect dependency through their 472 /// operands. \return True if safe to merge 473 bool checkMergeStoreCandidatesForDependencies( 474 SmallVectorImpl<MemOpLink> &StoreNodes); 475 476 /// Merge consecutive store operations into a wide store. 477 /// This optimization uses wide integers or vectors when possible. 478 /// \return number of stores that were merged into a merged store (the 479 /// affected nodes are stored as a prefix in \p StoreNodes). 480 bool MergeConsecutiveStores(StoreSDNode *N, 481 SmallVectorImpl<MemOpLink> &StoreNodes); 482 483 /// \brief Try to transform a truncation where C is a constant: 484 /// (trunc (and X, C)) -> (and (trunc X), (trunc C)) 485 /// 486 /// \p N needs to be a truncation and its first operand an AND. Other 487 /// requirements are checked by the function (e.g. that trunc is 488 /// single-use) and if missed an empty SDValue is returned. 489 SDValue distributeTruncateThroughAnd(SDNode *N); 490 491 public: 492 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL) 493 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes), 494 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) { 495 ForCodeSize = DAG.getMachineFunction().getFunction()->optForSize(); 496 } 497 498 /// Runs the dag combiner on all nodes in the work list 499 void Run(CombineLevel AtLevel); 500 501 SelectionDAG &getDAG() const { return DAG; } 502 503 /// Returns a type large enough to hold any valid shift amount - before type 504 /// legalization these can be huge. 505 EVT getShiftAmountTy(EVT LHSTy) { 506 assert(LHSTy.isInteger() && "Shift amount is not an integer type!"); 507 if (LHSTy.isVector()) 508 return LHSTy; 509 auto &DL = DAG.getDataLayout(); 510 return LegalTypes ? TLI.getScalarShiftAmountTy(DL, LHSTy) 511 : TLI.getPointerTy(DL); 512 } 513 514 /// This method returns true if we are running before type legalization or 515 /// if the specified VT is legal. 516 bool isTypeLegal(const EVT &VT) { 517 if (!LegalTypes) return true; 518 return TLI.isTypeLegal(VT); 519 } 520 521 /// Convenience wrapper around TargetLowering::getSetCCResultType 522 EVT getSetCCResultType(EVT VT) const { 523 return TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); 524 } 525 }; 526 } 527 528 529 namespace { 530 /// This class is a DAGUpdateListener that removes any deleted 531 /// nodes from the worklist. 532 class WorklistRemover : public SelectionDAG::DAGUpdateListener { 533 DAGCombiner &DC; 534 public: 535 explicit WorklistRemover(DAGCombiner &dc) 536 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {} 537 538 void NodeDeleted(SDNode *N, SDNode *E) override { 539 DC.removeFromWorklist(N); 540 } 541 }; 542 } 543 544 //===----------------------------------------------------------------------===// 545 // TargetLowering::DAGCombinerInfo implementation 546 //===----------------------------------------------------------------------===// 547 548 void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) { 549 ((DAGCombiner*)DC)->AddToWorklist(N); 550 } 551 552 SDValue TargetLowering::DAGCombinerInfo:: 553 CombineTo(SDNode *N, ArrayRef<SDValue> To, bool AddTo) { 554 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo); 555 } 556 557 SDValue TargetLowering::DAGCombinerInfo:: 558 CombineTo(SDNode *N, SDValue Res, bool AddTo) { 559 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo); 560 } 561 562 563 SDValue TargetLowering::DAGCombinerInfo:: 564 CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) { 565 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo); 566 } 567 568 void TargetLowering::DAGCombinerInfo:: 569 CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) { 570 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO); 571 } 572 573 //===----------------------------------------------------------------------===// 574 // Helper Functions 575 //===----------------------------------------------------------------------===// 576 577 void DAGCombiner::deleteAndRecombine(SDNode *N) { 578 removeFromWorklist(N); 579 580 // If the operands of this node are only used by the node, they will now be 581 // dead. Make sure to re-visit them and recursively delete dead nodes. 582 for (const SDValue &Op : N->ops()) 583 // For an operand generating multiple values, one of the values may 584 // become dead allowing further simplification (e.g. split index 585 // arithmetic from an indexed load). 586 if (Op->hasOneUse() || Op->getNumValues() > 1) 587 AddToWorklist(Op.getNode()); 588 589 DAG.DeleteNode(N); 590 } 591 592 /// Return 1 if we can compute the negated form of the specified expression for 593 /// the same cost as the expression itself, or 2 if we can compute the negated 594 /// form more cheaply than the expression itself. 595 static char isNegatibleForFree(SDValue Op, bool LegalOperations, 596 const TargetLowering &TLI, 597 const TargetOptions *Options, 598 unsigned Depth = 0) { 599 // fneg is removable even if it has multiple uses. 600 if (Op.getOpcode() == ISD::FNEG) return 2; 601 602 // Don't allow anything with multiple uses. 603 if (!Op.hasOneUse()) return 0; 604 605 // Don't recurse exponentially. 606 if (Depth > 6) return 0; 607 608 switch (Op.getOpcode()) { 609 default: return false; 610 case ISD::ConstantFP: 611 // Don't invert constant FP values after legalize. The negated constant 612 // isn't necessarily legal. 613 return LegalOperations ? 0 : 1; 614 case ISD::FADD: 615 // FIXME: determine better conditions for this xform. 616 if (!Options->UnsafeFPMath) return 0; 617 618 // After operation legalization, it might not be legal to create new FSUBs. 619 if (LegalOperations && 620 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) 621 return 0; 622 623 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B) 624 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, 625 Options, Depth + 1)) 626 return V; 627 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A) 628 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options, 629 Depth + 1); 630 case ISD::FSUB: 631 // We can't turn -(A-B) into B-A when we honor signed zeros. 632 if (!Options->UnsafeFPMath && !Op.getNode()->getFlags()->hasNoSignedZeros()) 633 return 0; 634 635 // fold (fneg (fsub A, B)) -> (fsub B, A) 636 return 1; 637 638 case ISD::FMUL: 639 case ISD::FDIV: 640 if (Options->HonorSignDependentRoundingFPMath()) return 0; 641 642 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y)) 643 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, 644 Options, Depth + 1)) 645 return V; 646 647 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options, 648 Depth + 1); 649 650 case ISD::FP_EXTEND: 651 case ISD::FP_ROUND: 652 case ISD::FSIN: 653 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options, 654 Depth + 1); 655 } 656 } 657 658 /// If isNegatibleForFree returns true, return the newly negated expression. 659 static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG, 660 bool LegalOperations, unsigned Depth = 0) { 661 const TargetOptions &Options = DAG.getTarget().Options; 662 // fneg is removable even if it has multiple uses. 663 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0); 664 665 // Don't allow anything with multiple uses. 666 assert(Op.hasOneUse() && "Unknown reuse!"); 667 668 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree"); 669 670 const SDNodeFlags *Flags = Op.getNode()->getFlags(); 671 672 switch (Op.getOpcode()) { 673 default: llvm_unreachable("Unknown code"); 674 case ISD::ConstantFP: { 675 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF(); 676 V.changeSign(); 677 return DAG.getConstantFP(V, SDLoc(Op), Op.getValueType()); 678 } 679 case ISD::FADD: 680 // FIXME: determine better conditions for this xform. 681 assert(Options.UnsafeFPMath); 682 683 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B) 684 if (isNegatibleForFree(Op.getOperand(0), LegalOperations, 685 DAG.getTargetLoweringInfo(), &Options, Depth+1)) 686 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(), 687 GetNegatedExpression(Op.getOperand(0), DAG, 688 LegalOperations, Depth+1), 689 Op.getOperand(1), Flags); 690 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A) 691 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(), 692 GetNegatedExpression(Op.getOperand(1), DAG, 693 LegalOperations, Depth+1), 694 Op.getOperand(0), Flags); 695 case ISD::FSUB: 696 // fold (fneg (fsub 0, B)) -> B 697 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0))) 698 if (N0CFP->isZero()) 699 return Op.getOperand(1); 700 701 // fold (fneg (fsub A, B)) -> (fsub B, A) 702 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(), 703 Op.getOperand(1), Op.getOperand(0), Flags); 704 705 case ISD::FMUL: 706 case ISD::FDIV: 707 assert(!Options.HonorSignDependentRoundingFPMath()); 708 709 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) 710 if (isNegatibleForFree(Op.getOperand(0), LegalOperations, 711 DAG.getTargetLoweringInfo(), &Options, Depth+1)) 712 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(), 713 GetNegatedExpression(Op.getOperand(0), DAG, 714 LegalOperations, Depth+1), 715 Op.getOperand(1), Flags); 716 717 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y)) 718 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(), 719 Op.getOperand(0), 720 GetNegatedExpression(Op.getOperand(1), DAG, 721 LegalOperations, Depth+1), Flags); 722 723 case ISD::FP_EXTEND: 724 case ISD::FSIN: 725 return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(), 726 GetNegatedExpression(Op.getOperand(0), DAG, 727 LegalOperations, Depth+1)); 728 case ISD::FP_ROUND: 729 return DAG.getNode(ISD::FP_ROUND, SDLoc(Op), Op.getValueType(), 730 GetNegatedExpression(Op.getOperand(0), DAG, 731 LegalOperations, Depth+1), 732 Op.getOperand(1)); 733 } 734 } 735 736 // APInts must be the same size for most operations, this helper 737 // function zero extends the shorter of the pair so that they match. 738 // We provide an Offset so that we can create bitwidths that won't overflow. 739 static void zeroExtendToMatch(APInt &LHS, APInt &RHS, unsigned Offset = 0) { 740 unsigned Bits = Offset + std::max(LHS.getBitWidth(), RHS.getBitWidth()); 741 LHS = LHS.zextOrSelf(Bits); 742 RHS = RHS.zextOrSelf(Bits); 743 } 744 745 // Return true if this node is a setcc, or is a select_cc 746 // that selects between the target values used for true and false, making it 747 // equivalent to a setcc. Also, set the incoming LHS, RHS, and CC references to 748 // the appropriate nodes based on the type of node we are checking. This 749 // simplifies life a bit for the callers. 750 bool DAGCombiner::isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS, 751 SDValue &CC) const { 752 if (N.getOpcode() == ISD::SETCC) { 753 LHS = N.getOperand(0); 754 RHS = N.getOperand(1); 755 CC = N.getOperand(2); 756 return true; 757 } 758 759 if (N.getOpcode() != ISD::SELECT_CC || 760 !TLI.isConstTrueVal(N.getOperand(2).getNode()) || 761 !TLI.isConstFalseVal(N.getOperand(3).getNode())) 762 return false; 763 764 if (TLI.getBooleanContents(N.getValueType()) == 765 TargetLowering::UndefinedBooleanContent) 766 return false; 767 768 LHS = N.getOperand(0); 769 RHS = N.getOperand(1); 770 CC = N.getOperand(4); 771 return true; 772 } 773 774 /// Return true if this is a SetCC-equivalent operation with only one use. 775 /// If this is true, it allows the users to invert the operation for free when 776 /// it is profitable to do so. 777 bool DAGCombiner::isOneUseSetCC(SDValue N) const { 778 SDValue N0, N1, N2; 779 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse()) 780 return true; 781 return false; 782 } 783 784 // \brief Returns the SDNode if it is a constant float BuildVector 785 // or constant float. 786 static SDNode *isConstantFPBuildVectorOrConstantFP(SDValue N) { 787 if (isa<ConstantFPSDNode>(N)) 788 return N.getNode(); 789 if (ISD::isBuildVectorOfConstantFPSDNodes(N.getNode())) 790 return N.getNode(); 791 return nullptr; 792 } 793 794 // Determines if it is a constant integer or a build vector of constant 795 // integers (and undefs). 796 // Do not permit build vector implicit truncation. 797 static bool isConstantOrConstantVector(SDValue N, bool NoOpaques = false) { 798 if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N)) 799 return !(Const->isOpaque() && NoOpaques); 800 if (N.getOpcode() != ISD::BUILD_VECTOR) 801 return false; 802 unsigned BitWidth = N.getScalarValueSizeInBits(); 803 for (const SDValue &Op : N->op_values()) { 804 if (Op.isUndef()) 805 continue; 806 ConstantSDNode *Const = dyn_cast<ConstantSDNode>(Op); 807 if (!Const || Const->getAPIntValue().getBitWidth() != BitWidth || 808 (Const->isOpaque() && NoOpaques)) 809 return false; 810 } 811 return true; 812 } 813 814 // Determines if it is a constant null integer or a splatted vector of a 815 // constant null integer (with no undefs). 816 // Build vector implicit truncation is not an issue for null values. 817 static bool isNullConstantOrNullSplatConstant(SDValue N) { 818 if (ConstantSDNode *Splat = isConstOrConstSplat(N)) 819 return Splat->isNullValue(); 820 return false; 821 } 822 823 // Determines if it is a constant integer of one or a splatted vector of a 824 // constant integer of one (with no undefs). 825 // Do not permit build vector implicit truncation. 826 static bool isOneConstantOrOneSplatConstant(SDValue N) { 827 unsigned BitWidth = N.getScalarValueSizeInBits(); 828 if (ConstantSDNode *Splat = isConstOrConstSplat(N)) 829 return Splat->isOne() && Splat->getAPIntValue().getBitWidth() == BitWidth; 830 return false; 831 } 832 833 // Determines if it is a constant integer of all ones or a splatted vector of a 834 // constant integer of all ones (with no undefs). 835 // Do not permit build vector implicit truncation. 836 static bool isAllOnesConstantOrAllOnesSplatConstant(SDValue N) { 837 unsigned BitWidth = N.getScalarValueSizeInBits(); 838 if (ConstantSDNode *Splat = isConstOrConstSplat(N)) 839 return Splat->isAllOnesValue() && 840 Splat->getAPIntValue().getBitWidth() == BitWidth; 841 return false; 842 } 843 844 // Determines if a BUILD_VECTOR is composed of all-constants possibly mixed with 845 // undef's. 846 static bool isAnyConstantBuildVector(const SDNode *N) { 847 return ISD::isBuildVectorOfConstantSDNodes(N) || 848 ISD::isBuildVectorOfConstantFPSDNodes(N); 849 } 850 851 SDValue DAGCombiner::ReassociateOps(unsigned Opc, const SDLoc &DL, SDValue N0, 852 SDValue N1) { 853 EVT VT = N0.getValueType(); 854 if (N0.getOpcode() == Opc) { 855 if (SDNode *L = DAG.isConstantIntBuildVectorOrConstantInt(N0.getOperand(1))) { 856 if (SDNode *R = DAG.isConstantIntBuildVectorOrConstantInt(N1)) { 857 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2)) 858 if (SDValue OpNode = DAG.FoldConstantArithmetic(Opc, DL, VT, L, R)) 859 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode); 860 return SDValue(); 861 } 862 if (N0.hasOneUse()) { 863 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one 864 // use 865 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT, N0.getOperand(0), N1); 866 if (!OpNode.getNode()) 867 return SDValue(); 868 AddToWorklist(OpNode.getNode()); 869 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1)); 870 } 871 } 872 } 873 874 if (N1.getOpcode() == Opc) { 875 if (SDNode *R = DAG.isConstantIntBuildVectorOrConstantInt(N1.getOperand(1))) { 876 if (SDNode *L = DAG.isConstantIntBuildVectorOrConstantInt(N0)) { 877 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2)) 878 if (SDValue OpNode = DAG.FoldConstantArithmetic(Opc, DL, VT, R, L)) 879 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode); 880 return SDValue(); 881 } 882 if (N1.hasOneUse()) { 883 // reassoc. (op x, (op y, c1)) -> (op (op x, y), c1) iff x+c1 has one 884 // use 885 SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT, N0, N1.getOperand(0)); 886 if (!OpNode.getNode()) 887 return SDValue(); 888 AddToWorklist(OpNode.getNode()); 889 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1)); 890 } 891 } 892 } 893 894 return SDValue(); 895 } 896 897 SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo, 898 bool AddTo) { 899 assert(N->getNumValues() == NumTo && "Broken CombineTo call!"); 900 ++NodesCombined; 901 DEBUG(dbgs() << "\nReplacing.1 "; 902 N->dump(&DAG); 903 dbgs() << "\nWith: "; 904 To[0].getNode()->dump(&DAG); 905 dbgs() << " and " << NumTo-1 << " other values\n"); 906 for (unsigned i = 0, e = NumTo; i != e; ++i) 907 assert((!To[i].getNode() || 908 N->getValueType(i) == To[i].getValueType()) && 909 "Cannot combine value to value of different type!"); 910 911 WorklistRemover DeadNodes(*this); 912 DAG.ReplaceAllUsesWith(N, To); 913 if (AddTo) { 914 // Push the new nodes and any users onto the worklist 915 for (unsigned i = 0, e = NumTo; i != e; ++i) { 916 if (To[i].getNode()) { 917 AddToWorklist(To[i].getNode()); 918 AddUsersToWorklist(To[i].getNode()); 919 } 920 } 921 } 922 923 // Finally, if the node is now dead, remove it from the graph. The node 924 // may not be dead if the replacement process recursively simplified to 925 // something else needing this node. 926 if (N->use_empty()) 927 deleteAndRecombine(N); 928 return SDValue(N, 0); 929 } 930 931 void DAGCombiner:: 932 CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) { 933 // Replace all uses. If any nodes become isomorphic to other nodes and 934 // are deleted, make sure to remove them from our worklist. 935 WorklistRemover DeadNodes(*this); 936 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New); 937 938 // Push the new node and any (possibly new) users onto the worklist. 939 AddToWorklist(TLO.New.getNode()); 940 AddUsersToWorklist(TLO.New.getNode()); 941 942 // Finally, if the node is now dead, remove it from the graph. The node 943 // may not be dead if the replacement process recursively simplified to 944 // something else needing this node. 945 if (TLO.Old.getNode()->use_empty()) 946 deleteAndRecombine(TLO.Old.getNode()); 947 } 948 949 /// Check the specified integer node value to see if it can be simplified or if 950 /// things it uses can be simplified by bit propagation. If so, return true. 951 bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) { 952 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations); 953 APInt KnownZero, KnownOne; 954 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO)) 955 return false; 956 957 // Revisit the node. 958 AddToWorklist(Op.getNode()); 959 960 // Replace the old value with the new one. 961 ++NodesCombined; 962 DEBUG(dbgs() << "\nReplacing.2 "; 963 TLO.Old.getNode()->dump(&DAG); 964 dbgs() << "\nWith: "; 965 TLO.New.getNode()->dump(&DAG); 966 dbgs() << '\n'); 967 968 CommitTargetLoweringOpt(TLO); 969 return true; 970 } 971 972 void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) { 973 SDLoc DL(Load); 974 EVT VT = Load->getValueType(0); 975 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, DL, VT, SDValue(ExtLoad, 0)); 976 977 DEBUG(dbgs() << "\nReplacing.9 "; 978 Load->dump(&DAG); 979 dbgs() << "\nWith: "; 980 Trunc.getNode()->dump(&DAG); 981 dbgs() << '\n'); 982 WorklistRemover DeadNodes(*this); 983 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc); 984 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1)); 985 deleteAndRecombine(Load); 986 AddToWorklist(Trunc.getNode()); 987 } 988 989 SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) { 990 Replace = false; 991 SDLoc DL(Op); 992 if (ISD::isUNINDEXEDLoad(Op.getNode())) { 993 LoadSDNode *LD = cast<LoadSDNode>(Op); 994 EVT MemVT = LD->getMemoryVT(); 995 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD) 996 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, PVT, MemVT) ? ISD::ZEXTLOAD 997 : ISD::EXTLOAD) 998 : LD->getExtensionType(); 999 Replace = true; 1000 return DAG.getExtLoad(ExtType, DL, PVT, 1001 LD->getChain(), LD->getBasePtr(), 1002 MemVT, LD->getMemOperand()); 1003 } 1004 1005 unsigned Opc = Op.getOpcode(); 1006 switch (Opc) { 1007 default: break; 1008 case ISD::AssertSext: 1009 return DAG.getNode(ISD::AssertSext, DL, PVT, 1010 SExtPromoteOperand(Op.getOperand(0), PVT), 1011 Op.getOperand(1)); 1012 case ISD::AssertZext: 1013 return DAG.getNode(ISD::AssertZext, DL, PVT, 1014 ZExtPromoteOperand(Op.getOperand(0), PVT), 1015 Op.getOperand(1)); 1016 case ISD::Constant: { 1017 unsigned ExtOpc = 1018 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; 1019 return DAG.getNode(ExtOpc, DL, PVT, Op); 1020 } 1021 } 1022 1023 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT)) 1024 return SDValue(); 1025 return DAG.getNode(ISD::ANY_EXTEND, DL, PVT, Op); 1026 } 1027 1028 SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) { 1029 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT)) 1030 return SDValue(); 1031 EVT OldVT = Op.getValueType(); 1032 SDLoc DL(Op); 1033 bool Replace = false; 1034 SDValue NewOp = PromoteOperand(Op, PVT, Replace); 1035 if (!NewOp.getNode()) 1036 return SDValue(); 1037 AddToWorklist(NewOp.getNode()); 1038 1039 if (Replace) 1040 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode()); 1041 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, NewOp.getValueType(), NewOp, 1042 DAG.getValueType(OldVT)); 1043 } 1044 1045 SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) { 1046 EVT OldVT = Op.getValueType(); 1047 SDLoc DL(Op); 1048 bool Replace = false; 1049 SDValue NewOp = PromoteOperand(Op, PVT, Replace); 1050 if (!NewOp.getNode()) 1051 return SDValue(); 1052 AddToWorklist(NewOp.getNode()); 1053 1054 if (Replace) 1055 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode()); 1056 return DAG.getZeroExtendInReg(NewOp, DL, OldVT); 1057 } 1058 1059 /// Promote the specified integer binary operation if the target indicates it is 1060 /// beneficial. e.g. On x86, it's usually better to promote i16 operations to 1061 /// i32 since i16 instructions are longer. 1062 SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) { 1063 if (!LegalOperations) 1064 return SDValue(); 1065 1066 EVT VT = Op.getValueType(); 1067 if (VT.isVector() || !VT.isInteger()) 1068 return SDValue(); 1069 1070 // If operation type is 'undesirable', e.g. i16 on x86, consider 1071 // promoting it. 1072 unsigned Opc = Op.getOpcode(); 1073 if (TLI.isTypeDesirableForOp(Opc, VT)) 1074 return SDValue(); 1075 1076 EVT PVT = VT; 1077 // Consult target whether it is a good idea to promote this operation and 1078 // what's the right type to promote it to. 1079 if (TLI.IsDesirableToPromoteOp(Op, PVT)) { 1080 assert(PVT != VT && "Don't know what type to promote to!"); 1081 1082 bool Replace0 = false; 1083 SDValue N0 = Op.getOperand(0); 1084 SDValue NN0 = PromoteOperand(N0, PVT, Replace0); 1085 if (!NN0.getNode()) 1086 return SDValue(); 1087 1088 bool Replace1 = false; 1089 SDValue N1 = Op.getOperand(1); 1090 SDValue NN1; 1091 if (N0 == N1) 1092 NN1 = NN0; 1093 else { 1094 NN1 = PromoteOperand(N1, PVT, Replace1); 1095 if (!NN1.getNode()) 1096 return SDValue(); 1097 } 1098 1099 AddToWorklist(NN0.getNode()); 1100 if (NN1.getNode()) 1101 AddToWorklist(NN1.getNode()); 1102 1103 if (Replace0) 1104 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode()); 1105 if (Replace1) 1106 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode()); 1107 1108 DEBUG(dbgs() << "\nPromoting "; 1109 Op.getNode()->dump(&DAG)); 1110 SDLoc DL(Op); 1111 return DAG.getNode(ISD::TRUNCATE, DL, VT, 1112 DAG.getNode(Opc, DL, PVT, NN0, NN1)); 1113 } 1114 return SDValue(); 1115 } 1116 1117 /// Promote the specified integer shift operation if the target indicates it is 1118 /// beneficial. e.g. On x86, it's usually better to promote i16 operations to 1119 /// i32 since i16 instructions are longer. 1120 SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) { 1121 if (!LegalOperations) 1122 return SDValue(); 1123 1124 EVT VT = Op.getValueType(); 1125 if (VT.isVector() || !VT.isInteger()) 1126 return SDValue(); 1127 1128 // If operation type is 'undesirable', e.g. i16 on x86, consider 1129 // promoting it. 1130 unsigned Opc = Op.getOpcode(); 1131 if (TLI.isTypeDesirableForOp(Opc, VT)) 1132 return SDValue(); 1133 1134 EVT PVT = VT; 1135 // Consult target whether it is a good idea to promote this operation and 1136 // what's the right type to promote it to. 1137 if (TLI.IsDesirableToPromoteOp(Op, PVT)) { 1138 assert(PVT != VT && "Don't know what type to promote to!"); 1139 1140 bool Replace = false; 1141 SDValue N0 = Op.getOperand(0); 1142 if (Opc == ISD::SRA) 1143 N0 = SExtPromoteOperand(Op.getOperand(0), PVT); 1144 else if (Opc == ISD::SRL) 1145 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT); 1146 else 1147 N0 = PromoteOperand(N0, PVT, Replace); 1148 if (!N0.getNode()) 1149 return SDValue(); 1150 1151 AddToWorklist(N0.getNode()); 1152 if (Replace) 1153 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode()); 1154 1155 DEBUG(dbgs() << "\nPromoting "; 1156 Op.getNode()->dump(&DAG)); 1157 SDLoc DL(Op); 1158 return DAG.getNode(ISD::TRUNCATE, DL, VT, 1159 DAG.getNode(Opc, DL, PVT, N0, Op.getOperand(1))); 1160 } 1161 return SDValue(); 1162 } 1163 1164 SDValue DAGCombiner::PromoteExtend(SDValue Op) { 1165 if (!LegalOperations) 1166 return SDValue(); 1167 1168 EVT VT = Op.getValueType(); 1169 if (VT.isVector() || !VT.isInteger()) 1170 return SDValue(); 1171 1172 // If operation type is 'undesirable', e.g. i16 on x86, consider 1173 // promoting it. 1174 unsigned Opc = Op.getOpcode(); 1175 if (TLI.isTypeDesirableForOp(Opc, VT)) 1176 return SDValue(); 1177 1178 EVT PVT = VT; 1179 // Consult target whether it is a good idea to promote this operation and 1180 // what's the right type to promote it to. 1181 if (TLI.IsDesirableToPromoteOp(Op, PVT)) { 1182 assert(PVT != VT && "Don't know what type to promote to!"); 1183 // fold (aext (aext x)) -> (aext x) 1184 // fold (aext (zext x)) -> (zext x) 1185 // fold (aext (sext x)) -> (sext x) 1186 DEBUG(dbgs() << "\nPromoting "; 1187 Op.getNode()->dump(&DAG)); 1188 return DAG.getNode(Op.getOpcode(), SDLoc(Op), VT, Op.getOperand(0)); 1189 } 1190 return SDValue(); 1191 } 1192 1193 bool DAGCombiner::PromoteLoad(SDValue Op) { 1194 if (!LegalOperations) 1195 return false; 1196 1197 if (!ISD::isUNINDEXEDLoad(Op.getNode())) 1198 return false; 1199 1200 EVT VT = Op.getValueType(); 1201 if (VT.isVector() || !VT.isInteger()) 1202 return false; 1203 1204 // If operation type is 'undesirable', e.g. i16 on x86, consider 1205 // promoting it. 1206 unsigned Opc = Op.getOpcode(); 1207 if (TLI.isTypeDesirableForOp(Opc, VT)) 1208 return false; 1209 1210 EVT PVT = VT; 1211 // Consult target whether it is a good idea to promote this operation and 1212 // what's the right type to promote it to. 1213 if (TLI.IsDesirableToPromoteOp(Op, PVT)) { 1214 assert(PVT != VT && "Don't know what type to promote to!"); 1215 1216 SDLoc DL(Op); 1217 SDNode *N = Op.getNode(); 1218 LoadSDNode *LD = cast<LoadSDNode>(N); 1219 EVT MemVT = LD->getMemoryVT(); 1220 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD) 1221 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, PVT, MemVT) ? ISD::ZEXTLOAD 1222 : ISD::EXTLOAD) 1223 : LD->getExtensionType(); 1224 SDValue NewLD = DAG.getExtLoad(ExtType, DL, PVT, 1225 LD->getChain(), LD->getBasePtr(), 1226 MemVT, LD->getMemOperand()); 1227 SDValue Result = DAG.getNode(ISD::TRUNCATE, DL, VT, NewLD); 1228 1229 DEBUG(dbgs() << "\nPromoting "; 1230 N->dump(&DAG); 1231 dbgs() << "\nTo: "; 1232 Result.getNode()->dump(&DAG); 1233 dbgs() << '\n'); 1234 WorklistRemover DeadNodes(*this); 1235 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result); 1236 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1)); 1237 deleteAndRecombine(N); 1238 AddToWorklist(Result.getNode()); 1239 return true; 1240 } 1241 return false; 1242 } 1243 1244 /// \brief Recursively delete a node which has no uses and any operands for 1245 /// which it is the only use. 1246 /// 1247 /// Note that this both deletes the nodes and removes them from the worklist. 1248 /// It also adds any nodes who have had a user deleted to the worklist as they 1249 /// may now have only one use and subject to other combines. 1250 bool DAGCombiner::recursivelyDeleteUnusedNodes(SDNode *N) { 1251 if (!N->use_empty()) 1252 return false; 1253 1254 SmallSetVector<SDNode *, 16> Nodes; 1255 Nodes.insert(N); 1256 do { 1257 N = Nodes.pop_back_val(); 1258 if (!N) 1259 continue; 1260 1261 if (N->use_empty()) { 1262 for (const SDValue &ChildN : N->op_values()) 1263 Nodes.insert(ChildN.getNode()); 1264 1265 removeFromWorklist(N); 1266 DAG.DeleteNode(N); 1267 } else { 1268 AddToWorklist(N); 1269 } 1270 } while (!Nodes.empty()); 1271 return true; 1272 } 1273 1274 //===----------------------------------------------------------------------===// 1275 // Main DAG Combiner implementation 1276 //===----------------------------------------------------------------------===// 1277 1278 void DAGCombiner::Run(CombineLevel AtLevel) { 1279 // set the instance variables, so that the various visit routines may use it. 1280 Level = AtLevel; 1281 LegalOperations = Level >= AfterLegalizeVectorOps; 1282 LegalTypes = Level >= AfterLegalizeTypes; 1283 1284 // Add all the dag nodes to the worklist. 1285 for (SDNode &Node : DAG.allnodes()) 1286 AddToWorklist(&Node); 1287 1288 // Create a dummy node (which is not added to allnodes), that adds a reference 1289 // to the root node, preventing it from being deleted, and tracking any 1290 // changes of the root. 1291 HandleSDNode Dummy(DAG.getRoot()); 1292 1293 // While the worklist isn't empty, find a node and try to combine it. 1294 while (!WorklistMap.empty()) { 1295 SDNode *N; 1296 // The Worklist holds the SDNodes in order, but it may contain null entries. 1297 do { 1298 N = Worklist.pop_back_val(); 1299 } while (!N); 1300 1301 bool GoodWorklistEntry = WorklistMap.erase(N); 1302 (void)GoodWorklistEntry; 1303 assert(GoodWorklistEntry && 1304 "Found a worklist entry without a corresponding map entry!"); 1305 1306 // If N has no uses, it is dead. Make sure to revisit all N's operands once 1307 // N is deleted from the DAG, since they too may now be dead or may have a 1308 // reduced number of uses, allowing other xforms. 1309 if (recursivelyDeleteUnusedNodes(N)) 1310 continue; 1311 1312 WorklistRemover DeadNodes(*this); 1313 1314 // If this combine is running after legalizing the DAG, re-legalize any 1315 // nodes pulled off the worklist. 1316 if (Level == AfterLegalizeDAG) { 1317 SmallSetVector<SDNode *, 16> UpdatedNodes; 1318 bool NIsValid = DAG.LegalizeOp(N, UpdatedNodes); 1319 1320 for (SDNode *LN : UpdatedNodes) { 1321 AddToWorklist(LN); 1322 AddUsersToWorklist(LN); 1323 } 1324 if (!NIsValid) 1325 continue; 1326 } 1327 1328 DEBUG(dbgs() << "\nCombining: "; N->dump(&DAG)); 1329 1330 // Add any operands of the new node which have not yet been combined to the 1331 // worklist as well. Because the worklist uniques things already, this 1332 // won't repeatedly process the same operand. 1333 CombinedNodes.insert(N); 1334 for (const SDValue &ChildN : N->op_values()) 1335 if (!CombinedNodes.count(ChildN.getNode())) 1336 AddToWorklist(ChildN.getNode()); 1337 1338 SDValue RV = combine(N); 1339 1340 if (!RV.getNode()) 1341 continue; 1342 1343 ++NodesCombined; 1344 1345 // If we get back the same node we passed in, rather than a new node or 1346 // zero, we know that the node must have defined multiple values and 1347 // CombineTo was used. Since CombineTo takes care of the worklist 1348 // mechanics for us, we have no work to do in this case. 1349 if (RV.getNode() == N) 1350 continue; 1351 1352 assert(N->getOpcode() != ISD::DELETED_NODE && 1353 RV.getOpcode() != ISD::DELETED_NODE && 1354 "Node was deleted but visit returned new node!"); 1355 1356 DEBUG(dbgs() << " ... into: "; 1357 RV.getNode()->dump(&DAG)); 1358 1359 if (N->getNumValues() == RV.getNode()->getNumValues()) 1360 DAG.ReplaceAllUsesWith(N, RV.getNode()); 1361 else { 1362 assert(N->getValueType(0) == RV.getValueType() && 1363 N->getNumValues() == 1 && "Type mismatch"); 1364 SDValue OpV = RV; 1365 DAG.ReplaceAllUsesWith(N, &OpV); 1366 } 1367 1368 // Push the new node and any users onto the worklist 1369 AddToWorklist(RV.getNode()); 1370 AddUsersToWorklist(RV.getNode()); 1371 1372 // Finally, if the node is now dead, remove it from the graph. The node 1373 // may not be dead if the replacement process recursively simplified to 1374 // something else needing this node. This will also take care of adding any 1375 // operands which have lost a user to the worklist. 1376 recursivelyDeleteUnusedNodes(N); 1377 } 1378 1379 // If the root changed (e.g. it was a dead load, update the root). 1380 DAG.setRoot(Dummy.getValue()); 1381 DAG.RemoveDeadNodes(); 1382 } 1383 1384 SDValue DAGCombiner::visit(SDNode *N) { 1385 switch (N->getOpcode()) { 1386 default: break; 1387 case ISD::TokenFactor: return visitTokenFactor(N); 1388 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N); 1389 case ISD::ADD: return visitADD(N); 1390 case ISD::SUB: return visitSUB(N); 1391 case ISD::ADDC: return visitADDC(N); 1392 case ISD::SUBC: return visitSUBC(N); 1393 case ISD::ADDE: return visitADDE(N); 1394 case ISD::SUBE: return visitSUBE(N); 1395 case ISD::MUL: return visitMUL(N); 1396 case ISD::SDIV: return visitSDIV(N); 1397 case ISD::UDIV: return visitUDIV(N); 1398 case ISD::SREM: 1399 case ISD::UREM: return visitREM(N); 1400 case ISD::MULHU: return visitMULHU(N); 1401 case ISD::MULHS: return visitMULHS(N); 1402 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N); 1403 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N); 1404 case ISD::SMULO: return visitSMULO(N); 1405 case ISD::UMULO: return visitUMULO(N); 1406 case ISD::SMIN: 1407 case ISD::SMAX: 1408 case ISD::UMIN: 1409 case ISD::UMAX: return visitIMINMAX(N); 1410 case ISD::AND: return visitAND(N); 1411 case ISD::OR: return visitOR(N); 1412 case ISD::XOR: return visitXOR(N); 1413 case ISD::SHL: return visitSHL(N); 1414 case ISD::SRA: return visitSRA(N); 1415 case ISD::SRL: return visitSRL(N); 1416 case ISD::ROTR: 1417 case ISD::ROTL: return visitRotate(N); 1418 case ISD::BSWAP: return visitBSWAP(N); 1419 case ISD::BITREVERSE: return visitBITREVERSE(N); 1420 case ISD::CTLZ: return visitCTLZ(N); 1421 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N); 1422 case ISD::CTTZ: return visitCTTZ(N); 1423 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N); 1424 case ISD::CTPOP: return visitCTPOP(N); 1425 case ISD::SELECT: return visitSELECT(N); 1426 case ISD::VSELECT: return visitVSELECT(N); 1427 case ISD::SELECT_CC: return visitSELECT_CC(N); 1428 case ISD::SETCC: return visitSETCC(N); 1429 case ISD::SETCCE: return visitSETCCE(N); 1430 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N); 1431 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N); 1432 case ISD::ANY_EXTEND: return visitANY_EXTEND(N); 1433 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N); 1434 case ISD::SIGN_EXTEND_VECTOR_INREG: return visitSIGN_EXTEND_VECTOR_INREG(N); 1435 case ISD::ZERO_EXTEND_VECTOR_INREG: return visitZERO_EXTEND_VECTOR_INREG(N); 1436 case ISD::TRUNCATE: return visitTRUNCATE(N); 1437 case ISD::BITCAST: return visitBITCAST(N); 1438 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N); 1439 case ISD::FADD: return visitFADD(N); 1440 case ISD::FSUB: return visitFSUB(N); 1441 case ISD::FMUL: return visitFMUL(N); 1442 case ISD::FMA: return visitFMA(N); 1443 case ISD::FDIV: return visitFDIV(N); 1444 case ISD::FREM: return visitFREM(N); 1445 case ISD::FSQRT: return visitFSQRT(N); 1446 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N); 1447 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N); 1448 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N); 1449 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N); 1450 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N); 1451 case ISD::FP_ROUND: return visitFP_ROUND(N); 1452 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N); 1453 case ISD::FP_EXTEND: return visitFP_EXTEND(N); 1454 case ISD::FNEG: return visitFNEG(N); 1455 case ISD::FABS: return visitFABS(N); 1456 case ISD::FFLOOR: return visitFFLOOR(N); 1457 case ISD::FMINNUM: return visitFMINNUM(N); 1458 case ISD::FMAXNUM: return visitFMAXNUM(N); 1459 case ISD::FCEIL: return visitFCEIL(N); 1460 case ISD::FTRUNC: return visitFTRUNC(N); 1461 case ISD::BRCOND: return visitBRCOND(N); 1462 case ISD::BR_CC: return visitBR_CC(N); 1463 case ISD::LOAD: return visitLOAD(N); 1464 case ISD::STORE: return visitSTORE(N); 1465 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N); 1466 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N); 1467 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N); 1468 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N); 1469 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N); 1470 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N); 1471 case ISD::SCALAR_TO_VECTOR: return visitSCALAR_TO_VECTOR(N); 1472 case ISD::INSERT_SUBVECTOR: return visitINSERT_SUBVECTOR(N); 1473 case ISD::MGATHER: return visitMGATHER(N); 1474 case ISD::MLOAD: return visitMLOAD(N); 1475 case ISD::MSCATTER: return visitMSCATTER(N); 1476 case ISD::MSTORE: return visitMSTORE(N); 1477 case ISD::FP_TO_FP16: return visitFP_TO_FP16(N); 1478 case ISD::FP16_TO_FP: return visitFP16_TO_FP(N); 1479 } 1480 return SDValue(); 1481 } 1482 1483 SDValue DAGCombiner::combine(SDNode *N) { 1484 SDValue RV = visit(N); 1485 1486 // If nothing happened, try a target-specific DAG combine. 1487 if (!RV.getNode()) { 1488 assert(N->getOpcode() != ISD::DELETED_NODE && 1489 "Node was deleted but visit returned NULL!"); 1490 1491 if (N->getOpcode() >= ISD::BUILTIN_OP_END || 1492 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) { 1493 1494 // Expose the DAG combiner to the target combiner impls. 1495 TargetLowering::DAGCombinerInfo 1496 DagCombineInfo(DAG, Level, false, this); 1497 1498 RV = TLI.PerformDAGCombine(N, DagCombineInfo); 1499 } 1500 } 1501 1502 // If nothing happened still, try promoting the operation. 1503 if (!RV.getNode()) { 1504 switch (N->getOpcode()) { 1505 default: break; 1506 case ISD::ADD: 1507 case ISD::SUB: 1508 case ISD::MUL: 1509 case ISD::AND: 1510 case ISD::OR: 1511 case ISD::XOR: 1512 RV = PromoteIntBinOp(SDValue(N, 0)); 1513 break; 1514 case ISD::SHL: 1515 case ISD::SRA: 1516 case ISD::SRL: 1517 RV = PromoteIntShiftOp(SDValue(N, 0)); 1518 break; 1519 case ISD::SIGN_EXTEND: 1520 case ISD::ZERO_EXTEND: 1521 case ISD::ANY_EXTEND: 1522 RV = PromoteExtend(SDValue(N, 0)); 1523 break; 1524 case ISD::LOAD: 1525 if (PromoteLoad(SDValue(N, 0))) 1526 RV = SDValue(N, 0); 1527 break; 1528 } 1529 } 1530 1531 // If N is a commutative binary node, try commuting it to enable more 1532 // sdisel CSE. 1533 if (!RV.getNode() && SelectionDAG::isCommutativeBinOp(N->getOpcode()) && 1534 N->getNumValues() == 1) { 1535 SDValue N0 = N->getOperand(0); 1536 SDValue N1 = N->getOperand(1); 1537 1538 // Constant operands are canonicalized to RHS. 1539 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) { 1540 SDValue Ops[] = {N1, N0}; 1541 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(), Ops, 1542 N->getFlags()); 1543 if (CSENode) 1544 return SDValue(CSENode, 0); 1545 } 1546 } 1547 1548 return RV; 1549 } 1550 1551 /// Given a node, return its input chain if it has one, otherwise return a null 1552 /// sd operand. 1553 static SDValue getInputChainForNode(SDNode *N) { 1554 if (unsigned NumOps = N->getNumOperands()) { 1555 if (N->getOperand(0).getValueType() == MVT::Other) 1556 return N->getOperand(0); 1557 if (N->getOperand(NumOps-1).getValueType() == MVT::Other) 1558 return N->getOperand(NumOps-1); 1559 for (unsigned i = 1; i < NumOps-1; ++i) 1560 if (N->getOperand(i).getValueType() == MVT::Other) 1561 return N->getOperand(i); 1562 } 1563 return SDValue(); 1564 } 1565 1566 SDValue DAGCombiner::visitTokenFactor(SDNode *N) { 1567 // If N has two operands, where one has an input chain equal to the other, 1568 // the 'other' chain is redundant. 1569 if (N->getNumOperands() == 2) { 1570 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1)) 1571 return N->getOperand(0); 1572 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0)) 1573 return N->getOperand(1); 1574 } 1575 1576 SmallVector<SDNode *, 8> TFs; // List of token factors to visit. 1577 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor. 1578 SmallPtrSet<SDNode*, 16> SeenOps; 1579 bool Changed = false; // If we should replace this token factor. 1580 1581 // Start out with this token factor. 1582 TFs.push_back(N); 1583 1584 // Iterate through token factors. The TFs grows when new token factors are 1585 // encountered. 1586 for (unsigned i = 0; i < TFs.size(); ++i) { 1587 SDNode *TF = TFs[i]; 1588 1589 // Check each of the operands. 1590 for (const SDValue &Op : TF->op_values()) { 1591 1592 switch (Op.getOpcode()) { 1593 case ISD::EntryToken: 1594 // Entry tokens don't need to be added to the list. They are 1595 // redundant. 1596 Changed = true; 1597 break; 1598 1599 case ISD::TokenFactor: 1600 if (Op.hasOneUse() && !is_contained(TFs, Op.getNode())) { 1601 // Queue up for processing. 1602 TFs.push_back(Op.getNode()); 1603 // Clean up in case the token factor is removed. 1604 AddToWorklist(Op.getNode()); 1605 Changed = true; 1606 break; 1607 } 1608 LLVM_FALLTHROUGH; 1609 1610 default: 1611 // Only add if it isn't already in the list. 1612 if (SeenOps.insert(Op.getNode()).second) 1613 Ops.push_back(Op); 1614 else 1615 Changed = true; 1616 break; 1617 } 1618 } 1619 } 1620 1621 SDValue Result; 1622 1623 // If we've changed things around then replace token factor. 1624 if (Changed) { 1625 if (Ops.empty()) { 1626 // The entry token is the only possible outcome. 1627 Result = DAG.getEntryNode(); 1628 } else { 1629 // New and improved token factor. 1630 Result = DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other, Ops); 1631 } 1632 1633 // Add users to worklist if AA is enabled, since it may introduce 1634 // a lot of new chained token factors while removing memory deps. 1635 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA 1636 : DAG.getSubtarget().useAA(); 1637 return CombineTo(N, Result, UseAA /*add to worklist*/); 1638 } 1639 1640 return Result; 1641 } 1642 1643 /// MERGE_VALUES can always be eliminated. 1644 SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) { 1645 WorklistRemover DeadNodes(*this); 1646 // Replacing results may cause a different MERGE_VALUES to suddenly 1647 // be CSE'd with N, and carry its uses with it. Iterate until no 1648 // uses remain, to ensure that the node can be safely deleted. 1649 // First add the users of this node to the work list so that they 1650 // can be tried again once they have new operands. 1651 AddUsersToWorklist(N); 1652 do { 1653 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) 1654 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i)); 1655 } while (!N->use_empty()); 1656 deleteAndRecombine(N); 1657 return SDValue(N, 0); // Return N so it doesn't get rechecked! 1658 } 1659 1660 /// If \p N is a ConstantSDNode with isOpaque() == false return it casted to a 1661 /// ConstantSDNode pointer else nullptr. 1662 static ConstantSDNode *getAsNonOpaqueConstant(SDValue N) { 1663 ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N); 1664 return Const != nullptr && !Const->isOpaque() ? Const : nullptr; 1665 } 1666 1667 SDValue DAGCombiner::visitADD(SDNode *N) { 1668 SDValue N0 = N->getOperand(0); 1669 SDValue N1 = N->getOperand(1); 1670 EVT VT = N0.getValueType(); 1671 SDLoc DL(N); 1672 1673 // fold vector ops 1674 if (VT.isVector()) { 1675 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 1676 return FoldedVOp; 1677 1678 // fold (add x, 0) -> x, vector edition 1679 if (ISD::isBuildVectorAllZeros(N1.getNode())) 1680 return N0; 1681 if (ISD::isBuildVectorAllZeros(N0.getNode())) 1682 return N1; 1683 } 1684 1685 // fold (add x, undef) -> undef 1686 if (N0.isUndef()) 1687 return N0; 1688 1689 if (N1.isUndef()) 1690 return N1; 1691 1692 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) { 1693 // canonicalize constant to RHS 1694 if (!DAG.isConstantIntBuildVectorOrConstantInt(N1)) 1695 return DAG.getNode(ISD::ADD, DL, VT, N1, N0); 1696 // fold (add c1, c2) -> c1+c2 1697 return DAG.FoldConstantArithmetic(ISD::ADD, DL, VT, N0.getNode(), 1698 N1.getNode()); 1699 } 1700 1701 // fold (add x, 0) -> x 1702 if (isNullConstant(N1)) 1703 return N0; 1704 1705 // fold ((c1-A)+c2) -> (c1+c2)-A 1706 if (isConstantOrConstantVector(N1, /* NoOpaque */ true)) { 1707 if (N0.getOpcode() == ISD::SUB) 1708 if (isConstantOrConstantVector(N0.getOperand(0), /* NoOpaque */ true)) { 1709 return DAG.getNode(ISD::SUB, DL, VT, 1710 DAG.getNode(ISD::ADD, DL, VT, N1, N0.getOperand(0)), 1711 N0.getOperand(1)); 1712 } 1713 } 1714 1715 // reassociate add 1716 if (SDValue RADD = ReassociateOps(ISD::ADD, DL, N0, N1)) 1717 return RADD; 1718 1719 // fold ((0-A) + B) -> B-A 1720 if (N0.getOpcode() == ISD::SUB && 1721 isNullConstantOrNullSplatConstant(N0.getOperand(0))) 1722 return DAG.getNode(ISD::SUB, DL, VT, N1, N0.getOperand(1)); 1723 1724 // fold (A + (0-B)) -> A-B 1725 if (N1.getOpcode() == ISD::SUB && 1726 isNullConstantOrNullSplatConstant(N1.getOperand(0))) 1727 return DAG.getNode(ISD::SUB, DL, VT, N0, N1.getOperand(1)); 1728 1729 // fold (A+(B-A)) -> B 1730 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1)) 1731 return N1.getOperand(0); 1732 1733 // fold ((B-A)+A) -> B 1734 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1)) 1735 return N0.getOperand(0); 1736 1737 // fold (A+(B-(A+C))) to (B-C) 1738 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD && 1739 N0 == N1.getOperand(1).getOperand(0)) 1740 return DAG.getNode(ISD::SUB, DL, VT, N1.getOperand(0), 1741 N1.getOperand(1).getOperand(1)); 1742 1743 // fold (A+(B-(C+A))) to (B-C) 1744 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD && 1745 N0 == N1.getOperand(1).getOperand(1)) 1746 return DAG.getNode(ISD::SUB, DL, VT, N1.getOperand(0), 1747 N1.getOperand(1).getOperand(0)); 1748 1749 // fold (A+((B-A)+or-C)) to (B+or-C) 1750 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) && 1751 N1.getOperand(0).getOpcode() == ISD::SUB && 1752 N0 == N1.getOperand(0).getOperand(1)) 1753 return DAG.getNode(N1.getOpcode(), DL, VT, N1.getOperand(0).getOperand(0), 1754 N1.getOperand(1)); 1755 1756 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant 1757 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) { 1758 SDValue N00 = N0.getOperand(0); 1759 SDValue N01 = N0.getOperand(1); 1760 SDValue N10 = N1.getOperand(0); 1761 SDValue N11 = N1.getOperand(1); 1762 1763 if (isConstantOrConstantVector(N00) || isConstantOrConstantVector(N10)) 1764 return DAG.getNode(ISD::SUB, DL, VT, 1765 DAG.getNode(ISD::ADD, SDLoc(N0), VT, N00, N10), 1766 DAG.getNode(ISD::ADD, SDLoc(N1), VT, N01, N11)); 1767 } 1768 1769 if (SimplifyDemandedBits(SDValue(N, 0))) 1770 return SDValue(N, 0); 1771 1772 // fold (a+b) -> (a|b) iff a and b share no bits. 1773 if ((!LegalOperations || TLI.isOperationLegal(ISD::OR, VT)) && 1774 VT.isInteger() && DAG.haveNoCommonBitsSet(N0, N1)) 1775 return DAG.getNode(ISD::OR, DL, VT, N0, N1); 1776 1777 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n)) 1778 if (N1.getOpcode() == ISD::SHL && N1.getOperand(0).getOpcode() == ISD::SUB && 1779 isNullConstantOrNullSplatConstant(N1.getOperand(0).getOperand(0))) 1780 return DAG.getNode(ISD::SUB, DL, VT, N0, 1781 DAG.getNode(ISD::SHL, DL, VT, 1782 N1.getOperand(0).getOperand(1), 1783 N1.getOperand(1))); 1784 if (N0.getOpcode() == ISD::SHL && N0.getOperand(0).getOpcode() == ISD::SUB && 1785 isNullConstantOrNullSplatConstant(N0.getOperand(0).getOperand(0))) 1786 return DAG.getNode(ISD::SUB, DL, VT, N1, 1787 DAG.getNode(ISD::SHL, DL, VT, 1788 N0.getOperand(0).getOperand(1), 1789 N0.getOperand(1))); 1790 1791 if (N1.getOpcode() == ISD::AND) { 1792 SDValue AndOp0 = N1.getOperand(0); 1793 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0); 1794 unsigned DestBits = VT.getScalarSizeInBits(); 1795 1796 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x)) 1797 // and similar xforms where the inner op is either ~0 or 0. 1798 if (NumSignBits == DestBits && 1799 isOneConstantOrOneSplatConstant(N1->getOperand(1))) 1800 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0); 1801 } 1802 1803 // add (sext i1), X -> sub X, (zext i1) 1804 if (N0.getOpcode() == ISD::SIGN_EXTEND && 1805 N0.getOperand(0).getValueType() == MVT::i1 && 1806 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) { 1807 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)); 1808 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt); 1809 } 1810 1811 // add X, (sextinreg Y i1) -> sub X, (and Y 1) 1812 if (N1.getOpcode() == ISD::SIGN_EXTEND_INREG) { 1813 VTSDNode *TN = cast<VTSDNode>(N1.getOperand(1)); 1814 if (TN->getVT() == MVT::i1) { 1815 SDValue ZExt = DAG.getNode(ISD::AND, DL, VT, N1.getOperand(0), 1816 DAG.getConstant(1, DL, VT)); 1817 return DAG.getNode(ISD::SUB, DL, VT, N0, ZExt); 1818 } 1819 } 1820 1821 return SDValue(); 1822 } 1823 1824 SDValue DAGCombiner::visitADDC(SDNode *N) { 1825 SDValue N0 = N->getOperand(0); 1826 SDValue N1 = N->getOperand(1); 1827 EVT VT = N0.getValueType(); 1828 1829 // If the flag result is dead, turn this into an ADD. 1830 if (!N->hasAnyUseOfValue(1)) 1831 return CombineTo(N, DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N1), 1832 DAG.getNode(ISD::CARRY_FALSE, 1833 SDLoc(N), MVT::Glue)); 1834 1835 // canonicalize constant to RHS. 1836 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); 1837 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 1838 if (N0C && !N1C) 1839 return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N1, N0); 1840 1841 // fold (addc x, 0) -> x + no carry out 1842 if (isNullConstant(N1)) 1843 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, 1844 SDLoc(N), MVT::Glue)); 1845 1846 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits. 1847 APInt LHSZero, LHSOne; 1848 APInt RHSZero, RHSOne; 1849 DAG.computeKnownBits(N0, LHSZero, LHSOne); 1850 1851 if (LHSZero.getBoolValue()) { 1852 DAG.computeKnownBits(N1, RHSZero, RHSOne); 1853 1854 // If all possibly-set bits on the LHS are clear on the RHS, return an OR. 1855 // If all possibly-set bits on the RHS are clear on the LHS, return an OR. 1856 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero) 1857 return CombineTo(N, DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N1), 1858 DAG.getNode(ISD::CARRY_FALSE, 1859 SDLoc(N), MVT::Glue)); 1860 } 1861 1862 return SDValue(); 1863 } 1864 1865 SDValue DAGCombiner::visitADDE(SDNode *N) { 1866 SDValue N0 = N->getOperand(0); 1867 SDValue N1 = N->getOperand(1); 1868 SDValue CarryIn = N->getOperand(2); 1869 1870 // canonicalize constant to RHS 1871 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); 1872 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 1873 if (N0C && !N1C) 1874 return DAG.getNode(ISD::ADDE, SDLoc(N), N->getVTList(), 1875 N1, N0, CarryIn); 1876 1877 // fold (adde x, y, false) -> (addc x, y) 1878 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) 1879 return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N0, N1); 1880 1881 return SDValue(); 1882 } 1883 1884 // Since it may not be valid to emit a fold to zero for vector initializers 1885 // check if we can before folding. 1886 static SDValue tryFoldToZero(const SDLoc &DL, const TargetLowering &TLI, EVT VT, 1887 SelectionDAG &DAG, bool LegalOperations, 1888 bool LegalTypes) { 1889 if (!VT.isVector()) 1890 return DAG.getConstant(0, DL, VT); 1891 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) 1892 return DAG.getConstant(0, DL, VT); 1893 return SDValue(); 1894 } 1895 1896 SDValue DAGCombiner::visitSUB(SDNode *N) { 1897 SDValue N0 = N->getOperand(0); 1898 SDValue N1 = N->getOperand(1); 1899 EVT VT = N0.getValueType(); 1900 SDLoc DL(N); 1901 1902 // fold vector ops 1903 if (VT.isVector()) { 1904 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 1905 return FoldedVOp; 1906 1907 // fold (sub x, 0) -> x, vector edition 1908 if (ISD::isBuildVectorAllZeros(N1.getNode())) 1909 return N0; 1910 } 1911 1912 // fold (sub x, x) -> 0 1913 // FIXME: Refactor this and xor and other similar operations together. 1914 if (N0 == N1) 1915 return tryFoldToZero(DL, TLI, VT, DAG, LegalOperations, LegalTypes); 1916 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 1917 DAG.isConstantIntBuildVectorOrConstantInt(N1)) { 1918 // fold (sub c1, c2) -> c1-c2 1919 return DAG.FoldConstantArithmetic(ISD::SUB, DL, VT, N0.getNode(), 1920 N1.getNode()); 1921 } 1922 1923 ConstantSDNode *N1C = getAsNonOpaqueConstant(N1); 1924 1925 // fold (sub x, c) -> (add x, -c) 1926 if (N1C) { 1927 return DAG.getNode(ISD::ADD, DL, VT, N0, 1928 DAG.getConstant(-N1C->getAPIntValue(), DL, VT)); 1929 } 1930 1931 if (isNullConstantOrNullSplatConstant(N0)) { 1932 unsigned BitWidth = VT.getScalarSizeInBits(); 1933 // Right-shifting everything out but the sign bit followed by negation is 1934 // the same as flipping arithmetic/logical shift type without the negation: 1935 // -(X >>u 31) -> (X >>s 31) 1936 // -(X >>s 31) -> (X >>u 31) 1937 if (N1->getOpcode() == ISD::SRA || N1->getOpcode() == ISD::SRL) { 1938 ConstantSDNode *ShiftAmt = isConstOrConstSplat(N1.getOperand(1)); 1939 if (ShiftAmt && ShiftAmt->getZExtValue() == BitWidth - 1) { 1940 auto NewSh = N1->getOpcode() == ISD::SRA ? ISD::SRL : ISD::SRA; 1941 if (!LegalOperations || TLI.isOperationLegal(NewSh, VT)) 1942 return DAG.getNode(NewSh, DL, VT, N1.getOperand(0), N1.getOperand(1)); 1943 } 1944 } 1945 1946 // 0 - X --> 0 if the sub is NUW. 1947 if (N->getFlags()->hasNoUnsignedWrap()) 1948 return N0; 1949 1950 if (DAG.MaskedValueIsZero(N1, ~APInt::getSignBit(BitWidth))) { 1951 // N1 is either 0 or the minimum signed value. If the sub is NSW, then 1952 // N1 must be 0 because negating the minimum signed value is undefined. 1953 if (N->getFlags()->hasNoSignedWrap()) 1954 return N0; 1955 1956 // 0 - X --> X if X is 0 or the minimum signed value. 1957 return N1; 1958 } 1959 } 1960 1961 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) 1962 if (isAllOnesConstantOrAllOnesSplatConstant(N0)) 1963 return DAG.getNode(ISD::XOR, DL, VT, N1, N0); 1964 1965 // fold A-(A-B) -> B 1966 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0)) 1967 return N1.getOperand(1); 1968 1969 // fold (A+B)-A -> B 1970 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1) 1971 return N0.getOperand(1); 1972 1973 // fold (A+B)-B -> A 1974 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1) 1975 return N0.getOperand(0); 1976 1977 // fold C2-(A+C1) -> (C2-C1)-A 1978 if (N1.getOpcode() == ISD::ADD) { 1979 SDValue N11 = N1.getOperand(1); 1980 if (isConstantOrConstantVector(N0, /* NoOpaques */ true) && 1981 isConstantOrConstantVector(N11, /* NoOpaques */ true)) { 1982 SDValue NewC = DAG.getNode(ISD::SUB, DL, VT, N0, N11); 1983 return DAG.getNode(ISD::SUB, DL, VT, NewC, N1.getOperand(0)); 1984 } 1985 } 1986 1987 // fold ((A+(B+or-C))-B) -> A+or-C 1988 if (N0.getOpcode() == ISD::ADD && 1989 (N0.getOperand(1).getOpcode() == ISD::SUB || 1990 N0.getOperand(1).getOpcode() == ISD::ADD) && 1991 N0.getOperand(1).getOperand(0) == N1) 1992 return DAG.getNode(N0.getOperand(1).getOpcode(), DL, VT, N0.getOperand(0), 1993 N0.getOperand(1).getOperand(1)); 1994 1995 // fold ((A+(C+B))-B) -> A+C 1996 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1).getOpcode() == ISD::ADD && 1997 N0.getOperand(1).getOperand(1) == N1) 1998 return DAG.getNode(ISD::ADD, DL, VT, N0.getOperand(0), 1999 N0.getOperand(1).getOperand(0)); 2000 2001 // fold ((A-(B-C))-C) -> A-B 2002 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1).getOpcode() == ISD::SUB && 2003 N0.getOperand(1).getOperand(1) == N1) 2004 return DAG.getNode(ISD::SUB, DL, VT, N0.getOperand(0), 2005 N0.getOperand(1).getOperand(0)); 2006 2007 // If either operand of a sub is undef, the result is undef 2008 if (N0.isUndef()) 2009 return N0; 2010 if (N1.isUndef()) 2011 return N1; 2012 2013 // If the relocation model supports it, consider symbol offsets. 2014 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0)) 2015 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) { 2016 // fold (sub Sym, c) -> Sym-c 2017 if (N1C && GA->getOpcode() == ISD::GlobalAddress) 2018 return DAG.getGlobalAddress(GA->getGlobal(), SDLoc(N1C), VT, 2019 GA->getOffset() - 2020 (uint64_t)N1C->getSExtValue()); 2021 // fold (sub Sym+c1, Sym+c2) -> c1-c2 2022 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1)) 2023 if (GA->getGlobal() == GB->getGlobal()) 2024 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(), 2025 DL, VT); 2026 } 2027 2028 // sub X, (sextinreg Y i1) -> add X, (and Y 1) 2029 if (N1.getOpcode() == ISD::SIGN_EXTEND_INREG) { 2030 VTSDNode *TN = cast<VTSDNode>(N1.getOperand(1)); 2031 if (TN->getVT() == MVT::i1) { 2032 SDValue ZExt = DAG.getNode(ISD::AND, DL, VT, N1.getOperand(0), 2033 DAG.getConstant(1, DL, VT)); 2034 return DAG.getNode(ISD::ADD, DL, VT, N0, ZExt); 2035 } 2036 } 2037 2038 return SDValue(); 2039 } 2040 2041 SDValue DAGCombiner::visitSUBC(SDNode *N) { 2042 SDValue N0 = N->getOperand(0); 2043 SDValue N1 = N->getOperand(1); 2044 EVT VT = N0.getValueType(); 2045 SDLoc DL(N); 2046 2047 // If the flag result is dead, turn this into an SUB. 2048 if (!N->hasAnyUseOfValue(1)) 2049 return CombineTo(N, DAG.getNode(ISD::SUB, DL, VT, N0, N1), 2050 DAG.getNode(ISD::CARRY_FALSE, DL, MVT::Glue)); 2051 2052 // fold (subc x, x) -> 0 + no borrow 2053 if (N0 == N1) 2054 return CombineTo(N, DAG.getConstant(0, DL, VT), 2055 DAG.getNode(ISD::CARRY_FALSE, DL, MVT::Glue)); 2056 2057 // fold (subc x, 0) -> x + no borrow 2058 if (isNullConstant(N1)) 2059 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, DL, MVT::Glue)); 2060 2061 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow 2062 if (isAllOnesConstant(N0)) 2063 return CombineTo(N, DAG.getNode(ISD::XOR, DL, VT, N1, N0), 2064 DAG.getNode(ISD::CARRY_FALSE, DL, MVT::Glue)); 2065 2066 return SDValue(); 2067 } 2068 2069 SDValue DAGCombiner::visitSUBE(SDNode *N) { 2070 SDValue N0 = N->getOperand(0); 2071 SDValue N1 = N->getOperand(1); 2072 SDValue CarryIn = N->getOperand(2); 2073 2074 // fold (sube x, y, false) -> (subc x, y) 2075 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) 2076 return DAG.getNode(ISD::SUBC, SDLoc(N), N->getVTList(), N0, N1); 2077 2078 return SDValue(); 2079 } 2080 2081 SDValue DAGCombiner::visitMUL(SDNode *N) { 2082 SDValue N0 = N->getOperand(0); 2083 SDValue N1 = N->getOperand(1); 2084 EVT VT = N0.getValueType(); 2085 2086 // fold (mul x, undef) -> 0 2087 if (N0.isUndef() || N1.isUndef()) 2088 return DAG.getConstant(0, SDLoc(N), VT); 2089 2090 bool N0IsConst = false; 2091 bool N1IsConst = false; 2092 bool N1IsOpaqueConst = false; 2093 bool N0IsOpaqueConst = false; 2094 APInt ConstValue0, ConstValue1; 2095 // fold vector ops 2096 if (VT.isVector()) { 2097 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 2098 return FoldedVOp; 2099 2100 N0IsConst = ISD::isConstantSplatVector(N0.getNode(), ConstValue0); 2101 N1IsConst = ISD::isConstantSplatVector(N1.getNode(), ConstValue1); 2102 } else { 2103 N0IsConst = isa<ConstantSDNode>(N0); 2104 if (N0IsConst) { 2105 ConstValue0 = cast<ConstantSDNode>(N0)->getAPIntValue(); 2106 N0IsOpaqueConst = cast<ConstantSDNode>(N0)->isOpaque(); 2107 } 2108 N1IsConst = isa<ConstantSDNode>(N1); 2109 if (N1IsConst) { 2110 ConstValue1 = cast<ConstantSDNode>(N1)->getAPIntValue(); 2111 N1IsOpaqueConst = cast<ConstantSDNode>(N1)->isOpaque(); 2112 } 2113 } 2114 2115 // fold (mul c1, c2) -> c1*c2 2116 if (N0IsConst && N1IsConst && !N0IsOpaqueConst && !N1IsOpaqueConst) 2117 return DAG.FoldConstantArithmetic(ISD::MUL, SDLoc(N), VT, 2118 N0.getNode(), N1.getNode()); 2119 2120 // canonicalize constant to RHS (vector doesn't have to splat) 2121 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 2122 !DAG.isConstantIntBuildVectorOrConstantInt(N1)) 2123 return DAG.getNode(ISD::MUL, SDLoc(N), VT, N1, N0); 2124 // fold (mul x, 0) -> 0 2125 if (N1IsConst && ConstValue1 == 0) 2126 return N1; 2127 // We require a splat of the entire scalar bit width for non-contiguous 2128 // bit patterns. 2129 bool IsFullSplat = 2130 ConstValue1.getBitWidth() == VT.getScalarSizeInBits(); 2131 // fold (mul x, 1) -> x 2132 if (N1IsConst && ConstValue1 == 1 && IsFullSplat) 2133 return N0; 2134 // fold (mul x, -1) -> 0-x 2135 if (N1IsConst && ConstValue1.isAllOnesValue()) { 2136 SDLoc DL(N); 2137 return DAG.getNode(ISD::SUB, DL, VT, 2138 DAG.getConstant(0, DL, VT), N0); 2139 } 2140 // fold (mul x, (1 << c)) -> x << c 2141 if (N1IsConst && !N1IsOpaqueConst && ConstValue1.isPowerOf2() && 2142 IsFullSplat) { 2143 SDLoc DL(N); 2144 return DAG.getNode(ISD::SHL, DL, VT, N0, 2145 DAG.getConstant(ConstValue1.logBase2(), DL, 2146 getShiftAmountTy(N0.getValueType()))); 2147 } 2148 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c 2149 if (N1IsConst && !N1IsOpaqueConst && (-ConstValue1).isPowerOf2() && 2150 IsFullSplat) { 2151 unsigned Log2Val = (-ConstValue1).logBase2(); 2152 SDLoc DL(N); 2153 // FIXME: If the input is something that is easily negated (e.g. a 2154 // single-use add), we should put the negate there. 2155 return DAG.getNode(ISD::SUB, DL, VT, 2156 DAG.getConstant(0, DL, VT), 2157 DAG.getNode(ISD::SHL, DL, VT, N0, 2158 DAG.getConstant(Log2Val, DL, 2159 getShiftAmountTy(N0.getValueType())))); 2160 } 2161 2162 // (mul (shl X, c1), c2) -> (mul X, c2 << c1) 2163 if (N0.getOpcode() == ISD::SHL && 2164 isConstantOrConstantVector(N1, /* NoOpaques */ true) && 2165 isConstantOrConstantVector(N0.getOperand(1), /* NoOpaques */ true)) { 2166 SDValue C3 = DAG.getNode(ISD::SHL, SDLoc(N), VT, N1, N0.getOperand(1)); 2167 if (isConstantOrConstantVector(C3)) 2168 return DAG.getNode(ISD::MUL, SDLoc(N), VT, N0.getOperand(0), C3); 2169 } 2170 2171 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one 2172 // use. 2173 { 2174 SDValue Sh(nullptr, 0), Y(nullptr, 0); 2175 2176 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)). 2177 if (N0.getOpcode() == ISD::SHL && 2178 isConstantOrConstantVector(N0.getOperand(1)) && 2179 N0.getNode()->hasOneUse()) { 2180 Sh = N0; Y = N1; 2181 } else if (N1.getOpcode() == ISD::SHL && 2182 isConstantOrConstantVector(N1.getOperand(1)) && 2183 N1.getNode()->hasOneUse()) { 2184 Sh = N1; Y = N0; 2185 } 2186 2187 if (Sh.getNode()) { 2188 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT, Sh.getOperand(0), Y); 2189 return DAG.getNode(ISD::SHL, SDLoc(N), VT, Mul, Sh.getOperand(1)); 2190 } 2191 } 2192 2193 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2) 2194 if (DAG.isConstantIntBuildVectorOrConstantInt(N1) && 2195 N0.getOpcode() == ISD::ADD && 2196 DAG.isConstantIntBuildVectorOrConstantInt(N0.getOperand(1)) && 2197 isMulAddWithConstProfitable(N, N0, N1)) 2198 return DAG.getNode(ISD::ADD, SDLoc(N), VT, 2199 DAG.getNode(ISD::MUL, SDLoc(N0), VT, 2200 N0.getOperand(0), N1), 2201 DAG.getNode(ISD::MUL, SDLoc(N1), VT, 2202 N0.getOperand(1), N1)); 2203 2204 // reassociate mul 2205 if (SDValue RMUL = ReassociateOps(ISD::MUL, SDLoc(N), N0, N1)) 2206 return RMUL; 2207 2208 return SDValue(); 2209 } 2210 2211 /// Return true if divmod libcall is available. 2212 static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned, 2213 const TargetLowering &TLI) { 2214 RTLIB::Libcall LC; 2215 EVT NodeType = Node->getValueType(0); 2216 if (!NodeType.isSimple()) 2217 return false; 2218 switch (NodeType.getSimpleVT().SimpleTy) { 2219 default: return false; // No libcall for vector types. 2220 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break; 2221 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break; 2222 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break; 2223 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break; 2224 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break; 2225 } 2226 2227 return TLI.getLibcallName(LC) != nullptr; 2228 } 2229 2230 /// Issue divrem if both quotient and remainder are needed. 2231 SDValue DAGCombiner::useDivRem(SDNode *Node) { 2232 if (Node->use_empty()) 2233 return SDValue(); // This is a dead node, leave it alone. 2234 2235 unsigned Opcode = Node->getOpcode(); 2236 bool isSigned = (Opcode == ISD::SDIV) || (Opcode == ISD::SREM); 2237 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; 2238 2239 // DivMod lib calls can still work on non-legal types if using lib-calls. 2240 EVT VT = Node->getValueType(0); 2241 if (VT.isVector() || !VT.isInteger()) 2242 return SDValue(); 2243 2244 if (!TLI.isTypeLegal(VT) && !TLI.isOperationCustom(DivRemOpc, VT)) 2245 return SDValue(); 2246 2247 // If DIVREM is going to get expanded into a libcall, 2248 // but there is no libcall available, then don't combine. 2249 if (!TLI.isOperationLegalOrCustom(DivRemOpc, VT) && 2250 !isDivRemLibcallAvailable(Node, isSigned, TLI)) 2251 return SDValue(); 2252 2253 // If div is legal, it's better to do the normal expansion 2254 unsigned OtherOpcode = 0; 2255 if ((Opcode == ISD::SDIV) || (Opcode == ISD::UDIV)) { 2256 OtherOpcode = isSigned ? ISD::SREM : ISD::UREM; 2257 if (TLI.isOperationLegalOrCustom(Opcode, VT)) 2258 return SDValue(); 2259 } else { 2260 OtherOpcode = isSigned ? ISD::SDIV : ISD::UDIV; 2261 if (TLI.isOperationLegalOrCustom(OtherOpcode, VT)) 2262 return SDValue(); 2263 } 2264 2265 SDValue Op0 = Node->getOperand(0); 2266 SDValue Op1 = Node->getOperand(1); 2267 SDValue combined; 2268 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(), 2269 UE = Op0.getNode()->use_end(); UI != UE;) { 2270 SDNode *User = *UI++; 2271 if (User == Node || User->use_empty()) 2272 continue; 2273 // Convert the other matching node(s), too; 2274 // otherwise, the DIVREM may get target-legalized into something 2275 // target-specific that we won't be able to recognize. 2276 unsigned UserOpc = User->getOpcode(); 2277 if ((UserOpc == Opcode || UserOpc == OtherOpcode || UserOpc == DivRemOpc) && 2278 User->getOperand(0) == Op0 && 2279 User->getOperand(1) == Op1) { 2280 if (!combined) { 2281 if (UserOpc == OtherOpcode) { 2282 SDVTList VTs = DAG.getVTList(VT, VT); 2283 combined = DAG.getNode(DivRemOpc, SDLoc(Node), VTs, Op0, Op1); 2284 } else if (UserOpc == DivRemOpc) { 2285 combined = SDValue(User, 0); 2286 } else { 2287 assert(UserOpc == Opcode); 2288 continue; 2289 } 2290 } 2291 if (UserOpc == ISD::SDIV || UserOpc == ISD::UDIV) 2292 CombineTo(User, combined); 2293 else if (UserOpc == ISD::SREM || UserOpc == ISD::UREM) 2294 CombineTo(User, combined.getValue(1)); 2295 } 2296 } 2297 return combined; 2298 } 2299 2300 SDValue DAGCombiner::visitSDIV(SDNode *N) { 2301 SDValue N0 = N->getOperand(0); 2302 SDValue N1 = N->getOperand(1); 2303 EVT VT = N->getValueType(0); 2304 2305 // fold vector ops 2306 if (VT.isVector()) 2307 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 2308 return FoldedVOp; 2309 2310 SDLoc DL(N); 2311 2312 // fold (sdiv c1, c2) -> c1/c2 2313 ConstantSDNode *N0C = isConstOrConstSplat(N0); 2314 ConstantSDNode *N1C = isConstOrConstSplat(N1); 2315 if (N0C && N1C && !N0C->isOpaque() && !N1C->isOpaque()) 2316 return DAG.FoldConstantArithmetic(ISD::SDIV, DL, VT, N0C, N1C); 2317 // fold (sdiv X, 1) -> X 2318 if (N1C && N1C->isOne()) 2319 return N0; 2320 // fold (sdiv X, -1) -> 0-X 2321 if (N1C && N1C->isAllOnesValue()) 2322 return DAG.getNode(ISD::SUB, DL, VT, 2323 DAG.getConstant(0, DL, VT), N0); 2324 2325 // If we know the sign bits of both operands are zero, strength reduce to a 2326 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2 2327 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0)) 2328 return DAG.getNode(ISD::UDIV, DL, N1.getValueType(), N0, N1); 2329 2330 // fold (sdiv X, pow2) -> simple ops after legalize 2331 // FIXME: We check for the exact bit here because the generic lowering gives 2332 // better results in that case. The target-specific lowering should learn how 2333 // to handle exact sdivs efficiently. 2334 if (N1C && !N1C->isNullValue() && !N1C->isOpaque() && 2335 !cast<BinaryWithFlagsSDNode>(N)->Flags.hasExact() && 2336 (N1C->getAPIntValue().isPowerOf2() || 2337 (-N1C->getAPIntValue()).isPowerOf2())) { 2338 // Target-specific implementation of sdiv x, pow2. 2339 if (SDValue Res = BuildSDIVPow2(N)) 2340 return Res; 2341 2342 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros(); 2343 2344 // Splat the sign bit into the register 2345 SDValue SGN = 2346 DAG.getNode(ISD::SRA, DL, VT, N0, 2347 DAG.getConstant(VT.getScalarSizeInBits() - 1, DL, 2348 getShiftAmountTy(N0.getValueType()))); 2349 AddToWorklist(SGN.getNode()); 2350 2351 // Add (N0 < 0) ? abs2 - 1 : 0; 2352 SDValue SRL = 2353 DAG.getNode(ISD::SRL, DL, VT, SGN, 2354 DAG.getConstant(VT.getScalarSizeInBits() - lg2, DL, 2355 getShiftAmountTy(SGN.getValueType()))); 2356 SDValue ADD = DAG.getNode(ISD::ADD, DL, VT, N0, SRL); 2357 AddToWorklist(SRL.getNode()); 2358 AddToWorklist(ADD.getNode()); // Divide by pow2 2359 SDValue SRA = DAG.getNode(ISD::SRA, DL, VT, ADD, 2360 DAG.getConstant(lg2, DL, 2361 getShiftAmountTy(ADD.getValueType()))); 2362 2363 // If we're dividing by a positive value, we're done. Otherwise, we must 2364 // negate the result. 2365 if (N1C->getAPIntValue().isNonNegative()) 2366 return SRA; 2367 2368 AddToWorklist(SRA.getNode()); 2369 return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), SRA); 2370 } 2371 2372 // If integer divide is expensive and we satisfy the requirements, emit an 2373 // alternate sequence. Targets may check function attributes for size/speed 2374 // trade-offs. 2375 AttributeSet Attr = DAG.getMachineFunction().getFunction()->getAttributes(); 2376 if (N1C && !TLI.isIntDivCheap(N->getValueType(0), Attr)) 2377 if (SDValue Op = BuildSDIV(N)) 2378 return Op; 2379 2380 // sdiv, srem -> sdivrem 2381 // If the divisor is constant, then return DIVREM only if isIntDivCheap() is 2382 // true. Otherwise, we break the simplification logic in visitREM(). 2383 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr)) 2384 if (SDValue DivRem = useDivRem(N)) 2385 return DivRem; 2386 2387 // undef / X -> 0 2388 if (N0.isUndef()) 2389 return DAG.getConstant(0, DL, VT); 2390 // X / undef -> undef 2391 if (N1.isUndef()) 2392 return N1; 2393 2394 return SDValue(); 2395 } 2396 2397 SDValue DAGCombiner::visitUDIV(SDNode *N) { 2398 SDValue N0 = N->getOperand(0); 2399 SDValue N1 = N->getOperand(1); 2400 EVT VT = N->getValueType(0); 2401 2402 // fold vector ops 2403 if (VT.isVector()) 2404 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 2405 return FoldedVOp; 2406 2407 SDLoc DL(N); 2408 2409 // fold (udiv c1, c2) -> c1/c2 2410 ConstantSDNode *N0C = isConstOrConstSplat(N0); 2411 ConstantSDNode *N1C = isConstOrConstSplat(N1); 2412 if (N0C && N1C) 2413 if (SDValue Folded = DAG.FoldConstantArithmetic(ISD::UDIV, DL, VT, 2414 N0C, N1C)) 2415 return Folded; 2416 2417 // fold (udiv x, (1 << c)) -> x >>u c 2418 if (isConstantOrConstantVector(N1, /*NoOpaques*/ true) && 2419 DAG.isKnownToBeAPowerOfTwo(N1)) { 2420 SDValue LogBase2 = BuildLogBase2(N1, DL); 2421 AddToWorklist(LogBase2.getNode()); 2422 2423 EVT ShiftVT = getShiftAmountTy(N0.getValueType()); 2424 SDValue Trunc = DAG.getZExtOrTrunc(LogBase2, DL, ShiftVT); 2425 AddToWorklist(Trunc.getNode()); 2426 return DAG.getNode(ISD::SRL, DL, VT, N0, Trunc); 2427 } 2428 2429 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2 2430 if (N1.getOpcode() == ISD::SHL) { 2431 SDValue N10 = N1.getOperand(0); 2432 if (isConstantOrConstantVector(N10, /*NoOpaques*/ true) && 2433 DAG.isKnownToBeAPowerOfTwo(N10)) { 2434 SDValue LogBase2 = BuildLogBase2(N10, DL); 2435 AddToWorklist(LogBase2.getNode()); 2436 2437 EVT ADDVT = N1.getOperand(1).getValueType(); 2438 SDValue Trunc = DAG.getZExtOrTrunc(LogBase2, DL, ADDVT); 2439 AddToWorklist(Trunc.getNode()); 2440 SDValue Add = DAG.getNode(ISD::ADD, DL, ADDVT, N1.getOperand(1), Trunc); 2441 AddToWorklist(Add.getNode()); 2442 return DAG.getNode(ISD::SRL, DL, VT, N0, Add); 2443 } 2444 } 2445 2446 // fold (udiv x, c) -> alternate 2447 AttributeSet Attr = DAG.getMachineFunction().getFunction()->getAttributes(); 2448 if (N1C && !TLI.isIntDivCheap(N->getValueType(0), Attr)) 2449 if (SDValue Op = BuildUDIV(N)) 2450 return Op; 2451 2452 // sdiv, srem -> sdivrem 2453 // If the divisor is constant, then return DIVREM only if isIntDivCheap() is 2454 // true. Otherwise, we break the simplification logic in visitREM(). 2455 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr)) 2456 if (SDValue DivRem = useDivRem(N)) 2457 return DivRem; 2458 2459 // undef / X -> 0 2460 if (N0.isUndef()) 2461 return DAG.getConstant(0, DL, VT); 2462 // X / undef -> undef 2463 if (N1.isUndef()) 2464 return N1; 2465 2466 return SDValue(); 2467 } 2468 2469 // handles ISD::SREM and ISD::UREM 2470 SDValue DAGCombiner::visitREM(SDNode *N) { 2471 unsigned Opcode = N->getOpcode(); 2472 SDValue N0 = N->getOperand(0); 2473 SDValue N1 = N->getOperand(1); 2474 EVT VT = N->getValueType(0); 2475 bool isSigned = (Opcode == ISD::SREM); 2476 SDLoc DL(N); 2477 2478 // fold (rem c1, c2) -> c1%c2 2479 ConstantSDNode *N0C = isConstOrConstSplat(N0); 2480 ConstantSDNode *N1C = isConstOrConstSplat(N1); 2481 if (N0C && N1C) 2482 if (SDValue Folded = DAG.FoldConstantArithmetic(Opcode, DL, VT, N0C, N1C)) 2483 return Folded; 2484 2485 if (isSigned) { 2486 // If we know the sign bits of both operands are zero, strength reduce to a 2487 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15 2488 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0)) 2489 return DAG.getNode(ISD::UREM, DL, VT, N0, N1); 2490 } else { 2491 // fold (urem x, pow2) -> (and x, pow2-1) 2492 if (DAG.isKnownToBeAPowerOfTwo(N1)) { 2493 APInt NegOne = APInt::getAllOnesValue(VT.getScalarSizeInBits()); 2494 SDValue Add = 2495 DAG.getNode(ISD::ADD, DL, VT, N1, DAG.getConstant(NegOne, DL, VT)); 2496 AddToWorklist(Add.getNode()); 2497 return DAG.getNode(ISD::AND, DL, VT, N0, Add); 2498 } 2499 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1)) 2500 if (N1.getOpcode() == ISD::SHL && 2501 DAG.isKnownToBeAPowerOfTwo(N1.getOperand(0))) { 2502 APInt NegOne = APInt::getAllOnesValue(VT.getScalarSizeInBits()); 2503 SDValue Add = 2504 DAG.getNode(ISD::ADD, DL, VT, N1, DAG.getConstant(NegOne, DL, VT)); 2505 AddToWorklist(Add.getNode()); 2506 return DAG.getNode(ISD::AND, DL, VT, N0, Add); 2507 } 2508 } 2509 2510 AttributeSet Attr = DAG.getMachineFunction().getFunction()->getAttributes(); 2511 2512 // If X/C can be simplified by the division-by-constant logic, lower 2513 // X%C to the equivalent of X-X/C*C. 2514 // To avoid mangling nodes, this simplification requires that the combine() 2515 // call for the speculative DIV must not cause a DIVREM conversion. We guard 2516 // against this by skipping the simplification if isIntDivCheap(). When 2517 // div is not cheap, combine will not return a DIVREM. Regardless, 2518 // checking cheapness here makes sense since the simplification results in 2519 // fatter code. 2520 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap(VT, Attr)) { 2521 unsigned DivOpcode = isSigned ? ISD::SDIV : ISD::UDIV; 2522 SDValue Div = DAG.getNode(DivOpcode, DL, VT, N0, N1); 2523 AddToWorklist(Div.getNode()); 2524 SDValue OptimizedDiv = combine(Div.getNode()); 2525 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) { 2526 assert((OptimizedDiv.getOpcode() != ISD::UDIVREM) && 2527 (OptimizedDiv.getOpcode() != ISD::SDIVREM)); 2528 SDValue Mul = DAG.getNode(ISD::MUL, DL, VT, OptimizedDiv, N1); 2529 SDValue Sub = DAG.getNode(ISD::SUB, DL, VT, N0, Mul); 2530 AddToWorklist(Mul.getNode()); 2531 return Sub; 2532 } 2533 } 2534 2535 // sdiv, srem -> sdivrem 2536 if (SDValue DivRem = useDivRem(N)) 2537 return DivRem.getValue(1); 2538 2539 // undef % X -> 0 2540 if (N0.isUndef()) 2541 return DAG.getConstant(0, DL, VT); 2542 // X % undef -> undef 2543 if (N1.isUndef()) 2544 return N1; 2545 2546 return SDValue(); 2547 } 2548 2549 SDValue DAGCombiner::visitMULHS(SDNode *N) { 2550 SDValue N0 = N->getOperand(0); 2551 SDValue N1 = N->getOperand(1); 2552 EVT VT = N->getValueType(0); 2553 SDLoc DL(N); 2554 2555 // fold (mulhs x, 0) -> 0 2556 if (isNullConstant(N1)) 2557 return N1; 2558 // fold (mulhs x, 1) -> (sra x, size(x)-1) 2559 if (isOneConstant(N1)) { 2560 SDLoc DL(N); 2561 return DAG.getNode(ISD::SRA, DL, N0.getValueType(), N0, 2562 DAG.getConstant(N0.getValueSizeInBits() - 1, DL, 2563 getShiftAmountTy(N0.getValueType()))); 2564 } 2565 // fold (mulhs x, undef) -> 0 2566 if (N0.isUndef() || N1.isUndef()) 2567 return DAG.getConstant(0, SDLoc(N), VT); 2568 2569 // If the type twice as wide is legal, transform the mulhs to a wider multiply 2570 // plus a shift. 2571 if (VT.isSimple() && !VT.isVector()) { 2572 MVT Simple = VT.getSimpleVT(); 2573 unsigned SimpleSize = Simple.getSizeInBits(); 2574 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); 2575 if (TLI.isOperationLegal(ISD::MUL, NewVT)) { 2576 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0); 2577 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1); 2578 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1); 2579 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1, 2580 DAG.getConstant(SimpleSize, DL, 2581 getShiftAmountTy(N1.getValueType()))); 2582 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1); 2583 } 2584 } 2585 2586 return SDValue(); 2587 } 2588 2589 SDValue DAGCombiner::visitMULHU(SDNode *N) { 2590 SDValue N0 = N->getOperand(0); 2591 SDValue N1 = N->getOperand(1); 2592 EVT VT = N->getValueType(0); 2593 SDLoc DL(N); 2594 2595 // fold (mulhu x, 0) -> 0 2596 if (isNullConstant(N1)) 2597 return N1; 2598 // fold (mulhu x, 1) -> 0 2599 if (isOneConstant(N1)) 2600 return DAG.getConstant(0, DL, N0.getValueType()); 2601 // fold (mulhu x, undef) -> 0 2602 if (N0.isUndef() || N1.isUndef()) 2603 return DAG.getConstant(0, DL, VT); 2604 2605 // If the type twice as wide is legal, transform the mulhu to a wider multiply 2606 // plus a shift. 2607 if (VT.isSimple() && !VT.isVector()) { 2608 MVT Simple = VT.getSimpleVT(); 2609 unsigned SimpleSize = Simple.getSizeInBits(); 2610 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); 2611 if (TLI.isOperationLegal(ISD::MUL, NewVT)) { 2612 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0); 2613 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1); 2614 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1); 2615 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1, 2616 DAG.getConstant(SimpleSize, DL, 2617 getShiftAmountTy(N1.getValueType()))); 2618 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1); 2619 } 2620 } 2621 2622 return SDValue(); 2623 } 2624 2625 /// Perform optimizations common to nodes that compute two values. LoOp and HiOp 2626 /// give the opcodes for the two computations that are being performed. Return 2627 /// true if a simplification was made. 2628 SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, 2629 unsigned HiOp) { 2630 // If the high half is not needed, just compute the low half. 2631 bool HiExists = N->hasAnyUseOfValue(1); 2632 if (!HiExists && 2633 (!LegalOperations || 2634 TLI.isOperationLegalOrCustom(LoOp, N->getValueType(0)))) { 2635 SDValue Res = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0), N->ops()); 2636 return CombineTo(N, Res, Res); 2637 } 2638 2639 // If the low half is not needed, just compute the high half. 2640 bool LoExists = N->hasAnyUseOfValue(0); 2641 if (!LoExists && 2642 (!LegalOperations || 2643 TLI.isOperationLegal(HiOp, N->getValueType(1)))) { 2644 SDValue Res = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1), N->ops()); 2645 return CombineTo(N, Res, Res); 2646 } 2647 2648 // If both halves are used, return as it is. 2649 if (LoExists && HiExists) 2650 return SDValue(); 2651 2652 // If the two computed results can be simplified separately, separate them. 2653 if (LoExists) { 2654 SDValue Lo = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0), N->ops()); 2655 AddToWorklist(Lo.getNode()); 2656 SDValue LoOpt = combine(Lo.getNode()); 2657 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() && 2658 (!LegalOperations || 2659 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType()))) 2660 return CombineTo(N, LoOpt, LoOpt); 2661 } 2662 2663 if (HiExists) { 2664 SDValue Hi = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1), N->ops()); 2665 AddToWorklist(Hi.getNode()); 2666 SDValue HiOpt = combine(Hi.getNode()); 2667 if (HiOpt.getNode() && HiOpt != Hi && 2668 (!LegalOperations || 2669 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType()))) 2670 return CombineTo(N, HiOpt, HiOpt); 2671 } 2672 2673 return SDValue(); 2674 } 2675 2676 SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) { 2677 if (SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS)) 2678 return Res; 2679 2680 EVT VT = N->getValueType(0); 2681 SDLoc DL(N); 2682 2683 // If the type is twice as wide is legal, transform the mulhu to a wider 2684 // multiply plus a shift. 2685 if (VT.isSimple() && !VT.isVector()) { 2686 MVT Simple = VT.getSimpleVT(); 2687 unsigned SimpleSize = Simple.getSizeInBits(); 2688 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); 2689 if (TLI.isOperationLegal(ISD::MUL, NewVT)) { 2690 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0)); 2691 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1)); 2692 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi); 2693 // Compute the high part as N1. 2694 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo, 2695 DAG.getConstant(SimpleSize, DL, 2696 getShiftAmountTy(Lo.getValueType()))); 2697 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi); 2698 // Compute the low part as N0. 2699 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo); 2700 return CombineTo(N, Lo, Hi); 2701 } 2702 } 2703 2704 return SDValue(); 2705 } 2706 2707 SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) { 2708 if (SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU)) 2709 return Res; 2710 2711 EVT VT = N->getValueType(0); 2712 SDLoc DL(N); 2713 2714 // If the type is twice as wide is legal, transform the mulhu to a wider 2715 // multiply plus a shift. 2716 if (VT.isSimple() && !VT.isVector()) { 2717 MVT Simple = VT.getSimpleVT(); 2718 unsigned SimpleSize = Simple.getSizeInBits(); 2719 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2); 2720 if (TLI.isOperationLegal(ISD::MUL, NewVT)) { 2721 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0)); 2722 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1)); 2723 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi); 2724 // Compute the high part as N1. 2725 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo, 2726 DAG.getConstant(SimpleSize, DL, 2727 getShiftAmountTy(Lo.getValueType()))); 2728 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi); 2729 // Compute the low part as N0. 2730 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo); 2731 return CombineTo(N, Lo, Hi); 2732 } 2733 } 2734 2735 return SDValue(); 2736 } 2737 2738 SDValue DAGCombiner::visitSMULO(SDNode *N) { 2739 // (smulo x, 2) -> (saddo x, x) 2740 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1))) 2741 if (C2->getAPIntValue() == 2) 2742 return DAG.getNode(ISD::SADDO, SDLoc(N), N->getVTList(), 2743 N->getOperand(0), N->getOperand(0)); 2744 2745 return SDValue(); 2746 } 2747 2748 SDValue DAGCombiner::visitUMULO(SDNode *N) { 2749 // (umulo x, 2) -> (uaddo x, x) 2750 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1))) 2751 if (C2->getAPIntValue() == 2) 2752 return DAG.getNode(ISD::UADDO, SDLoc(N), N->getVTList(), 2753 N->getOperand(0), N->getOperand(0)); 2754 2755 return SDValue(); 2756 } 2757 2758 SDValue DAGCombiner::visitIMINMAX(SDNode *N) { 2759 SDValue N0 = N->getOperand(0); 2760 SDValue N1 = N->getOperand(1); 2761 EVT VT = N0.getValueType(); 2762 2763 // fold vector ops 2764 if (VT.isVector()) 2765 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 2766 return FoldedVOp; 2767 2768 // fold (add c1, c2) -> c1+c2 2769 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 2770 ConstantSDNode *N1C = getAsNonOpaqueConstant(N1); 2771 if (N0C && N1C) 2772 return DAG.FoldConstantArithmetic(N->getOpcode(), SDLoc(N), VT, N0C, N1C); 2773 2774 // canonicalize constant to RHS 2775 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 2776 !DAG.isConstantIntBuildVectorOrConstantInt(N1)) 2777 return DAG.getNode(N->getOpcode(), SDLoc(N), VT, N1, N0); 2778 2779 return SDValue(); 2780 } 2781 2782 /// If this is a binary operator with two operands of the same opcode, try to 2783 /// simplify it. 2784 SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) { 2785 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1); 2786 EVT VT = N0.getValueType(); 2787 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!"); 2788 2789 // Bail early if none of these transforms apply. 2790 if (N0.getNumOperands() == 0) return SDValue(); 2791 2792 // For each of OP in AND/OR/XOR: 2793 // fold (OP (zext x), (zext y)) -> (zext (OP x, y)) 2794 // fold (OP (sext x), (sext y)) -> (sext (OP x, y)) 2795 // fold (OP (aext x), (aext y)) -> (aext (OP x, y)) 2796 // fold (OP (bswap x), (bswap y)) -> (bswap (OP x, y)) 2797 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free) 2798 // 2799 // do not sink logical op inside of a vector extend, since it may combine 2800 // into a vsetcc. 2801 EVT Op0VT = N0.getOperand(0).getValueType(); 2802 if ((N0.getOpcode() == ISD::ZERO_EXTEND || 2803 N0.getOpcode() == ISD::SIGN_EXTEND || 2804 N0.getOpcode() == ISD::BSWAP || 2805 // Avoid infinite looping with PromoteIntBinOp. 2806 (N0.getOpcode() == ISD::ANY_EXTEND && 2807 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) || 2808 (N0.getOpcode() == ISD::TRUNCATE && 2809 (!TLI.isZExtFree(VT, Op0VT) || 2810 !TLI.isTruncateFree(Op0VT, VT)) && 2811 TLI.isTypeLegal(Op0VT))) && 2812 !VT.isVector() && 2813 Op0VT == N1.getOperand(0).getValueType() && 2814 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) { 2815 SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0), 2816 N0.getOperand(0).getValueType(), 2817 N0.getOperand(0), N1.getOperand(0)); 2818 AddToWorklist(ORNode.getNode()); 2819 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, ORNode); 2820 } 2821 2822 // For each of OP in SHL/SRL/SRA/AND... 2823 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z) 2824 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z) 2825 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z) 2826 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL || 2827 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) && 2828 N0.getOperand(1) == N1.getOperand(1)) { 2829 SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0), 2830 N0.getOperand(0).getValueType(), 2831 N0.getOperand(0), N1.getOperand(0)); 2832 AddToWorklist(ORNode.getNode()); 2833 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, 2834 ORNode, N0.getOperand(1)); 2835 } 2836 2837 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B)) 2838 // Only perform this optimization up until type legalization, before 2839 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by 2840 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and 2841 // we don't want to undo this promotion. 2842 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper 2843 // on scalars. 2844 if ((N0.getOpcode() == ISD::BITCAST || 2845 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) && 2846 Level <= AfterLegalizeTypes) { 2847 SDValue In0 = N0.getOperand(0); 2848 SDValue In1 = N1.getOperand(0); 2849 EVT In0Ty = In0.getValueType(); 2850 EVT In1Ty = In1.getValueType(); 2851 SDLoc DL(N); 2852 // If both incoming values are integers, and the original types are the 2853 // same. 2854 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) { 2855 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1); 2856 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op); 2857 AddToWorklist(Op.getNode()); 2858 return BC; 2859 } 2860 } 2861 2862 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value). 2863 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B)) 2864 // If both shuffles use the same mask, and both shuffle within a single 2865 // vector, then it is worthwhile to move the swizzle after the operation. 2866 // The type-legalizer generates this pattern when loading illegal 2867 // vector types from memory. In many cases this allows additional shuffle 2868 // optimizations. 2869 // There are other cases where moving the shuffle after the xor/and/or 2870 // is profitable even if shuffles don't perform a swizzle. 2871 // If both shuffles use the same mask, and both shuffles have the same first 2872 // or second operand, then it might still be profitable to move the shuffle 2873 // after the xor/and/or operation. 2874 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG) { 2875 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0); 2876 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1); 2877 2878 assert(N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType() && 2879 "Inputs to shuffles are not the same type"); 2880 2881 // Check that both shuffles use the same mask. The masks are known to be of 2882 // the same length because the result vector type is the same. 2883 // Check also that shuffles have only one use to avoid introducing extra 2884 // instructions. 2885 if (SVN0->hasOneUse() && SVN1->hasOneUse() && 2886 SVN0->getMask().equals(SVN1->getMask())) { 2887 SDValue ShOp = N0->getOperand(1); 2888 2889 // Don't try to fold this node if it requires introducing a 2890 // build vector of all zeros that might be illegal at this stage. 2891 if (N->getOpcode() == ISD::XOR && !ShOp.isUndef()) { 2892 if (!LegalTypes) 2893 ShOp = DAG.getConstant(0, SDLoc(N), VT); 2894 else 2895 ShOp = SDValue(); 2896 } 2897 2898 // (AND (shuf (A, C), shuf (B, C)) -> shuf (AND (A, B), C) 2899 // (OR (shuf (A, C), shuf (B, C)) -> shuf (OR (A, B), C) 2900 // (XOR (shuf (A, C), shuf (B, C)) -> shuf (XOR (A, B), V_0) 2901 if (N0.getOperand(1) == N1.getOperand(1) && ShOp.getNode()) { 2902 SDValue NewNode = DAG.getNode(N->getOpcode(), SDLoc(N), VT, 2903 N0->getOperand(0), N1->getOperand(0)); 2904 AddToWorklist(NewNode.getNode()); 2905 return DAG.getVectorShuffle(VT, SDLoc(N), NewNode, ShOp, 2906 SVN0->getMask()); 2907 } 2908 2909 // Don't try to fold this node if it requires introducing a 2910 // build vector of all zeros that might be illegal at this stage. 2911 ShOp = N0->getOperand(0); 2912 if (N->getOpcode() == ISD::XOR && !ShOp.isUndef()) { 2913 if (!LegalTypes) 2914 ShOp = DAG.getConstant(0, SDLoc(N), VT); 2915 else 2916 ShOp = SDValue(); 2917 } 2918 2919 // (AND (shuf (C, A), shuf (C, B)) -> shuf (C, AND (A, B)) 2920 // (OR (shuf (C, A), shuf (C, B)) -> shuf (C, OR (A, B)) 2921 // (XOR (shuf (C, A), shuf (C, B)) -> shuf (V_0, XOR (A, B)) 2922 if (N0->getOperand(0) == N1->getOperand(0) && ShOp.getNode()) { 2923 SDValue NewNode = DAG.getNode(N->getOpcode(), SDLoc(N), VT, 2924 N0->getOperand(1), N1->getOperand(1)); 2925 AddToWorklist(NewNode.getNode()); 2926 return DAG.getVectorShuffle(VT, SDLoc(N), ShOp, NewNode, 2927 SVN0->getMask()); 2928 } 2929 } 2930 } 2931 2932 return SDValue(); 2933 } 2934 2935 /// This contains all DAGCombine rules which reduce two values combined by 2936 /// an And operation to a single value. This makes them reusable in the context 2937 /// of visitSELECT(). Rules involving constants are not included as 2938 /// visitSELECT() already handles those cases. 2939 SDValue DAGCombiner::visitANDLike(SDValue N0, SDValue N1, 2940 SDNode *LocReference) { 2941 EVT VT = N1.getValueType(); 2942 2943 // fold (and x, undef) -> 0 2944 if (N0.isUndef() || N1.isUndef()) 2945 return DAG.getConstant(0, SDLoc(LocReference), VT); 2946 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y)) 2947 SDValue LL, LR, RL, RR, CC0, CC1; 2948 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){ 2949 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get(); 2950 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get(); 2951 2952 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 && 2953 LL.getValueType().isInteger()) { 2954 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0) 2955 if (isNullConstant(LR) && Op1 == ISD::SETEQ) { 2956 EVT CCVT = getSetCCResultType(LR.getValueType()); 2957 if (VT == CCVT || (!LegalOperations && VT == MVT::i1)) { 2958 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(N0), 2959 LR.getValueType(), LL, RL); 2960 AddToWorklist(ORNode.getNode()); 2961 return DAG.getSetCC(SDLoc(LocReference), VT, ORNode, LR, Op1); 2962 } 2963 } 2964 if (isAllOnesConstant(LR)) { 2965 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1) 2966 if (Op1 == ISD::SETEQ) { 2967 EVT CCVT = getSetCCResultType(LR.getValueType()); 2968 if (VT == CCVT || (!LegalOperations && VT == MVT::i1)) { 2969 SDValue ANDNode = DAG.getNode(ISD::AND, SDLoc(N0), 2970 LR.getValueType(), LL, RL); 2971 AddToWorklist(ANDNode.getNode()); 2972 return DAG.getSetCC(SDLoc(LocReference), VT, ANDNode, LR, Op1); 2973 } 2974 } 2975 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1) 2976 if (Op1 == ISD::SETGT) { 2977 EVT CCVT = getSetCCResultType(LR.getValueType()); 2978 if (VT == CCVT || (!LegalOperations && VT == MVT::i1)) { 2979 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(N0), 2980 LR.getValueType(), LL, RL); 2981 AddToWorklist(ORNode.getNode()); 2982 return DAG.getSetCC(SDLoc(LocReference), VT, ORNode, LR, Op1); 2983 } 2984 } 2985 } 2986 } 2987 // Simplify (and (setne X, 0), (setne X, -1)) -> (setuge (add X, 1), 2) 2988 if (LL == RL && isa<ConstantSDNode>(LR) && isa<ConstantSDNode>(RR) && 2989 Op0 == Op1 && LL.getValueType().isInteger() && 2990 Op0 == ISD::SETNE && ((isNullConstant(LR) && isAllOnesConstant(RR)) || 2991 (isAllOnesConstant(LR) && isNullConstant(RR)))) { 2992 EVT CCVT = getSetCCResultType(LL.getValueType()); 2993 if (VT == CCVT || (!LegalOperations && VT == MVT::i1)) { 2994 SDLoc DL(N0); 2995 SDValue ADDNode = DAG.getNode(ISD::ADD, DL, LL.getValueType(), 2996 LL, DAG.getConstant(1, DL, 2997 LL.getValueType())); 2998 AddToWorklist(ADDNode.getNode()); 2999 return DAG.getSetCC(SDLoc(LocReference), VT, ADDNode, 3000 DAG.getConstant(2, DL, LL.getValueType()), 3001 ISD::SETUGE); 3002 } 3003 } 3004 // canonicalize equivalent to ll == rl 3005 if (LL == RR && LR == RL) { 3006 Op1 = ISD::getSetCCSwappedOperands(Op1); 3007 std::swap(RL, RR); 3008 } 3009 if (LL == RL && LR == RR) { 3010 bool isInteger = LL.getValueType().isInteger(); 3011 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger); 3012 if (Result != ISD::SETCC_INVALID && 3013 (!LegalOperations || 3014 (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) && 3015 TLI.isOperationLegal(ISD::SETCC, LL.getValueType())))) { 3016 EVT CCVT = getSetCCResultType(LL.getValueType()); 3017 if (N0.getValueType() == CCVT || 3018 (!LegalOperations && N0.getValueType() == MVT::i1)) 3019 return DAG.getSetCC(SDLoc(LocReference), N0.getValueType(), 3020 LL, LR, Result); 3021 } 3022 } 3023 } 3024 3025 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL && 3026 VT.getSizeInBits() <= 64) { 3027 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 3028 APInt ADDC = ADDI->getAPIntValue(); 3029 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) { 3030 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal 3031 // immediate for an add, but it is legal if its top c2 bits are set, 3032 // transform the ADD so the immediate doesn't need to be materialized 3033 // in a register. 3034 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) { 3035 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(), 3036 SRLI->getZExtValue()); 3037 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) { 3038 ADDC |= Mask; 3039 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) { 3040 SDLoc DL(N0); 3041 SDValue NewAdd = 3042 DAG.getNode(ISD::ADD, DL, VT, 3043 N0.getOperand(0), DAG.getConstant(ADDC, DL, VT)); 3044 CombineTo(N0.getNode(), NewAdd); 3045 // Return N so it doesn't get rechecked! 3046 return SDValue(LocReference, 0); 3047 } 3048 } 3049 } 3050 } 3051 } 3052 } 3053 3054 // Reduce bit extract of low half of an integer to the narrower type. 3055 // (and (srl i64:x, K), KMask) -> 3056 // (i64 zero_extend (and (srl (i32 (trunc i64:x)), K)), KMask) 3057 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) { 3058 if (ConstantSDNode *CAnd = dyn_cast<ConstantSDNode>(N1)) { 3059 if (ConstantSDNode *CShift = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 3060 unsigned Size = VT.getSizeInBits(); 3061 const APInt &AndMask = CAnd->getAPIntValue(); 3062 unsigned ShiftBits = CShift->getZExtValue(); 3063 3064 // Bail out, this node will probably disappear anyway. 3065 if (ShiftBits == 0) 3066 return SDValue(); 3067 3068 unsigned MaskBits = AndMask.countTrailingOnes(); 3069 EVT HalfVT = EVT::getIntegerVT(*DAG.getContext(), Size / 2); 3070 3071 if (APIntOps::isMask(AndMask) && 3072 // Required bits must not span the two halves of the integer and 3073 // must fit in the half size type. 3074 (ShiftBits + MaskBits <= Size / 2) && 3075 TLI.isNarrowingProfitable(VT, HalfVT) && 3076 TLI.isTypeDesirableForOp(ISD::AND, HalfVT) && 3077 TLI.isTypeDesirableForOp(ISD::SRL, HalfVT) && 3078 TLI.isTruncateFree(VT, HalfVT) && 3079 TLI.isZExtFree(HalfVT, VT)) { 3080 // The isNarrowingProfitable is to avoid regressions on PPC and 3081 // AArch64 which match a few 64-bit bit insert / bit extract patterns 3082 // on downstream users of this. Those patterns could probably be 3083 // extended to handle extensions mixed in. 3084 3085 SDValue SL(N0); 3086 assert(MaskBits <= Size); 3087 3088 // Extracting the highest bit of the low half. 3089 EVT ShiftVT = TLI.getShiftAmountTy(HalfVT, DAG.getDataLayout()); 3090 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SL, HalfVT, 3091 N0.getOperand(0)); 3092 3093 SDValue NewMask = DAG.getConstant(AndMask.trunc(Size / 2), SL, HalfVT); 3094 SDValue ShiftK = DAG.getConstant(ShiftBits, SL, ShiftVT); 3095 SDValue Shift = DAG.getNode(ISD::SRL, SL, HalfVT, Trunc, ShiftK); 3096 SDValue And = DAG.getNode(ISD::AND, SL, HalfVT, Shift, NewMask); 3097 return DAG.getNode(ISD::ZERO_EXTEND, SL, VT, And); 3098 } 3099 } 3100 } 3101 } 3102 3103 return SDValue(); 3104 } 3105 3106 bool DAGCombiner::isAndLoadExtLoad(ConstantSDNode *AndC, LoadSDNode *LoadN, 3107 EVT LoadResultTy, EVT &ExtVT, EVT &LoadedVT, 3108 bool &NarrowLoad) { 3109 uint32_t ActiveBits = AndC->getAPIntValue().getActiveBits(); 3110 3111 if (ActiveBits == 0 || !APIntOps::isMask(ActiveBits, AndC->getAPIntValue())) 3112 return false; 3113 3114 ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits); 3115 LoadedVT = LoadN->getMemoryVT(); 3116 3117 if (ExtVT == LoadedVT && 3118 (!LegalOperations || 3119 TLI.isLoadExtLegal(ISD::ZEXTLOAD, LoadResultTy, ExtVT))) { 3120 // ZEXTLOAD will match without needing to change the size of the value being 3121 // loaded. 3122 NarrowLoad = false; 3123 return true; 3124 } 3125 3126 // Do not change the width of a volatile load. 3127 if (LoadN->isVolatile()) 3128 return false; 3129 3130 // Do not generate loads of non-round integer types since these can 3131 // be expensive (and would be wrong if the type is not byte sized). 3132 if (!LoadedVT.bitsGT(ExtVT) || !ExtVT.isRound()) 3133 return false; 3134 3135 if (LegalOperations && 3136 !TLI.isLoadExtLegal(ISD::ZEXTLOAD, LoadResultTy, ExtVT)) 3137 return false; 3138 3139 if (!TLI.shouldReduceLoadWidth(LoadN, ISD::ZEXTLOAD, ExtVT)) 3140 return false; 3141 3142 NarrowLoad = true; 3143 return true; 3144 } 3145 3146 SDValue DAGCombiner::visitAND(SDNode *N) { 3147 SDValue N0 = N->getOperand(0); 3148 SDValue N1 = N->getOperand(1); 3149 EVT VT = N1.getValueType(); 3150 3151 // x & x --> x 3152 if (N0 == N1) 3153 return N0; 3154 3155 // fold vector ops 3156 if (VT.isVector()) { 3157 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 3158 return FoldedVOp; 3159 3160 // fold (and x, 0) -> 0, vector edition 3161 if (ISD::isBuildVectorAllZeros(N0.getNode())) 3162 // do not return N0, because undef node may exist in N0 3163 return DAG.getConstant(APInt::getNullValue(N0.getScalarValueSizeInBits()), 3164 SDLoc(N), N0.getValueType()); 3165 if (ISD::isBuildVectorAllZeros(N1.getNode())) 3166 // do not return N1, because undef node may exist in N1 3167 return DAG.getConstant(APInt::getNullValue(N1.getScalarValueSizeInBits()), 3168 SDLoc(N), N1.getValueType()); 3169 3170 // fold (and x, -1) -> x, vector edition 3171 if (ISD::isBuildVectorAllOnes(N0.getNode())) 3172 return N1; 3173 if (ISD::isBuildVectorAllOnes(N1.getNode())) 3174 return N0; 3175 } 3176 3177 // fold (and c1, c2) -> c1&c2 3178 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 3179 ConstantSDNode *N1C = isConstOrConstSplat(N1); 3180 if (N0C && N1C && !N1C->isOpaque()) 3181 return DAG.FoldConstantArithmetic(ISD::AND, SDLoc(N), VT, N0C, N1C); 3182 // canonicalize constant to RHS 3183 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 3184 !DAG.isConstantIntBuildVectorOrConstantInt(N1)) 3185 return DAG.getNode(ISD::AND, SDLoc(N), VT, N1, N0); 3186 // fold (and x, -1) -> x 3187 if (isAllOnesConstant(N1)) 3188 return N0; 3189 // if (and x, c) is known to be zero, return 0 3190 unsigned BitWidth = VT.getScalarSizeInBits(); 3191 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0), 3192 APInt::getAllOnesValue(BitWidth))) 3193 return DAG.getConstant(0, SDLoc(N), VT); 3194 // reassociate and 3195 if (SDValue RAND = ReassociateOps(ISD::AND, SDLoc(N), N0, N1)) 3196 return RAND; 3197 // fold (and (or x, C), D) -> D if (C & D) == D 3198 if (N1C && N0.getOpcode() == ISD::OR) 3199 if (ConstantSDNode *ORI = isConstOrConstSplat(N0.getOperand(1))) 3200 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue()) 3201 return N1; 3202 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits. 3203 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) { 3204 SDValue N0Op0 = N0.getOperand(0); 3205 APInt Mask = ~N1C->getAPIntValue(); 3206 Mask = Mask.trunc(N0Op0.getScalarValueSizeInBits()); 3207 if (DAG.MaskedValueIsZero(N0Op0, Mask)) { 3208 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), 3209 N0.getValueType(), N0Op0); 3210 3211 // Replace uses of the AND with uses of the Zero extend node. 3212 CombineTo(N, Zext); 3213 3214 // We actually want to replace all uses of the any_extend with the 3215 // zero_extend, to avoid duplicating things. This will later cause this 3216 // AND to be folded. 3217 CombineTo(N0.getNode(), Zext); 3218 return SDValue(N, 0); // Return N so it doesn't get rechecked! 3219 } 3220 } 3221 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) -> 3222 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must 3223 // already be zero by virtue of the width of the base type of the load. 3224 // 3225 // the 'X' node here can either be nothing or an extract_vector_elt to catch 3226 // more cases. 3227 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT && 3228 N0.getValueSizeInBits() == N0.getOperand(0).getScalarValueSizeInBits() && 3229 N0.getOperand(0).getOpcode() == ISD::LOAD && 3230 N0.getOperand(0).getResNo() == 0) || 3231 (N0.getOpcode() == ISD::LOAD && N0.getResNo() == 0)) { 3232 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ? 3233 N0 : N0.getOperand(0) ); 3234 3235 // Get the constant (if applicable) the zero'th operand is being ANDed with. 3236 // This can be a pure constant or a vector splat, in which case we treat the 3237 // vector as a scalar and use the splat value. 3238 APInt Constant = APInt::getNullValue(1); 3239 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) { 3240 Constant = C->getAPIntValue(); 3241 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) { 3242 APInt SplatValue, SplatUndef; 3243 unsigned SplatBitSize; 3244 bool HasAnyUndefs; 3245 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef, 3246 SplatBitSize, HasAnyUndefs); 3247 if (IsSplat) { 3248 // Undef bits can contribute to a possible optimisation if set, so 3249 // set them. 3250 SplatValue |= SplatUndef; 3251 3252 // The splat value may be something like "0x00FFFFFF", which means 0 for 3253 // the first vector value and FF for the rest, repeating. We need a mask 3254 // that will apply equally to all members of the vector, so AND all the 3255 // lanes of the constant together. 3256 EVT VT = Vector->getValueType(0); 3257 unsigned BitWidth = VT.getScalarSizeInBits(); 3258 3259 // If the splat value has been compressed to a bitlength lower 3260 // than the size of the vector lane, we need to re-expand it to 3261 // the lane size. 3262 if (BitWidth > SplatBitSize) 3263 for (SplatValue = SplatValue.zextOrTrunc(BitWidth); 3264 SplatBitSize < BitWidth; 3265 SplatBitSize = SplatBitSize * 2) 3266 SplatValue |= SplatValue.shl(SplatBitSize); 3267 3268 // Make sure that variable 'Constant' is only set if 'SplatBitSize' is a 3269 // multiple of 'BitWidth'. Otherwise, we could propagate a wrong value. 3270 if (SplatBitSize % BitWidth == 0) { 3271 Constant = APInt::getAllOnesValue(BitWidth); 3272 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i) 3273 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth); 3274 } 3275 } 3276 } 3277 3278 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is 3279 // actually legal and isn't going to get expanded, else this is a false 3280 // optimisation. 3281 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD, 3282 Load->getValueType(0), 3283 Load->getMemoryVT()); 3284 3285 // Resize the constant to the same size as the original memory access before 3286 // extension. If it is still the AllOnesValue then this AND is completely 3287 // unneeded. 3288 Constant = Constant.zextOrTrunc(Load->getMemoryVT().getScalarSizeInBits()); 3289 3290 bool B; 3291 switch (Load->getExtensionType()) { 3292 default: B = false; break; 3293 case ISD::EXTLOAD: B = CanZextLoadProfitably; break; 3294 case ISD::ZEXTLOAD: 3295 case ISD::NON_EXTLOAD: B = true; break; 3296 } 3297 3298 if (B && Constant.isAllOnesValue()) { 3299 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to 3300 // preserve semantics once we get rid of the AND. 3301 SDValue NewLoad(Load, 0); 3302 if (Load->getExtensionType() == ISD::EXTLOAD) { 3303 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD, 3304 Load->getValueType(0), SDLoc(Load), 3305 Load->getChain(), Load->getBasePtr(), 3306 Load->getOffset(), Load->getMemoryVT(), 3307 Load->getMemOperand()); 3308 // Replace uses of the EXTLOAD with the new ZEXTLOAD. 3309 if (Load->getNumValues() == 3) { 3310 // PRE/POST_INC loads have 3 values. 3311 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1), 3312 NewLoad.getValue(2) }; 3313 CombineTo(Load, To, 3, true); 3314 } else { 3315 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1)); 3316 } 3317 } 3318 3319 // Fold the AND away, taking care not to fold to the old load node if we 3320 // replaced it. 3321 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0); 3322 3323 return SDValue(N, 0); // Return N so it doesn't get rechecked! 3324 } 3325 } 3326 3327 // fold (and (load x), 255) -> (zextload x, i8) 3328 // fold (and (extload x, i16), 255) -> (zextload x, i8) 3329 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8) 3330 if (!VT.isVector() && N1C && (N0.getOpcode() == ISD::LOAD || 3331 (N0.getOpcode() == ISD::ANY_EXTEND && 3332 N0.getOperand(0).getOpcode() == ISD::LOAD))) { 3333 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND; 3334 LoadSDNode *LN0 = HasAnyExt 3335 ? cast<LoadSDNode>(N0.getOperand(0)) 3336 : cast<LoadSDNode>(N0); 3337 if (LN0->getExtensionType() != ISD::SEXTLOAD && 3338 LN0->isUnindexed() && N0.hasOneUse() && SDValue(LN0, 0).hasOneUse()) { 3339 auto NarrowLoad = false; 3340 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT; 3341 EVT ExtVT, LoadedVT; 3342 if (isAndLoadExtLoad(N1C, LN0, LoadResultTy, ExtVT, LoadedVT, 3343 NarrowLoad)) { 3344 if (!NarrowLoad) { 3345 SDValue NewLoad = 3346 DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy, 3347 LN0->getChain(), LN0->getBasePtr(), ExtVT, 3348 LN0->getMemOperand()); 3349 AddToWorklist(N); 3350 CombineTo(LN0, NewLoad, NewLoad.getValue(1)); 3351 return SDValue(N, 0); // Return N so it doesn't get rechecked! 3352 } else { 3353 EVT PtrType = LN0->getOperand(1).getValueType(); 3354 3355 unsigned Alignment = LN0->getAlignment(); 3356 SDValue NewPtr = LN0->getBasePtr(); 3357 3358 // For big endian targets, we need to add an offset to the pointer 3359 // to load the correct bytes. For little endian systems, we merely 3360 // need to read fewer bytes from the same pointer. 3361 if (DAG.getDataLayout().isBigEndian()) { 3362 unsigned LVTStoreBytes = LoadedVT.getStoreSize(); 3363 unsigned EVTStoreBytes = ExtVT.getStoreSize(); 3364 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes; 3365 SDLoc DL(LN0); 3366 NewPtr = DAG.getNode(ISD::ADD, DL, PtrType, 3367 NewPtr, DAG.getConstant(PtrOff, DL, PtrType)); 3368 Alignment = MinAlign(Alignment, PtrOff); 3369 } 3370 3371 AddToWorklist(NewPtr.getNode()); 3372 3373 SDValue Load = DAG.getExtLoad( 3374 ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy, LN0->getChain(), NewPtr, 3375 LN0->getPointerInfo(), ExtVT, Alignment, 3376 LN0->getMemOperand()->getFlags(), LN0->getAAInfo()); 3377 AddToWorklist(N); 3378 CombineTo(LN0, Load, Load.getValue(1)); 3379 return SDValue(N, 0); // Return N so it doesn't get rechecked! 3380 } 3381 } 3382 } 3383 } 3384 3385 if (SDValue Combined = visitANDLike(N0, N1, N)) 3386 return Combined; 3387 3388 // Simplify: (and (op x...), (op y...)) -> (op (and x, y)) 3389 if (N0.getOpcode() == N1.getOpcode()) 3390 if (SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N)) 3391 return Tmp; 3392 3393 // Masking the negated extension of a boolean is just the zero-extended 3394 // boolean: 3395 // and (sub 0, zext(bool X)), 1 --> zext(bool X) 3396 // and (sub 0, sext(bool X)), 1 --> zext(bool X) 3397 // 3398 // Note: the SimplifyDemandedBits fold below can make an information-losing 3399 // transform, and then we have no way to find this better fold. 3400 if (N1C && N1C->isOne() && N0.getOpcode() == ISD::SUB) { 3401 ConstantSDNode *SubLHS = isConstOrConstSplat(N0.getOperand(0)); 3402 SDValue SubRHS = N0.getOperand(1); 3403 if (SubLHS && SubLHS->isNullValue()) { 3404 if (SubRHS.getOpcode() == ISD::ZERO_EXTEND && 3405 SubRHS.getOperand(0).getScalarValueSizeInBits() == 1) 3406 return SubRHS; 3407 if (SubRHS.getOpcode() == ISD::SIGN_EXTEND && 3408 SubRHS.getOperand(0).getScalarValueSizeInBits() == 1) 3409 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, SubRHS.getOperand(0)); 3410 } 3411 } 3412 3413 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1) 3414 // fold (and (sra)) -> (and (srl)) when possible. 3415 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0))) 3416 return SDValue(N, 0); 3417 3418 // fold (zext_inreg (extload x)) -> (zextload x) 3419 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) { 3420 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 3421 EVT MemVT = LN0->getMemoryVT(); 3422 // If we zero all the possible extended bits, then we can turn this into 3423 // a zextload if we are running before legalize or the operation is legal. 3424 unsigned BitWidth = N1.getScalarValueSizeInBits(); 3425 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth, 3426 BitWidth - MemVT.getScalarSizeInBits())) && 3427 ((!LegalOperations && !LN0->isVolatile()) || 3428 TLI.isLoadExtLegal(ISD::ZEXTLOAD, VT, MemVT))) { 3429 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT, 3430 LN0->getChain(), LN0->getBasePtr(), 3431 MemVT, LN0->getMemOperand()); 3432 AddToWorklist(N); 3433 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); 3434 return SDValue(N, 0); // Return N so it doesn't get rechecked! 3435 } 3436 } 3437 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use 3438 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && 3439 N0.hasOneUse()) { 3440 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 3441 EVT MemVT = LN0->getMemoryVT(); 3442 // If we zero all the possible extended bits, then we can turn this into 3443 // a zextload if we are running before legalize or the operation is legal. 3444 unsigned BitWidth = N1.getScalarValueSizeInBits(); 3445 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth, 3446 BitWidth - MemVT.getScalarSizeInBits())) && 3447 ((!LegalOperations && !LN0->isVolatile()) || 3448 TLI.isLoadExtLegal(ISD::ZEXTLOAD, VT, MemVT))) { 3449 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT, 3450 LN0->getChain(), LN0->getBasePtr(), 3451 MemVT, LN0->getMemOperand()); 3452 AddToWorklist(N); 3453 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); 3454 return SDValue(N, 0); // Return N so it doesn't get rechecked! 3455 } 3456 } 3457 // fold (and (or (srl N, 8), (shl N, 8)), 0xffff) -> (srl (bswap N), const) 3458 if (N1C && N1C->getAPIntValue() == 0xffff && N0.getOpcode() == ISD::OR) { 3459 if (SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0), 3460 N0.getOperand(1), false)) 3461 return BSwap; 3462 } 3463 3464 return SDValue(); 3465 } 3466 3467 /// Match (a >> 8) | (a << 8) as (bswap a) >> 16. 3468 SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1, 3469 bool DemandHighBits) { 3470 if (!LegalOperations) 3471 return SDValue(); 3472 3473 EVT VT = N->getValueType(0); 3474 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16) 3475 return SDValue(); 3476 if (!TLI.isOperationLegal(ISD::BSWAP, VT)) 3477 return SDValue(); 3478 3479 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00) 3480 bool LookPassAnd0 = false; 3481 bool LookPassAnd1 = false; 3482 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL) 3483 std::swap(N0, N1); 3484 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL) 3485 std::swap(N0, N1); 3486 if (N0.getOpcode() == ISD::AND) { 3487 if (!N0.getNode()->hasOneUse()) 3488 return SDValue(); 3489 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 3490 if (!N01C || N01C->getZExtValue() != 0xFF00) 3491 return SDValue(); 3492 N0 = N0.getOperand(0); 3493 LookPassAnd0 = true; 3494 } 3495 3496 if (N1.getOpcode() == ISD::AND) { 3497 if (!N1.getNode()->hasOneUse()) 3498 return SDValue(); 3499 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); 3500 if (!N11C || N11C->getZExtValue() != 0xFF) 3501 return SDValue(); 3502 N1 = N1.getOperand(0); 3503 LookPassAnd1 = true; 3504 } 3505 3506 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL) 3507 std::swap(N0, N1); 3508 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL) 3509 return SDValue(); 3510 if (!N0.getNode()->hasOneUse() || !N1.getNode()->hasOneUse()) 3511 return SDValue(); 3512 3513 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 3514 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); 3515 if (!N01C || !N11C) 3516 return SDValue(); 3517 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8) 3518 return SDValue(); 3519 3520 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8) 3521 SDValue N00 = N0->getOperand(0); 3522 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) { 3523 if (!N00.getNode()->hasOneUse()) 3524 return SDValue(); 3525 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1)); 3526 if (!N001C || N001C->getZExtValue() != 0xFF) 3527 return SDValue(); 3528 N00 = N00.getOperand(0); 3529 LookPassAnd0 = true; 3530 } 3531 3532 SDValue N10 = N1->getOperand(0); 3533 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) { 3534 if (!N10.getNode()->hasOneUse()) 3535 return SDValue(); 3536 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1)); 3537 if (!N101C || N101C->getZExtValue() != 0xFF00) 3538 return SDValue(); 3539 N10 = N10.getOperand(0); 3540 LookPassAnd1 = true; 3541 } 3542 3543 if (N00 != N10) 3544 return SDValue(); 3545 3546 // Make sure everything beyond the low halfword gets set to zero since the SRL 3547 // 16 will clear the top bits. 3548 unsigned OpSizeInBits = VT.getSizeInBits(); 3549 if (DemandHighBits && OpSizeInBits > 16) { 3550 // If the left-shift isn't masked out then the only way this is a bswap is 3551 // if all bits beyond the low 8 are 0. In that case the entire pattern 3552 // reduces to a left shift anyway: leave it for other parts of the combiner. 3553 if (!LookPassAnd0) 3554 return SDValue(); 3555 3556 // However, if the right shift isn't masked out then it might be because 3557 // it's not needed. See if we can spot that too. 3558 if (!LookPassAnd1 && 3559 !DAG.MaskedValueIsZero( 3560 N10, APInt::getHighBitsSet(OpSizeInBits, OpSizeInBits - 16))) 3561 return SDValue(); 3562 } 3563 3564 SDValue Res = DAG.getNode(ISD::BSWAP, SDLoc(N), VT, N00); 3565 if (OpSizeInBits > 16) { 3566 SDLoc DL(N); 3567 Res = DAG.getNode(ISD::SRL, DL, VT, Res, 3568 DAG.getConstant(OpSizeInBits - 16, DL, 3569 getShiftAmountTy(VT))); 3570 } 3571 return Res; 3572 } 3573 3574 /// Return true if the specified node is an element that makes up a 32-bit 3575 /// packed halfword byteswap. 3576 /// ((x & 0x000000ff) << 8) | 3577 /// ((x & 0x0000ff00) >> 8) | 3578 /// ((x & 0x00ff0000) << 8) | 3579 /// ((x & 0xff000000) >> 8) 3580 static bool isBSwapHWordElement(SDValue N, MutableArrayRef<SDNode *> Parts) { 3581 if (!N.getNode()->hasOneUse()) 3582 return false; 3583 3584 unsigned Opc = N.getOpcode(); 3585 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL) 3586 return false; 3587 3588 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1)); 3589 if (!N1C) 3590 return false; 3591 3592 unsigned Num; 3593 switch (N1C->getZExtValue()) { 3594 default: 3595 return false; 3596 case 0xFF: Num = 0; break; 3597 case 0xFF00: Num = 1; break; 3598 case 0xFF0000: Num = 2; break; 3599 case 0xFF000000: Num = 3; break; 3600 } 3601 3602 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00). 3603 SDValue N0 = N.getOperand(0); 3604 if (Opc == ISD::AND) { 3605 if (Num == 0 || Num == 2) { 3606 // (x >> 8) & 0xff 3607 // (x >> 8) & 0xff0000 3608 if (N0.getOpcode() != ISD::SRL) 3609 return false; 3610 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 3611 if (!C || C->getZExtValue() != 8) 3612 return false; 3613 } else { 3614 // (x << 8) & 0xff00 3615 // (x << 8) & 0xff000000 3616 if (N0.getOpcode() != ISD::SHL) 3617 return false; 3618 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 3619 if (!C || C->getZExtValue() != 8) 3620 return false; 3621 } 3622 } else if (Opc == ISD::SHL) { 3623 // (x & 0xff) << 8 3624 // (x & 0xff0000) << 8 3625 if (Num != 0 && Num != 2) 3626 return false; 3627 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1)); 3628 if (!C || C->getZExtValue() != 8) 3629 return false; 3630 } else { // Opc == ISD::SRL 3631 // (x & 0xff00) >> 8 3632 // (x & 0xff000000) >> 8 3633 if (Num != 1 && Num != 3) 3634 return false; 3635 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1)); 3636 if (!C || C->getZExtValue() != 8) 3637 return false; 3638 } 3639 3640 if (Parts[Num]) 3641 return false; 3642 3643 Parts[Num] = N0.getOperand(0).getNode(); 3644 return true; 3645 } 3646 3647 /// Match a 32-bit packed halfword bswap. That is 3648 /// ((x & 0x000000ff) << 8) | 3649 /// ((x & 0x0000ff00) >> 8) | 3650 /// ((x & 0x00ff0000) << 8) | 3651 /// ((x & 0xff000000) >> 8) 3652 /// => (rotl (bswap x), 16) 3653 SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) { 3654 if (!LegalOperations) 3655 return SDValue(); 3656 3657 EVT VT = N->getValueType(0); 3658 if (VT != MVT::i32) 3659 return SDValue(); 3660 if (!TLI.isOperationLegal(ISD::BSWAP, VT)) 3661 return SDValue(); 3662 3663 // Look for either 3664 // (or (or (and), (and)), (or (and), (and))) 3665 // (or (or (or (and), (and)), (and)), (and)) 3666 if (N0.getOpcode() != ISD::OR) 3667 return SDValue(); 3668 SDValue N00 = N0.getOperand(0); 3669 SDValue N01 = N0.getOperand(1); 3670 SDNode *Parts[4] = {}; 3671 3672 if (N1.getOpcode() == ISD::OR && 3673 N00.getNumOperands() == 2 && N01.getNumOperands() == 2) { 3674 // (or (or (and), (and)), (or (and), (and))) 3675 SDValue N000 = N00.getOperand(0); 3676 if (!isBSwapHWordElement(N000, Parts)) 3677 return SDValue(); 3678 3679 SDValue N001 = N00.getOperand(1); 3680 if (!isBSwapHWordElement(N001, Parts)) 3681 return SDValue(); 3682 SDValue N010 = N01.getOperand(0); 3683 if (!isBSwapHWordElement(N010, Parts)) 3684 return SDValue(); 3685 SDValue N011 = N01.getOperand(1); 3686 if (!isBSwapHWordElement(N011, Parts)) 3687 return SDValue(); 3688 } else { 3689 // (or (or (or (and), (and)), (and)), (and)) 3690 if (!isBSwapHWordElement(N1, Parts)) 3691 return SDValue(); 3692 if (!isBSwapHWordElement(N01, Parts)) 3693 return SDValue(); 3694 if (N00.getOpcode() != ISD::OR) 3695 return SDValue(); 3696 SDValue N000 = N00.getOperand(0); 3697 if (!isBSwapHWordElement(N000, Parts)) 3698 return SDValue(); 3699 SDValue N001 = N00.getOperand(1); 3700 if (!isBSwapHWordElement(N001, Parts)) 3701 return SDValue(); 3702 } 3703 3704 // Make sure the parts are all coming from the same node. 3705 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3]) 3706 return SDValue(); 3707 3708 SDLoc DL(N); 3709 SDValue BSwap = DAG.getNode(ISD::BSWAP, DL, VT, 3710 SDValue(Parts[0], 0)); 3711 3712 // Result of the bswap should be rotated by 16. If it's not legal, then 3713 // do (x << 16) | (x >> 16). 3714 SDValue ShAmt = DAG.getConstant(16, DL, getShiftAmountTy(VT)); 3715 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT)) 3716 return DAG.getNode(ISD::ROTL, DL, VT, BSwap, ShAmt); 3717 if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT)) 3718 return DAG.getNode(ISD::ROTR, DL, VT, BSwap, ShAmt); 3719 return DAG.getNode(ISD::OR, DL, VT, 3720 DAG.getNode(ISD::SHL, DL, VT, BSwap, ShAmt), 3721 DAG.getNode(ISD::SRL, DL, VT, BSwap, ShAmt)); 3722 } 3723 3724 /// This contains all DAGCombine rules which reduce two values combined by 3725 /// an Or operation to a single value \see visitANDLike(). 3726 SDValue DAGCombiner::visitORLike(SDValue N0, SDValue N1, SDNode *LocReference) { 3727 EVT VT = N1.getValueType(); 3728 // fold (or x, undef) -> -1 3729 if (!LegalOperations && 3730 (N0.isUndef() || N1.isUndef())) { 3731 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT; 3732 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), 3733 SDLoc(LocReference), VT); 3734 } 3735 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y)) 3736 SDValue LL, LR, RL, RR, CC0, CC1; 3737 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){ 3738 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get(); 3739 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get(); 3740 3741 if (LR == RR && Op0 == Op1 && LL.getValueType().isInteger()) { 3742 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0) 3743 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0) 3744 if (isNullConstant(LR) && (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) { 3745 EVT CCVT = getSetCCResultType(LR.getValueType()); 3746 if (VT == CCVT || (!LegalOperations && VT == MVT::i1)) { 3747 SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(LR), 3748 LR.getValueType(), LL, RL); 3749 AddToWorklist(ORNode.getNode()); 3750 return DAG.getSetCC(SDLoc(LocReference), VT, ORNode, LR, Op1); 3751 } 3752 } 3753 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1) 3754 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1) 3755 if (isAllOnesConstant(LR) && (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) { 3756 EVT CCVT = getSetCCResultType(LR.getValueType()); 3757 if (VT == CCVT || (!LegalOperations && VT == MVT::i1)) { 3758 SDValue ANDNode = DAG.getNode(ISD::AND, SDLoc(LR), 3759 LR.getValueType(), LL, RL); 3760 AddToWorklist(ANDNode.getNode()); 3761 return DAG.getSetCC(SDLoc(LocReference), VT, ANDNode, LR, Op1); 3762 } 3763 } 3764 } 3765 // canonicalize equivalent to ll == rl 3766 if (LL == RR && LR == RL) { 3767 Op1 = ISD::getSetCCSwappedOperands(Op1); 3768 std::swap(RL, RR); 3769 } 3770 if (LL == RL && LR == RR) { 3771 bool isInteger = LL.getValueType().isInteger(); 3772 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger); 3773 if (Result != ISD::SETCC_INVALID && 3774 (!LegalOperations || 3775 (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) && 3776 TLI.isOperationLegal(ISD::SETCC, LL.getValueType())))) { 3777 EVT CCVT = getSetCCResultType(LL.getValueType()); 3778 if (N0.getValueType() == CCVT || 3779 (!LegalOperations && N0.getValueType() == MVT::i1)) 3780 return DAG.getSetCC(SDLoc(LocReference), N0.getValueType(), 3781 LL, LR, Result); 3782 } 3783 } 3784 } 3785 3786 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible. 3787 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == ISD::AND && 3788 // Don't increase # computations. 3789 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) { 3790 // We can only do this xform if we know that bits from X that are set in C2 3791 // but not in C1 are already zero. Likewise for Y. 3792 if (const ConstantSDNode *N0O1C = 3793 getAsNonOpaqueConstant(N0.getOperand(1))) { 3794 if (const ConstantSDNode *N1O1C = 3795 getAsNonOpaqueConstant(N1.getOperand(1))) { 3796 // We can only do this xform if we know that bits from X that are set in 3797 // C2 but not in C1 are already zero. Likewise for Y. 3798 const APInt &LHSMask = N0O1C->getAPIntValue(); 3799 const APInt &RHSMask = N1O1C->getAPIntValue(); 3800 3801 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) && 3802 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) { 3803 SDValue X = DAG.getNode(ISD::OR, SDLoc(N0), VT, 3804 N0.getOperand(0), N1.getOperand(0)); 3805 SDLoc DL(LocReference); 3806 return DAG.getNode(ISD::AND, DL, VT, X, 3807 DAG.getConstant(LHSMask | RHSMask, DL, VT)); 3808 } 3809 } 3810 } 3811 } 3812 3813 // (or (and X, M), (and X, N)) -> (and X, (or M, N)) 3814 if (N0.getOpcode() == ISD::AND && 3815 N1.getOpcode() == ISD::AND && 3816 N0.getOperand(0) == N1.getOperand(0) && 3817 // Don't increase # computations. 3818 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) { 3819 SDValue X = DAG.getNode(ISD::OR, SDLoc(N0), VT, 3820 N0.getOperand(1), N1.getOperand(1)); 3821 return DAG.getNode(ISD::AND, SDLoc(LocReference), VT, N0.getOperand(0), X); 3822 } 3823 3824 return SDValue(); 3825 } 3826 3827 SDValue DAGCombiner::visitOR(SDNode *N) { 3828 SDValue N0 = N->getOperand(0); 3829 SDValue N1 = N->getOperand(1); 3830 EVT VT = N1.getValueType(); 3831 3832 // x | x --> x 3833 if (N0 == N1) 3834 return N0; 3835 3836 // fold vector ops 3837 if (VT.isVector()) { 3838 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 3839 return FoldedVOp; 3840 3841 // fold (or x, 0) -> x, vector edition 3842 if (ISD::isBuildVectorAllZeros(N0.getNode())) 3843 return N1; 3844 if (ISD::isBuildVectorAllZeros(N1.getNode())) 3845 return N0; 3846 3847 // fold (or x, -1) -> -1, vector edition 3848 if (ISD::isBuildVectorAllOnes(N0.getNode())) 3849 // do not return N0, because undef node may exist in N0 3850 return DAG.getConstant( 3851 APInt::getAllOnesValue(N0.getScalarValueSizeInBits()), SDLoc(N), 3852 N0.getValueType()); 3853 if (ISD::isBuildVectorAllOnes(N1.getNode())) 3854 // do not return N1, because undef node may exist in N1 3855 return DAG.getConstant( 3856 APInt::getAllOnesValue(N1.getScalarValueSizeInBits()), SDLoc(N), 3857 N1.getValueType()); 3858 3859 // fold (or (shuf A, V_0, MA), (shuf B, V_0, MB)) -> (shuf A, B, Mask) 3860 // Do this only if the resulting shuffle is legal. 3861 if (isa<ShuffleVectorSDNode>(N0) && 3862 isa<ShuffleVectorSDNode>(N1) && 3863 // Avoid folding a node with illegal type. 3864 TLI.isTypeLegal(VT)) { 3865 bool ZeroN00 = ISD::isBuildVectorAllZeros(N0.getOperand(0).getNode()); 3866 bool ZeroN01 = ISD::isBuildVectorAllZeros(N0.getOperand(1).getNode()); 3867 bool ZeroN10 = ISD::isBuildVectorAllZeros(N1.getOperand(0).getNode()); 3868 bool ZeroN11 = ISD::isBuildVectorAllZeros(N1.getOperand(1).getNode()); 3869 // Ensure both shuffles have a zero input. 3870 if ((ZeroN00 || ZeroN01) && (ZeroN10 || ZeroN11)) { 3871 assert((!ZeroN00 || !ZeroN01) && "Both inputs zero!"); 3872 assert((!ZeroN10 || !ZeroN11) && "Both inputs zero!"); 3873 const ShuffleVectorSDNode *SV0 = cast<ShuffleVectorSDNode>(N0); 3874 const ShuffleVectorSDNode *SV1 = cast<ShuffleVectorSDNode>(N1); 3875 bool CanFold = true; 3876 int NumElts = VT.getVectorNumElements(); 3877 SmallVector<int, 4> Mask(NumElts); 3878 3879 for (int i = 0; i != NumElts; ++i) { 3880 int M0 = SV0->getMaskElt(i); 3881 int M1 = SV1->getMaskElt(i); 3882 3883 // Determine if either index is pointing to a zero vector. 3884 bool M0Zero = M0 < 0 || (ZeroN00 == (M0 < NumElts)); 3885 bool M1Zero = M1 < 0 || (ZeroN10 == (M1 < NumElts)); 3886 3887 // If one element is zero and the otherside is undef, keep undef. 3888 // This also handles the case that both are undef. 3889 if ((M0Zero && M1 < 0) || (M1Zero && M0 < 0)) { 3890 Mask[i] = -1; 3891 continue; 3892 } 3893 3894 // Make sure only one of the elements is zero. 3895 if (M0Zero == M1Zero) { 3896 CanFold = false; 3897 break; 3898 } 3899 3900 assert((M0 >= 0 || M1 >= 0) && "Undef index!"); 3901 3902 // We have a zero and non-zero element. If the non-zero came from 3903 // SV0 make the index a LHS index. If it came from SV1, make it 3904 // a RHS index. We need to mod by NumElts because we don't care 3905 // which operand it came from in the original shuffles. 3906 Mask[i] = M1Zero ? M0 % NumElts : (M1 % NumElts) + NumElts; 3907 } 3908 3909 if (CanFold) { 3910 SDValue NewLHS = ZeroN00 ? N0.getOperand(1) : N0.getOperand(0); 3911 SDValue NewRHS = ZeroN10 ? N1.getOperand(1) : N1.getOperand(0); 3912 3913 bool LegalMask = TLI.isShuffleMaskLegal(Mask, VT); 3914 if (!LegalMask) { 3915 std::swap(NewLHS, NewRHS); 3916 ShuffleVectorSDNode::commuteMask(Mask); 3917 LegalMask = TLI.isShuffleMaskLegal(Mask, VT); 3918 } 3919 3920 if (LegalMask) 3921 return DAG.getVectorShuffle(VT, SDLoc(N), NewLHS, NewRHS, Mask); 3922 } 3923 } 3924 } 3925 } 3926 3927 // fold (or c1, c2) -> c1|c2 3928 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 3929 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 3930 if (N0C && N1C && !N1C->isOpaque()) 3931 return DAG.FoldConstantArithmetic(ISD::OR, SDLoc(N), VT, N0C, N1C); 3932 // canonicalize constant to RHS 3933 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 3934 !DAG.isConstantIntBuildVectorOrConstantInt(N1)) 3935 return DAG.getNode(ISD::OR, SDLoc(N), VT, N1, N0); 3936 // fold (or x, 0) -> x 3937 if (isNullConstant(N1)) 3938 return N0; 3939 // fold (or x, -1) -> -1 3940 if (isAllOnesConstant(N1)) 3941 return N1; 3942 // fold (or x, c) -> c iff (x & ~c) == 0 3943 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue())) 3944 return N1; 3945 3946 if (SDValue Combined = visitORLike(N0, N1, N)) 3947 return Combined; 3948 3949 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16) 3950 if (SDValue BSwap = MatchBSwapHWord(N, N0, N1)) 3951 return BSwap; 3952 if (SDValue BSwap = MatchBSwapHWordLow(N, N0, N1)) 3953 return BSwap; 3954 3955 // reassociate or 3956 if (SDValue ROR = ReassociateOps(ISD::OR, SDLoc(N), N0, N1)) 3957 return ROR; 3958 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2) 3959 // iff (c1 & c2) == 0. 3960 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() && 3961 isa<ConstantSDNode>(N0.getOperand(1))) { 3962 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1)); 3963 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0) { 3964 if (SDValue COR = DAG.FoldConstantArithmetic(ISD::OR, SDLoc(N1), VT, 3965 N1C, C1)) 3966 return DAG.getNode( 3967 ISD::AND, SDLoc(N), VT, 3968 DAG.getNode(ISD::OR, SDLoc(N0), VT, N0.getOperand(0), N1), COR); 3969 return SDValue(); 3970 } 3971 } 3972 // Simplify: (or (op x...), (op y...)) -> (op (or x, y)) 3973 if (N0.getOpcode() == N1.getOpcode()) 3974 if (SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N)) 3975 return Tmp; 3976 3977 // See if this is some rotate idiom. 3978 if (SDNode *Rot = MatchRotate(N0, N1, SDLoc(N))) 3979 return SDValue(Rot, 0); 3980 3981 // Simplify the operands using demanded-bits information. 3982 if (!VT.isVector() && 3983 SimplifyDemandedBits(SDValue(N, 0))) 3984 return SDValue(N, 0); 3985 3986 return SDValue(); 3987 } 3988 3989 /// Match "(X shl/srl V1) & V2" where V2 may not be present. 3990 bool DAGCombiner::MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) { 3991 if (Op.getOpcode() == ISD::AND) { 3992 if (DAG.isConstantIntBuildVectorOrConstantInt(Op.getOperand(1))) { 3993 Mask = Op.getOperand(1); 3994 Op = Op.getOperand(0); 3995 } else { 3996 return false; 3997 } 3998 } 3999 4000 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) { 4001 Shift = Op; 4002 return true; 4003 } 4004 4005 return false; 4006 } 4007 4008 // Return true if we can prove that, whenever Neg and Pos are both in the 4009 // range [0, EltSize), Neg == (Pos == 0 ? 0 : EltSize - Pos). This means that 4010 // for two opposing shifts shift1 and shift2 and a value X with OpBits bits: 4011 // 4012 // (or (shift1 X, Neg), (shift2 X, Pos)) 4013 // 4014 // reduces to a rotate in direction shift2 by Pos or (equivalently) a rotate 4015 // in direction shift1 by Neg. The range [0, EltSize) means that we only need 4016 // to consider shift amounts with defined behavior. 4017 static bool matchRotateSub(SDValue Pos, SDValue Neg, unsigned EltSize) { 4018 // If EltSize is a power of 2 then: 4019 // 4020 // (a) (Pos == 0 ? 0 : EltSize - Pos) == (EltSize - Pos) & (EltSize - 1) 4021 // (b) Neg == Neg & (EltSize - 1) whenever Neg is in [0, EltSize). 4022 // 4023 // So if EltSize is a power of 2 and Neg is (and Neg', EltSize-1), we check 4024 // for the stronger condition: 4025 // 4026 // Neg & (EltSize - 1) == (EltSize - Pos) & (EltSize - 1) [A] 4027 // 4028 // for all Neg and Pos. Since Neg & (EltSize - 1) == Neg' & (EltSize - 1) 4029 // we can just replace Neg with Neg' for the rest of the function. 4030 // 4031 // In other cases we check for the even stronger condition: 4032 // 4033 // Neg == EltSize - Pos [B] 4034 // 4035 // for all Neg and Pos. Note that the (or ...) then invokes undefined 4036 // behavior if Pos == 0 (and consequently Neg == EltSize). 4037 // 4038 // We could actually use [A] whenever EltSize is a power of 2, but the 4039 // only extra cases that it would match are those uninteresting ones 4040 // where Neg and Pos are never in range at the same time. E.g. for 4041 // EltSize == 32, using [A] would allow a Neg of the form (sub 64, Pos) 4042 // as well as (sub 32, Pos), but: 4043 // 4044 // (or (shift1 X, (sub 64, Pos)), (shift2 X, Pos)) 4045 // 4046 // always invokes undefined behavior for 32-bit X. 4047 // 4048 // Below, Mask == EltSize - 1 when using [A] and is all-ones otherwise. 4049 unsigned MaskLoBits = 0; 4050 if (Neg.getOpcode() == ISD::AND && isPowerOf2_64(EltSize)) { 4051 if (ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(1))) { 4052 if (NegC->getAPIntValue() == EltSize - 1) { 4053 Neg = Neg.getOperand(0); 4054 MaskLoBits = Log2_64(EltSize); 4055 } 4056 } 4057 } 4058 4059 // Check whether Neg has the form (sub NegC, NegOp1) for some NegC and NegOp1. 4060 if (Neg.getOpcode() != ISD::SUB) 4061 return false; 4062 ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(0)); 4063 if (!NegC) 4064 return false; 4065 SDValue NegOp1 = Neg.getOperand(1); 4066 4067 // On the RHS of [A], if Pos is Pos' & (EltSize - 1), just replace Pos with 4068 // Pos'. The truncation is redundant for the purpose of the equality. 4069 if (MaskLoBits && Pos.getOpcode() == ISD::AND) 4070 if (ConstantSDNode *PosC = isConstOrConstSplat(Pos.getOperand(1))) 4071 if (PosC->getAPIntValue() == EltSize - 1) 4072 Pos = Pos.getOperand(0); 4073 4074 // The condition we need is now: 4075 // 4076 // (NegC - NegOp1) & Mask == (EltSize - Pos) & Mask 4077 // 4078 // If NegOp1 == Pos then we need: 4079 // 4080 // EltSize & Mask == NegC & Mask 4081 // 4082 // (because "x & Mask" is a truncation and distributes through subtraction). 4083 APInt Width; 4084 if (Pos == NegOp1) 4085 Width = NegC->getAPIntValue(); 4086 4087 // Check for cases where Pos has the form (add NegOp1, PosC) for some PosC. 4088 // Then the condition we want to prove becomes: 4089 // 4090 // (NegC - NegOp1) & Mask == (EltSize - (NegOp1 + PosC)) & Mask 4091 // 4092 // which, again because "x & Mask" is a truncation, becomes: 4093 // 4094 // NegC & Mask == (EltSize - PosC) & Mask 4095 // EltSize & Mask == (NegC + PosC) & Mask 4096 else if (Pos.getOpcode() == ISD::ADD && Pos.getOperand(0) == NegOp1) { 4097 if (ConstantSDNode *PosC = isConstOrConstSplat(Pos.getOperand(1))) 4098 Width = PosC->getAPIntValue() + NegC->getAPIntValue(); 4099 else 4100 return false; 4101 } else 4102 return false; 4103 4104 // Now we just need to check that EltSize & Mask == Width & Mask. 4105 if (MaskLoBits) 4106 // EltSize & Mask is 0 since Mask is EltSize - 1. 4107 return Width.getLoBits(MaskLoBits) == 0; 4108 return Width == EltSize; 4109 } 4110 4111 // A subroutine of MatchRotate used once we have found an OR of two opposite 4112 // shifts of Shifted. If Neg == <operand size> - Pos then the OR reduces 4113 // to both (PosOpcode Shifted, Pos) and (NegOpcode Shifted, Neg), with the 4114 // former being preferred if supported. InnerPos and InnerNeg are Pos and 4115 // Neg with outer conversions stripped away. 4116 SDNode *DAGCombiner::MatchRotatePosNeg(SDValue Shifted, SDValue Pos, 4117 SDValue Neg, SDValue InnerPos, 4118 SDValue InnerNeg, unsigned PosOpcode, 4119 unsigned NegOpcode, const SDLoc &DL) { 4120 // fold (or (shl x, (*ext y)), 4121 // (srl x, (*ext (sub 32, y)))) -> 4122 // (rotl x, y) or (rotr x, (sub 32, y)) 4123 // 4124 // fold (or (shl x, (*ext (sub 32, y))), 4125 // (srl x, (*ext y))) -> 4126 // (rotr x, y) or (rotl x, (sub 32, y)) 4127 EVT VT = Shifted.getValueType(); 4128 if (matchRotateSub(InnerPos, InnerNeg, VT.getScalarSizeInBits())) { 4129 bool HasPos = TLI.isOperationLegalOrCustom(PosOpcode, VT); 4130 return DAG.getNode(HasPos ? PosOpcode : NegOpcode, DL, VT, Shifted, 4131 HasPos ? Pos : Neg).getNode(); 4132 } 4133 4134 return nullptr; 4135 } 4136 4137 // MatchRotate - Handle an 'or' of two operands. If this is one of the many 4138 // idioms for rotate, and if the target supports rotation instructions, generate 4139 // a rot[lr]. 4140 SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, const SDLoc &DL) { 4141 // Must be a legal type. Expanded 'n promoted things won't work with rotates. 4142 EVT VT = LHS.getValueType(); 4143 if (!TLI.isTypeLegal(VT)) return nullptr; 4144 4145 // The target must have at least one rotate flavor. 4146 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT); 4147 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT); 4148 if (!HasROTL && !HasROTR) return nullptr; 4149 4150 // Match "(X shl/srl V1) & V2" where V2 may not be present. 4151 SDValue LHSShift; // The shift. 4152 SDValue LHSMask; // AND value if any. 4153 if (!MatchRotateHalf(LHS, LHSShift, LHSMask)) 4154 return nullptr; // Not part of a rotate. 4155 4156 SDValue RHSShift; // The shift. 4157 SDValue RHSMask; // AND value if any. 4158 if (!MatchRotateHalf(RHS, RHSShift, RHSMask)) 4159 return nullptr; // Not part of a rotate. 4160 4161 if (LHSShift.getOperand(0) != RHSShift.getOperand(0)) 4162 return nullptr; // Not shifting the same value. 4163 4164 if (LHSShift.getOpcode() == RHSShift.getOpcode()) 4165 return nullptr; // Shifts must disagree. 4166 4167 // Canonicalize shl to left side in a shl/srl pair. 4168 if (RHSShift.getOpcode() == ISD::SHL) { 4169 std::swap(LHS, RHS); 4170 std::swap(LHSShift, RHSShift); 4171 std::swap(LHSMask, RHSMask); 4172 } 4173 4174 unsigned EltSizeInBits = VT.getScalarSizeInBits(); 4175 SDValue LHSShiftArg = LHSShift.getOperand(0); 4176 SDValue LHSShiftAmt = LHSShift.getOperand(1); 4177 SDValue RHSShiftArg = RHSShift.getOperand(0); 4178 SDValue RHSShiftAmt = RHSShift.getOperand(1); 4179 4180 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1) 4181 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2) 4182 if (isConstOrConstSplat(LHSShiftAmt) && isConstOrConstSplat(RHSShiftAmt)) { 4183 uint64_t LShVal = isConstOrConstSplat(LHSShiftAmt)->getZExtValue(); 4184 uint64_t RShVal = isConstOrConstSplat(RHSShiftAmt)->getZExtValue(); 4185 if ((LShVal + RShVal) != EltSizeInBits) 4186 return nullptr; 4187 4188 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, 4189 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt); 4190 4191 // If there is an AND of either shifted operand, apply it to the result. 4192 if (LHSMask.getNode() || RHSMask.getNode()) { 4193 APInt AllBits = APInt::getAllOnesValue(EltSizeInBits); 4194 SDValue Mask = DAG.getConstant(AllBits, DL, VT); 4195 4196 if (LHSMask.getNode()) { 4197 APInt RHSBits = APInt::getLowBitsSet(EltSizeInBits, LShVal); 4198 Mask = DAG.getNode(ISD::AND, DL, VT, Mask, 4199 DAG.getNode(ISD::OR, DL, VT, LHSMask, 4200 DAG.getConstant(RHSBits, DL, VT))); 4201 } 4202 if (RHSMask.getNode()) { 4203 APInt LHSBits = APInt::getHighBitsSet(EltSizeInBits, RShVal); 4204 Mask = DAG.getNode(ISD::AND, DL, VT, Mask, 4205 DAG.getNode(ISD::OR, DL, VT, RHSMask, 4206 DAG.getConstant(LHSBits, DL, VT))); 4207 } 4208 4209 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, Mask); 4210 } 4211 4212 return Rot.getNode(); 4213 } 4214 4215 // If there is a mask here, and we have a variable shift, we can't be sure 4216 // that we're masking out the right stuff. 4217 if (LHSMask.getNode() || RHSMask.getNode()) 4218 return nullptr; 4219 4220 // If the shift amount is sign/zext/any-extended just peel it off. 4221 SDValue LExtOp0 = LHSShiftAmt; 4222 SDValue RExtOp0 = RHSShiftAmt; 4223 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND || 4224 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND || 4225 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND || 4226 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) && 4227 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND || 4228 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND || 4229 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND || 4230 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) { 4231 LExtOp0 = LHSShiftAmt.getOperand(0); 4232 RExtOp0 = RHSShiftAmt.getOperand(0); 4233 } 4234 4235 SDNode *TryL = MatchRotatePosNeg(LHSShiftArg, LHSShiftAmt, RHSShiftAmt, 4236 LExtOp0, RExtOp0, ISD::ROTL, ISD::ROTR, DL); 4237 if (TryL) 4238 return TryL; 4239 4240 SDNode *TryR = MatchRotatePosNeg(RHSShiftArg, RHSShiftAmt, LHSShiftAmt, 4241 RExtOp0, LExtOp0, ISD::ROTR, ISD::ROTL, DL); 4242 if (TryR) 4243 return TryR; 4244 4245 return nullptr; 4246 } 4247 4248 namespace { 4249 /// Helper struct to parse and store a memory address as base + index + offset. 4250 /// We ignore sign extensions when it is safe to do so. 4251 /// The following two expressions are not equivalent. To differentiate we need 4252 /// to store whether there was a sign extension involved in the index 4253 /// computation. 4254 /// (load (i64 add (i64 copyfromreg %c) 4255 /// (i64 signextend (add (i8 load %index) 4256 /// (i8 1)))) 4257 /// vs 4258 /// 4259 /// (load (i64 add (i64 copyfromreg %c) 4260 /// (i64 signextend (i32 add (i32 signextend (i8 load %index)) 4261 /// (i32 1))))) 4262 struct BaseIndexOffset { 4263 SDValue Base; 4264 SDValue Index; 4265 int64_t Offset; 4266 bool IsIndexSignExt; 4267 4268 BaseIndexOffset() : Offset(0), IsIndexSignExt(false) {} 4269 4270 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset, 4271 bool IsIndexSignExt) : 4272 Base(Base), Index(Index), Offset(Offset), IsIndexSignExt(IsIndexSignExt) {} 4273 4274 bool equalBaseIndex(const BaseIndexOffset &Other) { 4275 return Other.Base == Base && Other.Index == Index && 4276 Other.IsIndexSignExt == IsIndexSignExt; 4277 } 4278 4279 /// Parses tree in Ptr for base, index, offset addresses. 4280 static BaseIndexOffset match(SDValue Ptr, SelectionDAG &DAG) { 4281 bool IsIndexSignExt = false; 4282 4283 // Split up a folded GlobalAddress+Offset into its component parts. 4284 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Ptr)) 4285 if (GA->getOpcode() == ISD::GlobalAddress && GA->getOffset() != 0) { 4286 return BaseIndexOffset(DAG.getGlobalAddress(GA->getGlobal(), 4287 SDLoc(GA), 4288 GA->getValueType(0), 4289 /*Offset=*/0, 4290 /*isTargetGA=*/false, 4291 GA->getTargetFlags()), 4292 SDValue(), 4293 GA->getOffset(), 4294 IsIndexSignExt); 4295 } 4296 4297 // We only can pattern match BASE + INDEX + OFFSET. If Ptr is not an ADD 4298 // instruction, then it could be just the BASE or everything else we don't 4299 // know how to handle. Just use Ptr as BASE and give up. 4300 if (Ptr->getOpcode() != ISD::ADD) 4301 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt); 4302 4303 // We know that we have at least an ADD instruction. Try to pattern match 4304 // the simple case of BASE + OFFSET. 4305 if (isa<ConstantSDNode>(Ptr->getOperand(1))) { 4306 int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue(); 4307 return BaseIndexOffset(Ptr->getOperand(0), SDValue(), Offset, 4308 IsIndexSignExt); 4309 } 4310 4311 // Inside a loop the current BASE pointer is calculated using an ADD and a 4312 // MUL instruction. In this case Ptr is the actual BASE pointer. 4313 // (i64 add (i64 %array_ptr) 4314 // (i64 mul (i64 %induction_var) 4315 // (i64 %element_size))) 4316 if (Ptr->getOperand(1)->getOpcode() == ISD::MUL) 4317 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt); 4318 4319 // Look at Base + Index + Offset cases. 4320 SDValue Base = Ptr->getOperand(0); 4321 SDValue IndexOffset = Ptr->getOperand(1); 4322 4323 // Skip signextends. 4324 if (IndexOffset->getOpcode() == ISD::SIGN_EXTEND) { 4325 IndexOffset = IndexOffset->getOperand(0); 4326 IsIndexSignExt = true; 4327 } 4328 4329 // Either the case of Base + Index (no offset) or something else. 4330 if (IndexOffset->getOpcode() != ISD::ADD) 4331 return BaseIndexOffset(Base, IndexOffset, 0, IsIndexSignExt); 4332 4333 // Now we have the case of Base + Index + offset. 4334 SDValue Index = IndexOffset->getOperand(0); 4335 SDValue Offset = IndexOffset->getOperand(1); 4336 4337 if (!isa<ConstantSDNode>(Offset)) 4338 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt); 4339 4340 // Ignore signextends. 4341 if (Index->getOpcode() == ISD::SIGN_EXTEND) { 4342 Index = Index->getOperand(0); 4343 IsIndexSignExt = true; 4344 } else IsIndexSignExt = false; 4345 4346 int64_t Off = cast<ConstantSDNode>(Offset)->getSExtValue(); 4347 return BaseIndexOffset(Base, Index, Off, IsIndexSignExt); 4348 } 4349 }; 4350 } // namespace 4351 4352 SDValue DAGCombiner::visitXOR(SDNode *N) { 4353 SDValue N0 = N->getOperand(0); 4354 SDValue N1 = N->getOperand(1); 4355 EVT VT = N0.getValueType(); 4356 4357 // fold vector ops 4358 if (VT.isVector()) { 4359 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 4360 return FoldedVOp; 4361 4362 // fold (xor x, 0) -> x, vector edition 4363 if (ISD::isBuildVectorAllZeros(N0.getNode())) 4364 return N1; 4365 if (ISD::isBuildVectorAllZeros(N1.getNode())) 4366 return N0; 4367 } 4368 4369 // fold (xor undef, undef) -> 0. This is a common idiom (misuse). 4370 if (N0.isUndef() && N1.isUndef()) 4371 return DAG.getConstant(0, SDLoc(N), VT); 4372 // fold (xor x, undef) -> undef 4373 if (N0.isUndef()) 4374 return N0; 4375 if (N1.isUndef()) 4376 return N1; 4377 // fold (xor c1, c2) -> c1^c2 4378 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 4379 ConstantSDNode *N1C = getAsNonOpaqueConstant(N1); 4380 if (N0C && N1C) 4381 return DAG.FoldConstantArithmetic(ISD::XOR, SDLoc(N), VT, N0C, N1C); 4382 // canonicalize constant to RHS 4383 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 4384 !DAG.isConstantIntBuildVectorOrConstantInt(N1)) 4385 return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0); 4386 // fold (xor x, 0) -> x 4387 if (isNullConstant(N1)) 4388 return N0; 4389 // reassociate xor 4390 if (SDValue RXOR = ReassociateOps(ISD::XOR, SDLoc(N), N0, N1)) 4391 return RXOR; 4392 4393 // fold !(x cc y) -> (x !cc y) 4394 SDValue LHS, RHS, CC; 4395 if (TLI.isConstTrueVal(N1.getNode()) && isSetCCEquivalent(N0, LHS, RHS, CC)) { 4396 bool isInt = LHS.getValueType().isInteger(); 4397 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(), 4398 isInt); 4399 4400 if (!LegalOperations || 4401 TLI.isCondCodeLegal(NotCC, LHS.getSimpleValueType())) { 4402 switch (N0.getOpcode()) { 4403 default: 4404 llvm_unreachable("Unhandled SetCC Equivalent!"); 4405 case ISD::SETCC: 4406 return DAG.getSetCC(SDLoc(N), VT, LHS, RHS, NotCC); 4407 case ISD::SELECT_CC: 4408 return DAG.getSelectCC(SDLoc(N), LHS, RHS, N0.getOperand(2), 4409 N0.getOperand(3), NotCC); 4410 } 4411 } 4412 } 4413 4414 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y))) 4415 if (isOneConstant(N1) && N0.getOpcode() == ISD::ZERO_EXTEND && 4416 N0.getNode()->hasOneUse() && 4417 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){ 4418 SDValue V = N0.getOperand(0); 4419 SDLoc DL(N0); 4420 V = DAG.getNode(ISD::XOR, DL, V.getValueType(), V, 4421 DAG.getConstant(1, DL, V.getValueType())); 4422 AddToWorklist(V.getNode()); 4423 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, V); 4424 } 4425 4426 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc 4427 if (isOneConstant(N1) && VT == MVT::i1 && 4428 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) { 4429 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1); 4430 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) { 4431 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND; 4432 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS 4433 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS 4434 AddToWorklist(LHS.getNode()); AddToWorklist(RHS.getNode()); 4435 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS); 4436 } 4437 } 4438 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants 4439 if (isAllOnesConstant(N1) && 4440 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) { 4441 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1); 4442 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) { 4443 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND; 4444 LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS 4445 RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS 4446 AddToWorklist(LHS.getNode()); AddToWorklist(RHS.getNode()); 4447 return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS); 4448 } 4449 } 4450 // fold (xor (and x, y), y) -> (and (not x), y) 4451 if (N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() && 4452 N0->getOperand(1) == N1) { 4453 SDValue X = N0->getOperand(0); 4454 SDValue NotX = DAG.getNOT(SDLoc(X), X, VT); 4455 AddToWorklist(NotX.getNode()); 4456 return DAG.getNode(ISD::AND, SDLoc(N), VT, NotX, N1); 4457 } 4458 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2)) 4459 if (N1C && N0.getOpcode() == ISD::XOR) { 4460 if (const ConstantSDNode *N00C = getAsNonOpaqueConstant(N0.getOperand(0))) { 4461 SDLoc DL(N); 4462 return DAG.getNode(ISD::XOR, DL, VT, N0.getOperand(1), 4463 DAG.getConstant(N1C->getAPIntValue() ^ 4464 N00C->getAPIntValue(), DL, VT)); 4465 } 4466 if (const ConstantSDNode *N01C = getAsNonOpaqueConstant(N0.getOperand(1))) { 4467 SDLoc DL(N); 4468 return DAG.getNode(ISD::XOR, DL, VT, N0.getOperand(0), 4469 DAG.getConstant(N1C->getAPIntValue() ^ 4470 N01C->getAPIntValue(), DL, VT)); 4471 } 4472 } 4473 // fold (xor x, x) -> 0 4474 if (N0 == N1) 4475 return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes); 4476 4477 // fold (xor (shl 1, x), -1) -> (rotl ~1, x) 4478 // Here is a concrete example of this equivalence: 4479 // i16 x == 14 4480 // i16 shl == 1 << 14 == 16384 == 0b0100000000000000 4481 // i16 xor == ~(1 << 14) == 49151 == 0b1011111111111111 4482 // 4483 // => 4484 // 4485 // i16 ~1 == 0b1111111111111110 4486 // i16 rol(~1, 14) == 0b1011111111111111 4487 // 4488 // Some additional tips to help conceptualize this transform: 4489 // - Try to see the operation as placing a single zero in a value of all ones. 4490 // - There exists no value for x which would allow the result to contain zero. 4491 // - Values of x larger than the bitwidth are undefined and do not require a 4492 // consistent result. 4493 // - Pushing the zero left requires shifting one bits in from the right. 4494 // A rotate left of ~1 is a nice way of achieving the desired result. 4495 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT) && N0.getOpcode() == ISD::SHL 4496 && isAllOnesConstant(N1) && isOneConstant(N0.getOperand(0))) { 4497 SDLoc DL(N); 4498 return DAG.getNode(ISD::ROTL, DL, VT, DAG.getConstant(~1, DL, VT), 4499 N0.getOperand(1)); 4500 } 4501 4502 // Simplify: xor (op x...), (op y...) -> (op (xor x, y)) 4503 if (N0.getOpcode() == N1.getOpcode()) 4504 if (SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N)) 4505 return Tmp; 4506 4507 // Simplify the expression using non-local knowledge. 4508 if (!VT.isVector() && 4509 SimplifyDemandedBits(SDValue(N, 0))) 4510 return SDValue(N, 0); 4511 4512 return SDValue(); 4513 } 4514 4515 /// Handle transforms common to the three shifts, when the shift amount is a 4516 /// constant. 4517 SDValue DAGCombiner::visitShiftByConstant(SDNode *N, ConstantSDNode *Amt) { 4518 SDNode *LHS = N->getOperand(0).getNode(); 4519 if (!LHS->hasOneUse()) return SDValue(); 4520 4521 // We want to pull some binops through shifts, so that we have (and (shift)) 4522 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of 4523 // thing happens with address calculations, so it's important to canonicalize 4524 // it. 4525 bool HighBitSet = false; // Can we transform this if the high bit is set? 4526 4527 switch (LHS->getOpcode()) { 4528 default: return SDValue(); 4529 case ISD::OR: 4530 case ISD::XOR: 4531 HighBitSet = false; // We can only transform sra if the high bit is clear. 4532 break; 4533 case ISD::AND: 4534 HighBitSet = true; // We can only transform sra if the high bit is set. 4535 break; 4536 case ISD::ADD: 4537 if (N->getOpcode() != ISD::SHL) 4538 return SDValue(); // only shl(add) not sr[al](add). 4539 HighBitSet = false; // We can only transform sra if the high bit is clear. 4540 break; 4541 } 4542 4543 // We require the RHS of the binop to be a constant and not opaque as well. 4544 ConstantSDNode *BinOpCst = getAsNonOpaqueConstant(LHS->getOperand(1)); 4545 if (!BinOpCst) return SDValue(); 4546 4547 // FIXME: disable this unless the input to the binop is a shift by a constant. 4548 // If it is not a shift, it pessimizes some common cases like: 4549 // 4550 // void foo(int *X, int i) { X[i & 1235] = 1; } 4551 // int bar(int *X, int i) { return X[i & 255]; } 4552 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode(); 4553 if ((BinOpLHSVal->getOpcode() != ISD::SHL && 4554 BinOpLHSVal->getOpcode() != ISD::SRA && 4555 BinOpLHSVal->getOpcode() != ISD::SRL) || 4556 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1))) 4557 return SDValue(); 4558 4559 EVT VT = N->getValueType(0); 4560 4561 // If this is a signed shift right, and the high bit is modified by the 4562 // logical operation, do not perform the transformation. The highBitSet 4563 // boolean indicates the value of the high bit of the constant which would 4564 // cause it to be modified for this operation. 4565 if (N->getOpcode() == ISD::SRA) { 4566 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative(); 4567 if (BinOpRHSSignSet != HighBitSet) 4568 return SDValue(); 4569 } 4570 4571 if (!TLI.isDesirableToCommuteWithShift(LHS)) 4572 return SDValue(); 4573 4574 // Fold the constants, shifting the binop RHS by the shift amount. 4575 SDValue NewRHS = DAG.getNode(N->getOpcode(), SDLoc(LHS->getOperand(1)), 4576 N->getValueType(0), 4577 LHS->getOperand(1), N->getOperand(1)); 4578 assert(isa<ConstantSDNode>(NewRHS) && "Folding was not successful!"); 4579 4580 // Create the new shift. 4581 SDValue NewShift = DAG.getNode(N->getOpcode(), 4582 SDLoc(LHS->getOperand(0)), 4583 VT, LHS->getOperand(0), N->getOperand(1)); 4584 4585 // Create the new binop. 4586 return DAG.getNode(LHS->getOpcode(), SDLoc(N), VT, NewShift, NewRHS); 4587 } 4588 4589 SDValue DAGCombiner::distributeTruncateThroughAnd(SDNode *N) { 4590 assert(N->getOpcode() == ISD::TRUNCATE); 4591 assert(N->getOperand(0).getOpcode() == ISD::AND); 4592 4593 // (truncate:TruncVT (and N00, N01C)) -> (and (truncate:TruncVT N00), TruncC) 4594 if (N->hasOneUse() && N->getOperand(0).hasOneUse()) { 4595 SDValue N01 = N->getOperand(0).getOperand(1); 4596 if (isConstantOrConstantVector(N01, /* NoOpaques */ true)) { 4597 SDLoc DL(N); 4598 EVT TruncVT = N->getValueType(0); 4599 SDValue N00 = N->getOperand(0).getOperand(0); 4600 SDValue Trunc00 = DAG.getNode(ISD::TRUNCATE, DL, TruncVT, N00); 4601 SDValue Trunc01 = DAG.getNode(ISD::TRUNCATE, DL, TruncVT, N01); 4602 AddToWorklist(Trunc00.getNode()); 4603 AddToWorklist(Trunc01.getNode()); 4604 return DAG.getNode(ISD::AND, DL, TruncVT, Trunc00, Trunc01); 4605 } 4606 } 4607 4608 return SDValue(); 4609 } 4610 4611 SDValue DAGCombiner::visitRotate(SDNode *N) { 4612 // fold (rot* x, (trunc (and y, c))) -> (rot* x, (and (trunc y), (trunc c))). 4613 if (N->getOperand(1).getOpcode() == ISD::TRUNCATE && 4614 N->getOperand(1).getOperand(0).getOpcode() == ISD::AND) { 4615 if (SDValue NewOp1 = 4616 distributeTruncateThroughAnd(N->getOperand(1).getNode())) 4617 return DAG.getNode(N->getOpcode(), SDLoc(N), N->getValueType(0), 4618 N->getOperand(0), NewOp1); 4619 } 4620 return SDValue(); 4621 } 4622 4623 SDValue DAGCombiner::visitSHL(SDNode *N) { 4624 SDValue N0 = N->getOperand(0); 4625 SDValue N1 = N->getOperand(1); 4626 EVT VT = N0.getValueType(); 4627 unsigned OpSizeInBits = VT.getScalarSizeInBits(); 4628 4629 // fold vector ops 4630 if (VT.isVector()) { 4631 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 4632 return FoldedVOp; 4633 4634 BuildVectorSDNode *N1CV = dyn_cast<BuildVectorSDNode>(N1); 4635 // If setcc produces all-one true value then: 4636 // (shl (and (setcc) N01CV) N1CV) -> (and (setcc) N01CV<<N1CV) 4637 if (N1CV && N1CV->isConstant()) { 4638 if (N0.getOpcode() == ISD::AND) { 4639 SDValue N00 = N0->getOperand(0); 4640 SDValue N01 = N0->getOperand(1); 4641 BuildVectorSDNode *N01CV = dyn_cast<BuildVectorSDNode>(N01); 4642 4643 if (N01CV && N01CV->isConstant() && N00.getOpcode() == ISD::SETCC && 4644 TLI.getBooleanContents(N00.getOperand(0).getValueType()) == 4645 TargetLowering::ZeroOrNegativeOneBooleanContent) { 4646 if (SDValue C = DAG.FoldConstantArithmetic(ISD::SHL, SDLoc(N), VT, 4647 N01CV, N1CV)) 4648 return DAG.getNode(ISD::AND, SDLoc(N), VT, N00, C); 4649 } 4650 } 4651 } 4652 } 4653 4654 ConstantSDNode *N1C = isConstOrConstSplat(N1); 4655 4656 // fold (shl c1, c2) -> c1<<c2 4657 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 4658 if (N0C && N1C && !N1C->isOpaque()) 4659 return DAG.FoldConstantArithmetic(ISD::SHL, SDLoc(N), VT, N0C, N1C); 4660 // fold (shl 0, x) -> 0 4661 if (isNullConstant(N0)) 4662 return N0; 4663 // fold (shl x, c >= size(x)) -> undef 4664 if (N1C && N1C->getAPIntValue().uge(OpSizeInBits)) 4665 return DAG.getUNDEF(VT); 4666 // fold (shl x, 0) -> x 4667 if (N1C && N1C->isNullValue()) 4668 return N0; 4669 // fold (shl undef, x) -> 0 4670 if (N0.isUndef()) 4671 return DAG.getConstant(0, SDLoc(N), VT); 4672 // if (shl x, c) is known to be zero, return 0 4673 if (DAG.MaskedValueIsZero(SDValue(N, 0), 4674 APInt::getAllOnesValue(OpSizeInBits))) 4675 return DAG.getConstant(0, SDLoc(N), VT); 4676 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))). 4677 if (N1.getOpcode() == ISD::TRUNCATE && 4678 N1.getOperand(0).getOpcode() == ISD::AND) { 4679 if (SDValue NewOp1 = distributeTruncateThroughAnd(N1.getNode())) 4680 return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0, NewOp1); 4681 } 4682 4683 if (N1C && SimplifyDemandedBits(SDValue(N, 0))) 4684 return SDValue(N, 0); 4685 4686 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2)) 4687 if (N1C && N0.getOpcode() == ISD::SHL) { 4688 if (ConstantSDNode *N0C1 = isConstOrConstSplat(N0.getOperand(1))) { 4689 SDLoc DL(N); 4690 APInt c1 = N0C1->getAPIntValue(); 4691 APInt c2 = N1C->getAPIntValue(); 4692 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 4693 4694 APInt Sum = c1 + c2; 4695 if (Sum.uge(OpSizeInBits)) 4696 return DAG.getConstant(0, DL, VT); 4697 4698 return DAG.getNode( 4699 ISD::SHL, DL, VT, N0.getOperand(0), 4700 DAG.getConstant(Sum.getZExtValue(), DL, N1.getValueType())); 4701 } 4702 } 4703 4704 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2))) 4705 // For this to be valid, the second form must not preserve any of the bits 4706 // that are shifted out by the inner shift in the first form. This means 4707 // the outer shift size must be >= the number of bits added by the ext. 4708 // As a corollary, we don't care what kind of ext it is. 4709 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND || 4710 N0.getOpcode() == ISD::ANY_EXTEND || 4711 N0.getOpcode() == ISD::SIGN_EXTEND) && 4712 N0.getOperand(0).getOpcode() == ISD::SHL) { 4713 SDValue N0Op0 = N0.getOperand(0); 4714 if (ConstantSDNode *N0Op0C1 = isConstOrConstSplat(N0Op0.getOperand(1))) { 4715 APInt c1 = N0Op0C1->getAPIntValue(); 4716 APInt c2 = N1C->getAPIntValue(); 4717 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 4718 4719 EVT InnerShiftVT = N0Op0.getValueType(); 4720 uint64_t InnerShiftSize = InnerShiftVT.getScalarSizeInBits(); 4721 if (c2.uge(OpSizeInBits - InnerShiftSize)) { 4722 SDLoc DL(N0); 4723 APInt Sum = c1 + c2; 4724 if (Sum.uge(OpSizeInBits)) 4725 return DAG.getConstant(0, DL, VT); 4726 4727 return DAG.getNode( 4728 ISD::SHL, DL, VT, 4729 DAG.getNode(N0.getOpcode(), DL, VT, N0Op0->getOperand(0)), 4730 DAG.getConstant(Sum.getZExtValue(), DL, N1.getValueType())); 4731 } 4732 } 4733 } 4734 4735 // fold (shl (zext (srl x, C)), C) -> (zext (shl (srl x, C), C)) 4736 // Only fold this if the inner zext has no other uses to avoid increasing 4737 // the total number of instructions. 4738 if (N1C && N0.getOpcode() == ISD::ZERO_EXTEND && N0.hasOneUse() && 4739 N0.getOperand(0).getOpcode() == ISD::SRL) { 4740 SDValue N0Op0 = N0.getOperand(0); 4741 if (ConstantSDNode *N0Op0C1 = isConstOrConstSplat(N0Op0.getOperand(1))) { 4742 if (N0Op0C1->getAPIntValue().ult(VT.getScalarSizeInBits())) { 4743 uint64_t c1 = N0Op0C1->getZExtValue(); 4744 uint64_t c2 = N1C->getZExtValue(); 4745 if (c1 == c2) { 4746 SDValue NewOp0 = N0.getOperand(0); 4747 EVT CountVT = NewOp0.getOperand(1).getValueType(); 4748 SDLoc DL(N); 4749 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, NewOp0.getValueType(), 4750 NewOp0, 4751 DAG.getConstant(c2, DL, CountVT)); 4752 AddToWorklist(NewSHL.getNode()); 4753 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N0), VT, NewSHL); 4754 } 4755 } 4756 } 4757 } 4758 4759 // fold (shl (sr[la] exact X, C1), C2) -> (shl X, (C2-C1)) if C1 <= C2 4760 // fold (shl (sr[la] exact X, C1), C2) -> (sr[la] X, (C2-C1)) if C1 > C2 4761 if (N1C && (N0.getOpcode() == ISD::SRL || N0.getOpcode() == ISD::SRA) && 4762 cast<BinaryWithFlagsSDNode>(N0)->Flags.hasExact()) { 4763 if (ConstantSDNode *N0C1 = isConstOrConstSplat(N0.getOperand(1))) { 4764 uint64_t C1 = N0C1->getZExtValue(); 4765 uint64_t C2 = N1C->getZExtValue(); 4766 SDLoc DL(N); 4767 if (C1 <= C2) 4768 return DAG.getNode(ISD::SHL, DL, VT, N0.getOperand(0), 4769 DAG.getConstant(C2 - C1, DL, N1.getValueType())); 4770 return DAG.getNode(N0.getOpcode(), DL, VT, N0.getOperand(0), 4771 DAG.getConstant(C1 - C2, DL, N1.getValueType())); 4772 } 4773 } 4774 4775 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or 4776 // (and (srl x, (sub c1, c2), MASK) 4777 // Only fold this if the inner shift has no other uses -- if it does, folding 4778 // this will increase the total number of instructions. 4779 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse()) { 4780 if (ConstantSDNode *N0C1 = isConstOrConstSplat(N0.getOperand(1))) { 4781 uint64_t c1 = N0C1->getZExtValue(); 4782 if (c1 < OpSizeInBits) { 4783 uint64_t c2 = N1C->getZExtValue(); 4784 APInt Mask = APInt::getHighBitsSet(OpSizeInBits, OpSizeInBits - c1); 4785 SDValue Shift; 4786 if (c2 > c1) { 4787 Mask = Mask.shl(c2 - c1); 4788 SDLoc DL(N); 4789 Shift = DAG.getNode(ISD::SHL, DL, VT, N0.getOperand(0), 4790 DAG.getConstant(c2 - c1, DL, N1.getValueType())); 4791 } else { 4792 Mask = Mask.lshr(c1 - c2); 4793 SDLoc DL(N); 4794 Shift = DAG.getNode(ISD::SRL, DL, VT, N0.getOperand(0), 4795 DAG.getConstant(c1 - c2, DL, N1.getValueType())); 4796 } 4797 SDLoc DL(N0); 4798 return DAG.getNode(ISD::AND, DL, VT, Shift, 4799 DAG.getConstant(Mask, DL, VT)); 4800 } 4801 } 4802 } 4803 4804 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1)) 4805 if (N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1) && 4806 isConstantOrConstantVector(N1, /* No Opaques */ true)) { 4807 unsigned BitSize = VT.getScalarSizeInBits(); 4808 SDLoc DL(N); 4809 SDValue AllBits = DAG.getConstant(APInt::getAllOnesValue(BitSize), DL, VT); 4810 SDValue HiBitsMask = DAG.getNode(ISD::SHL, DL, VT, AllBits, N1); 4811 return DAG.getNode(ISD::AND, DL, VT, N0.getOperand(0), HiBitsMask); 4812 } 4813 4814 // fold (shl (add x, c1), c2) -> (add (shl x, c2), c1 << c2) 4815 // Variant of version done on multiply, except mul by a power of 2 is turned 4816 // into a shift. 4817 if (N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() && 4818 isConstantOrConstantVector(N1, /* No Opaques */ true) && 4819 isConstantOrConstantVector(N0.getOperand(1), /* No Opaques */ true)) { 4820 SDValue Shl0 = DAG.getNode(ISD::SHL, SDLoc(N0), VT, N0.getOperand(0), N1); 4821 SDValue Shl1 = DAG.getNode(ISD::SHL, SDLoc(N1), VT, N0.getOperand(1), N1); 4822 AddToWorklist(Shl0.getNode()); 4823 AddToWorklist(Shl1.getNode()); 4824 return DAG.getNode(ISD::ADD, SDLoc(N), VT, Shl0, Shl1); 4825 } 4826 4827 // fold (shl (mul x, c1), c2) -> (mul x, c1 << c2) 4828 if (N0.getOpcode() == ISD::MUL && N0.getNode()->hasOneUse() && 4829 isConstantOrConstantVector(N1, /* No Opaques */ true) && 4830 isConstantOrConstantVector(N0.getOperand(1), /* No Opaques */ true)) { 4831 SDValue Shl = DAG.getNode(ISD::SHL, SDLoc(N1), VT, N0.getOperand(1), N1); 4832 if (isConstantOrConstantVector(Shl)) 4833 return DAG.getNode(ISD::MUL, SDLoc(N), VT, N0.getOperand(0), Shl); 4834 } 4835 4836 if (N1C && !N1C->isOpaque()) 4837 if (SDValue NewSHL = visitShiftByConstant(N, N1C)) 4838 return NewSHL; 4839 4840 return SDValue(); 4841 } 4842 4843 SDValue DAGCombiner::visitSRA(SDNode *N) { 4844 SDValue N0 = N->getOperand(0); 4845 SDValue N1 = N->getOperand(1); 4846 EVT VT = N0.getValueType(); 4847 unsigned OpSizeInBits = VT.getScalarSizeInBits(); 4848 4849 // Arithmetic shifting an all-sign-bit value is a no-op. 4850 if (DAG.ComputeNumSignBits(N0) == OpSizeInBits) 4851 return N0; 4852 4853 // fold vector ops 4854 if (VT.isVector()) 4855 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 4856 return FoldedVOp; 4857 4858 ConstantSDNode *N1C = isConstOrConstSplat(N1); 4859 4860 // fold (sra c1, c2) -> (sra c1, c2) 4861 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 4862 if (N0C && N1C && !N1C->isOpaque()) 4863 return DAG.FoldConstantArithmetic(ISD::SRA, SDLoc(N), VT, N0C, N1C); 4864 // fold (sra 0, x) -> 0 4865 if (isNullConstant(N0)) 4866 return N0; 4867 // fold (sra -1, x) -> -1 4868 if (isAllOnesConstant(N0)) 4869 return N0; 4870 // fold (sra x, c >= size(x)) -> undef 4871 if (N1C && N1C->getAPIntValue().uge(OpSizeInBits)) 4872 return DAG.getUNDEF(VT); 4873 // fold (sra x, 0) -> x 4874 if (N1C && N1C->isNullValue()) 4875 return N0; 4876 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports 4877 // sext_inreg. 4878 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) { 4879 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue(); 4880 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits); 4881 if (VT.isVector()) 4882 ExtVT = EVT::getVectorVT(*DAG.getContext(), 4883 ExtVT, VT.getVectorNumElements()); 4884 if ((!LegalOperations || 4885 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT))) 4886 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, 4887 N0.getOperand(0), DAG.getValueType(ExtVT)); 4888 } 4889 4890 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2)) 4891 if (N1C && N0.getOpcode() == ISD::SRA) { 4892 if (ConstantSDNode *N0C1 = isConstOrConstSplat(N0.getOperand(1))) { 4893 SDLoc DL(N); 4894 APInt c1 = N0C1->getAPIntValue(); 4895 APInt c2 = N1C->getAPIntValue(); 4896 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 4897 4898 APInt Sum = c1 + c2; 4899 if (Sum.uge(OpSizeInBits)) 4900 Sum = APInt(OpSizeInBits, OpSizeInBits - 1); 4901 4902 return DAG.getNode( 4903 ISD::SRA, DL, VT, N0.getOperand(0), 4904 DAG.getConstant(Sum.getZExtValue(), DL, N1.getValueType())); 4905 } 4906 } 4907 4908 // fold (sra (shl X, m), (sub result_size, n)) 4909 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for 4910 // result_size - n != m. 4911 // If truncate is free for the target sext(shl) is likely to result in better 4912 // code. 4913 if (N0.getOpcode() == ISD::SHL && N1C) { 4914 // Get the two constanst of the shifts, CN0 = m, CN = n. 4915 const ConstantSDNode *N01C = isConstOrConstSplat(N0.getOperand(1)); 4916 if (N01C) { 4917 LLVMContext &Ctx = *DAG.getContext(); 4918 // Determine what the truncate's result bitsize and type would be. 4919 EVT TruncVT = EVT::getIntegerVT(Ctx, OpSizeInBits - N1C->getZExtValue()); 4920 4921 if (VT.isVector()) 4922 TruncVT = EVT::getVectorVT(Ctx, TruncVT, VT.getVectorNumElements()); 4923 4924 // Determine the residual right-shift amount. 4925 int ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue(); 4926 4927 // If the shift is not a no-op (in which case this should be just a sign 4928 // extend already), the truncated to type is legal, sign_extend is legal 4929 // on that type, and the truncate to that type is both legal and free, 4930 // perform the transform. 4931 if ((ShiftAmt > 0) && 4932 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) && 4933 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) && 4934 TLI.isTruncateFree(VT, TruncVT)) { 4935 4936 SDLoc DL(N); 4937 SDValue Amt = DAG.getConstant(ShiftAmt, DL, 4938 getShiftAmountTy(N0.getOperand(0).getValueType())); 4939 SDValue Shift = DAG.getNode(ISD::SRL, DL, VT, 4940 N0.getOperand(0), Amt); 4941 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, DL, TruncVT, 4942 Shift); 4943 return DAG.getNode(ISD::SIGN_EXTEND, DL, 4944 N->getValueType(0), Trunc); 4945 } 4946 } 4947 } 4948 4949 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))). 4950 if (N1.getOpcode() == ISD::TRUNCATE && 4951 N1.getOperand(0).getOpcode() == ISD::AND) { 4952 if (SDValue NewOp1 = distributeTruncateThroughAnd(N1.getNode())) 4953 return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0, NewOp1); 4954 } 4955 4956 // fold (sra (trunc (srl x, c1)), c2) -> (trunc (sra x, c1 + c2)) 4957 // if c1 is equal to the number of bits the trunc removes 4958 if (N0.getOpcode() == ISD::TRUNCATE && 4959 (N0.getOperand(0).getOpcode() == ISD::SRL || 4960 N0.getOperand(0).getOpcode() == ISD::SRA) && 4961 N0.getOperand(0).hasOneUse() && 4962 N0.getOperand(0).getOperand(1).hasOneUse() && 4963 N1C) { 4964 SDValue N0Op0 = N0.getOperand(0); 4965 if (ConstantSDNode *LargeShift = isConstOrConstSplat(N0Op0.getOperand(1))) { 4966 unsigned LargeShiftVal = LargeShift->getZExtValue(); 4967 EVT LargeVT = N0Op0.getValueType(); 4968 4969 if (LargeVT.getScalarSizeInBits() - OpSizeInBits == LargeShiftVal) { 4970 SDLoc DL(N); 4971 SDValue Amt = 4972 DAG.getConstant(LargeShiftVal + N1C->getZExtValue(), DL, 4973 getShiftAmountTy(N0Op0.getOperand(0).getValueType())); 4974 SDValue SRA = DAG.getNode(ISD::SRA, DL, LargeVT, 4975 N0Op0.getOperand(0), Amt); 4976 return DAG.getNode(ISD::TRUNCATE, DL, VT, SRA); 4977 } 4978 } 4979 } 4980 4981 // Simplify, based on bits shifted out of the LHS. 4982 if (N1C && SimplifyDemandedBits(SDValue(N, 0))) 4983 return SDValue(N, 0); 4984 4985 4986 // If the sign bit is known to be zero, switch this to a SRL. 4987 if (DAG.SignBitIsZero(N0)) 4988 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, N1); 4989 4990 if (N1C && !N1C->isOpaque()) 4991 if (SDValue NewSRA = visitShiftByConstant(N, N1C)) 4992 return NewSRA; 4993 4994 return SDValue(); 4995 } 4996 4997 SDValue DAGCombiner::visitSRL(SDNode *N) { 4998 SDValue N0 = N->getOperand(0); 4999 SDValue N1 = N->getOperand(1); 5000 EVT VT = N0.getValueType(); 5001 unsigned OpSizeInBits = VT.getScalarSizeInBits(); 5002 5003 // fold vector ops 5004 if (VT.isVector()) 5005 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 5006 return FoldedVOp; 5007 5008 ConstantSDNode *N1C = isConstOrConstSplat(N1); 5009 5010 // fold (srl c1, c2) -> c1 >>u c2 5011 ConstantSDNode *N0C = getAsNonOpaqueConstant(N0); 5012 if (N0C && N1C && !N1C->isOpaque()) 5013 return DAG.FoldConstantArithmetic(ISD::SRL, SDLoc(N), VT, N0C, N1C); 5014 // fold (srl 0, x) -> 0 5015 if (isNullConstant(N0)) 5016 return N0; 5017 // fold (srl x, c >= size(x)) -> undef 5018 if (N1C && N1C->getAPIntValue().uge(OpSizeInBits)) 5019 return DAG.getUNDEF(VT); 5020 // fold (srl x, 0) -> x 5021 if (N1C && N1C->isNullValue()) 5022 return N0; 5023 // if (srl x, c) is known to be zero, return 0 5024 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0), 5025 APInt::getAllOnesValue(OpSizeInBits))) 5026 return DAG.getConstant(0, SDLoc(N), VT); 5027 5028 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2)) 5029 if (N1C && N0.getOpcode() == ISD::SRL) { 5030 if (ConstantSDNode *N0C1 = isConstOrConstSplat(N0.getOperand(1))) { 5031 SDLoc DL(N); 5032 APInt c1 = N0C1->getAPIntValue(); 5033 APInt c2 = N1C->getAPIntValue(); 5034 zeroExtendToMatch(c1, c2, 1 /* Overflow Bit */); 5035 5036 APInt Sum = c1 + c2; 5037 if (Sum.uge(OpSizeInBits)) 5038 return DAG.getConstant(0, DL, VT); 5039 5040 return DAG.getNode( 5041 ISD::SRL, DL, VT, N0.getOperand(0), 5042 DAG.getConstant(Sum.getZExtValue(), DL, N1.getValueType())); 5043 } 5044 } 5045 5046 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2))) 5047 if (N1C && N0.getOpcode() == ISD::TRUNCATE && 5048 N0.getOperand(0).getOpcode() == ISD::SRL && 5049 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) { 5050 uint64_t c1 = 5051 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue(); 5052 uint64_t c2 = N1C->getZExtValue(); 5053 EVT InnerShiftVT = N0.getOperand(0).getValueType(); 5054 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType(); 5055 uint64_t InnerShiftSize = InnerShiftVT.getScalarSizeInBits(); 5056 // This is only valid if the OpSizeInBits + c1 = size of inner shift. 5057 if (c1 + OpSizeInBits == InnerShiftSize) { 5058 SDLoc DL(N0); 5059 if (c1 + c2 >= InnerShiftSize) 5060 return DAG.getConstant(0, DL, VT); 5061 return DAG.getNode(ISD::TRUNCATE, DL, VT, 5062 DAG.getNode(ISD::SRL, DL, InnerShiftVT, 5063 N0.getOperand(0)->getOperand(0), 5064 DAG.getConstant(c1 + c2, DL, 5065 ShiftCountVT))); 5066 } 5067 } 5068 5069 // fold (srl (shl x, c), c) -> (and x, cst2) 5070 if (N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 && 5071 isConstantOrConstantVector(N1, /* NoOpaques */ true)) { 5072 SDLoc DL(N); 5073 APInt AllBits = APInt::getAllOnesValue(N0.getScalarValueSizeInBits()); 5074 SDValue Mask = 5075 DAG.getNode(ISD::SRL, DL, VT, DAG.getConstant(AllBits, DL, VT), N1); 5076 AddToWorklist(Mask.getNode()); 5077 return DAG.getNode(ISD::AND, DL, VT, N0.getOperand(0), Mask); 5078 } 5079 5080 // fold (srl (anyextend x), c) -> (and (anyextend (srl x, c)), mask) 5081 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) { 5082 // Shifting in all undef bits? 5083 EVT SmallVT = N0.getOperand(0).getValueType(); 5084 unsigned BitSize = SmallVT.getScalarSizeInBits(); 5085 if (N1C->getZExtValue() >= BitSize) 5086 return DAG.getUNDEF(VT); 5087 5088 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) { 5089 uint64_t ShiftAmt = N1C->getZExtValue(); 5090 SDLoc DL0(N0); 5091 SDValue SmallShift = DAG.getNode(ISD::SRL, DL0, SmallVT, 5092 N0.getOperand(0), 5093 DAG.getConstant(ShiftAmt, DL0, 5094 getShiftAmountTy(SmallVT))); 5095 AddToWorklist(SmallShift.getNode()); 5096 APInt Mask = APInt::getAllOnesValue(OpSizeInBits).lshr(ShiftAmt); 5097 SDLoc DL(N); 5098 return DAG.getNode(ISD::AND, DL, VT, 5099 DAG.getNode(ISD::ANY_EXTEND, DL, VT, SmallShift), 5100 DAG.getConstant(Mask, DL, VT)); 5101 } 5102 } 5103 5104 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign 5105 // bit, which is unmodified by sra. 5106 if (N1C && N1C->getZExtValue() + 1 == OpSizeInBits) { 5107 if (N0.getOpcode() == ISD::SRA) 5108 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0), N1); 5109 } 5110 5111 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit). 5112 if (N1C && N0.getOpcode() == ISD::CTLZ && 5113 N1C->getAPIntValue() == Log2_32(OpSizeInBits)) { 5114 APInt KnownZero, KnownOne; 5115 DAG.computeKnownBits(N0.getOperand(0), KnownZero, KnownOne); 5116 5117 // If any of the input bits are KnownOne, then the input couldn't be all 5118 // zeros, thus the result of the srl will always be zero. 5119 if (KnownOne.getBoolValue()) return DAG.getConstant(0, SDLoc(N0), VT); 5120 5121 // If all of the bits input the to ctlz node are known to be zero, then 5122 // the result of the ctlz is "32" and the result of the shift is one. 5123 APInt UnknownBits = ~KnownZero; 5124 if (UnknownBits == 0) return DAG.getConstant(1, SDLoc(N0), VT); 5125 5126 // Otherwise, check to see if there is exactly one bit input to the ctlz. 5127 if ((UnknownBits & (UnknownBits - 1)) == 0) { 5128 // Okay, we know that only that the single bit specified by UnknownBits 5129 // could be set on input to the CTLZ node. If this bit is set, the SRL 5130 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair 5131 // to an SRL/XOR pair, which is likely to simplify more. 5132 unsigned ShAmt = UnknownBits.countTrailingZeros(); 5133 SDValue Op = N0.getOperand(0); 5134 5135 if (ShAmt) { 5136 SDLoc DL(N0); 5137 Op = DAG.getNode(ISD::SRL, DL, VT, Op, 5138 DAG.getConstant(ShAmt, DL, 5139 getShiftAmountTy(Op.getValueType()))); 5140 AddToWorklist(Op.getNode()); 5141 } 5142 5143 SDLoc DL(N); 5144 return DAG.getNode(ISD::XOR, DL, VT, 5145 Op, DAG.getConstant(1, DL, VT)); 5146 } 5147 } 5148 5149 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))). 5150 if (N1.getOpcode() == ISD::TRUNCATE && 5151 N1.getOperand(0).getOpcode() == ISD::AND) { 5152 if (SDValue NewOp1 = distributeTruncateThroughAnd(N1.getNode())) 5153 return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, NewOp1); 5154 } 5155 5156 // fold operands of srl based on knowledge that the low bits are not 5157 // demanded. 5158 if (N1C && SimplifyDemandedBits(SDValue(N, 0))) 5159 return SDValue(N, 0); 5160 5161 if (N1C && !N1C->isOpaque()) 5162 if (SDValue NewSRL = visitShiftByConstant(N, N1C)) 5163 return NewSRL; 5164 5165 // Attempt to convert a srl of a load into a narrower zero-extending load. 5166 if (SDValue NarrowLoad = ReduceLoadWidth(N)) 5167 return NarrowLoad; 5168 5169 // Here is a common situation. We want to optimize: 5170 // 5171 // %a = ... 5172 // %b = and i32 %a, 2 5173 // %c = srl i32 %b, 1 5174 // brcond i32 %c ... 5175 // 5176 // into 5177 // 5178 // %a = ... 5179 // %b = and %a, 2 5180 // %c = setcc eq %b, 0 5181 // brcond %c ... 5182 // 5183 // However when after the source operand of SRL is optimized into AND, the SRL 5184 // itself may not be optimized further. Look for it and add the BRCOND into 5185 // the worklist. 5186 if (N->hasOneUse()) { 5187 SDNode *Use = *N->use_begin(); 5188 if (Use->getOpcode() == ISD::BRCOND) 5189 AddToWorklist(Use); 5190 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) { 5191 // Also look pass the truncate. 5192 Use = *Use->use_begin(); 5193 if (Use->getOpcode() == ISD::BRCOND) 5194 AddToWorklist(Use); 5195 } 5196 } 5197 5198 return SDValue(); 5199 } 5200 5201 SDValue DAGCombiner::visitBSWAP(SDNode *N) { 5202 SDValue N0 = N->getOperand(0); 5203 EVT VT = N->getValueType(0); 5204 5205 // fold (bswap c1) -> c2 5206 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 5207 return DAG.getNode(ISD::BSWAP, SDLoc(N), VT, N0); 5208 // fold (bswap (bswap x)) -> x 5209 if (N0.getOpcode() == ISD::BSWAP) 5210 return N0->getOperand(0); 5211 return SDValue(); 5212 } 5213 5214 SDValue DAGCombiner::visitBITREVERSE(SDNode *N) { 5215 SDValue N0 = N->getOperand(0); 5216 5217 // fold (bitreverse (bitreverse x)) -> x 5218 if (N0.getOpcode() == ISD::BITREVERSE) 5219 return N0.getOperand(0); 5220 return SDValue(); 5221 } 5222 5223 SDValue DAGCombiner::visitCTLZ(SDNode *N) { 5224 SDValue N0 = N->getOperand(0); 5225 EVT VT = N->getValueType(0); 5226 5227 // fold (ctlz c1) -> c2 5228 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 5229 return DAG.getNode(ISD::CTLZ, SDLoc(N), VT, N0); 5230 return SDValue(); 5231 } 5232 5233 SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) { 5234 SDValue N0 = N->getOperand(0); 5235 EVT VT = N->getValueType(0); 5236 5237 // fold (ctlz_zero_undef c1) -> c2 5238 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 5239 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, SDLoc(N), VT, N0); 5240 return SDValue(); 5241 } 5242 5243 SDValue DAGCombiner::visitCTTZ(SDNode *N) { 5244 SDValue N0 = N->getOperand(0); 5245 EVT VT = N->getValueType(0); 5246 5247 // fold (cttz c1) -> c2 5248 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 5249 return DAG.getNode(ISD::CTTZ, SDLoc(N), VT, N0); 5250 return SDValue(); 5251 } 5252 5253 SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) { 5254 SDValue N0 = N->getOperand(0); 5255 EVT VT = N->getValueType(0); 5256 5257 // fold (cttz_zero_undef c1) -> c2 5258 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 5259 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, SDLoc(N), VT, N0); 5260 return SDValue(); 5261 } 5262 5263 SDValue DAGCombiner::visitCTPOP(SDNode *N) { 5264 SDValue N0 = N->getOperand(0); 5265 EVT VT = N->getValueType(0); 5266 5267 // fold (ctpop c1) -> c2 5268 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 5269 return DAG.getNode(ISD::CTPOP, SDLoc(N), VT, N0); 5270 return SDValue(); 5271 } 5272 5273 5274 /// \brief Generate Min/Max node 5275 static SDValue combineMinNumMaxNum(const SDLoc &DL, EVT VT, SDValue LHS, 5276 SDValue RHS, SDValue True, SDValue False, 5277 ISD::CondCode CC, const TargetLowering &TLI, 5278 SelectionDAG &DAG) { 5279 if (!(LHS == True && RHS == False) && !(LHS == False && RHS == True)) 5280 return SDValue(); 5281 5282 switch (CC) { 5283 case ISD::SETOLT: 5284 case ISD::SETOLE: 5285 case ISD::SETLT: 5286 case ISD::SETLE: 5287 case ISD::SETULT: 5288 case ISD::SETULE: { 5289 unsigned Opcode = (LHS == True) ? ISD::FMINNUM : ISD::FMAXNUM; 5290 if (TLI.isOperationLegal(Opcode, VT)) 5291 return DAG.getNode(Opcode, DL, VT, LHS, RHS); 5292 return SDValue(); 5293 } 5294 case ISD::SETOGT: 5295 case ISD::SETOGE: 5296 case ISD::SETGT: 5297 case ISD::SETGE: 5298 case ISD::SETUGT: 5299 case ISD::SETUGE: { 5300 unsigned Opcode = (LHS == True) ? ISD::FMAXNUM : ISD::FMINNUM; 5301 if (TLI.isOperationLegal(Opcode, VT)) 5302 return DAG.getNode(Opcode, DL, VT, LHS, RHS); 5303 return SDValue(); 5304 } 5305 default: 5306 return SDValue(); 5307 } 5308 } 5309 5310 // TODO: We should handle other cases of selecting between {-1,0,1} here. 5311 SDValue DAGCombiner::foldSelectOfConstants(SDNode *N) { 5312 SDValue Cond = N->getOperand(0); 5313 SDValue N1 = N->getOperand(1); 5314 SDValue N2 = N->getOperand(2); 5315 EVT VT = N->getValueType(0); 5316 EVT CondVT = Cond.getValueType(); 5317 SDLoc DL(N); 5318 5319 // fold (select Cond, 0, 1) -> (xor Cond, 1) 5320 // We can't do this reliably if integer based booleans have different contents 5321 // to floating point based booleans. This is because we can't tell whether we 5322 // have an integer-based boolean or a floating-point-based boolean unless we 5323 // can find the SETCC that produced it and inspect its operands. This is 5324 // fairly easy if C is the SETCC node, but it can potentially be 5325 // undiscoverable (or not reasonably discoverable). For example, it could be 5326 // in another basic block or it could require searching a complicated 5327 // expression. 5328 if (VT.isInteger() && 5329 (CondVT == MVT::i1 || (CondVT.isInteger() && 5330 TLI.getBooleanContents(false, true) == 5331 TargetLowering::ZeroOrOneBooleanContent && 5332 TLI.getBooleanContents(false, false) == 5333 TargetLowering::ZeroOrOneBooleanContent)) && 5334 isNullConstant(N1) && isOneConstant(N2)) { 5335 SDValue NotCond = DAG.getNode(ISD::XOR, DL, CondVT, Cond, 5336 DAG.getConstant(1, DL, CondVT)); 5337 if (VT.bitsEq(CondVT)) 5338 return NotCond; 5339 return DAG.getZExtOrTrunc(NotCond, DL, VT); 5340 } 5341 5342 return SDValue(); 5343 } 5344 5345 SDValue DAGCombiner::visitSELECT(SDNode *N) { 5346 SDValue N0 = N->getOperand(0); 5347 SDValue N1 = N->getOperand(1); 5348 SDValue N2 = N->getOperand(2); 5349 EVT VT = N->getValueType(0); 5350 EVT VT0 = N0.getValueType(); 5351 5352 // fold (select C, X, X) -> X 5353 if (N1 == N2) 5354 return N1; 5355 if (const ConstantSDNode *N0C = dyn_cast<const ConstantSDNode>(N0)) { 5356 // fold (select true, X, Y) -> X 5357 // fold (select false, X, Y) -> Y 5358 return !N0C->isNullValue() ? N1 : N2; 5359 } 5360 // fold (select C, 1, X) -> (or C, X) 5361 if (VT == MVT::i1 && isOneConstant(N1)) 5362 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2); 5363 5364 if (SDValue V = foldSelectOfConstants(N)) 5365 return V; 5366 5367 // fold (select C, 0, X) -> (and (not C), X) 5368 if (VT == VT0 && VT == MVT::i1 && isNullConstant(N1)) { 5369 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT); 5370 AddToWorklist(NOTNode.getNode()); 5371 return DAG.getNode(ISD::AND, SDLoc(N), VT, NOTNode, N2); 5372 } 5373 // fold (select C, X, 1) -> (or (not C), X) 5374 if (VT == VT0 && VT == MVT::i1 && isOneConstant(N2)) { 5375 SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT); 5376 AddToWorklist(NOTNode.getNode()); 5377 return DAG.getNode(ISD::OR, SDLoc(N), VT, NOTNode, N1); 5378 } 5379 // fold (select C, X, 0) -> (and C, X) 5380 if (VT == MVT::i1 && isNullConstant(N2)) 5381 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1); 5382 // fold (select X, X, Y) -> (or X, Y) 5383 // fold (select X, 1, Y) -> (or X, Y) 5384 if (VT == MVT::i1 && (N0 == N1 || isOneConstant(N1))) 5385 return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2); 5386 // fold (select X, Y, X) -> (and X, Y) 5387 // fold (select X, Y, 0) -> (and X, Y) 5388 if (VT == MVT::i1 && (N0 == N2 || isNullConstant(N2))) 5389 return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1); 5390 5391 // If we can fold this based on the true/false value, do so. 5392 if (SimplifySelectOps(N, N1, N2)) 5393 return SDValue(N, 0); // Don't revisit N. 5394 5395 if (VT0 == MVT::i1) { 5396 // The code in this block deals with the following 2 equivalences: 5397 // select(C0|C1, x, y) <=> select(C0, x, select(C1, x, y)) 5398 // select(C0&C1, x, y) <=> select(C0, select(C1, x, y), y) 5399 // The target can specify its preferred form with the 5400 // shouldNormalizeToSelectSequence() callback. However we always transform 5401 // to the right anyway if we find the inner select exists in the DAG anyway 5402 // and we always transform to the left side if we know that we can further 5403 // optimize the combination of the conditions. 5404 bool normalizeToSequence 5405 = TLI.shouldNormalizeToSelectSequence(*DAG.getContext(), VT); 5406 // select (and Cond0, Cond1), X, Y 5407 // -> select Cond0, (select Cond1, X, Y), Y 5408 if (N0->getOpcode() == ISD::AND && N0->hasOneUse()) { 5409 SDValue Cond0 = N0->getOperand(0); 5410 SDValue Cond1 = N0->getOperand(1); 5411 SDValue InnerSelect = DAG.getNode(ISD::SELECT, SDLoc(N), 5412 N1.getValueType(), Cond1, N1, N2); 5413 if (normalizeToSequence || !InnerSelect.use_empty()) 5414 return DAG.getNode(ISD::SELECT, SDLoc(N), N1.getValueType(), Cond0, 5415 InnerSelect, N2); 5416 } 5417 // select (or Cond0, Cond1), X, Y -> select Cond0, X, (select Cond1, X, Y) 5418 if (N0->getOpcode() == ISD::OR && N0->hasOneUse()) { 5419 SDValue Cond0 = N0->getOperand(0); 5420 SDValue Cond1 = N0->getOperand(1); 5421 SDValue InnerSelect = DAG.getNode(ISD::SELECT, SDLoc(N), 5422 N1.getValueType(), Cond1, N1, N2); 5423 if (normalizeToSequence || !InnerSelect.use_empty()) 5424 return DAG.getNode(ISD::SELECT, SDLoc(N), N1.getValueType(), Cond0, N1, 5425 InnerSelect); 5426 } 5427 5428 // select Cond0, (select Cond1, X, Y), Y -> select (and Cond0, Cond1), X, Y 5429 if (N1->getOpcode() == ISD::SELECT && N1->hasOneUse()) { 5430 SDValue N1_0 = N1->getOperand(0); 5431 SDValue N1_1 = N1->getOperand(1); 5432 SDValue N1_2 = N1->getOperand(2); 5433 if (N1_2 == N2 && N0.getValueType() == N1_0.getValueType()) { 5434 // Create the actual and node if we can generate good code for it. 5435 if (!normalizeToSequence) { 5436 SDValue And = DAG.getNode(ISD::AND, SDLoc(N), N0.getValueType(), 5437 N0, N1_0); 5438 return DAG.getNode(ISD::SELECT, SDLoc(N), N1.getValueType(), And, 5439 N1_1, N2); 5440 } 5441 // Otherwise see if we can optimize the "and" to a better pattern. 5442 if (SDValue Combined = visitANDLike(N0, N1_0, N)) 5443 return DAG.getNode(ISD::SELECT, SDLoc(N), N1.getValueType(), Combined, 5444 N1_1, N2); 5445 } 5446 } 5447 // select Cond0, X, (select Cond1, X, Y) -> select (or Cond0, Cond1), X, Y 5448 if (N2->getOpcode() == ISD::SELECT && N2->hasOneUse()) { 5449 SDValue N2_0 = N2->getOperand(0); 5450 SDValue N2_1 = N2->getOperand(1); 5451 SDValue N2_2 = N2->getOperand(2); 5452 if (N2_1 == N1 && N0.getValueType() == N2_0.getValueType()) { 5453 // Create the actual or node if we can generate good code for it. 5454 if (!normalizeToSequence) { 5455 SDValue Or = DAG.getNode(ISD::OR, SDLoc(N), N0.getValueType(), 5456 N0, N2_0); 5457 return DAG.getNode(ISD::SELECT, SDLoc(N), N1.getValueType(), Or, 5458 N1, N2_2); 5459 } 5460 // Otherwise see if we can optimize to a better pattern. 5461 if (SDValue Combined = visitORLike(N0, N2_0, N)) 5462 return DAG.getNode(ISD::SELECT, SDLoc(N), N1.getValueType(), Combined, 5463 N1, N2_2); 5464 } 5465 } 5466 } 5467 5468 // select (xor Cond, 1), X, Y -> select Cond, Y, X 5469 // select (xor Cond, 0), X, Y -> selext Cond, X, Y 5470 if (VT0 == MVT::i1) { 5471 if (N0->getOpcode() == ISD::XOR) { 5472 if (auto *C = dyn_cast<ConstantSDNode>(N0->getOperand(1))) { 5473 SDValue Cond0 = N0->getOperand(0); 5474 if (C->isOne()) 5475 return DAG.getNode(ISD::SELECT, SDLoc(N), N1.getValueType(), 5476 Cond0, N2, N1); 5477 else 5478 return DAG.getNode(ISD::SELECT, SDLoc(N), N1.getValueType(), 5479 Cond0, N1, N2); 5480 } 5481 } 5482 } 5483 5484 // fold selects based on a setcc into other things, such as min/max/abs 5485 if (N0.getOpcode() == ISD::SETCC) { 5486 // select x, y (fcmp lt x, y) -> fminnum x, y 5487 // select x, y (fcmp gt x, y) -> fmaxnum x, y 5488 // 5489 // This is OK if we don't care about what happens if either operand is a 5490 // NaN. 5491 // 5492 5493 // FIXME: Instead of testing for UnsafeFPMath, this should be checking for 5494 // no signed zeros as well as no nans. 5495 const TargetOptions &Options = DAG.getTarget().Options; 5496 if (Options.UnsafeFPMath && 5497 VT.isFloatingPoint() && N0.hasOneUse() && 5498 DAG.isKnownNeverNaN(N1) && DAG.isKnownNeverNaN(N2)) { 5499 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get(); 5500 5501 if (SDValue FMinMax = combineMinNumMaxNum(SDLoc(N), VT, N0.getOperand(0), 5502 N0.getOperand(1), N1, N2, CC, 5503 TLI, DAG)) 5504 return FMinMax; 5505 } 5506 5507 if ((!LegalOperations && 5508 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT)) || 5509 TLI.isOperationLegal(ISD::SELECT_CC, VT)) 5510 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, 5511 N0.getOperand(0), N0.getOperand(1), 5512 N1, N2, N0.getOperand(2)); 5513 return SimplifySelect(SDLoc(N), N0, N1, N2); 5514 } 5515 5516 return SDValue(); 5517 } 5518 5519 static 5520 std::pair<SDValue, SDValue> SplitVSETCC(const SDNode *N, SelectionDAG &DAG) { 5521 SDLoc DL(N); 5522 EVT LoVT, HiVT; 5523 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0)); 5524 5525 // Split the inputs. 5526 SDValue Lo, Hi, LL, LH, RL, RH; 5527 std::tie(LL, LH) = DAG.SplitVectorOperand(N, 0); 5528 std::tie(RL, RH) = DAG.SplitVectorOperand(N, 1); 5529 5530 Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2)); 5531 Hi = DAG.getNode(N->getOpcode(), DL, HiVT, LH, RH, N->getOperand(2)); 5532 5533 return std::make_pair(Lo, Hi); 5534 } 5535 5536 // This function assumes all the vselect's arguments are CONCAT_VECTOR 5537 // nodes and that the condition is a BV of ConstantSDNodes (or undefs). 5538 static SDValue ConvertSelectToConcatVector(SDNode *N, SelectionDAG &DAG) { 5539 SDLoc DL(N); 5540 SDValue Cond = N->getOperand(0); 5541 SDValue LHS = N->getOperand(1); 5542 SDValue RHS = N->getOperand(2); 5543 EVT VT = N->getValueType(0); 5544 int NumElems = VT.getVectorNumElements(); 5545 assert(LHS.getOpcode() == ISD::CONCAT_VECTORS && 5546 RHS.getOpcode() == ISD::CONCAT_VECTORS && 5547 Cond.getOpcode() == ISD::BUILD_VECTOR); 5548 5549 // CONCAT_VECTOR can take an arbitrary number of arguments. We only care about 5550 // binary ones here. 5551 if (LHS->getNumOperands() != 2 || RHS->getNumOperands() != 2) 5552 return SDValue(); 5553 5554 // We're sure we have an even number of elements due to the 5555 // concat_vectors we have as arguments to vselect. 5556 // Skip BV elements until we find one that's not an UNDEF 5557 // After we find an UNDEF element, keep looping until we get to half the 5558 // length of the BV and see if all the non-undef nodes are the same. 5559 ConstantSDNode *BottomHalf = nullptr; 5560 for (int i = 0; i < NumElems / 2; ++i) { 5561 if (Cond->getOperand(i)->isUndef()) 5562 continue; 5563 5564 if (BottomHalf == nullptr) 5565 BottomHalf = cast<ConstantSDNode>(Cond.getOperand(i)); 5566 else if (Cond->getOperand(i).getNode() != BottomHalf) 5567 return SDValue(); 5568 } 5569 5570 // Do the same for the second half of the BuildVector 5571 ConstantSDNode *TopHalf = nullptr; 5572 for (int i = NumElems / 2; i < NumElems; ++i) { 5573 if (Cond->getOperand(i)->isUndef()) 5574 continue; 5575 5576 if (TopHalf == nullptr) 5577 TopHalf = cast<ConstantSDNode>(Cond.getOperand(i)); 5578 else if (Cond->getOperand(i).getNode() != TopHalf) 5579 return SDValue(); 5580 } 5581 5582 assert(TopHalf && BottomHalf && 5583 "One half of the selector was all UNDEFs and the other was all the " 5584 "same value. This should have been addressed before this function."); 5585 return DAG.getNode( 5586 ISD::CONCAT_VECTORS, DL, VT, 5587 BottomHalf->isNullValue() ? RHS->getOperand(0) : LHS->getOperand(0), 5588 TopHalf->isNullValue() ? RHS->getOperand(1) : LHS->getOperand(1)); 5589 } 5590 5591 SDValue DAGCombiner::visitMSCATTER(SDNode *N) { 5592 5593 if (Level >= AfterLegalizeTypes) 5594 return SDValue(); 5595 5596 MaskedScatterSDNode *MSC = cast<MaskedScatterSDNode>(N); 5597 SDValue Mask = MSC->getMask(); 5598 SDValue Data = MSC->getValue(); 5599 SDLoc DL(N); 5600 5601 // If the MSCATTER data type requires splitting and the mask is provided by a 5602 // SETCC, then split both nodes and its operands before legalization. This 5603 // prevents the type legalizer from unrolling SETCC into scalar comparisons 5604 // and enables future optimizations (e.g. min/max pattern matching on X86). 5605 if (Mask.getOpcode() != ISD::SETCC) 5606 return SDValue(); 5607 5608 // Check if any splitting is required. 5609 if (TLI.getTypeAction(*DAG.getContext(), Data.getValueType()) != 5610 TargetLowering::TypeSplitVector) 5611 return SDValue(); 5612 SDValue MaskLo, MaskHi, Lo, Hi; 5613 std::tie(MaskLo, MaskHi) = SplitVSETCC(Mask.getNode(), DAG); 5614 5615 EVT LoVT, HiVT; 5616 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(MSC->getValueType(0)); 5617 5618 SDValue Chain = MSC->getChain(); 5619 5620 EVT MemoryVT = MSC->getMemoryVT(); 5621 unsigned Alignment = MSC->getOriginalAlignment(); 5622 5623 EVT LoMemVT, HiMemVT; 5624 std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT); 5625 5626 SDValue DataLo, DataHi; 5627 std::tie(DataLo, DataHi) = DAG.SplitVector(Data, DL); 5628 5629 SDValue BasePtr = MSC->getBasePtr(); 5630 SDValue IndexLo, IndexHi; 5631 std::tie(IndexLo, IndexHi) = DAG.SplitVector(MSC->getIndex(), DL); 5632 5633 MachineMemOperand *MMO = DAG.getMachineFunction(). 5634 getMachineMemOperand(MSC->getPointerInfo(), 5635 MachineMemOperand::MOStore, LoMemVT.getStoreSize(), 5636 Alignment, MSC->getAAInfo(), MSC->getRanges()); 5637 5638 SDValue OpsLo[] = { Chain, DataLo, MaskLo, BasePtr, IndexLo }; 5639 Lo = DAG.getMaskedScatter(DAG.getVTList(MVT::Other), DataLo.getValueType(), 5640 DL, OpsLo, MMO); 5641 5642 SDValue OpsHi[] = {Chain, DataHi, MaskHi, BasePtr, IndexHi}; 5643 Hi = DAG.getMaskedScatter(DAG.getVTList(MVT::Other), DataHi.getValueType(), 5644 DL, OpsHi, MMO); 5645 5646 AddToWorklist(Lo.getNode()); 5647 AddToWorklist(Hi.getNode()); 5648 5649 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo, Hi); 5650 } 5651 5652 SDValue DAGCombiner::visitMSTORE(SDNode *N) { 5653 5654 if (Level >= AfterLegalizeTypes) 5655 return SDValue(); 5656 5657 MaskedStoreSDNode *MST = dyn_cast<MaskedStoreSDNode>(N); 5658 SDValue Mask = MST->getMask(); 5659 SDValue Data = MST->getValue(); 5660 EVT VT = Data.getValueType(); 5661 SDLoc DL(N); 5662 5663 // If the MSTORE data type requires splitting and the mask is provided by a 5664 // SETCC, then split both nodes and its operands before legalization. This 5665 // prevents the type legalizer from unrolling SETCC into scalar comparisons 5666 // and enables future optimizations (e.g. min/max pattern matching on X86). 5667 if (Mask.getOpcode() == ISD::SETCC) { 5668 5669 // Check if any splitting is required. 5670 if (TLI.getTypeAction(*DAG.getContext(), VT) != 5671 TargetLowering::TypeSplitVector) 5672 return SDValue(); 5673 5674 SDValue MaskLo, MaskHi, Lo, Hi; 5675 std::tie(MaskLo, MaskHi) = SplitVSETCC(Mask.getNode(), DAG); 5676 5677 SDValue Chain = MST->getChain(); 5678 SDValue Ptr = MST->getBasePtr(); 5679 5680 EVT MemoryVT = MST->getMemoryVT(); 5681 unsigned Alignment = MST->getOriginalAlignment(); 5682 5683 // if Alignment is equal to the vector size, 5684 // take the half of it for the second part 5685 unsigned SecondHalfAlignment = 5686 (Alignment == VT.getSizeInBits() / 8) ? Alignment / 2 : Alignment; 5687 5688 EVT LoMemVT, HiMemVT; 5689 std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT); 5690 5691 SDValue DataLo, DataHi; 5692 std::tie(DataLo, DataHi) = DAG.SplitVector(Data, DL); 5693 5694 MachineMemOperand *MMO = DAG.getMachineFunction(). 5695 getMachineMemOperand(MST->getPointerInfo(), 5696 MachineMemOperand::MOStore, LoMemVT.getStoreSize(), 5697 Alignment, MST->getAAInfo(), MST->getRanges()); 5698 5699 Lo = DAG.getMaskedStore(Chain, DL, DataLo, Ptr, MaskLo, LoMemVT, MMO, 5700 MST->isTruncatingStore(), 5701 MST->isCompressingStore()); 5702 5703 Ptr = TLI.IncrementMemoryAddress(Ptr, MaskLo, DL, LoMemVT, DAG, 5704 MST->isCompressingStore()); 5705 5706 MMO = DAG.getMachineFunction(). 5707 getMachineMemOperand(MST->getPointerInfo(), 5708 MachineMemOperand::MOStore, HiMemVT.getStoreSize(), 5709 SecondHalfAlignment, MST->getAAInfo(), 5710 MST->getRanges()); 5711 5712 Hi = DAG.getMaskedStore(Chain, DL, DataHi, Ptr, MaskHi, HiMemVT, MMO, 5713 MST->isTruncatingStore(), 5714 MST->isCompressingStore()); 5715 5716 AddToWorklist(Lo.getNode()); 5717 AddToWorklist(Hi.getNode()); 5718 5719 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo, Hi); 5720 } 5721 return SDValue(); 5722 } 5723 5724 SDValue DAGCombiner::visitMGATHER(SDNode *N) { 5725 5726 if (Level >= AfterLegalizeTypes) 5727 return SDValue(); 5728 5729 MaskedGatherSDNode *MGT = dyn_cast<MaskedGatherSDNode>(N); 5730 SDValue Mask = MGT->getMask(); 5731 SDLoc DL(N); 5732 5733 // If the MGATHER result requires splitting and the mask is provided by a 5734 // SETCC, then split both nodes and its operands before legalization. This 5735 // prevents the type legalizer from unrolling SETCC into scalar comparisons 5736 // and enables future optimizations (e.g. min/max pattern matching on X86). 5737 5738 if (Mask.getOpcode() != ISD::SETCC) 5739 return SDValue(); 5740 5741 EVT VT = N->getValueType(0); 5742 5743 // Check if any splitting is required. 5744 if (TLI.getTypeAction(*DAG.getContext(), VT) != 5745 TargetLowering::TypeSplitVector) 5746 return SDValue(); 5747 5748 SDValue MaskLo, MaskHi, Lo, Hi; 5749 std::tie(MaskLo, MaskHi) = SplitVSETCC(Mask.getNode(), DAG); 5750 5751 SDValue Src0 = MGT->getValue(); 5752 SDValue Src0Lo, Src0Hi; 5753 std::tie(Src0Lo, Src0Hi) = DAG.SplitVector(Src0, DL); 5754 5755 EVT LoVT, HiVT; 5756 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(VT); 5757 5758 SDValue Chain = MGT->getChain(); 5759 EVT MemoryVT = MGT->getMemoryVT(); 5760 unsigned Alignment = MGT->getOriginalAlignment(); 5761 5762 EVT LoMemVT, HiMemVT; 5763 std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT); 5764 5765 SDValue BasePtr = MGT->getBasePtr(); 5766 SDValue Index = MGT->getIndex(); 5767 SDValue IndexLo, IndexHi; 5768 std::tie(IndexLo, IndexHi) = DAG.SplitVector(Index, DL); 5769 5770 MachineMemOperand *MMO = DAG.getMachineFunction(). 5771 getMachineMemOperand(MGT->getPointerInfo(), 5772 MachineMemOperand::MOLoad, LoMemVT.getStoreSize(), 5773 Alignment, MGT->getAAInfo(), MGT->getRanges()); 5774 5775 SDValue OpsLo[] = { Chain, Src0Lo, MaskLo, BasePtr, IndexLo }; 5776 Lo = DAG.getMaskedGather(DAG.getVTList(LoVT, MVT::Other), LoVT, DL, OpsLo, 5777 MMO); 5778 5779 SDValue OpsHi[] = {Chain, Src0Hi, MaskHi, BasePtr, IndexHi}; 5780 Hi = DAG.getMaskedGather(DAG.getVTList(HiVT, MVT::Other), HiVT, DL, OpsHi, 5781 MMO); 5782 5783 AddToWorklist(Lo.getNode()); 5784 AddToWorklist(Hi.getNode()); 5785 5786 // Build a factor node to remember that this load is independent of the 5787 // other one. 5788 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo.getValue(1), 5789 Hi.getValue(1)); 5790 5791 // Legalized the chain result - switch anything that used the old chain to 5792 // use the new one. 5793 DAG.ReplaceAllUsesOfValueWith(SDValue(MGT, 1), Chain); 5794 5795 SDValue GatherRes = DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Lo, Hi); 5796 5797 SDValue RetOps[] = { GatherRes, Chain }; 5798 return DAG.getMergeValues(RetOps, DL); 5799 } 5800 5801 SDValue DAGCombiner::visitMLOAD(SDNode *N) { 5802 5803 if (Level >= AfterLegalizeTypes) 5804 return SDValue(); 5805 5806 MaskedLoadSDNode *MLD = dyn_cast<MaskedLoadSDNode>(N); 5807 SDValue Mask = MLD->getMask(); 5808 SDLoc DL(N); 5809 5810 // If the MLOAD result requires splitting and the mask is provided by a 5811 // SETCC, then split both nodes and its operands before legalization. This 5812 // prevents the type legalizer from unrolling SETCC into scalar comparisons 5813 // and enables future optimizations (e.g. min/max pattern matching on X86). 5814 5815 if (Mask.getOpcode() == ISD::SETCC) { 5816 EVT VT = N->getValueType(0); 5817 5818 // Check if any splitting is required. 5819 if (TLI.getTypeAction(*DAG.getContext(), VT) != 5820 TargetLowering::TypeSplitVector) 5821 return SDValue(); 5822 5823 SDValue MaskLo, MaskHi, Lo, Hi; 5824 std::tie(MaskLo, MaskHi) = SplitVSETCC(Mask.getNode(), DAG); 5825 5826 SDValue Src0 = MLD->getSrc0(); 5827 SDValue Src0Lo, Src0Hi; 5828 std::tie(Src0Lo, Src0Hi) = DAG.SplitVector(Src0, DL); 5829 5830 EVT LoVT, HiVT; 5831 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(MLD->getValueType(0)); 5832 5833 SDValue Chain = MLD->getChain(); 5834 SDValue Ptr = MLD->getBasePtr(); 5835 EVT MemoryVT = MLD->getMemoryVT(); 5836 unsigned Alignment = MLD->getOriginalAlignment(); 5837 5838 // if Alignment is equal to the vector size, 5839 // take the half of it for the second part 5840 unsigned SecondHalfAlignment = 5841 (Alignment == MLD->getValueType(0).getSizeInBits()/8) ? 5842 Alignment/2 : Alignment; 5843 5844 EVT LoMemVT, HiMemVT; 5845 std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT); 5846 5847 MachineMemOperand *MMO = DAG.getMachineFunction(). 5848 getMachineMemOperand(MLD->getPointerInfo(), 5849 MachineMemOperand::MOLoad, LoMemVT.getStoreSize(), 5850 Alignment, MLD->getAAInfo(), MLD->getRanges()); 5851 5852 Lo = DAG.getMaskedLoad(LoVT, DL, Chain, Ptr, MaskLo, Src0Lo, LoMemVT, MMO, 5853 ISD::NON_EXTLOAD, MLD->isExpandingLoad()); 5854 5855 Ptr = TLI.IncrementMemoryAddress(Ptr, MaskLo, DL, LoMemVT, DAG, 5856 MLD->isExpandingLoad()); 5857 5858 MMO = DAG.getMachineFunction(). 5859 getMachineMemOperand(MLD->getPointerInfo(), 5860 MachineMemOperand::MOLoad, HiMemVT.getStoreSize(), 5861 SecondHalfAlignment, MLD->getAAInfo(), MLD->getRanges()); 5862 5863 Hi = DAG.getMaskedLoad(HiVT, DL, Chain, Ptr, MaskHi, Src0Hi, HiMemVT, MMO, 5864 ISD::NON_EXTLOAD, MLD->isExpandingLoad()); 5865 5866 AddToWorklist(Lo.getNode()); 5867 AddToWorklist(Hi.getNode()); 5868 5869 // Build a factor node to remember that this load is independent of the 5870 // other one. 5871 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo.getValue(1), 5872 Hi.getValue(1)); 5873 5874 // Legalized the chain result - switch anything that used the old chain to 5875 // use the new one. 5876 DAG.ReplaceAllUsesOfValueWith(SDValue(MLD, 1), Chain); 5877 5878 SDValue LoadRes = DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Lo, Hi); 5879 5880 SDValue RetOps[] = { LoadRes, Chain }; 5881 return DAG.getMergeValues(RetOps, DL); 5882 } 5883 return SDValue(); 5884 } 5885 5886 SDValue DAGCombiner::visitVSELECT(SDNode *N) { 5887 SDValue N0 = N->getOperand(0); 5888 SDValue N1 = N->getOperand(1); 5889 SDValue N2 = N->getOperand(2); 5890 SDLoc DL(N); 5891 5892 // fold (vselect C, X, X) -> X 5893 if (N1 == N2) 5894 return N1; 5895 5896 // Canonicalize integer abs. 5897 // vselect (setg[te] X, 0), X, -X -> 5898 // vselect (setgt X, -1), X, -X -> 5899 // vselect (setl[te] X, 0), -X, X -> 5900 // Y = sra (X, size(X)-1); xor (add (X, Y), Y) 5901 if (N0.getOpcode() == ISD::SETCC) { 5902 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1); 5903 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get(); 5904 bool isAbs = false; 5905 bool RHSIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode()); 5906 5907 if (((RHSIsAllZeros && (CC == ISD::SETGT || CC == ISD::SETGE)) || 5908 (ISD::isBuildVectorAllOnes(RHS.getNode()) && CC == ISD::SETGT)) && 5909 N1 == LHS && N2.getOpcode() == ISD::SUB && N1 == N2.getOperand(1)) 5910 isAbs = ISD::isBuildVectorAllZeros(N2.getOperand(0).getNode()); 5911 else if ((RHSIsAllZeros && (CC == ISD::SETLT || CC == ISD::SETLE)) && 5912 N2 == LHS && N1.getOpcode() == ISD::SUB && N2 == N1.getOperand(1)) 5913 isAbs = ISD::isBuildVectorAllZeros(N1.getOperand(0).getNode()); 5914 5915 if (isAbs) { 5916 EVT VT = LHS.getValueType(); 5917 SDValue Shift = DAG.getNode( 5918 ISD::SRA, DL, VT, LHS, 5919 DAG.getConstant(VT.getScalarSizeInBits() - 1, DL, VT)); 5920 SDValue Add = DAG.getNode(ISD::ADD, DL, VT, LHS, Shift); 5921 AddToWorklist(Shift.getNode()); 5922 AddToWorklist(Add.getNode()); 5923 return DAG.getNode(ISD::XOR, DL, VT, Add, Shift); 5924 } 5925 } 5926 5927 if (SimplifySelectOps(N, N1, N2)) 5928 return SDValue(N, 0); // Don't revisit N. 5929 5930 // If the VSELECT result requires splitting and the mask is provided by a 5931 // SETCC, then split both nodes and its operands before legalization. This 5932 // prevents the type legalizer from unrolling SETCC into scalar comparisons 5933 // and enables future optimizations (e.g. min/max pattern matching on X86). 5934 if (N0.getOpcode() == ISD::SETCC) { 5935 EVT VT = N->getValueType(0); 5936 5937 // Check if any splitting is required. 5938 if (TLI.getTypeAction(*DAG.getContext(), VT) != 5939 TargetLowering::TypeSplitVector) 5940 return SDValue(); 5941 5942 SDValue Lo, Hi, CCLo, CCHi, LL, LH, RL, RH; 5943 std::tie(CCLo, CCHi) = SplitVSETCC(N0.getNode(), DAG); 5944 std::tie(LL, LH) = DAG.SplitVectorOperand(N, 1); 5945 std::tie(RL, RH) = DAG.SplitVectorOperand(N, 2); 5946 5947 Lo = DAG.getNode(N->getOpcode(), DL, LL.getValueType(), CCLo, LL, RL); 5948 Hi = DAG.getNode(N->getOpcode(), DL, LH.getValueType(), CCHi, LH, RH); 5949 5950 // Add the new VSELECT nodes to the work list in case they need to be split 5951 // again. 5952 AddToWorklist(Lo.getNode()); 5953 AddToWorklist(Hi.getNode()); 5954 5955 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Lo, Hi); 5956 } 5957 5958 // Fold (vselect (build_vector all_ones), N1, N2) -> N1 5959 if (ISD::isBuildVectorAllOnes(N0.getNode())) 5960 return N1; 5961 // Fold (vselect (build_vector all_zeros), N1, N2) -> N2 5962 if (ISD::isBuildVectorAllZeros(N0.getNode())) 5963 return N2; 5964 5965 // The ConvertSelectToConcatVector function is assuming both the above 5966 // checks for (vselect (build_vector all{ones,zeros) ...) have been made 5967 // and addressed. 5968 if (N1.getOpcode() == ISD::CONCAT_VECTORS && 5969 N2.getOpcode() == ISD::CONCAT_VECTORS && 5970 ISD::isBuildVectorOfConstantSDNodes(N0.getNode())) { 5971 if (SDValue CV = ConvertSelectToConcatVector(N, DAG)) 5972 return CV; 5973 } 5974 5975 return SDValue(); 5976 } 5977 5978 SDValue DAGCombiner::visitSELECT_CC(SDNode *N) { 5979 SDValue N0 = N->getOperand(0); 5980 SDValue N1 = N->getOperand(1); 5981 SDValue N2 = N->getOperand(2); 5982 SDValue N3 = N->getOperand(3); 5983 SDValue N4 = N->getOperand(4); 5984 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get(); 5985 5986 // fold select_cc lhs, rhs, x, x, cc -> x 5987 if (N2 == N3) 5988 return N2; 5989 5990 // Determine if the condition we're dealing with is constant 5991 if (SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()), N0, N1, 5992 CC, SDLoc(N), false)) { 5993 AddToWorklist(SCC.getNode()); 5994 5995 if (ConstantSDNode *SCCC = dyn_cast<ConstantSDNode>(SCC.getNode())) { 5996 if (!SCCC->isNullValue()) 5997 return N2; // cond always true -> true val 5998 else 5999 return N3; // cond always false -> false val 6000 } else if (SCC->isUndef()) { 6001 // When the condition is UNDEF, just return the first operand. This is 6002 // coherent the DAG creation, no setcc node is created in this case 6003 return N2; 6004 } else if (SCC.getOpcode() == ISD::SETCC) { 6005 // Fold to a simpler select_cc 6006 return DAG.getNode(ISD::SELECT_CC, SDLoc(N), N2.getValueType(), 6007 SCC.getOperand(0), SCC.getOperand(1), N2, N3, 6008 SCC.getOperand(2)); 6009 } 6010 } 6011 6012 // If we can fold this based on the true/false value, do so. 6013 if (SimplifySelectOps(N, N2, N3)) 6014 return SDValue(N, 0); // Don't revisit N. 6015 6016 // fold select_cc into other things, such as min/max/abs 6017 return SimplifySelectCC(SDLoc(N), N0, N1, N2, N3, CC); 6018 } 6019 6020 SDValue DAGCombiner::visitSETCC(SDNode *N) { 6021 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1), 6022 cast<CondCodeSDNode>(N->getOperand(2))->get(), 6023 SDLoc(N)); 6024 } 6025 6026 SDValue DAGCombiner::visitSETCCE(SDNode *N) { 6027 SDValue LHS = N->getOperand(0); 6028 SDValue RHS = N->getOperand(1); 6029 SDValue Carry = N->getOperand(2); 6030 SDValue Cond = N->getOperand(3); 6031 6032 // If Carry is false, fold to a regular SETCC. 6033 if (Carry.getOpcode() == ISD::CARRY_FALSE) 6034 return DAG.getNode(ISD::SETCC, SDLoc(N), N->getVTList(), LHS, RHS, Cond); 6035 6036 return SDValue(); 6037 } 6038 6039 /// Try to fold a sext/zext/aext dag node into a ConstantSDNode or 6040 /// a build_vector of constants. 6041 /// This function is called by the DAGCombiner when visiting sext/zext/aext 6042 /// dag nodes (see for example method DAGCombiner::visitSIGN_EXTEND). 6043 /// Vector extends are not folded if operations are legal; this is to 6044 /// avoid introducing illegal build_vector dag nodes. 6045 static SDNode *tryToFoldExtendOfConstant(SDNode *N, const TargetLowering &TLI, 6046 SelectionDAG &DAG, bool LegalTypes, 6047 bool LegalOperations) { 6048 unsigned Opcode = N->getOpcode(); 6049 SDValue N0 = N->getOperand(0); 6050 EVT VT = N->getValueType(0); 6051 6052 assert((Opcode == ISD::SIGN_EXTEND || Opcode == ISD::ZERO_EXTEND || 6053 Opcode == ISD::ANY_EXTEND || Opcode == ISD::SIGN_EXTEND_VECTOR_INREG || 6054 Opcode == ISD::ZERO_EXTEND_VECTOR_INREG) 6055 && "Expected EXTEND dag node in input!"); 6056 6057 // fold (sext c1) -> c1 6058 // fold (zext c1) -> c1 6059 // fold (aext c1) -> c1 6060 if (isa<ConstantSDNode>(N0)) 6061 return DAG.getNode(Opcode, SDLoc(N), VT, N0).getNode(); 6062 6063 // fold (sext (build_vector AllConstants) -> (build_vector AllConstants) 6064 // fold (zext (build_vector AllConstants) -> (build_vector AllConstants) 6065 // fold (aext (build_vector AllConstants) -> (build_vector AllConstants) 6066 EVT SVT = VT.getScalarType(); 6067 if (!(VT.isVector() && 6068 (!LegalTypes || (!LegalOperations && TLI.isTypeLegal(SVT))) && 6069 ISD::isBuildVectorOfConstantSDNodes(N0.getNode()))) 6070 return nullptr; 6071 6072 // We can fold this node into a build_vector. 6073 unsigned VTBits = SVT.getSizeInBits(); 6074 unsigned EVTBits = N0->getValueType(0).getScalarSizeInBits(); 6075 SmallVector<SDValue, 8> Elts; 6076 unsigned NumElts = VT.getVectorNumElements(); 6077 SDLoc DL(N); 6078 6079 for (unsigned i=0; i != NumElts; ++i) { 6080 SDValue Op = N0->getOperand(i); 6081 if (Op->isUndef()) { 6082 Elts.push_back(DAG.getUNDEF(SVT)); 6083 continue; 6084 } 6085 6086 SDLoc DL(Op); 6087 // Get the constant value and if needed trunc it to the size of the type. 6088 // Nodes like build_vector might have constants wider than the scalar type. 6089 APInt C = cast<ConstantSDNode>(Op)->getAPIntValue().zextOrTrunc(EVTBits); 6090 if (Opcode == ISD::SIGN_EXTEND || Opcode == ISD::SIGN_EXTEND_VECTOR_INREG) 6091 Elts.push_back(DAG.getConstant(C.sext(VTBits), DL, SVT)); 6092 else 6093 Elts.push_back(DAG.getConstant(C.zext(VTBits), DL, SVT)); 6094 } 6095 6096 return DAG.getBuildVector(VT, DL, Elts).getNode(); 6097 } 6098 6099 // ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this: 6100 // "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))" 6101 // transformation. Returns true if extension are possible and the above 6102 // mentioned transformation is profitable. 6103 static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0, 6104 unsigned ExtOpc, 6105 SmallVectorImpl<SDNode *> &ExtendNodes, 6106 const TargetLowering &TLI) { 6107 bool HasCopyToRegUses = false; 6108 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType()); 6109 for (SDNode::use_iterator UI = N0.getNode()->use_begin(), 6110 UE = N0.getNode()->use_end(); 6111 UI != UE; ++UI) { 6112 SDNode *User = *UI; 6113 if (User == N) 6114 continue; 6115 if (UI.getUse().getResNo() != N0.getResNo()) 6116 continue; 6117 // FIXME: Only extend SETCC N, N and SETCC N, c for now. 6118 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) { 6119 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get(); 6120 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC)) 6121 // Sign bits will be lost after a zext. 6122 return false; 6123 bool Add = false; 6124 for (unsigned i = 0; i != 2; ++i) { 6125 SDValue UseOp = User->getOperand(i); 6126 if (UseOp == N0) 6127 continue; 6128 if (!isa<ConstantSDNode>(UseOp)) 6129 return false; 6130 Add = true; 6131 } 6132 if (Add) 6133 ExtendNodes.push_back(User); 6134 continue; 6135 } 6136 // If truncates aren't free and there are users we can't 6137 // extend, it isn't worthwhile. 6138 if (!isTruncFree) 6139 return false; 6140 // Remember if this value is live-out. 6141 if (User->getOpcode() == ISD::CopyToReg) 6142 HasCopyToRegUses = true; 6143 } 6144 6145 if (HasCopyToRegUses) { 6146 bool BothLiveOut = false; 6147 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); 6148 UI != UE; ++UI) { 6149 SDUse &Use = UI.getUse(); 6150 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) { 6151 BothLiveOut = true; 6152 break; 6153 } 6154 } 6155 if (BothLiveOut) 6156 // Both unextended and extended values are live out. There had better be 6157 // a good reason for the transformation. 6158 return ExtendNodes.size(); 6159 } 6160 return true; 6161 } 6162 6163 void DAGCombiner::ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs, 6164 SDValue Trunc, SDValue ExtLoad, 6165 const SDLoc &DL, ISD::NodeType ExtType) { 6166 // Extend SetCC uses if necessary. 6167 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) { 6168 SDNode *SetCC = SetCCs[i]; 6169 SmallVector<SDValue, 4> Ops; 6170 6171 for (unsigned j = 0; j != 2; ++j) { 6172 SDValue SOp = SetCC->getOperand(j); 6173 if (SOp == Trunc) 6174 Ops.push_back(ExtLoad); 6175 else 6176 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp)); 6177 } 6178 6179 Ops.push_back(SetCC->getOperand(2)); 6180 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0), Ops)); 6181 } 6182 } 6183 6184 // FIXME: Bring more similar combines here, common to sext/zext (maybe aext?). 6185 SDValue DAGCombiner::CombineExtLoad(SDNode *N) { 6186 SDValue N0 = N->getOperand(0); 6187 EVT DstVT = N->getValueType(0); 6188 EVT SrcVT = N0.getValueType(); 6189 6190 assert((N->getOpcode() == ISD::SIGN_EXTEND || 6191 N->getOpcode() == ISD::ZERO_EXTEND) && 6192 "Unexpected node type (not an extend)!"); 6193 6194 // fold (sext (load x)) to multiple smaller sextloads; same for zext. 6195 // For example, on a target with legal v4i32, but illegal v8i32, turn: 6196 // (v8i32 (sext (v8i16 (load x)))) 6197 // into: 6198 // (v8i32 (concat_vectors (v4i32 (sextload x)), 6199 // (v4i32 (sextload (x + 16))))) 6200 // Where uses of the original load, i.e.: 6201 // (v8i16 (load x)) 6202 // are replaced with: 6203 // (v8i16 (truncate 6204 // (v8i32 (concat_vectors (v4i32 (sextload x)), 6205 // (v4i32 (sextload (x + 16))))))) 6206 // 6207 // This combine is only applicable to illegal, but splittable, vectors. 6208 // All legal types, and illegal non-vector types, are handled elsewhere. 6209 // This combine is controlled by TargetLowering::isVectorLoadExtDesirable. 6210 // 6211 if (N0->getOpcode() != ISD::LOAD) 6212 return SDValue(); 6213 6214 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 6215 6216 if (!ISD::isNON_EXTLoad(LN0) || !ISD::isUNINDEXEDLoad(LN0) || 6217 !N0.hasOneUse() || LN0->isVolatile() || !DstVT.isVector() || 6218 !DstVT.isPow2VectorType() || !TLI.isVectorLoadExtDesirable(SDValue(N, 0))) 6219 return SDValue(); 6220 6221 SmallVector<SDNode *, 4> SetCCs; 6222 if (!ExtendUsesToFormExtLoad(N, N0, N->getOpcode(), SetCCs, TLI)) 6223 return SDValue(); 6224 6225 ISD::LoadExtType ExtType = 6226 N->getOpcode() == ISD::SIGN_EXTEND ? ISD::SEXTLOAD : ISD::ZEXTLOAD; 6227 6228 // Try to split the vector types to get down to legal types. 6229 EVT SplitSrcVT = SrcVT; 6230 EVT SplitDstVT = DstVT; 6231 while (!TLI.isLoadExtLegalOrCustom(ExtType, SplitDstVT, SplitSrcVT) && 6232 SplitSrcVT.getVectorNumElements() > 1) { 6233 SplitDstVT = DAG.GetSplitDestVTs(SplitDstVT).first; 6234 SplitSrcVT = DAG.GetSplitDestVTs(SplitSrcVT).first; 6235 } 6236 6237 if (!TLI.isLoadExtLegalOrCustom(ExtType, SplitDstVT, SplitSrcVT)) 6238 return SDValue(); 6239 6240 SDLoc DL(N); 6241 const unsigned NumSplits = 6242 DstVT.getVectorNumElements() / SplitDstVT.getVectorNumElements(); 6243 const unsigned Stride = SplitSrcVT.getStoreSize(); 6244 SmallVector<SDValue, 4> Loads; 6245 SmallVector<SDValue, 4> Chains; 6246 6247 SDValue BasePtr = LN0->getBasePtr(); 6248 for (unsigned Idx = 0; Idx < NumSplits; Idx++) { 6249 const unsigned Offset = Idx * Stride; 6250 const unsigned Align = MinAlign(LN0->getAlignment(), Offset); 6251 6252 SDValue SplitLoad = DAG.getExtLoad( 6253 ExtType, DL, SplitDstVT, LN0->getChain(), BasePtr, 6254 LN0->getPointerInfo().getWithOffset(Offset), SplitSrcVT, Align, 6255 LN0->getMemOperand()->getFlags(), LN0->getAAInfo()); 6256 6257 BasePtr = DAG.getNode(ISD::ADD, DL, BasePtr.getValueType(), BasePtr, 6258 DAG.getConstant(Stride, DL, BasePtr.getValueType())); 6259 6260 Loads.push_back(SplitLoad.getValue(0)); 6261 Chains.push_back(SplitLoad.getValue(1)); 6262 } 6263 6264 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains); 6265 SDValue NewValue = DAG.getNode(ISD::CONCAT_VECTORS, DL, DstVT, Loads); 6266 6267 CombineTo(N, NewValue); 6268 6269 // Replace uses of the original load (before extension) 6270 // with a truncate of the concatenated sextloaded vectors. 6271 SDValue Trunc = 6272 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), N0.getValueType(), NewValue); 6273 CombineTo(N0.getNode(), Trunc, NewChain); 6274 ExtendSetCCUses(SetCCs, Trunc, NewValue, DL, 6275 (ISD::NodeType)N->getOpcode()); 6276 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6277 } 6278 6279 SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) { 6280 SDValue N0 = N->getOperand(0); 6281 EVT VT = N->getValueType(0); 6282 6283 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes, 6284 LegalOperations)) 6285 return SDValue(Res, 0); 6286 6287 // fold (sext (sext x)) -> (sext x) 6288 // fold (sext (aext x)) -> (sext x) 6289 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) 6290 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, 6291 N0.getOperand(0)); 6292 6293 if (N0.getOpcode() == ISD::TRUNCATE) { 6294 // fold (sext (truncate (load x))) -> (sext (smaller load x)) 6295 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n))) 6296 if (SDValue NarrowLoad = ReduceLoadWidth(N0.getNode())) { 6297 SDNode *oye = N0.getOperand(0).getNode(); 6298 if (NarrowLoad.getNode() != N0.getNode()) { 6299 CombineTo(N0.getNode(), NarrowLoad); 6300 // CombineTo deleted the truncate, if needed, but not what's under it. 6301 AddToWorklist(oye); 6302 } 6303 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6304 } 6305 6306 // See if the value being truncated is already sign extended. If so, just 6307 // eliminate the trunc/sext pair. 6308 SDValue Op = N0.getOperand(0); 6309 unsigned OpBits = Op.getScalarValueSizeInBits(); 6310 unsigned MidBits = N0.getScalarValueSizeInBits(); 6311 unsigned DestBits = VT.getScalarSizeInBits(); 6312 unsigned NumSignBits = DAG.ComputeNumSignBits(Op); 6313 6314 if (OpBits == DestBits) { 6315 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign 6316 // bits, it is already ready. 6317 if (NumSignBits > DestBits-MidBits) 6318 return Op; 6319 } else if (OpBits < DestBits) { 6320 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign 6321 // bits, just sext from i32. 6322 if (NumSignBits > OpBits-MidBits) 6323 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, Op); 6324 } else { 6325 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign 6326 // bits, just truncate to i32. 6327 if (NumSignBits > OpBits-MidBits) 6328 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op); 6329 } 6330 6331 // fold (sext (truncate x)) -> (sextinreg x). 6332 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, 6333 N0.getValueType())) { 6334 if (OpBits < DestBits) 6335 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N0), VT, Op); 6336 else if (OpBits > DestBits) 6337 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT, Op); 6338 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, Op, 6339 DAG.getValueType(N0.getValueType())); 6340 } 6341 } 6342 6343 // fold (sext (load x)) -> (sext (truncate (sextload x))) 6344 // Only generate vector extloads when 1) they're legal, and 2) they are 6345 // deemed desirable by the target. 6346 if (ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && 6347 ((!LegalOperations && !VT.isVector() && 6348 !cast<LoadSDNode>(N0)->isVolatile()) || 6349 TLI.isLoadExtLegal(ISD::SEXTLOAD, VT, N0.getValueType()))) { 6350 bool DoXform = true; 6351 SmallVector<SDNode*, 4> SetCCs; 6352 if (!N0.hasOneUse()) 6353 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI); 6354 if (VT.isVector()) 6355 DoXform &= TLI.isVectorLoadExtDesirable(SDValue(N, 0)); 6356 if (DoXform) { 6357 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 6358 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT, 6359 LN0->getChain(), 6360 LN0->getBasePtr(), N0.getValueType(), 6361 LN0->getMemOperand()); 6362 CombineTo(N, ExtLoad); 6363 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), 6364 N0.getValueType(), ExtLoad); 6365 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1)); 6366 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N), 6367 ISD::SIGN_EXTEND); 6368 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6369 } 6370 } 6371 6372 // fold (sext (load x)) to multiple smaller sextloads. 6373 // Only on illegal but splittable vectors. 6374 if (SDValue ExtLoad = CombineExtLoad(N)) 6375 return ExtLoad; 6376 6377 // fold (sext (sextload x)) -> (sext (truncate (sextload x))) 6378 // fold (sext ( extload x)) -> (sext (truncate (sextload x))) 6379 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) && 6380 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) { 6381 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 6382 EVT MemVT = LN0->getMemoryVT(); 6383 if ((!LegalOperations && !LN0->isVolatile()) || 6384 TLI.isLoadExtLegal(ISD::SEXTLOAD, VT, MemVT)) { 6385 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT, 6386 LN0->getChain(), 6387 LN0->getBasePtr(), MemVT, 6388 LN0->getMemOperand()); 6389 CombineTo(N, ExtLoad); 6390 CombineTo(N0.getNode(), 6391 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), 6392 N0.getValueType(), ExtLoad), 6393 ExtLoad.getValue(1)); 6394 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6395 } 6396 } 6397 6398 // fold (sext (and/or/xor (load x), cst)) -> 6399 // (and/or/xor (sextload x), (sext cst)) 6400 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR || 6401 N0.getOpcode() == ISD::XOR) && 6402 isa<LoadSDNode>(N0.getOperand(0)) && 6403 N0.getOperand(1).getOpcode() == ISD::Constant && 6404 TLI.isLoadExtLegal(ISD::SEXTLOAD, VT, N0.getValueType()) && 6405 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) { 6406 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0)); 6407 if (LN0->getExtensionType() != ISD::ZEXTLOAD && LN0->isUnindexed()) { 6408 bool DoXform = true; 6409 SmallVector<SDNode*, 4> SetCCs; 6410 if (!N0.hasOneUse()) 6411 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND, 6412 SetCCs, TLI); 6413 if (DoXform) { 6414 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(LN0), VT, 6415 LN0->getChain(), LN0->getBasePtr(), 6416 LN0->getMemoryVT(), 6417 LN0->getMemOperand()); 6418 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); 6419 Mask = Mask.sext(VT.getSizeInBits()); 6420 SDLoc DL(N); 6421 SDValue And = DAG.getNode(N0.getOpcode(), DL, VT, 6422 ExtLoad, DAG.getConstant(Mask, DL, VT)); 6423 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, 6424 SDLoc(N0.getOperand(0)), 6425 N0.getOperand(0).getValueType(), ExtLoad); 6426 CombineTo(N, And); 6427 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1)); 6428 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, DL, 6429 ISD::SIGN_EXTEND); 6430 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6431 } 6432 } 6433 } 6434 6435 if (N0.getOpcode() == ISD::SETCC) { 6436 EVT N0VT = N0.getOperand(0).getValueType(); 6437 // sext(setcc) -> sext_in_reg(vsetcc) for vectors. 6438 // Only do this before legalize for now. 6439 if (VT.isVector() && !LegalOperations && 6440 TLI.getBooleanContents(N0VT) == 6441 TargetLowering::ZeroOrNegativeOneBooleanContent) { 6442 // On some architectures (such as SSE/NEON/etc) the SETCC result type is 6443 // of the same size as the compared operands. Only optimize sext(setcc()) 6444 // if this is the case. 6445 EVT SVT = getSetCCResultType(N0VT); 6446 6447 // We know that the # elements of the results is the same as the 6448 // # elements of the compare (and the # elements of the compare result 6449 // for that matter). Check to see that they are the same size. If so, 6450 // we know that the element size of the sext'd result matches the 6451 // element size of the compare operands. 6452 if (VT.getSizeInBits() == SVT.getSizeInBits()) 6453 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0), 6454 N0.getOperand(1), 6455 cast<CondCodeSDNode>(N0.getOperand(2))->get()); 6456 6457 // If the desired elements are smaller or larger than the source 6458 // elements we can use a matching integer vector type and then 6459 // truncate/sign extend 6460 EVT MatchingVectorType = N0VT.changeVectorElementTypeToInteger(); 6461 if (SVT == MatchingVectorType) { 6462 SDValue VsetCC = DAG.getSetCC(SDLoc(N), MatchingVectorType, 6463 N0.getOperand(0), N0.getOperand(1), 6464 cast<CondCodeSDNode>(N0.getOperand(2))->get()); 6465 return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT); 6466 } 6467 } 6468 6469 // sext(setcc x, y, cc) -> (select (setcc x, y, cc), T, 0) 6470 // Here, T can be 1 or -1, depending on the type of the setcc and 6471 // getBooleanContents(). 6472 unsigned SetCCWidth = N0.getScalarValueSizeInBits(); 6473 6474 SDLoc DL(N); 6475 // To determine the "true" side of the select, we need to know the high bit 6476 // of the value returned by the setcc if it evaluates to true. 6477 // If the type of the setcc is i1, then the true case of the select is just 6478 // sext(i1 1), that is, -1. 6479 // If the type of the setcc is larger (say, i8) then the value of the high 6480 // bit depends on getBooleanContents(). So, ask TLI for a real "true" value 6481 // of the appropriate width. 6482 SDValue ExtTrueVal = 6483 (SetCCWidth == 1) 6484 ? DAG.getConstant(APInt::getAllOnesValue(VT.getScalarSizeInBits()), 6485 DL, VT) 6486 : TLI.getConstTrueVal(DAG, VT, DL); 6487 6488 if (SDValue SCC = SimplifySelectCC( 6489 DL, N0.getOperand(0), N0.getOperand(1), ExtTrueVal, 6490 DAG.getConstant(0, DL, VT), 6491 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true)) 6492 return SCC; 6493 6494 if (!VT.isVector()) { 6495 EVT SetCCVT = getSetCCResultType(N0.getOperand(0).getValueType()); 6496 if (!LegalOperations || 6497 TLI.isOperationLegal(ISD::SETCC, N0.getOperand(0).getValueType())) { 6498 SDLoc DL(N); 6499 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get(); 6500 SDValue SetCC = 6501 DAG.getSetCC(DL, SetCCVT, N0.getOperand(0), N0.getOperand(1), CC); 6502 return DAG.getSelect(DL, VT, SetCC, ExtTrueVal, 6503 DAG.getConstant(0, DL, VT)); 6504 } 6505 } 6506 } 6507 6508 // fold (sext x) -> (zext x) if the sign bit is known zero. 6509 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) && 6510 DAG.SignBitIsZero(N0)) 6511 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, N0); 6512 6513 return SDValue(); 6514 } 6515 6516 // isTruncateOf - If N is a truncate of some other value, return true, record 6517 // the value being truncated in Op and which of Op's bits are zero in KnownZero. 6518 // This function computes KnownZero to avoid a duplicated call to 6519 // computeKnownBits in the caller. 6520 static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op, 6521 APInt &KnownZero) { 6522 APInt KnownOne; 6523 if (N->getOpcode() == ISD::TRUNCATE) { 6524 Op = N->getOperand(0); 6525 DAG.computeKnownBits(Op, KnownZero, KnownOne); 6526 return true; 6527 } 6528 6529 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 || 6530 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE) 6531 return false; 6532 6533 SDValue Op0 = N->getOperand(0); 6534 SDValue Op1 = N->getOperand(1); 6535 assert(Op0.getValueType() == Op1.getValueType()); 6536 6537 if (isNullConstant(Op0)) 6538 Op = Op1; 6539 else if (isNullConstant(Op1)) 6540 Op = Op0; 6541 else 6542 return false; 6543 6544 DAG.computeKnownBits(Op, KnownZero, KnownOne); 6545 6546 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue()) 6547 return false; 6548 6549 return true; 6550 } 6551 6552 SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) { 6553 SDValue N0 = N->getOperand(0); 6554 EVT VT = N->getValueType(0); 6555 6556 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes, 6557 LegalOperations)) 6558 return SDValue(Res, 0); 6559 6560 // fold (zext (zext x)) -> (zext x) 6561 // fold (zext (aext x)) -> (zext x) 6562 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) 6563 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, 6564 N0.getOperand(0)); 6565 6566 // fold (zext (truncate x)) -> (zext x) or 6567 // (zext (truncate x)) -> (truncate x) 6568 // This is valid when the truncated bits of x are already zero. 6569 // FIXME: We should extend this to work for vectors too. 6570 SDValue Op; 6571 APInt KnownZero; 6572 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) { 6573 APInt TruncatedBits = 6574 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ? 6575 APInt(Op.getValueSizeInBits(), 0) : 6576 APInt::getBitsSet(Op.getValueSizeInBits(), 6577 N0.getValueSizeInBits(), 6578 std::min(Op.getValueSizeInBits(), 6579 VT.getSizeInBits())); 6580 if (TruncatedBits == (KnownZero & TruncatedBits)) { 6581 if (VT.bitsGT(Op.getValueType())) 6582 return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, Op); 6583 if (VT.bitsLT(Op.getValueType())) 6584 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op); 6585 6586 return Op; 6587 } 6588 } 6589 6590 // fold (zext (truncate (load x))) -> (zext (smaller load x)) 6591 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n))) 6592 if (N0.getOpcode() == ISD::TRUNCATE) { 6593 if (SDValue NarrowLoad = ReduceLoadWidth(N0.getNode())) { 6594 SDNode *oye = N0.getOperand(0).getNode(); 6595 if (NarrowLoad.getNode() != N0.getNode()) { 6596 CombineTo(N0.getNode(), NarrowLoad); 6597 // CombineTo deleted the truncate, if needed, but not what's under it. 6598 AddToWorklist(oye); 6599 } 6600 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6601 } 6602 } 6603 6604 // fold (zext (truncate x)) -> (and x, mask) 6605 if (N0.getOpcode() == ISD::TRUNCATE) { 6606 // fold (zext (truncate (load x))) -> (zext (smaller load x)) 6607 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n))) 6608 if (SDValue NarrowLoad = ReduceLoadWidth(N0.getNode())) { 6609 SDNode *oye = N0.getOperand(0).getNode(); 6610 if (NarrowLoad.getNode() != N0.getNode()) { 6611 CombineTo(N0.getNode(), NarrowLoad); 6612 // CombineTo deleted the truncate, if needed, but not what's under it. 6613 AddToWorklist(oye); 6614 } 6615 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6616 } 6617 6618 EVT SrcVT = N0.getOperand(0).getValueType(); 6619 EVT MinVT = N0.getValueType(); 6620 6621 // Try to mask before the extension to avoid having to generate a larger mask, 6622 // possibly over several sub-vectors. 6623 if (SrcVT.bitsLT(VT)) { 6624 if (!LegalOperations || (TLI.isOperationLegal(ISD::AND, SrcVT) && 6625 TLI.isOperationLegal(ISD::ZERO_EXTEND, VT))) { 6626 SDValue Op = N0.getOperand(0); 6627 Op = DAG.getZeroExtendInReg(Op, SDLoc(N), MinVT.getScalarType()); 6628 AddToWorklist(Op.getNode()); 6629 return DAG.getZExtOrTrunc(Op, SDLoc(N), VT); 6630 } 6631 } 6632 6633 if (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT)) { 6634 SDValue Op = N0.getOperand(0); 6635 if (SrcVT.bitsLT(VT)) { 6636 Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, Op); 6637 AddToWorklist(Op.getNode()); 6638 } else if (SrcVT.bitsGT(VT)) { 6639 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op); 6640 AddToWorklist(Op.getNode()); 6641 } 6642 return DAG.getZeroExtendInReg(Op, SDLoc(N), MinVT.getScalarType()); 6643 } 6644 } 6645 6646 // Fold (zext (and (trunc x), cst)) -> (and x, cst), 6647 // if either of the casts is not free. 6648 if (N0.getOpcode() == ISD::AND && 6649 N0.getOperand(0).getOpcode() == ISD::TRUNCATE && 6650 N0.getOperand(1).getOpcode() == ISD::Constant && 6651 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(), 6652 N0.getValueType()) || 6653 !TLI.isZExtFree(N0.getValueType(), VT))) { 6654 SDValue X = N0.getOperand(0).getOperand(0); 6655 if (X.getValueType().bitsLT(VT)) { 6656 X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(X), VT, X); 6657 } else if (X.getValueType().bitsGT(VT)) { 6658 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X); 6659 } 6660 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); 6661 Mask = Mask.zext(VT.getSizeInBits()); 6662 SDLoc DL(N); 6663 return DAG.getNode(ISD::AND, DL, VT, 6664 X, DAG.getConstant(Mask, DL, VT)); 6665 } 6666 6667 // fold (zext (load x)) -> (zext (truncate (zextload x))) 6668 // Only generate vector extloads when 1) they're legal, and 2) they are 6669 // deemed desirable by the target. 6670 if (ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && 6671 ((!LegalOperations && !VT.isVector() && 6672 !cast<LoadSDNode>(N0)->isVolatile()) || 6673 TLI.isLoadExtLegal(ISD::ZEXTLOAD, VT, N0.getValueType()))) { 6674 bool DoXform = true; 6675 SmallVector<SDNode*, 4> SetCCs; 6676 if (!N0.hasOneUse()) 6677 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI); 6678 if (VT.isVector()) 6679 DoXform &= TLI.isVectorLoadExtDesirable(SDValue(N, 0)); 6680 if (DoXform) { 6681 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 6682 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT, 6683 LN0->getChain(), 6684 LN0->getBasePtr(), N0.getValueType(), 6685 LN0->getMemOperand()); 6686 CombineTo(N, ExtLoad); 6687 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), 6688 N0.getValueType(), ExtLoad); 6689 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1)); 6690 6691 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N), 6692 ISD::ZERO_EXTEND); 6693 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6694 } 6695 } 6696 6697 // fold (zext (load x)) to multiple smaller zextloads. 6698 // Only on illegal but splittable vectors. 6699 if (SDValue ExtLoad = CombineExtLoad(N)) 6700 return ExtLoad; 6701 6702 // fold (zext (and/or/xor (load x), cst)) -> 6703 // (and/or/xor (zextload x), (zext cst)) 6704 // Unless (and (load x) cst) will match as a zextload already and has 6705 // additional users. 6706 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR || 6707 N0.getOpcode() == ISD::XOR) && 6708 isa<LoadSDNode>(N0.getOperand(0)) && 6709 N0.getOperand(1).getOpcode() == ISD::Constant && 6710 TLI.isLoadExtLegal(ISD::ZEXTLOAD, VT, N0.getValueType()) && 6711 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) { 6712 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0)); 6713 if (LN0->getExtensionType() != ISD::SEXTLOAD && LN0->isUnindexed()) { 6714 bool DoXform = true; 6715 SmallVector<SDNode*, 4> SetCCs; 6716 if (!N0.hasOneUse()) { 6717 if (N0.getOpcode() == ISD::AND) { 6718 auto *AndC = cast<ConstantSDNode>(N0.getOperand(1)); 6719 auto NarrowLoad = false; 6720 EVT LoadResultTy = AndC->getValueType(0); 6721 EVT ExtVT, LoadedVT; 6722 if (isAndLoadExtLoad(AndC, LN0, LoadResultTy, ExtVT, LoadedVT, 6723 NarrowLoad)) 6724 DoXform = false; 6725 } 6726 if (DoXform) 6727 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), 6728 ISD::ZERO_EXTEND, SetCCs, TLI); 6729 } 6730 if (DoXform) { 6731 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), VT, 6732 LN0->getChain(), LN0->getBasePtr(), 6733 LN0->getMemoryVT(), 6734 LN0->getMemOperand()); 6735 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); 6736 Mask = Mask.zext(VT.getSizeInBits()); 6737 SDLoc DL(N); 6738 SDValue And = DAG.getNode(N0.getOpcode(), DL, VT, 6739 ExtLoad, DAG.getConstant(Mask, DL, VT)); 6740 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, 6741 SDLoc(N0.getOperand(0)), 6742 N0.getOperand(0).getValueType(), ExtLoad); 6743 CombineTo(N, And); 6744 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1)); 6745 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, DL, 6746 ISD::ZERO_EXTEND); 6747 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6748 } 6749 } 6750 } 6751 6752 // fold (zext (zextload x)) -> (zext (truncate (zextload x))) 6753 // fold (zext ( extload x)) -> (zext (truncate (zextload x))) 6754 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) && 6755 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) { 6756 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 6757 EVT MemVT = LN0->getMemoryVT(); 6758 if ((!LegalOperations && !LN0->isVolatile()) || 6759 TLI.isLoadExtLegal(ISD::ZEXTLOAD, VT, MemVT)) { 6760 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT, 6761 LN0->getChain(), 6762 LN0->getBasePtr(), MemVT, 6763 LN0->getMemOperand()); 6764 CombineTo(N, ExtLoad); 6765 CombineTo(N0.getNode(), 6766 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), N0.getValueType(), 6767 ExtLoad), 6768 ExtLoad.getValue(1)); 6769 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6770 } 6771 } 6772 6773 if (N0.getOpcode() == ISD::SETCC) { 6774 // Only do this before legalize for now. 6775 if (!LegalOperations && VT.isVector() && 6776 N0.getValueType().getVectorElementType() == MVT::i1) { 6777 EVT N00VT = N0.getOperand(0).getValueType(); 6778 if (getSetCCResultType(N00VT) == N0.getValueType()) 6779 return SDValue(); 6780 6781 // We know that the # elements of the results is the same as the # 6782 // elements of the compare (and the # elements of the compare result for 6783 // that matter). Check to see that they are the same size. If so, we know 6784 // that the element size of the sext'd result matches the element size of 6785 // the compare operands. 6786 SDLoc DL(N); 6787 SDValue VecOnes = DAG.getConstant(1, DL, VT); 6788 if (VT.getSizeInBits() == N00VT.getSizeInBits()) { 6789 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors. 6790 SDValue VSetCC = DAG.getNode(ISD::SETCC, DL, VT, N0.getOperand(0), 6791 N0.getOperand(1), N0.getOperand(2)); 6792 return DAG.getNode(ISD::AND, DL, VT, VSetCC, VecOnes); 6793 } 6794 6795 // If the desired elements are smaller or larger than the source 6796 // elements we can use a matching integer vector type and then 6797 // truncate/sign extend. 6798 EVT MatchingElementType = EVT::getIntegerVT( 6799 *DAG.getContext(), N00VT.getScalarSizeInBits()); 6800 EVT MatchingVectorType = EVT::getVectorVT( 6801 *DAG.getContext(), MatchingElementType, N00VT.getVectorNumElements()); 6802 SDValue VsetCC = 6803 DAG.getNode(ISD::SETCC, DL, MatchingVectorType, N0.getOperand(0), 6804 N0.getOperand(1), N0.getOperand(2)); 6805 return DAG.getNode(ISD::AND, DL, VT, DAG.getSExtOrTrunc(VsetCC, DL, VT), 6806 VecOnes); 6807 } 6808 6809 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc 6810 SDLoc DL(N); 6811 if (SDValue SCC = SimplifySelectCC( 6812 DL, N0.getOperand(0), N0.getOperand(1), DAG.getConstant(1, DL, VT), 6813 DAG.getConstant(0, DL, VT), 6814 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true)) 6815 return SCC; 6816 } 6817 6818 // (zext (shl (zext x), cst)) -> (shl (zext x), cst) 6819 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) && 6820 isa<ConstantSDNode>(N0.getOperand(1)) && 6821 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND && 6822 N0.hasOneUse()) { 6823 SDValue ShAmt = N0.getOperand(1); 6824 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue(); 6825 if (N0.getOpcode() == ISD::SHL) { 6826 SDValue InnerZExt = N0.getOperand(0); 6827 // If the original shl may be shifting out bits, do not perform this 6828 // transformation. 6829 unsigned KnownZeroBits = InnerZExt.getValueSizeInBits() - 6830 InnerZExt.getOperand(0).getValueSizeInBits(); 6831 if (ShAmtVal > KnownZeroBits) 6832 return SDValue(); 6833 } 6834 6835 SDLoc DL(N); 6836 6837 // Ensure that the shift amount is wide enough for the shifted value. 6838 if (VT.getSizeInBits() >= 256) 6839 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt); 6840 6841 return DAG.getNode(N0.getOpcode(), DL, VT, 6842 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)), 6843 ShAmt); 6844 } 6845 6846 return SDValue(); 6847 } 6848 6849 SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) { 6850 SDValue N0 = N->getOperand(0); 6851 EVT VT = N->getValueType(0); 6852 6853 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes, 6854 LegalOperations)) 6855 return SDValue(Res, 0); 6856 6857 // fold (aext (aext x)) -> (aext x) 6858 // fold (aext (zext x)) -> (zext x) 6859 // fold (aext (sext x)) -> (sext x) 6860 if (N0.getOpcode() == ISD::ANY_EXTEND || 6861 N0.getOpcode() == ISD::ZERO_EXTEND || 6862 N0.getOpcode() == ISD::SIGN_EXTEND) 6863 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, N0.getOperand(0)); 6864 6865 // fold (aext (truncate (load x))) -> (aext (smaller load x)) 6866 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n))) 6867 if (N0.getOpcode() == ISD::TRUNCATE) { 6868 if (SDValue NarrowLoad = ReduceLoadWidth(N0.getNode())) { 6869 SDNode *oye = N0.getOperand(0).getNode(); 6870 if (NarrowLoad.getNode() != N0.getNode()) { 6871 CombineTo(N0.getNode(), NarrowLoad); 6872 // CombineTo deleted the truncate, if needed, but not what's under it. 6873 AddToWorklist(oye); 6874 } 6875 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6876 } 6877 } 6878 6879 // fold (aext (truncate x)) 6880 if (N0.getOpcode() == ISD::TRUNCATE) { 6881 SDValue TruncOp = N0.getOperand(0); 6882 if (TruncOp.getValueType() == VT) 6883 return TruncOp; // x iff x size == zext size. 6884 if (TruncOp.getValueType().bitsGT(VT)) 6885 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, TruncOp); 6886 return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, TruncOp); 6887 } 6888 6889 // Fold (aext (and (trunc x), cst)) -> (and x, cst) 6890 // if the trunc is not free. 6891 if (N0.getOpcode() == ISD::AND && 6892 N0.getOperand(0).getOpcode() == ISD::TRUNCATE && 6893 N0.getOperand(1).getOpcode() == ISD::Constant && 6894 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(), 6895 N0.getValueType())) { 6896 SDLoc DL(N); 6897 SDValue X = N0.getOperand(0).getOperand(0); 6898 if (X.getValueType().bitsLT(VT)) { 6899 X = DAG.getNode(ISD::ANY_EXTEND, DL, VT, X); 6900 } else if (X.getValueType().bitsGT(VT)) { 6901 X = DAG.getNode(ISD::TRUNCATE, DL, VT, X); 6902 } 6903 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); 6904 Mask = Mask.zext(VT.getSizeInBits()); 6905 return DAG.getNode(ISD::AND, DL, VT, 6906 X, DAG.getConstant(Mask, DL, VT)); 6907 } 6908 6909 // fold (aext (load x)) -> (aext (truncate (extload x))) 6910 // None of the supported targets knows how to perform load and any_ext 6911 // on vectors in one instruction. We only perform this transformation on 6912 // scalars. 6913 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() && 6914 ISD::isUNINDEXEDLoad(N0.getNode()) && 6915 TLI.isLoadExtLegal(ISD::EXTLOAD, VT, N0.getValueType())) { 6916 bool DoXform = true; 6917 SmallVector<SDNode*, 4> SetCCs; 6918 if (!N0.hasOneUse()) 6919 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI); 6920 if (DoXform) { 6921 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 6922 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT, 6923 LN0->getChain(), 6924 LN0->getBasePtr(), N0.getValueType(), 6925 LN0->getMemOperand()); 6926 CombineTo(N, ExtLoad); 6927 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), 6928 N0.getValueType(), ExtLoad); 6929 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1)); 6930 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N), 6931 ISD::ANY_EXTEND); 6932 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6933 } 6934 } 6935 6936 // fold (aext (zextload x)) -> (aext (truncate (zextload x))) 6937 // fold (aext (sextload x)) -> (aext (truncate (sextload x))) 6938 // fold (aext ( extload x)) -> (aext (truncate (extload x))) 6939 if (N0.getOpcode() == ISD::LOAD && 6940 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && 6941 N0.hasOneUse()) { 6942 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 6943 ISD::LoadExtType ExtType = LN0->getExtensionType(); 6944 EVT MemVT = LN0->getMemoryVT(); 6945 if (!LegalOperations || TLI.isLoadExtLegal(ExtType, VT, MemVT)) { 6946 SDValue ExtLoad = DAG.getExtLoad(ExtType, SDLoc(N), 6947 VT, LN0->getChain(), LN0->getBasePtr(), 6948 MemVT, LN0->getMemOperand()); 6949 CombineTo(N, ExtLoad); 6950 CombineTo(N0.getNode(), 6951 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), 6952 N0.getValueType(), ExtLoad), 6953 ExtLoad.getValue(1)); 6954 return SDValue(N, 0); // Return N so it doesn't get rechecked! 6955 } 6956 } 6957 6958 if (N0.getOpcode() == ISD::SETCC) { 6959 // For vectors: 6960 // aext(setcc) -> vsetcc 6961 // aext(setcc) -> truncate(vsetcc) 6962 // aext(setcc) -> aext(vsetcc) 6963 // Only do this before legalize for now. 6964 if (VT.isVector() && !LegalOperations) { 6965 EVT N0VT = N0.getOperand(0).getValueType(); 6966 // We know that the # elements of the results is the same as the 6967 // # elements of the compare (and the # elements of the compare result 6968 // for that matter). Check to see that they are the same size. If so, 6969 // we know that the element size of the sext'd result matches the 6970 // element size of the compare operands. 6971 if (VT.getSizeInBits() == N0VT.getSizeInBits()) 6972 return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0), 6973 N0.getOperand(1), 6974 cast<CondCodeSDNode>(N0.getOperand(2))->get()); 6975 // If the desired elements are smaller or larger than the source 6976 // elements we can use a matching integer vector type and then 6977 // truncate/any extend 6978 else { 6979 EVT MatchingVectorType = N0VT.changeVectorElementTypeToInteger(); 6980 SDValue VsetCC = 6981 DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0), 6982 N0.getOperand(1), 6983 cast<CondCodeSDNode>(N0.getOperand(2))->get()); 6984 return DAG.getAnyExtOrTrunc(VsetCC, SDLoc(N), VT); 6985 } 6986 } 6987 6988 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc 6989 SDLoc DL(N); 6990 if (SDValue SCC = SimplifySelectCC( 6991 DL, N0.getOperand(0), N0.getOperand(1), DAG.getConstant(1, DL, VT), 6992 DAG.getConstant(0, DL, VT), 6993 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true)) 6994 return SCC; 6995 } 6996 6997 return SDValue(); 6998 } 6999 7000 /// See if the specified operand can be simplified with the knowledge that only 7001 /// the bits specified by Mask are used. If so, return the simpler operand, 7002 /// otherwise return a null SDValue. 7003 SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) { 7004 switch (V.getOpcode()) { 7005 default: break; 7006 case ISD::Constant: { 7007 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode()); 7008 assert(CV && "Const value should be ConstSDNode."); 7009 const APInt &CVal = CV->getAPIntValue(); 7010 APInt NewVal = CVal & Mask; 7011 if (NewVal != CVal) 7012 return DAG.getConstant(NewVal, SDLoc(V), V.getValueType()); 7013 break; 7014 } 7015 case ISD::OR: 7016 case ISD::XOR: 7017 // If the LHS or RHS don't contribute bits to the or, drop them. 7018 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask)) 7019 return V.getOperand(1); 7020 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask)) 7021 return V.getOperand(0); 7022 break; 7023 case ISD::SRL: 7024 // Only look at single-use SRLs. 7025 if (!V.getNode()->hasOneUse()) 7026 break; 7027 if (ConstantSDNode *RHSC = getAsNonOpaqueConstant(V.getOperand(1))) { 7028 // See if we can recursively simplify the LHS. 7029 unsigned Amt = RHSC->getZExtValue(); 7030 7031 // Watch out for shift count overflow though. 7032 if (Amt >= Mask.getBitWidth()) break; 7033 APInt NewMask = Mask << Amt; 7034 if (SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask)) 7035 return DAG.getNode(ISD::SRL, SDLoc(V), V.getValueType(), 7036 SimplifyLHS, V.getOperand(1)); 7037 } 7038 } 7039 return SDValue(); 7040 } 7041 7042 /// If the result of a wider load is shifted to right of N bits and then 7043 /// truncated to a narrower type and where N is a multiple of number of bits of 7044 /// the narrower type, transform it to a narrower load from address + N / num of 7045 /// bits of new type. If the result is to be extended, also fold the extension 7046 /// to form a extending load. 7047 SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) { 7048 unsigned Opc = N->getOpcode(); 7049 7050 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD; 7051 SDValue N0 = N->getOperand(0); 7052 EVT VT = N->getValueType(0); 7053 EVT ExtVT = VT; 7054 7055 // This transformation isn't valid for vector loads. 7056 if (VT.isVector()) 7057 return SDValue(); 7058 7059 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then 7060 // extended to VT. 7061 if (Opc == ISD::SIGN_EXTEND_INREG) { 7062 ExtType = ISD::SEXTLOAD; 7063 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT(); 7064 } else if (Opc == ISD::SRL) { 7065 // Another special-case: SRL is basically zero-extending a narrower value. 7066 ExtType = ISD::ZEXTLOAD; 7067 N0 = SDValue(N, 0); 7068 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 7069 if (!N01) return SDValue(); 7070 ExtVT = EVT::getIntegerVT(*DAG.getContext(), 7071 VT.getSizeInBits() - N01->getZExtValue()); 7072 } 7073 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, VT, ExtVT)) 7074 return SDValue(); 7075 7076 unsigned EVTBits = ExtVT.getSizeInBits(); 7077 7078 // Do not generate loads of non-round integer types since these can 7079 // be expensive (and would be wrong if the type is not byte sized). 7080 if (!ExtVT.isRound()) 7081 return SDValue(); 7082 7083 unsigned ShAmt = 0; 7084 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) { 7085 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 7086 ShAmt = N01->getZExtValue(); 7087 // Is the shift amount a multiple of size of VT? 7088 if ((ShAmt & (EVTBits-1)) == 0) { 7089 N0 = N0.getOperand(0); 7090 // Is the load width a multiple of size of VT? 7091 if ((N0.getValueSizeInBits() & (EVTBits-1)) != 0) 7092 return SDValue(); 7093 } 7094 7095 // At this point, we must have a load or else we can't do the transform. 7096 if (!isa<LoadSDNode>(N0)) return SDValue(); 7097 7098 // Because a SRL must be assumed to *need* to zero-extend the high bits 7099 // (as opposed to anyext the high bits), we can't combine the zextload 7100 // lowering of SRL and an sextload. 7101 if (cast<LoadSDNode>(N0)->getExtensionType() == ISD::SEXTLOAD) 7102 return SDValue(); 7103 7104 // If the shift amount is larger than the input type then we're not 7105 // accessing any of the loaded bytes. If the load was a zextload/extload 7106 // then the result of the shift+trunc is zero/undef (handled elsewhere). 7107 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits()) 7108 return SDValue(); 7109 } 7110 } 7111 7112 // If the load is shifted left (and the result isn't shifted back right), 7113 // we can fold the truncate through the shift. 7114 unsigned ShLeftAmt = 0; 7115 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() && 7116 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) { 7117 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { 7118 ShLeftAmt = N01->getZExtValue(); 7119 N0 = N0.getOperand(0); 7120 } 7121 } 7122 7123 // If we haven't found a load, we can't narrow it. Don't transform one with 7124 // multiple uses, this would require adding a new load. 7125 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse()) 7126 return SDValue(); 7127 7128 // Don't change the width of a volatile load. 7129 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7130 if (LN0->isVolatile()) 7131 return SDValue(); 7132 7133 // Verify that we are actually reducing a load width here. 7134 if (LN0->getMemoryVT().getSizeInBits() < EVTBits) 7135 return SDValue(); 7136 7137 // For the transform to be legal, the load must produce only two values 7138 // (the value loaded and the chain). Don't transform a pre-increment 7139 // load, for example, which produces an extra value. Otherwise the 7140 // transformation is not equivalent, and the downstream logic to replace 7141 // uses gets things wrong. 7142 if (LN0->getNumValues() > 2) 7143 return SDValue(); 7144 7145 // If the load that we're shrinking is an extload and we're not just 7146 // discarding the extension we can't simply shrink the load. Bail. 7147 // TODO: It would be possible to merge the extensions in some cases. 7148 if (LN0->getExtensionType() != ISD::NON_EXTLOAD && 7149 LN0->getMemoryVT().getSizeInBits() < ExtVT.getSizeInBits() + ShAmt) 7150 return SDValue(); 7151 7152 if (!TLI.shouldReduceLoadWidth(LN0, ExtType, ExtVT)) 7153 return SDValue(); 7154 7155 EVT PtrType = N0.getOperand(1).getValueType(); 7156 7157 if (PtrType == MVT::Untyped || PtrType.isExtended()) 7158 // It's not possible to generate a constant of extended or untyped type. 7159 return SDValue(); 7160 7161 // For big endian targets, we need to adjust the offset to the pointer to 7162 // load the correct bytes. 7163 if (DAG.getDataLayout().isBigEndian()) { 7164 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits(); 7165 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits(); 7166 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt; 7167 } 7168 7169 uint64_t PtrOff = ShAmt / 8; 7170 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff); 7171 SDLoc DL(LN0); 7172 // The original load itself didn't wrap, so an offset within it doesn't. 7173 SDNodeFlags Flags; 7174 Flags.setNoUnsignedWrap(true); 7175 SDValue NewPtr = DAG.getNode(ISD::ADD, DL, 7176 PtrType, LN0->getBasePtr(), 7177 DAG.getConstant(PtrOff, DL, PtrType), 7178 &Flags); 7179 AddToWorklist(NewPtr.getNode()); 7180 7181 SDValue Load; 7182 if (ExtType == ISD::NON_EXTLOAD) 7183 Load = DAG.getLoad(VT, SDLoc(N0), LN0->getChain(), NewPtr, 7184 LN0->getPointerInfo().getWithOffset(PtrOff), NewAlign, 7185 LN0->getMemOperand()->getFlags(), LN0->getAAInfo()); 7186 else 7187 Load = DAG.getExtLoad(ExtType, SDLoc(N0), VT, LN0->getChain(), NewPtr, 7188 LN0->getPointerInfo().getWithOffset(PtrOff), ExtVT, 7189 NewAlign, LN0->getMemOperand()->getFlags(), 7190 LN0->getAAInfo()); 7191 7192 // Replace the old load's chain with the new load's chain. 7193 WorklistRemover DeadNodes(*this); 7194 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1)); 7195 7196 // Shift the result left, if we've swallowed a left shift. 7197 SDValue Result = Load; 7198 if (ShLeftAmt != 0) { 7199 EVT ShImmTy = getShiftAmountTy(Result.getValueType()); 7200 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt)) 7201 ShImmTy = VT; 7202 // If the shift amount is as large as the result size (but, presumably, 7203 // no larger than the source) then the useful bits of the result are 7204 // zero; we can't simply return the shortened shift, because the result 7205 // of that operation is undefined. 7206 SDLoc DL(N0); 7207 if (ShLeftAmt >= VT.getSizeInBits()) 7208 Result = DAG.getConstant(0, DL, VT); 7209 else 7210 Result = DAG.getNode(ISD::SHL, DL, VT, 7211 Result, DAG.getConstant(ShLeftAmt, DL, ShImmTy)); 7212 } 7213 7214 // Return the new loaded value. 7215 return Result; 7216 } 7217 7218 SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) { 7219 SDValue N0 = N->getOperand(0); 7220 SDValue N1 = N->getOperand(1); 7221 EVT VT = N->getValueType(0); 7222 EVT EVT = cast<VTSDNode>(N1)->getVT(); 7223 unsigned VTBits = VT.getScalarSizeInBits(); 7224 unsigned EVTBits = EVT.getScalarSizeInBits(); 7225 7226 if (N0.isUndef()) 7227 return DAG.getUNDEF(VT); 7228 7229 // fold (sext_in_reg c1) -> c1 7230 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 7231 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, N0, N1); 7232 7233 // If the input is already sign extended, just drop the extension. 7234 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1) 7235 return N0; 7236 7237 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2 7238 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG && 7239 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) 7240 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, 7241 N0.getOperand(0), N1); 7242 7243 // fold (sext_in_reg (sext x)) -> (sext x) 7244 // fold (sext_in_reg (aext x)) -> (sext x) 7245 // if x is small enough. 7246 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) { 7247 SDValue N00 = N0.getOperand(0); 7248 if (N00.getScalarValueSizeInBits() <= EVTBits && 7249 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT))) 7250 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N00, N1); 7251 } 7252 7253 // fold (sext_in_reg (zext x)) -> (sext x) 7254 // iff we are extending the source sign bit. 7255 if (N0.getOpcode() == ISD::ZERO_EXTEND) { 7256 SDValue N00 = N0.getOperand(0); 7257 if (N00.getScalarValueSizeInBits() == EVTBits && 7258 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT))) 7259 return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N00, N1); 7260 } 7261 7262 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero. 7263 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits))) 7264 return DAG.getZeroExtendInReg(N0, SDLoc(N), EVT.getScalarType()); 7265 7266 // fold operands of sext_in_reg based on knowledge that the top bits are not 7267 // demanded. 7268 if (SimplifyDemandedBits(SDValue(N, 0))) 7269 return SDValue(N, 0); 7270 7271 // fold (sext_in_reg (load x)) -> (smaller sextload x) 7272 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits)) 7273 if (SDValue NarrowLoad = ReduceLoadWidth(N)) 7274 return NarrowLoad; 7275 7276 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24) 7277 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible. 7278 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above. 7279 if (N0.getOpcode() == ISD::SRL) { 7280 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1))) 7281 if (ShAmt->getZExtValue()+EVTBits <= VTBits) { 7282 // We can turn this into an SRA iff the input to the SRL is already sign 7283 // extended enough. 7284 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0)); 7285 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits) 7286 return DAG.getNode(ISD::SRA, SDLoc(N), VT, 7287 N0.getOperand(0), N0.getOperand(1)); 7288 } 7289 } 7290 7291 // fold (sext_inreg (extload x)) -> (sextload x) 7292 if (ISD::isEXTLoad(N0.getNode()) && 7293 ISD::isUNINDEXEDLoad(N0.getNode()) && 7294 EVT == cast<LoadSDNode>(N0)->getMemoryVT() && 7295 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || 7296 TLI.isLoadExtLegal(ISD::SEXTLOAD, VT, EVT))) { 7297 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7298 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT, 7299 LN0->getChain(), 7300 LN0->getBasePtr(), EVT, 7301 LN0->getMemOperand()); 7302 CombineTo(N, ExtLoad); 7303 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); 7304 AddToWorklist(ExtLoad.getNode()); 7305 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7306 } 7307 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use 7308 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) && 7309 N0.hasOneUse() && 7310 EVT == cast<LoadSDNode>(N0)->getMemoryVT() && 7311 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) || 7312 TLI.isLoadExtLegal(ISD::SEXTLOAD, VT, EVT))) { 7313 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7314 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT, 7315 LN0->getChain(), 7316 LN0->getBasePtr(), EVT, 7317 LN0->getMemOperand()); 7318 CombineTo(N, ExtLoad); 7319 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1)); 7320 return SDValue(N, 0); // Return N so it doesn't get rechecked! 7321 } 7322 7323 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16)) 7324 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) { 7325 if (SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0), 7326 N0.getOperand(1), false)) 7327 return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, 7328 BSwap, N1); 7329 } 7330 7331 return SDValue(); 7332 } 7333 7334 SDValue DAGCombiner::visitSIGN_EXTEND_VECTOR_INREG(SDNode *N) { 7335 SDValue N0 = N->getOperand(0); 7336 EVT VT = N->getValueType(0); 7337 7338 if (N0.isUndef()) 7339 return DAG.getUNDEF(VT); 7340 7341 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes, 7342 LegalOperations)) 7343 return SDValue(Res, 0); 7344 7345 return SDValue(); 7346 } 7347 7348 SDValue DAGCombiner::visitZERO_EXTEND_VECTOR_INREG(SDNode *N) { 7349 SDValue N0 = N->getOperand(0); 7350 EVT VT = N->getValueType(0); 7351 7352 if (N0.isUndef()) 7353 return DAG.getUNDEF(VT); 7354 7355 if (SDNode *Res = tryToFoldExtendOfConstant(N, TLI, DAG, LegalTypes, 7356 LegalOperations)) 7357 return SDValue(Res, 0); 7358 7359 return SDValue(); 7360 } 7361 7362 SDValue DAGCombiner::visitTRUNCATE(SDNode *N) { 7363 SDValue N0 = N->getOperand(0); 7364 EVT VT = N->getValueType(0); 7365 bool isLE = DAG.getDataLayout().isLittleEndian(); 7366 7367 // noop truncate 7368 if (N0.getValueType() == N->getValueType(0)) 7369 return N0; 7370 // fold (truncate c1) -> c1 7371 if (DAG.isConstantIntBuildVectorOrConstantInt(N0)) 7372 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0); 7373 // fold (truncate (truncate x)) -> (truncate x) 7374 if (N0.getOpcode() == ISD::TRUNCATE) 7375 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0)); 7376 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x 7377 if (N0.getOpcode() == ISD::ZERO_EXTEND || 7378 N0.getOpcode() == ISD::SIGN_EXTEND || 7379 N0.getOpcode() == ISD::ANY_EXTEND) { 7380 // if the source is smaller than the dest, we still need an extend. 7381 if (N0.getOperand(0).getValueType().bitsLT(VT)) 7382 return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, N0.getOperand(0)); 7383 // if the source is larger than the dest, than we just need the truncate. 7384 if (N0.getOperand(0).getValueType().bitsGT(VT)) 7385 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0)); 7386 // if the source and dest are the same type, we can drop both the extend 7387 // and the truncate. 7388 return N0.getOperand(0); 7389 } 7390 7391 // If this is anyext(trunc), don't fold it, allow ourselves to be folded. 7392 if (N->hasOneUse() && (N->use_begin()->getOpcode() == ISD::ANY_EXTEND)) 7393 return SDValue(); 7394 7395 // Fold extract-and-trunc into a narrow extract. For example: 7396 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1) 7397 // i32 y = TRUNCATE(i64 x) 7398 // -- becomes -- 7399 // v16i8 b = BITCAST (v2i64 val) 7400 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8) 7401 // 7402 // Note: We only run this optimization after type legalization (which often 7403 // creates this pattern) and before operation legalization after which 7404 // we need to be more careful about the vector instructions that we generate. 7405 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT && 7406 LegalTypes && !LegalOperations && N0->hasOneUse() && VT != MVT::i1) { 7407 7408 EVT VecTy = N0.getOperand(0).getValueType(); 7409 EVT ExTy = N0.getValueType(); 7410 EVT TrTy = N->getValueType(0); 7411 7412 unsigned NumElem = VecTy.getVectorNumElements(); 7413 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits(); 7414 7415 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem); 7416 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size"); 7417 7418 SDValue EltNo = N0->getOperand(1); 7419 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) { 7420 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); 7421 EVT IndexTy = TLI.getVectorIdxTy(DAG.getDataLayout()); 7422 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1)); 7423 7424 SDLoc DL(N); 7425 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, TrTy, 7426 DAG.getBitcast(NVT, N0.getOperand(0)), 7427 DAG.getConstant(Index, DL, IndexTy)); 7428 } 7429 } 7430 7431 // trunc (select c, a, b) -> select c, (trunc a), (trunc b) 7432 if (N0.getOpcode() == ISD::SELECT && N0.hasOneUse()) { 7433 EVT SrcVT = N0.getValueType(); 7434 if ((!LegalOperations || TLI.isOperationLegal(ISD::SELECT, SrcVT)) && 7435 TLI.isTruncateFree(SrcVT, VT)) { 7436 SDLoc SL(N0); 7437 SDValue Cond = N0.getOperand(0); 7438 SDValue TruncOp0 = DAG.getNode(ISD::TRUNCATE, SL, VT, N0.getOperand(1)); 7439 SDValue TruncOp1 = DAG.getNode(ISD::TRUNCATE, SL, VT, N0.getOperand(2)); 7440 return DAG.getNode(ISD::SELECT, SDLoc(N), VT, Cond, TruncOp0, TruncOp1); 7441 } 7442 } 7443 7444 // trunc (shl x, K) -> shl (trunc x), K => K < VT.getScalarSizeInBits() 7445 if (N0.getOpcode() == ISD::SHL && N0.hasOneUse() && 7446 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::SHL, VT)) && 7447 TLI.isTypeDesirableForOp(ISD::SHL, VT)) { 7448 if (const ConstantSDNode *CAmt = isConstOrConstSplat(N0.getOperand(1))) { 7449 uint64_t Amt = CAmt->getZExtValue(); 7450 unsigned Size = VT.getScalarSizeInBits(); 7451 7452 if (Amt < Size) { 7453 SDLoc SL(N); 7454 EVT AmtVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout()); 7455 7456 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SL, VT, N0.getOperand(0)); 7457 return DAG.getNode(ISD::SHL, SL, VT, Trunc, 7458 DAG.getConstant(Amt, SL, AmtVT)); 7459 } 7460 } 7461 } 7462 7463 // Fold a series of buildvector, bitcast, and truncate if possible. 7464 // For example fold 7465 // (2xi32 trunc (bitcast ((4xi32)buildvector x, x, y, y) 2xi64)) to 7466 // (2xi32 (buildvector x, y)). 7467 if (Level == AfterLegalizeVectorOps && VT.isVector() && 7468 N0.getOpcode() == ISD::BITCAST && N0.hasOneUse() && 7469 N0.getOperand(0).getOpcode() == ISD::BUILD_VECTOR && 7470 N0.getOperand(0).hasOneUse()) { 7471 7472 SDValue BuildVect = N0.getOperand(0); 7473 EVT BuildVectEltTy = BuildVect.getValueType().getVectorElementType(); 7474 EVT TruncVecEltTy = VT.getVectorElementType(); 7475 7476 // Check that the element types match. 7477 if (BuildVectEltTy == TruncVecEltTy) { 7478 // Now we only need to compute the offset of the truncated elements. 7479 unsigned BuildVecNumElts = BuildVect.getNumOperands(); 7480 unsigned TruncVecNumElts = VT.getVectorNumElements(); 7481 unsigned TruncEltOffset = BuildVecNumElts / TruncVecNumElts; 7482 7483 assert((BuildVecNumElts % TruncVecNumElts) == 0 && 7484 "Invalid number of elements"); 7485 7486 SmallVector<SDValue, 8> Opnds; 7487 for (unsigned i = 0, e = BuildVecNumElts; i != e; i += TruncEltOffset) 7488 Opnds.push_back(BuildVect.getOperand(i)); 7489 7490 return DAG.getBuildVector(VT, SDLoc(N), Opnds); 7491 } 7492 } 7493 7494 // See if we can simplify the input to this truncate through knowledge that 7495 // only the low bits are being used. 7496 // For example "trunc (or (shl x, 8), y)" // -> trunc y 7497 // Currently we only perform this optimization on scalars because vectors 7498 // may have different active low bits. 7499 if (!VT.isVector()) { 7500 if (SDValue Shorter = 7501 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(), 7502 VT.getSizeInBits()))) 7503 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Shorter); 7504 } 7505 // fold (truncate (load x)) -> (smaller load x) 7506 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits)) 7507 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) { 7508 if (SDValue Reduced = ReduceLoadWidth(N)) 7509 return Reduced; 7510 7511 // Handle the case where the load remains an extending load even 7512 // after truncation. 7513 if (N0.hasOneUse() && ISD::isUNINDEXEDLoad(N0.getNode())) { 7514 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7515 if (!LN0->isVolatile() && 7516 LN0->getMemoryVT().getStoreSizeInBits() < VT.getSizeInBits()) { 7517 SDValue NewLoad = DAG.getExtLoad(LN0->getExtensionType(), SDLoc(LN0), 7518 VT, LN0->getChain(), LN0->getBasePtr(), 7519 LN0->getMemoryVT(), 7520 LN0->getMemOperand()); 7521 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLoad.getValue(1)); 7522 return NewLoad; 7523 } 7524 } 7525 } 7526 // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)), 7527 // where ... are all 'undef'. 7528 if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) { 7529 SmallVector<EVT, 8> VTs; 7530 SDValue V; 7531 unsigned Idx = 0; 7532 unsigned NumDefs = 0; 7533 7534 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) { 7535 SDValue X = N0.getOperand(i); 7536 if (!X.isUndef()) { 7537 V = X; 7538 Idx = i; 7539 NumDefs++; 7540 } 7541 // Stop if more than one members are non-undef. 7542 if (NumDefs > 1) 7543 break; 7544 VTs.push_back(EVT::getVectorVT(*DAG.getContext(), 7545 VT.getVectorElementType(), 7546 X.getValueType().getVectorNumElements())); 7547 } 7548 7549 if (NumDefs == 0) 7550 return DAG.getUNDEF(VT); 7551 7552 if (NumDefs == 1) { 7553 assert(V.getNode() && "The single defined operand is empty!"); 7554 SmallVector<SDValue, 8> Opnds; 7555 for (unsigned i = 0, e = VTs.size(); i != e; ++i) { 7556 if (i != Idx) { 7557 Opnds.push_back(DAG.getUNDEF(VTs[i])); 7558 continue; 7559 } 7560 SDValue NV = DAG.getNode(ISD::TRUNCATE, SDLoc(V), VTs[i], V); 7561 AddToWorklist(NV.getNode()); 7562 Opnds.push_back(NV); 7563 } 7564 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Opnds); 7565 } 7566 } 7567 7568 // Fold truncate of a bitcast of a vector to an extract of the low vector 7569 // element. 7570 // 7571 // e.g. trunc (i64 (bitcast v2i32:x)) -> extract_vector_elt v2i32:x, 0 7572 if (N0.getOpcode() == ISD::BITCAST && !VT.isVector()) { 7573 SDValue VecSrc = N0.getOperand(0); 7574 EVT SrcVT = VecSrc.getValueType(); 7575 if (SrcVT.isVector() && SrcVT.getScalarType() == VT && 7576 (!LegalOperations || 7577 TLI.isOperationLegal(ISD::EXTRACT_VECTOR_ELT, SrcVT))) { 7578 SDLoc SL(N); 7579 7580 EVT IdxVT = TLI.getVectorIdxTy(DAG.getDataLayout()); 7581 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, VT, 7582 VecSrc, DAG.getConstant(0, SL, IdxVT)); 7583 } 7584 } 7585 7586 // Simplify the operands using demanded-bits information. 7587 if (!VT.isVector() && 7588 SimplifyDemandedBits(SDValue(N, 0))) 7589 return SDValue(N, 0); 7590 7591 return SDValue(); 7592 } 7593 7594 static SDNode *getBuildPairElt(SDNode *N, unsigned i) { 7595 SDValue Elt = N->getOperand(i); 7596 if (Elt.getOpcode() != ISD::MERGE_VALUES) 7597 return Elt.getNode(); 7598 return Elt.getOperand(Elt.getResNo()).getNode(); 7599 } 7600 7601 /// build_pair (load, load) -> load 7602 /// if load locations are consecutive. 7603 SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) { 7604 assert(N->getOpcode() == ISD::BUILD_PAIR); 7605 7606 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0)); 7607 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1)); 7608 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() || 7609 LD1->getAddressSpace() != LD2->getAddressSpace()) 7610 return SDValue(); 7611 EVT LD1VT = LD1->getValueType(0); 7612 unsigned LD1Bytes = LD1VT.getSizeInBits() / 8; 7613 if (ISD::isNON_EXTLoad(LD2) && LD2->hasOneUse() && 7614 DAG.areNonVolatileConsecutiveLoads(LD2, LD1, LD1Bytes, 1)) { 7615 unsigned Align = LD1->getAlignment(); 7616 unsigned NewAlign = DAG.getDataLayout().getABITypeAlignment( 7617 VT.getTypeForEVT(*DAG.getContext())); 7618 7619 if (NewAlign <= Align && 7620 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) 7621 return DAG.getLoad(VT, SDLoc(N), LD1->getChain(), LD1->getBasePtr(), 7622 LD1->getPointerInfo(), Align); 7623 } 7624 7625 return SDValue(); 7626 } 7627 7628 static unsigned getPPCf128HiElementSelector(const SelectionDAG &DAG) { 7629 // On little-endian machines, bitcasting from ppcf128 to i128 does swap the Hi 7630 // and Lo parts; on big-endian machines it doesn't. 7631 return DAG.getDataLayout().isBigEndian() ? 1 : 0; 7632 } 7633 7634 static SDValue foldBitcastedFPLogic(SDNode *N, SelectionDAG &DAG, 7635 const TargetLowering &TLI) { 7636 // If this is not a bitcast to an FP type or if the target doesn't have 7637 // IEEE754-compliant FP logic, we're done. 7638 EVT VT = N->getValueType(0); 7639 if (!VT.isFloatingPoint() || !TLI.hasBitPreservingFPLogic(VT)) 7640 return SDValue(); 7641 7642 // TODO: Use splat values for the constant-checking below and remove this 7643 // restriction. 7644 SDValue N0 = N->getOperand(0); 7645 EVT SourceVT = N0.getValueType(); 7646 if (SourceVT.isVector()) 7647 return SDValue(); 7648 7649 unsigned FPOpcode; 7650 APInt SignMask; 7651 switch (N0.getOpcode()) { 7652 case ISD::AND: 7653 FPOpcode = ISD::FABS; 7654 SignMask = ~APInt::getSignBit(SourceVT.getSizeInBits()); 7655 break; 7656 case ISD::XOR: 7657 FPOpcode = ISD::FNEG; 7658 SignMask = APInt::getSignBit(SourceVT.getSizeInBits()); 7659 break; 7660 // TODO: ISD::OR --> ISD::FNABS? 7661 default: 7662 return SDValue(); 7663 } 7664 7665 // Fold (bitcast int (and (bitcast fp X to int), 0x7fff...) to fp) -> fabs X 7666 // Fold (bitcast int (xor (bitcast fp X to int), 0x8000...) to fp) -> fneg X 7667 SDValue LogicOp0 = N0.getOperand(0); 7668 ConstantSDNode *LogicOp1 = dyn_cast<ConstantSDNode>(N0.getOperand(1)); 7669 if (LogicOp1 && LogicOp1->getAPIntValue() == SignMask && 7670 LogicOp0.getOpcode() == ISD::BITCAST && 7671 LogicOp0->getOperand(0).getValueType() == VT) 7672 return DAG.getNode(FPOpcode, SDLoc(N), VT, LogicOp0->getOperand(0)); 7673 7674 return SDValue(); 7675 } 7676 7677 SDValue DAGCombiner::visitBITCAST(SDNode *N) { 7678 SDValue N0 = N->getOperand(0); 7679 EVT VT = N->getValueType(0); 7680 7681 // If the input is a BUILD_VECTOR with all constant elements, fold this now. 7682 // Only do this before legalize, since afterward the target may be depending 7683 // on the bitconvert. 7684 // First check to see if this is all constant. 7685 if (!LegalTypes && 7686 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() && 7687 VT.isVector()) { 7688 bool isSimple = cast<BuildVectorSDNode>(N0)->isConstant(); 7689 7690 EVT DestEltVT = N->getValueType(0).getVectorElementType(); 7691 assert(!DestEltVT.isVector() && 7692 "Element type of vector ValueType must not be vector!"); 7693 if (isSimple) 7694 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT); 7695 } 7696 7697 // If the input is a constant, let getNode fold it. 7698 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) { 7699 // If we can't allow illegal operations, we need to check that this is just 7700 // a fp -> int or int -> conversion and that the resulting operation will 7701 // be legal. 7702 if (!LegalOperations || 7703 (isa<ConstantSDNode>(N0) && VT.isFloatingPoint() && !VT.isVector() && 7704 TLI.isOperationLegal(ISD::ConstantFP, VT)) || 7705 (isa<ConstantFPSDNode>(N0) && VT.isInteger() && !VT.isVector() && 7706 TLI.isOperationLegal(ISD::Constant, VT))) 7707 return DAG.getBitcast(VT, N0); 7708 } 7709 7710 // (conv (conv x, t1), t2) -> (conv x, t2) 7711 if (N0.getOpcode() == ISD::BITCAST) 7712 return DAG.getBitcast(VT, N0.getOperand(0)); 7713 7714 // fold (conv (load x)) -> (load (conv*)x) 7715 // If the resultant load doesn't need a higher alignment than the original! 7716 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() && 7717 // Do not change the width of a volatile load. 7718 !cast<LoadSDNode>(N0)->isVolatile() && 7719 // Do not remove the cast if the types differ in endian layout. 7720 TLI.hasBigEndianPartOrdering(N0.getValueType(), DAG.getDataLayout()) == 7721 TLI.hasBigEndianPartOrdering(VT, DAG.getDataLayout()) && 7722 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)) && 7723 TLI.isLoadBitCastBeneficial(N0.getValueType(), VT)) { 7724 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 7725 unsigned OrigAlign = LN0->getAlignment(); 7726 7727 bool Fast = false; 7728 if (TLI.allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), VT, 7729 LN0->getAddressSpace(), OrigAlign, &Fast) && 7730 Fast) { 7731 SDValue Load = 7732 DAG.getLoad(VT, SDLoc(N), LN0->getChain(), LN0->getBasePtr(), 7733 LN0->getPointerInfo(), OrigAlign, 7734 LN0->getMemOperand()->getFlags(), LN0->getAAInfo()); 7735 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1)); 7736 return Load; 7737 } 7738 } 7739 7740 if (SDValue V = foldBitcastedFPLogic(N, DAG, TLI)) 7741 return V; 7742 7743 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit) 7744 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit)) 7745 // 7746 // For ppc_fp128: 7747 // fold (bitcast (fneg x)) -> 7748 // flipbit = signbit 7749 // (xor (bitcast x) (build_pair flipbit, flipbit)) 7750 // 7751 // fold (bitcast (fabs x)) -> 7752 // flipbit = (and (extract_element (bitcast x), 0), signbit) 7753 // (xor (bitcast x) (build_pair flipbit, flipbit)) 7754 // This often reduces constant pool loads. 7755 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(N0.getValueType())) || 7756 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(N0.getValueType()))) && 7757 N0.getNode()->hasOneUse() && VT.isInteger() && 7758 !VT.isVector() && !N0.getValueType().isVector()) { 7759 SDValue NewConv = DAG.getBitcast(VT, N0.getOperand(0)); 7760 AddToWorklist(NewConv.getNode()); 7761 7762 SDLoc DL(N); 7763 if (N0.getValueType() == MVT::ppcf128 && !LegalTypes) { 7764 assert(VT.getSizeInBits() == 128); 7765 SDValue SignBit = DAG.getConstant( 7766 APInt::getSignBit(VT.getSizeInBits() / 2), SDLoc(N0), MVT::i64); 7767 SDValue FlipBit; 7768 if (N0.getOpcode() == ISD::FNEG) { 7769 FlipBit = SignBit; 7770 AddToWorklist(FlipBit.getNode()); 7771 } else { 7772 assert(N0.getOpcode() == ISD::FABS); 7773 SDValue Hi = 7774 DAG.getNode(ISD::EXTRACT_ELEMENT, SDLoc(NewConv), MVT::i64, NewConv, 7775 DAG.getIntPtrConstant(getPPCf128HiElementSelector(DAG), 7776 SDLoc(NewConv))); 7777 AddToWorklist(Hi.getNode()); 7778 FlipBit = DAG.getNode(ISD::AND, SDLoc(N0), MVT::i64, Hi, SignBit); 7779 AddToWorklist(FlipBit.getNode()); 7780 } 7781 SDValue FlipBits = 7782 DAG.getNode(ISD::BUILD_PAIR, SDLoc(N0), VT, FlipBit, FlipBit); 7783 AddToWorklist(FlipBits.getNode()); 7784 return DAG.getNode(ISD::XOR, DL, VT, NewConv, FlipBits); 7785 } 7786 APInt SignBit = APInt::getSignBit(VT.getSizeInBits()); 7787 if (N0.getOpcode() == ISD::FNEG) 7788 return DAG.getNode(ISD::XOR, DL, VT, 7789 NewConv, DAG.getConstant(SignBit, DL, VT)); 7790 assert(N0.getOpcode() == ISD::FABS); 7791 return DAG.getNode(ISD::AND, DL, VT, 7792 NewConv, DAG.getConstant(~SignBit, DL, VT)); 7793 } 7794 7795 // fold (bitconvert (fcopysign cst, x)) -> 7796 // (or (and (bitconvert x), sign), (and cst, (not sign))) 7797 // Note that we don't handle (copysign x, cst) because this can always be 7798 // folded to an fneg or fabs. 7799 // 7800 // For ppc_fp128: 7801 // fold (bitcast (fcopysign cst, x)) -> 7802 // flipbit = (and (extract_element 7803 // (xor (bitcast cst), (bitcast x)), 0), 7804 // signbit) 7805 // (xor (bitcast cst) (build_pair flipbit, flipbit)) 7806 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() && 7807 isa<ConstantFPSDNode>(N0.getOperand(0)) && 7808 VT.isInteger() && !VT.isVector()) { 7809 unsigned OrigXWidth = N0.getOperand(1).getValueSizeInBits(); 7810 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth); 7811 if (isTypeLegal(IntXVT)) { 7812 SDValue X = DAG.getBitcast(IntXVT, N0.getOperand(1)); 7813 AddToWorklist(X.getNode()); 7814 7815 // If X has a different width than the result/lhs, sext it or truncate it. 7816 unsigned VTWidth = VT.getSizeInBits(); 7817 if (OrigXWidth < VTWidth) { 7818 X = DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, X); 7819 AddToWorklist(X.getNode()); 7820 } else if (OrigXWidth > VTWidth) { 7821 // To get the sign bit in the right place, we have to shift it right 7822 // before truncating. 7823 SDLoc DL(X); 7824 X = DAG.getNode(ISD::SRL, DL, 7825 X.getValueType(), X, 7826 DAG.getConstant(OrigXWidth-VTWidth, DL, 7827 X.getValueType())); 7828 AddToWorklist(X.getNode()); 7829 X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X); 7830 AddToWorklist(X.getNode()); 7831 } 7832 7833 if (N0.getValueType() == MVT::ppcf128 && !LegalTypes) { 7834 APInt SignBit = APInt::getSignBit(VT.getSizeInBits() / 2); 7835 SDValue Cst = DAG.getBitcast(VT, N0.getOperand(0)); 7836 AddToWorklist(Cst.getNode()); 7837 SDValue X = DAG.getBitcast(VT, N0.getOperand(1)); 7838 AddToWorklist(X.getNode()); 7839 SDValue XorResult = DAG.getNode(ISD::XOR, SDLoc(N0), VT, Cst, X); 7840 AddToWorklist(XorResult.getNode()); 7841 SDValue XorResult64 = DAG.getNode( 7842 ISD::EXTRACT_ELEMENT, SDLoc(XorResult), MVT::i64, XorResult, 7843 DAG.getIntPtrConstant(getPPCf128HiElementSelector(DAG), 7844 SDLoc(XorResult))); 7845 AddToWorklist(XorResult64.getNode()); 7846 SDValue FlipBit = 7847 DAG.getNode(ISD::AND, SDLoc(XorResult64), MVT::i64, XorResult64, 7848 DAG.getConstant(SignBit, SDLoc(XorResult64), MVT::i64)); 7849 AddToWorklist(FlipBit.getNode()); 7850 SDValue FlipBits = 7851 DAG.getNode(ISD::BUILD_PAIR, SDLoc(N0), VT, FlipBit, FlipBit); 7852 AddToWorklist(FlipBits.getNode()); 7853 return DAG.getNode(ISD::XOR, SDLoc(N), VT, Cst, FlipBits); 7854 } 7855 APInt SignBit = APInt::getSignBit(VT.getSizeInBits()); 7856 X = DAG.getNode(ISD::AND, SDLoc(X), VT, 7857 X, DAG.getConstant(SignBit, SDLoc(X), VT)); 7858 AddToWorklist(X.getNode()); 7859 7860 SDValue Cst = DAG.getBitcast(VT, N0.getOperand(0)); 7861 Cst = DAG.getNode(ISD::AND, SDLoc(Cst), VT, 7862 Cst, DAG.getConstant(~SignBit, SDLoc(Cst), VT)); 7863 AddToWorklist(Cst.getNode()); 7864 7865 return DAG.getNode(ISD::OR, SDLoc(N), VT, X, Cst); 7866 } 7867 } 7868 7869 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive. 7870 if (N0.getOpcode() == ISD::BUILD_PAIR) 7871 if (SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT)) 7872 return CombineLD; 7873 7874 // Remove double bitcasts from shuffles - this is often a legacy of 7875 // XformToShuffleWithZero being used to combine bitmaskings (of 7876 // float vectors bitcast to integer vectors) into shuffles. 7877 // bitcast(shuffle(bitcast(s0),bitcast(s1))) -> shuffle(s0,s1) 7878 if (Level < AfterLegalizeDAG && TLI.isTypeLegal(VT) && VT.isVector() && 7879 N0->getOpcode() == ISD::VECTOR_SHUFFLE && 7880 VT.getVectorNumElements() >= N0.getValueType().getVectorNumElements() && 7881 !(VT.getVectorNumElements() % N0.getValueType().getVectorNumElements())) { 7882 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N0); 7883 7884 // If operands are a bitcast, peek through if it casts the original VT. 7885 // If operands are a constant, just bitcast back to original VT. 7886 auto PeekThroughBitcast = [&](SDValue Op) { 7887 if (Op.getOpcode() == ISD::BITCAST && 7888 Op.getOperand(0).getValueType() == VT) 7889 return SDValue(Op.getOperand(0)); 7890 if (ISD::isBuildVectorOfConstantSDNodes(Op.getNode()) || 7891 ISD::isBuildVectorOfConstantFPSDNodes(Op.getNode())) 7892 return DAG.getBitcast(VT, Op); 7893 return SDValue(); 7894 }; 7895 7896 SDValue SV0 = PeekThroughBitcast(N0->getOperand(0)); 7897 SDValue SV1 = PeekThroughBitcast(N0->getOperand(1)); 7898 if (!(SV0 && SV1)) 7899 return SDValue(); 7900 7901 int MaskScale = 7902 VT.getVectorNumElements() / N0.getValueType().getVectorNumElements(); 7903 SmallVector<int, 8> NewMask; 7904 for (int M : SVN->getMask()) 7905 for (int i = 0; i != MaskScale; ++i) 7906 NewMask.push_back(M < 0 ? -1 : M * MaskScale + i); 7907 7908 bool LegalMask = TLI.isShuffleMaskLegal(NewMask, VT); 7909 if (!LegalMask) { 7910 std::swap(SV0, SV1); 7911 ShuffleVectorSDNode::commuteMask(NewMask); 7912 LegalMask = TLI.isShuffleMaskLegal(NewMask, VT); 7913 } 7914 7915 if (LegalMask) 7916 return DAG.getVectorShuffle(VT, SDLoc(N), SV0, SV1, NewMask); 7917 } 7918 7919 return SDValue(); 7920 } 7921 7922 SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) { 7923 EVT VT = N->getValueType(0); 7924 return CombineConsecutiveLoads(N, VT); 7925 } 7926 7927 /// We know that BV is a build_vector node with Constant, ConstantFP or Undef 7928 /// operands. DstEltVT indicates the destination element value type. 7929 SDValue DAGCombiner:: 7930 ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) { 7931 EVT SrcEltVT = BV->getValueType(0).getVectorElementType(); 7932 7933 // If this is already the right type, we're done. 7934 if (SrcEltVT == DstEltVT) return SDValue(BV, 0); 7935 7936 unsigned SrcBitSize = SrcEltVT.getSizeInBits(); 7937 unsigned DstBitSize = DstEltVT.getSizeInBits(); 7938 7939 // If this is a conversion of N elements of one type to N elements of another 7940 // type, convert each element. This handles FP<->INT cases. 7941 if (SrcBitSize == DstBitSize) { 7942 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, 7943 BV->getValueType(0).getVectorNumElements()); 7944 7945 // Due to the FP element handling below calling this routine recursively, 7946 // we can end up with a scalar-to-vector node here. 7947 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR) 7948 return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT, 7949 DAG.getBitcast(DstEltVT, BV->getOperand(0))); 7950 7951 SmallVector<SDValue, 8> Ops; 7952 for (SDValue Op : BV->op_values()) { 7953 // If the vector element type is not legal, the BUILD_VECTOR operands 7954 // are promoted and implicitly truncated. Make that explicit here. 7955 if (Op.getValueType() != SrcEltVT) 7956 Op = DAG.getNode(ISD::TRUNCATE, SDLoc(BV), SrcEltVT, Op); 7957 Ops.push_back(DAG.getBitcast(DstEltVT, Op)); 7958 AddToWorklist(Ops.back().getNode()); 7959 } 7960 return DAG.getBuildVector(VT, SDLoc(BV), Ops); 7961 } 7962 7963 // Otherwise, we're growing or shrinking the elements. To avoid having to 7964 // handle annoying details of growing/shrinking FP values, we convert them to 7965 // int first. 7966 if (SrcEltVT.isFloatingPoint()) { 7967 // Convert the input float vector to a int vector where the elements are the 7968 // same sizes. 7969 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits()); 7970 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode(); 7971 SrcEltVT = IntVT; 7972 } 7973 7974 // Now we know the input is an integer vector. If the output is a FP type, 7975 // convert to integer first, then to FP of the right size. 7976 if (DstEltVT.isFloatingPoint()) { 7977 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits()); 7978 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode(); 7979 7980 // Next, convert to FP elements of the same size. 7981 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT); 7982 } 7983 7984 SDLoc DL(BV); 7985 7986 // Okay, we know the src/dst types are both integers of differing types. 7987 // Handling growing first. 7988 assert(SrcEltVT.isInteger() && DstEltVT.isInteger()); 7989 if (SrcBitSize < DstBitSize) { 7990 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize; 7991 7992 SmallVector<SDValue, 8> Ops; 7993 for (unsigned i = 0, e = BV->getNumOperands(); i != e; 7994 i += NumInputsPerOutput) { 7995 bool isLE = DAG.getDataLayout().isLittleEndian(); 7996 APInt NewBits = APInt(DstBitSize, 0); 7997 bool EltIsUndef = true; 7998 for (unsigned j = 0; j != NumInputsPerOutput; ++j) { 7999 // Shift the previously computed bits over. 8000 NewBits <<= SrcBitSize; 8001 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j)); 8002 if (Op.isUndef()) continue; 8003 EltIsUndef = false; 8004 8005 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue(). 8006 zextOrTrunc(SrcBitSize).zext(DstBitSize); 8007 } 8008 8009 if (EltIsUndef) 8010 Ops.push_back(DAG.getUNDEF(DstEltVT)); 8011 else 8012 Ops.push_back(DAG.getConstant(NewBits, DL, DstEltVT)); 8013 } 8014 8015 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size()); 8016 return DAG.getBuildVector(VT, DL, Ops); 8017 } 8018 8019 // Finally, this must be the case where we are shrinking elements: each input 8020 // turns into multiple outputs. 8021 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize; 8022 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, 8023 NumOutputsPerInput*BV->getNumOperands()); 8024 SmallVector<SDValue, 8> Ops; 8025 8026 for (const SDValue &Op : BV->op_values()) { 8027 if (Op.isUndef()) { 8028 Ops.append(NumOutputsPerInput, DAG.getUNDEF(DstEltVT)); 8029 continue; 8030 } 8031 8032 APInt OpVal = cast<ConstantSDNode>(Op)-> 8033 getAPIntValue().zextOrTrunc(SrcBitSize); 8034 8035 for (unsigned j = 0; j != NumOutputsPerInput; ++j) { 8036 APInt ThisVal = OpVal.trunc(DstBitSize); 8037 Ops.push_back(DAG.getConstant(ThisVal, DL, DstEltVT)); 8038 OpVal = OpVal.lshr(DstBitSize); 8039 } 8040 8041 // For big endian targets, swap the order of the pieces of each element. 8042 if (DAG.getDataLayout().isBigEndian()) 8043 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end()); 8044 } 8045 8046 return DAG.getBuildVector(VT, DL, Ops); 8047 } 8048 8049 /// Try to perform FMA combining on a given FADD node. 8050 SDValue DAGCombiner::visitFADDForFMACombine(SDNode *N) { 8051 SDValue N0 = N->getOperand(0); 8052 SDValue N1 = N->getOperand(1); 8053 EVT VT = N->getValueType(0); 8054 SDLoc SL(N); 8055 8056 const TargetOptions &Options = DAG.getTarget().Options; 8057 bool AllowFusion = 8058 (Options.AllowFPOpFusion == FPOpFusion::Fast || Options.UnsafeFPMath); 8059 8060 // Floating-point multiply-add with intermediate rounding. 8061 bool HasFMAD = (LegalOperations && TLI.isOperationLegal(ISD::FMAD, VT)); 8062 8063 // Floating-point multiply-add without intermediate rounding. 8064 bool HasFMA = 8065 AllowFusion && TLI.isFMAFasterThanFMulAndFAdd(VT) && 8066 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT)); 8067 8068 // No valid opcode, do not combine. 8069 if (!HasFMAD && !HasFMA) 8070 return SDValue(); 8071 8072 const SelectionDAGTargetInfo *STI = DAG.getSubtarget().getSelectionDAGInfo(); 8073 ; 8074 if (AllowFusion && STI && STI->generateFMAsInMachineCombiner(OptLevel)) 8075 return SDValue(); 8076 8077 // Always prefer FMAD to FMA for precision. 8078 unsigned PreferredFusedOpcode = HasFMAD ? ISD::FMAD : ISD::FMA; 8079 bool Aggressive = TLI.enableAggressiveFMAFusion(VT); 8080 bool LookThroughFPExt = TLI.isFPExtFree(VT); 8081 8082 // If we have two choices trying to fold (fadd (fmul u, v), (fmul x, y)), 8083 // prefer to fold the multiply with fewer uses. 8084 if (Aggressive && N0.getOpcode() == ISD::FMUL && 8085 N1.getOpcode() == ISD::FMUL) { 8086 if (N0.getNode()->use_size() > N1.getNode()->use_size()) 8087 std::swap(N0, N1); 8088 } 8089 8090 // fold (fadd (fmul x, y), z) -> (fma x, y, z) 8091 if (N0.getOpcode() == ISD::FMUL && 8092 (Aggressive || N0->hasOneUse())) { 8093 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8094 N0.getOperand(0), N0.getOperand(1), N1); 8095 } 8096 8097 // fold (fadd x, (fmul y, z)) -> (fma y, z, x) 8098 // Note: Commutes FADD operands. 8099 if (N1.getOpcode() == ISD::FMUL && 8100 (Aggressive || N1->hasOneUse())) { 8101 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8102 N1.getOperand(0), N1.getOperand(1), N0); 8103 } 8104 8105 // Look through FP_EXTEND nodes to do more combining. 8106 if (AllowFusion && LookThroughFPExt) { 8107 // fold (fadd (fpext (fmul x, y)), z) -> (fma (fpext x), (fpext y), z) 8108 if (N0.getOpcode() == ISD::FP_EXTEND) { 8109 SDValue N00 = N0.getOperand(0); 8110 if (N00.getOpcode() == ISD::FMUL) 8111 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8112 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8113 N00.getOperand(0)), 8114 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8115 N00.getOperand(1)), N1); 8116 } 8117 8118 // fold (fadd x, (fpext (fmul y, z))) -> (fma (fpext y), (fpext z), x) 8119 // Note: Commutes FADD operands. 8120 if (N1.getOpcode() == ISD::FP_EXTEND) { 8121 SDValue N10 = N1.getOperand(0); 8122 if (N10.getOpcode() == ISD::FMUL) 8123 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8124 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8125 N10.getOperand(0)), 8126 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8127 N10.getOperand(1)), N0); 8128 } 8129 } 8130 8131 // More folding opportunities when target permits. 8132 if ((AllowFusion || HasFMAD) && Aggressive) { 8133 // fold (fadd (fma x, y, (fmul u, v)), z) -> (fma x, y (fma u, v, z)) 8134 if (N0.getOpcode() == PreferredFusedOpcode && 8135 N0.getOperand(2).getOpcode() == ISD::FMUL) { 8136 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8137 N0.getOperand(0), N0.getOperand(1), 8138 DAG.getNode(PreferredFusedOpcode, SL, VT, 8139 N0.getOperand(2).getOperand(0), 8140 N0.getOperand(2).getOperand(1), 8141 N1)); 8142 } 8143 8144 // fold (fadd x, (fma y, z, (fmul u, v)) -> (fma y, z (fma u, v, x)) 8145 if (N1->getOpcode() == PreferredFusedOpcode && 8146 N1.getOperand(2).getOpcode() == ISD::FMUL) { 8147 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8148 N1.getOperand(0), N1.getOperand(1), 8149 DAG.getNode(PreferredFusedOpcode, SL, VT, 8150 N1.getOperand(2).getOperand(0), 8151 N1.getOperand(2).getOperand(1), 8152 N0)); 8153 } 8154 8155 if (AllowFusion && LookThroughFPExt) { 8156 // fold (fadd (fma x, y, (fpext (fmul u, v))), z) 8157 // -> (fma x, y, (fma (fpext u), (fpext v), z)) 8158 auto FoldFAddFMAFPExtFMul = [&] ( 8159 SDValue X, SDValue Y, SDValue U, SDValue V, SDValue Z) { 8160 return DAG.getNode(PreferredFusedOpcode, SL, VT, X, Y, 8161 DAG.getNode(PreferredFusedOpcode, SL, VT, 8162 DAG.getNode(ISD::FP_EXTEND, SL, VT, U), 8163 DAG.getNode(ISD::FP_EXTEND, SL, VT, V), 8164 Z)); 8165 }; 8166 if (N0.getOpcode() == PreferredFusedOpcode) { 8167 SDValue N02 = N0.getOperand(2); 8168 if (N02.getOpcode() == ISD::FP_EXTEND) { 8169 SDValue N020 = N02.getOperand(0); 8170 if (N020.getOpcode() == ISD::FMUL) 8171 return FoldFAddFMAFPExtFMul(N0.getOperand(0), N0.getOperand(1), 8172 N020.getOperand(0), N020.getOperand(1), 8173 N1); 8174 } 8175 } 8176 8177 // fold (fadd (fpext (fma x, y, (fmul u, v))), z) 8178 // -> (fma (fpext x), (fpext y), (fma (fpext u), (fpext v), z)) 8179 // FIXME: This turns two single-precision and one double-precision 8180 // operation into two double-precision operations, which might not be 8181 // interesting for all targets, especially GPUs. 8182 auto FoldFAddFPExtFMAFMul = [&] ( 8183 SDValue X, SDValue Y, SDValue U, SDValue V, SDValue Z) { 8184 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8185 DAG.getNode(ISD::FP_EXTEND, SL, VT, X), 8186 DAG.getNode(ISD::FP_EXTEND, SL, VT, Y), 8187 DAG.getNode(PreferredFusedOpcode, SL, VT, 8188 DAG.getNode(ISD::FP_EXTEND, SL, VT, U), 8189 DAG.getNode(ISD::FP_EXTEND, SL, VT, V), 8190 Z)); 8191 }; 8192 if (N0.getOpcode() == ISD::FP_EXTEND) { 8193 SDValue N00 = N0.getOperand(0); 8194 if (N00.getOpcode() == PreferredFusedOpcode) { 8195 SDValue N002 = N00.getOperand(2); 8196 if (N002.getOpcode() == ISD::FMUL) 8197 return FoldFAddFPExtFMAFMul(N00.getOperand(0), N00.getOperand(1), 8198 N002.getOperand(0), N002.getOperand(1), 8199 N1); 8200 } 8201 } 8202 8203 // fold (fadd x, (fma y, z, (fpext (fmul u, v))) 8204 // -> (fma y, z, (fma (fpext u), (fpext v), x)) 8205 if (N1.getOpcode() == PreferredFusedOpcode) { 8206 SDValue N12 = N1.getOperand(2); 8207 if (N12.getOpcode() == ISD::FP_EXTEND) { 8208 SDValue N120 = N12.getOperand(0); 8209 if (N120.getOpcode() == ISD::FMUL) 8210 return FoldFAddFMAFPExtFMul(N1.getOperand(0), N1.getOperand(1), 8211 N120.getOperand(0), N120.getOperand(1), 8212 N0); 8213 } 8214 } 8215 8216 // fold (fadd x, (fpext (fma y, z, (fmul u, v))) 8217 // -> (fma (fpext y), (fpext z), (fma (fpext u), (fpext v), x)) 8218 // FIXME: This turns two single-precision and one double-precision 8219 // operation into two double-precision operations, which might not be 8220 // interesting for all targets, especially GPUs. 8221 if (N1.getOpcode() == ISD::FP_EXTEND) { 8222 SDValue N10 = N1.getOperand(0); 8223 if (N10.getOpcode() == PreferredFusedOpcode) { 8224 SDValue N102 = N10.getOperand(2); 8225 if (N102.getOpcode() == ISD::FMUL) 8226 return FoldFAddFPExtFMAFMul(N10.getOperand(0), N10.getOperand(1), 8227 N102.getOperand(0), N102.getOperand(1), 8228 N0); 8229 } 8230 } 8231 } 8232 } 8233 8234 return SDValue(); 8235 } 8236 8237 /// Try to perform FMA combining on a given FSUB node. 8238 SDValue DAGCombiner::visitFSUBForFMACombine(SDNode *N) { 8239 SDValue N0 = N->getOperand(0); 8240 SDValue N1 = N->getOperand(1); 8241 EVT VT = N->getValueType(0); 8242 SDLoc SL(N); 8243 8244 const TargetOptions &Options = DAG.getTarget().Options; 8245 bool AllowFusion = 8246 (Options.AllowFPOpFusion == FPOpFusion::Fast || Options.UnsafeFPMath); 8247 8248 // Floating-point multiply-add with intermediate rounding. 8249 bool HasFMAD = (LegalOperations && TLI.isOperationLegal(ISD::FMAD, VT)); 8250 8251 // Floating-point multiply-add without intermediate rounding. 8252 bool HasFMA = 8253 AllowFusion && TLI.isFMAFasterThanFMulAndFAdd(VT) && 8254 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT)); 8255 8256 // No valid opcode, do not combine. 8257 if (!HasFMAD && !HasFMA) 8258 return SDValue(); 8259 8260 const SelectionDAGTargetInfo *STI = DAG.getSubtarget().getSelectionDAGInfo(); 8261 if (AllowFusion && STI && STI->generateFMAsInMachineCombiner(OptLevel)) 8262 return SDValue(); 8263 8264 // Always prefer FMAD to FMA for precision. 8265 unsigned PreferredFusedOpcode = HasFMAD ? ISD::FMAD : ISD::FMA; 8266 bool Aggressive = TLI.enableAggressiveFMAFusion(VT); 8267 bool LookThroughFPExt = TLI.isFPExtFree(VT); 8268 8269 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z)) 8270 if (N0.getOpcode() == ISD::FMUL && 8271 (Aggressive || N0->hasOneUse())) { 8272 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8273 N0.getOperand(0), N0.getOperand(1), 8274 DAG.getNode(ISD::FNEG, SL, VT, N1)); 8275 } 8276 8277 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x) 8278 // Note: Commutes FSUB operands. 8279 if (N1.getOpcode() == ISD::FMUL && 8280 (Aggressive || N1->hasOneUse())) 8281 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8282 DAG.getNode(ISD::FNEG, SL, VT, 8283 N1.getOperand(0)), 8284 N1.getOperand(1), N0); 8285 8286 // fold (fsub (fneg (fmul, x, y)), z) -> (fma (fneg x), y, (fneg z)) 8287 if (N0.getOpcode() == ISD::FNEG && 8288 N0.getOperand(0).getOpcode() == ISD::FMUL && 8289 (Aggressive || (N0->hasOneUse() && N0.getOperand(0).hasOneUse()))) { 8290 SDValue N00 = N0.getOperand(0).getOperand(0); 8291 SDValue N01 = N0.getOperand(0).getOperand(1); 8292 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8293 DAG.getNode(ISD::FNEG, SL, VT, N00), N01, 8294 DAG.getNode(ISD::FNEG, SL, VT, N1)); 8295 } 8296 8297 // Look through FP_EXTEND nodes to do more combining. 8298 if (AllowFusion && LookThroughFPExt) { 8299 // fold (fsub (fpext (fmul x, y)), z) 8300 // -> (fma (fpext x), (fpext y), (fneg z)) 8301 if (N0.getOpcode() == ISD::FP_EXTEND) { 8302 SDValue N00 = N0.getOperand(0); 8303 if (N00.getOpcode() == ISD::FMUL) 8304 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8305 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8306 N00.getOperand(0)), 8307 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8308 N00.getOperand(1)), 8309 DAG.getNode(ISD::FNEG, SL, VT, N1)); 8310 } 8311 8312 // fold (fsub x, (fpext (fmul y, z))) 8313 // -> (fma (fneg (fpext y)), (fpext z), x) 8314 // Note: Commutes FSUB operands. 8315 if (N1.getOpcode() == ISD::FP_EXTEND) { 8316 SDValue N10 = N1.getOperand(0); 8317 if (N10.getOpcode() == ISD::FMUL) 8318 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8319 DAG.getNode(ISD::FNEG, SL, VT, 8320 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8321 N10.getOperand(0))), 8322 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8323 N10.getOperand(1)), 8324 N0); 8325 } 8326 8327 // fold (fsub (fpext (fneg (fmul, x, y))), z) 8328 // -> (fneg (fma (fpext x), (fpext y), z)) 8329 // Note: This could be removed with appropriate canonicalization of the 8330 // input expression into (fneg (fadd (fpext (fmul, x, y)), z). However, the 8331 // orthogonal flags -fp-contract=fast and -enable-unsafe-fp-math prevent 8332 // from implementing the canonicalization in visitFSUB. 8333 if (N0.getOpcode() == ISD::FP_EXTEND) { 8334 SDValue N00 = N0.getOperand(0); 8335 if (N00.getOpcode() == ISD::FNEG) { 8336 SDValue N000 = N00.getOperand(0); 8337 if (N000.getOpcode() == ISD::FMUL) { 8338 return DAG.getNode(ISD::FNEG, SL, VT, 8339 DAG.getNode(PreferredFusedOpcode, SL, VT, 8340 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8341 N000.getOperand(0)), 8342 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8343 N000.getOperand(1)), 8344 N1)); 8345 } 8346 } 8347 } 8348 8349 // fold (fsub (fneg (fpext (fmul, x, y))), z) 8350 // -> (fneg (fma (fpext x)), (fpext y), z) 8351 // Note: This could be removed with appropriate canonicalization of the 8352 // input expression into (fneg (fadd (fpext (fmul, x, y)), z). However, the 8353 // orthogonal flags -fp-contract=fast and -enable-unsafe-fp-math prevent 8354 // from implementing the canonicalization in visitFSUB. 8355 if (N0.getOpcode() == ISD::FNEG) { 8356 SDValue N00 = N0.getOperand(0); 8357 if (N00.getOpcode() == ISD::FP_EXTEND) { 8358 SDValue N000 = N00.getOperand(0); 8359 if (N000.getOpcode() == ISD::FMUL) { 8360 return DAG.getNode(ISD::FNEG, SL, VT, 8361 DAG.getNode(PreferredFusedOpcode, SL, VT, 8362 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8363 N000.getOperand(0)), 8364 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8365 N000.getOperand(1)), 8366 N1)); 8367 } 8368 } 8369 } 8370 8371 } 8372 8373 // More folding opportunities when target permits. 8374 if ((AllowFusion || HasFMAD) && Aggressive) { 8375 // fold (fsub (fma x, y, (fmul u, v)), z) 8376 // -> (fma x, y (fma u, v, (fneg z))) 8377 if (N0.getOpcode() == PreferredFusedOpcode && 8378 N0.getOperand(2).getOpcode() == ISD::FMUL) { 8379 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8380 N0.getOperand(0), N0.getOperand(1), 8381 DAG.getNode(PreferredFusedOpcode, SL, VT, 8382 N0.getOperand(2).getOperand(0), 8383 N0.getOperand(2).getOperand(1), 8384 DAG.getNode(ISD::FNEG, SL, VT, 8385 N1))); 8386 } 8387 8388 // fold (fsub x, (fma y, z, (fmul u, v))) 8389 // -> (fma (fneg y), z, (fma (fneg u), v, x)) 8390 if (N1.getOpcode() == PreferredFusedOpcode && 8391 N1.getOperand(2).getOpcode() == ISD::FMUL) { 8392 SDValue N20 = N1.getOperand(2).getOperand(0); 8393 SDValue N21 = N1.getOperand(2).getOperand(1); 8394 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8395 DAG.getNode(ISD::FNEG, SL, VT, 8396 N1.getOperand(0)), 8397 N1.getOperand(1), 8398 DAG.getNode(PreferredFusedOpcode, SL, VT, 8399 DAG.getNode(ISD::FNEG, SL, VT, N20), 8400 8401 N21, N0)); 8402 } 8403 8404 if (AllowFusion && LookThroughFPExt) { 8405 // fold (fsub (fma x, y, (fpext (fmul u, v))), z) 8406 // -> (fma x, y (fma (fpext u), (fpext v), (fneg z))) 8407 if (N0.getOpcode() == PreferredFusedOpcode) { 8408 SDValue N02 = N0.getOperand(2); 8409 if (N02.getOpcode() == ISD::FP_EXTEND) { 8410 SDValue N020 = N02.getOperand(0); 8411 if (N020.getOpcode() == ISD::FMUL) 8412 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8413 N0.getOperand(0), N0.getOperand(1), 8414 DAG.getNode(PreferredFusedOpcode, SL, VT, 8415 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8416 N020.getOperand(0)), 8417 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8418 N020.getOperand(1)), 8419 DAG.getNode(ISD::FNEG, SL, VT, 8420 N1))); 8421 } 8422 } 8423 8424 // fold (fsub (fpext (fma x, y, (fmul u, v))), z) 8425 // -> (fma (fpext x), (fpext y), 8426 // (fma (fpext u), (fpext v), (fneg z))) 8427 // FIXME: This turns two single-precision and one double-precision 8428 // operation into two double-precision operations, which might not be 8429 // interesting for all targets, especially GPUs. 8430 if (N0.getOpcode() == ISD::FP_EXTEND) { 8431 SDValue N00 = N0.getOperand(0); 8432 if (N00.getOpcode() == PreferredFusedOpcode) { 8433 SDValue N002 = N00.getOperand(2); 8434 if (N002.getOpcode() == ISD::FMUL) 8435 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8436 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8437 N00.getOperand(0)), 8438 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8439 N00.getOperand(1)), 8440 DAG.getNode(PreferredFusedOpcode, SL, VT, 8441 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8442 N002.getOperand(0)), 8443 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8444 N002.getOperand(1)), 8445 DAG.getNode(ISD::FNEG, SL, VT, 8446 N1))); 8447 } 8448 } 8449 8450 // fold (fsub x, (fma y, z, (fpext (fmul u, v)))) 8451 // -> (fma (fneg y), z, (fma (fneg (fpext u)), (fpext v), x)) 8452 if (N1.getOpcode() == PreferredFusedOpcode && 8453 N1.getOperand(2).getOpcode() == ISD::FP_EXTEND) { 8454 SDValue N120 = N1.getOperand(2).getOperand(0); 8455 if (N120.getOpcode() == ISD::FMUL) { 8456 SDValue N1200 = N120.getOperand(0); 8457 SDValue N1201 = N120.getOperand(1); 8458 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8459 DAG.getNode(ISD::FNEG, SL, VT, N1.getOperand(0)), 8460 N1.getOperand(1), 8461 DAG.getNode(PreferredFusedOpcode, SL, VT, 8462 DAG.getNode(ISD::FNEG, SL, VT, 8463 DAG.getNode(ISD::FP_EXTEND, SL, 8464 VT, N1200)), 8465 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8466 N1201), 8467 N0)); 8468 } 8469 } 8470 8471 // fold (fsub x, (fpext (fma y, z, (fmul u, v)))) 8472 // -> (fma (fneg (fpext y)), (fpext z), 8473 // (fma (fneg (fpext u)), (fpext v), x)) 8474 // FIXME: This turns two single-precision and one double-precision 8475 // operation into two double-precision operations, which might not be 8476 // interesting for all targets, especially GPUs. 8477 if (N1.getOpcode() == ISD::FP_EXTEND && 8478 N1.getOperand(0).getOpcode() == PreferredFusedOpcode) { 8479 SDValue N100 = N1.getOperand(0).getOperand(0); 8480 SDValue N101 = N1.getOperand(0).getOperand(1); 8481 SDValue N102 = N1.getOperand(0).getOperand(2); 8482 if (N102.getOpcode() == ISD::FMUL) { 8483 SDValue N1020 = N102.getOperand(0); 8484 SDValue N1021 = N102.getOperand(1); 8485 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8486 DAG.getNode(ISD::FNEG, SL, VT, 8487 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8488 N100)), 8489 DAG.getNode(ISD::FP_EXTEND, SL, VT, N101), 8490 DAG.getNode(PreferredFusedOpcode, SL, VT, 8491 DAG.getNode(ISD::FNEG, SL, VT, 8492 DAG.getNode(ISD::FP_EXTEND, SL, 8493 VT, N1020)), 8494 DAG.getNode(ISD::FP_EXTEND, SL, VT, 8495 N1021), 8496 N0)); 8497 } 8498 } 8499 } 8500 } 8501 8502 return SDValue(); 8503 } 8504 8505 /// Try to perform FMA combining on a given FMUL node based on the distributive 8506 /// law x * (y + 1) = x * y + x and variants thereof (commuted versions, 8507 /// subtraction instead of addition). 8508 SDValue DAGCombiner::visitFMULForFMADistributiveCombine(SDNode *N) { 8509 SDValue N0 = N->getOperand(0); 8510 SDValue N1 = N->getOperand(1); 8511 EVT VT = N->getValueType(0); 8512 SDLoc SL(N); 8513 8514 assert(N->getOpcode() == ISD::FMUL && "Expected FMUL Operation"); 8515 8516 const TargetOptions &Options = DAG.getTarget().Options; 8517 8518 // The transforms below are incorrect when x == 0 and y == inf, because the 8519 // intermediate multiplication produces a nan. 8520 if (!Options.NoInfsFPMath) 8521 return SDValue(); 8522 8523 // Floating-point multiply-add without intermediate rounding. 8524 bool HasFMA = 8525 (Options.AllowFPOpFusion == FPOpFusion::Fast || Options.UnsafeFPMath) && 8526 TLI.isFMAFasterThanFMulAndFAdd(VT) && 8527 (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT)); 8528 8529 // Floating-point multiply-add with intermediate rounding. This can result 8530 // in a less precise result due to the changed rounding order. 8531 bool HasFMAD = Options.UnsafeFPMath && 8532 (LegalOperations && TLI.isOperationLegal(ISD::FMAD, VT)); 8533 8534 // No valid opcode, do not combine. 8535 if (!HasFMAD && !HasFMA) 8536 return SDValue(); 8537 8538 // Always prefer FMAD to FMA for precision. 8539 unsigned PreferredFusedOpcode = HasFMAD ? ISD::FMAD : ISD::FMA; 8540 bool Aggressive = TLI.enableAggressiveFMAFusion(VT); 8541 8542 // fold (fmul (fadd x, +1.0), y) -> (fma x, y, y) 8543 // fold (fmul (fadd x, -1.0), y) -> (fma x, y, (fneg y)) 8544 auto FuseFADD = [&](SDValue X, SDValue Y) { 8545 if (X.getOpcode() == ISD::FADD && (Aggressive || X->hasOneUse())) { 8546 auto XC1 = isConstOrConstSplatFP(X.getOperand(1)); 8547 if (XC1 && XC1->isExactlyValue(+1.0)) 8548 return DAG.getNode(PreferredFusedOpcode, SL, VT, X.getOperand(0), Y, Y); 8549 if (XC1 && XC1->isExactlyValue(-1.0)) 8550 return DAG.getNode(PreferredFusedOpcode, SL, VT, X.getOperand(0), Y, 8551 DAG.getNode(ISD::FNEG, SL, VT, Y)); 8552 } 8553 return SDValue(); 8554 }; 8555 8556 if (SDValue FMA = FuseFADD(N0, N1)) 8557 return FMA; 8558 if (SDValue FMA = FuseFADD(N1, N0)) 8559 return FMA; 8560 8561 // fold (fmul (fsub +1.0, x), y) -> (fma (fneg x), y, y) 8562 // fold (fmul (fsub -1.0, x), y) -> (fma (fneg x), y, (fneg y)) 8563 // fold (fmul (fsub x, +1.0), y) -> (fma x, y, (fneg y)) 8564 // fold (fmul (fsub x, -1.0), y) -> (fma x, y, y) 8565 auto FuseFSUB = [&](SDValue X, SDValue Y) { 8566 if (X.getOpcode() == ISD::FSUB && (Aggressive || X->hasOneUse())) { 8567 auto XC0 = isConstOrConstSplatFP(X.getOperand(0)); 8568 if (XC0 && XC0->isExactlyValue(+1.0)) 8569 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8570 DAG.getNode(ISD::FNEG, SL, VT, X.getOperand(1)), Y, 8571 Y); 8572 if (XC0 && XC0->isExactlyValue(-1.0)) 8573 return DAG.getNode(PreferredFusedOpcode, SL, VT, 8574 DAG.getNode(ISD::FNEG, SL, VT, X.getOperand(1)), Y, 8575 DAG.getNode(ISD::FNEG, SL, VT, Y)); 8576 8577 auto XC1 = isConstOrConstSplatFP(X.getOperand(1)); 8578 if (XC1 && XC1->isExactlyValue(+1.0)) 8579 return DAG.getNode(PreferredFusedOpcode, SL, VT, X.getOperand(0), Y, 8580 DAG.getNode(ISD::FNEG, SL, VT, Y)); 8581 if (XC1 && XC1->isExactlyValue(-1.0)) 8582 return DAG.getNode(PreferredFusedOpcode, SL, VT, X.getOperand(0), Y, Y); 8583 } 8584 return SDValue(); 8585 }; 8586 8587 if (SDValue FMA = FuseFSUB(N0, N1)) 8588 return FMA; 8589 if (SDValue FMA = FuseFSUB(N1, N0)) 8590 return FMA; 8591 8592 return SDValue(); 8593 } 8594 8595 SDValue DAGCombiner::visitFADD(SDNode *N) { 8596 SDValue N0 = N->getOperand(0); 8597 SDValue N1 = N->getOperand(1); 8598 bool N0CFP = isConstantFPBuildVectorOrConstantFP(N0); 8599 bool N1CFP = isConstantFPBuildVectorOrConstantFP(N1); 8600 EVT VT = N->getValueType(0); 8601 SDLoc DL(N); 8602 const TargetOptions &Options = DAG.getTarget().Options; 8603 const SDNodeFlags *Flags = &cast<BinaryWithFlagsSDNode>(N)->Flags; 8604 8605 // fold vector ops 8606 if (VT.isVector()) 8607 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 8608 return FoldedVOp; 8609 8610 // fold (fadd c1, c2) -> c1 + c2 8611 if (N0CFP && N1CFP) 8612 return DAG.getNode(ISD::FADD, DL, VT, N0, N1, Flags); 8613 8614 // canonicalize constant to RHS 8615 if (N0CFP && !N1CFP) 8616 return DAG.getNode(ISD::FADD, DL, VT, N1, N0, Flags); 8617 8618 // fold (fadd A, (fneg B)) -> (fsub A, B) 8619 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) && 8620 isNegatibleForFree(N1, LegalOperations, TLI, &Options) == 2) 8621 return DAG.getNode(ISD::FSUB, DL, VT, N0, 8622 GetNegatedExpression(N1, DAG, LegalOperations), Flags); 8623 8624 // fold (fadd (fneg A), B) -> (fsub B, A) 8625 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) && 8626 isNegatibleForFree(N0, LegalOperations, TLI, &Options) == 2) 8627 return DAG.getNode(ISD::FSUB, DL, VT, N1, 8628 GetNegatedExpression(N0, DAG, LegalOperations), Flags); 8629 8630 // FIXME: Auto-upgrade the target/function-level option. 8631 if (Options.UnsafeFPMath || N->getFlags()->hasNoSignedZeros()) { 8632 // fold (fadd A, 0) -> A 8633 if (ConstantFPSDNode *N1C = isConstOrConstSplatFP(N1)) 8634 if (N1C->isZero()) 8635 return N0; 8636 } 8637 8638 // If 'unsafe math' is enabled, fold lots of things. 8639 if (Options.UnsafeFPMath) { 8640 // No FP constant should be created after legalization as Instruction 8641 // Selection pass has a hard time dealing with FP constants. 8642 bool AllowNewConst = (Level < AfterLegalizeDAG); 8643 8644 // fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2)) 8645 if (N1CFP && N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() && 8646 isConstantFPBuildVectorOrConstantFP(N0.getOperand(1))) 8647 return DAG.getNode(ISD::FADD, DL, VT, N0.getOperand(0), 8648 DAG.getNode(ISD::FADD, DL, VT, N0.getOperand(1), N1, 8649 Flags), 8650 Flags); 8651 8652 // If allowed, fold (fadd (fneg x), x) -> 0.0 8653 if (AllowNewConst && N0.getOpcode() == ISD::FNEG && N0.getOperand(0) == N1) 8654 return DAG.getConstantFP(0.0, DL, VT); 8655 8656 // If allowed, fold (fadd x, (fneg x)) -> 0.0 8657 if (AllowNewConst && N1.getOpcode() == ISD::FNEG && N1.getOperand(0) == N0) 8658 return DAG.getConstantFP(0.0, DL, VT); 8659 8660 // We can fold chains of FADD's of the same value into multiplications. 8661 // This transform is not safe in general because we are reducing the number 8662 // of rounding steps. 8663 if (TLI.isOperationLegalOrCustom(ISD::FMUL, VT) && !N0CFP && !N1CFP) { 8664 if (N0.getOpcode() == ISD::FMUL) { 8665 bool CFP00 = isConstantFPBuildVectorOrConstantFP(N0.getOperand(0)); 8666 bool CFP01 = isConstantFPBuildVectorOrConstantFP(N0.getOperand(1)); 8667 8668 // (fadd (fmul x, c), x) -> (fmul x, c+1) 8669 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) { 8670 SDValue NewCFP = DAG.getNode(ISD::FADD, DL, VT, N0.getOperand(1), 8671 DAG.getConstantFP(1.0, DL, VT), Flags); 8672 return DAG.getNode(ISD::FMUL, DL, VT, N1, NewCFP, Flags); 8673 } 8674 8675 // (fadd (fmul x, c), (fadd x, x)) -> (fmul x, c+2) 8676 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD && 8677 N1.getOperand(0) == N1.getOperand(1) && 8678 N0.getOperand(0) == N1.getOperand(0)) { 8679 SDValue NewCFP = DAG.getNode(ISD::FADD, DL, VT, N0.getOperand(1), 8680 DAG.getConstantFP(2.0, DL, VT), Flags); 8681 return DAG.getNode(ISD::FMUL, DL, VT, N0.getOperand(0), NewCFP, Flags); 8682 } 8683 } 8684 8685 if (N1.getOpcode() == ISD::FMUL) { 8686 bool CFP10 = isConstantFPBuildVectorOrConstantFP(N1.getOperand(0)); 8687 bool CFP11 = isConstantFPBuildVectorOrConstantFP(N1.getOperand(1)); 8688 8689 // (fadd x, (fmul x, c)) -> (fmul x, c+1) 8690 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) { 8691 SDValue NewCFP = DAG.getNode(ISD::FADD, DL, VT, N1.getOperand(1), 8692 DAG.getConstantFP(1.0, DL, VT), Flags); 8693 return DAG.getNode(ISD::FMUL, DL, VT, N0, NewCFP, Flags); 8694 } 8695 8696 // (fadd (fadd x, x), (fmul x, c)) -> (fmul x, c+2) 8697 if (CFP11 && !CFP10 && N0.getOpcode() == ISD::FADD && 8698 N0.getOperand(0) == N0.getOperand(1) && 8699 N1.getOperand(0) == N0.getOperand(0)) { 8700 SDValue NewCFP = DAG.getNode(ISD::FADD, DL, VT, N1.getOperand(1), 8701 DAG.getConstantFP(2.0, DL, VT), Flags); 8702 return DAG.getNode(ISD::FMUL, DL, VT, N1.getOperand(0), NewCFP, Flags); 8703 } 8704 } 8705 8706 if (N0.getOpcode() == ISD::FADD && AllowNewConst) { 8707 bool CFP00 = isConstantFPBuildVectorOrConstantFP(N0.getOperand(0)); 8708 // (fadd (fadd x, x), x) -> (fmul x, 3.0) 8709 if (!CFP00 && N0.getOperand(0) == N0.getOperand(1) && 8710 (N0.getOperand(0) == N1)) { 8711 return DAG.getNode(ISD::FMUL, DL, VT, 8712 N1, DAG.getConstantFP(3.0, DL, VT), Flags); 8713 } 8714 } 8715 8716 if (N1.getOpcode() == ISD::FADD && AllowNewConst) { 8717 bool CFP10 = isConstantFPBuildVectorOrConstantFP(N1.getOperand(0)); 8718 // (fadd x, (fadd x, x)) -> (fmul x, 3.0) 8719 if (!CFP10 && N1.getOperand(0) == N1.getOperand(1) && 8720 N1.getOperand(0) == N0) { 8721 return DAG.getNode(ISD::FMUL, DL, VT, 8722 N0, DAG.getConstantFP(3.0, DL, VT), Flags); 8723 } 8724 } 8725 8726 // (fadd (fadd x, x), (fadd x, x)) -> (fmul x, 4.0) 8727 if (AllowNewConst && 8728 N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD && 8729 N0.getOperand(0) == N0.getOperand(1) && 8730 N1.getOperand(0) == N1.getOperand(1) && 8731 N0.getOperand(0) == N1.getOperand(0)) { 8732 return DAG.getNode(ISD::FMUL, DL, VT, N0.getOperand(0), 8733 DAG.getConstantFP(4.0, DL, VT), Flags); 8734 } 8735 } 8736 } // enable-unsafe-fp-math 8737 8738 // FADD -> FMA combines: 8739 if (SDValue Fused = visitFADDForFMACombine(N)) { 8740 AddToWorklist(Fused.getNode()); 8741 return Fused; 8742 } 8743 return SDValue(); 8744 } 8745 8746 SDValue DAGCombiner::visitFSUB(SDNode *N) { 8747 SDValue N0 = N->getOperand(0); 8748 SDValue N1 = N->getOperand(1); 8749 ConstantFPSDNode *N0CFP = isConstOrConstSplatFP(N0); 8750 ConstantFPSDNode *N1CFP = isConstOrConstSplatFP(N1); 8751 EVT VT = N->getValueType(0); 8752 SDLoc DL(N); 8753 const TargetOptions &Options = DAG.getTarget().Options; 8754 const SDNodeFlags *Flags = &cast<BinaryWithFlagsSDNode>(N)->Flags; 8755 8756 // fold vector ops 8757 if (VT.isVector()) 8758 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 8759 return FoldedVOp; 8760 8761 // fold (fsub c1, c2) -> c1-c2 8762 if (N0CFP && N1CFP) 8763 return DAG.getNode(ISD::FSUB, DL, VT, N0, N1, Flags); 8764 8765 // fold (fsub A, (fneg B)) -> (fadd A, B) 8766 if (isNegatibleForFree(N1, LegalOperations, TLI, &Options)) 8767 return DAG.getNode(ISD::FADD, DL, VT, N0, 8768 GetNegatedExpression(N1, DAG, LegalOperations), Flags); 8769 8770 // FIXME: Auto-upgrade the target/function-level option. 8771 if (Options.UnsafeFPMath || N->getFlags()->hasNoSignedZeros()) { 8772 // (fsub 0, B) -> -B 8773 if (N0CFP && N0CFP->isZero()) { 8774 if (isNegatibleForFree(N1, LegalOperations, TLI, &Options)) 8775 return GetNegatedExpression(N1, DAG, LegalOperations); 8776 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) 8777 return DAG.getNode(ISD::FNEG, DL, VT, N1, Flags); 8778 } 8779 } 8780 8781 // If 'unsafe math' is enabled, fold lots of things. 8782 if (Options.UnsafeFPMath) { 8783 // (fsub A, 0) -> A 8784 if (N1CFP && N1CFP->isZero()) 8785 return N0; 8786 8787 // (fsub x, x) -> 0.0 8788 if (N0 == N1) 8789 return DAG.getConstantFP(0.0f, DL, VT); 8790 8791 // (fsub x, (fadd x, y)) -> (fneg y) 8792 // (fsub x, (fadd y, x)) -> (fneg y) 8793 if (N1.getOpcode() == ISD::FADD) { 8794 SDValue N10 = N1->getOperand(0); 8795 SDValue N11 = N1->getOperand(1); 8796 8797 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI, &Options)) 8798 return GetNegatedExpression(N11, DAG, LegalOperations); 8799 8800 if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI, &Options)) 8801 return GetNegatedExpression(N10, DAG, LegalOperations); 8802 } 8803 } 8804 8805 // FSUB -> FMA combines: 8806 if (SDValue Fused = visitFSUBForFMACombine(N)) { 8807 AddToWorklist(Fused.getNode()); 8808 return Fused; 8809 } 8810 8811 return SDValue(); 8812 } 8813 8814 SDValue DAGCombiner::visitFMUL(SDNode *N) { 8815 SDValue N0 = N->getOperand(0); 8816 SDValue N1 = N->getOperand(1); 8817 ConstantFPSDNode *N0CFP = isConstOrConstSplatFP(N0); 8818 ConstantFPSDNode *N1CFP = isConstOrConstSplatFP(N1); 8819 EVT VT = N->getValueType(0); 8820 SDLoc DL(N); 8821 const TargetOptions &Options = DAG.getTarget().Options; 8822 const SDNodeFlags *Flags = &cast<BinaryWithFlagsSDNode>(N)->Flags; 8823 8824 // fold vector ops 8825 if (VT.isVector()) { 8826 // This just handles C1 * C2 for vectors. Other vector folds are below. 8827 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 8828 return FoldedVOp; 8829 } 8830 8831 // fold (fmul c1, c2) -> c1*c2 8832 if (N0CFP && N1CFP) 8833 return DAG.getNode(ISD::FMUL, DL, VT, N0, N1, Flags); 8834 8835 // canonicalize constant to RHS 8836 if (isConstantFPBuildVectorOrConstantFP(N0) && 8837 !isConstantFPBuildVectorOrConstantFP(N1)) 8838 return DAG.getNode(ISD::FMUL, DL, VT, N1, N0, Flags); 8839 8840 // fold (fmul A, 1.0) -> A 8841 if (N1CFP && N1CFP->isExactlyValue(1.0)) 8842 return N0; 8843 8844 if (Options.UnsafeFPMath) { 8845 // fold (fmul A, 0) -> 0 8846 if (N1CFP && N1CFP->isZero()) 8847 return N1; 8848 8849 // fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2)) 8850 if (N0.getOpcode() == ISD::FMUL) { 8851 // Fold scalars or any vector constants (not just splats). 8852 // This fold is done in general by InstCombine, but extra fmul insts 8853 // may have been generated during lowering. 8854 SDValue N00 = N0.getOperand(0); 8855 SDValue N01 = N0.getOperand(1); 8856 auto *BV1 = dyn_cast<BuildVectorSDNode>(N1); 8857 auto *BV00 = dyn_cast<BuildVectorSDNode>(N00); 8858 auto *BV01 = dyn_cast<BuildVectorSDNode>(N01); 8859 8860 // Check 1: Make sure that the first operand of the inner multiply is NOT 8861 // a constant. Otherwise, we may induce infinite looping. 8862 if (!(isConstOrConstSplatFP(N00) || (BV00 && BV00->isConstant()))) { 8863 // Check 2: Make sure that the second operand of the inner multiply and 8864 // the second operand of the outer multiply are constants. 8865 if ((N1CFP && isConstOrConstSplatFP(N01)) || 8866 (BV1 && BV01 && BV1->isConstant() && BV01->isConstant())) { 8867 SDValue MulConsts = DAG.getNode(ISD::FMUL, DL, VT, N01, N1, Flags); 8868 return DAG.getNode(ISD::FMUL, DL, VT, N00, MulConsts, Flags); 8869 } 8870 } 8871 } 8872 8873 // fold (fmul (fadd x, x), c) -> (fmul x, (fmul 2.0, c)) 8874 // Undo the fmul 2.0, x -> fadd x, x transformation, since if it occurs 8875 // during an early run of DAGCombiner can prevent folding with fmuls 8876 // inserted during lowering. 8877 if (N0.getOpcode() == ISD::FADD && 8878 (N0.getOperand(0) == N0.getOperand(1)) && 8879 N0.hasOneUse()) { 8880 const SDValue Two = DAG.getConstantFP(2.0, DL, VT); 8881 SDValue MulConsts = DAG.getNode(ISD::FMUL, DL, VT, Two, N1, Flags); 8882 return DAG.getNode(ISD::FMUL, DL, VT, N0.getOperand(0), MulConsts, Flags); 8883 } 8884 } 8885 8886 // fold (fmul X, 2.0) -> (fadd X, X) 8887 if (N1CFP && N1CFP->isExactlyValue(+2.0)) 8888 return DAG.getNode(ISD::FADD, DL, VT, N0, N0, Flags); 8889 8890 // fold (fmul X, -1.0) -> (fneg X) 8891 if (N1CFP && N1CFP->isExactlyValue(-1.0)) 8892 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) 8893 return DAG.getNode(ISD::FNEG, DL, VT, N0); 8894 8895 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y) 8896 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI, &Options)) { 8897 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI, &Options)) { 8898 // Both can be negated for free, check to see if at least one is cheaper 8899 // negated. 8900 if (LHSNeg == 2 || RHSNeg == 2) 8901 return DAG.getNode(ISD::FMUL, DL, VT, 8902 GetNegatedExpression(N0, DAG, LegalOperations), 8903 GetNegatedExpression(N1, DAG, LegalOperations), 8904 Flags); 8905 } 8906 } 8907 8908 // FMUL -> FMA combines: 8909 if (SDValue Fused = visitFMULForFMADistributiveCombine(N)) { 8910 AddToWorklist(Fused.getNode()); 8911 return Fused; 8912 } 8913 8914 return SDValue(); 8915 } 8916 8917 SDValue DAGCombiner::visitFMA(SDNode *N) { 8918 SDValue N0 = N->getOperand(0); 8919 SDValue N1 = N->getOperand(1); 8920 SDValue N2 = N->getOperand(2); 8921 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 8922 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 8923 EVT VT = N->getValueType(0); 8924 SDLoc DL(N); 8925 const TargetOptions &Options = DAG.getTarget().Options; 8926 8927 // Constant fold FMA. 8928 if (isa<ConstantFPSDNode>(N0) && 8929 isa<ConstantFPSDNode>(N1) && 8930 isa<ConstantFPSDNode>(N2)) { 8931 return DAG.getNode(ISD::FMA, DL, VT, N0, N1, N2); 8932 } 8933 8934 if (Options.UnsafeFPMath) { 8935 if (N0CFP && N0CFP->isZero()) 8936 return N2; 8937 if (N1CFP && N1CFP->isZero()) 8938 return N2; 8939 } 8940 // TODO: The FMA node should have flags that propagate to these nodes. 8941 if (N0CFP && N0CFP->isExactlyValue(1.0)) 8942 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N2); 8943 if (N1CFP && N1CFP->isExactlyValue(1.0)) 8944 return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N2); 8945 8946 // Canonicalize (fma c, x, y) -> (fma x, c, y) 8947 if (isConstantFPBuildVectorOrConstantFP(N0) && 8948 !isConstantFPBuildVectorOrConstantFP(N1)) 8949 return DAG.getNode(ISD::FMA, SDLoc(N), VT, N1, N0, N2); 8950 8951 // TODO: FMA nodes should have flags that propagate to the created nodes. 8952 // For now, create a Flags object for use with all unsafe math transforms. 8953 SDNodeFlags Flags; 8954 Flags.setUnsafeAlgebra(true); 8955 8956 if (Options.UnsafeFPMath) { 8957 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2) 8958 if (N2.getOpcode() == ISD::FMUL && N0 == N2.getOperand(0) && 8959 isConstantFPBuildVectorOrConstantFP(N1) && 8960 isConstantFPBuildVectorOrConstantFP(N2.getOperand(1))) { 8961 return DAG.getNode(ISD::FMUL, DL, VT, N0, 8962 DAG.getNode(ISD::FADD, DL, VT, N1, N2.getOperand(1), 8963 &Flags), &Flags); 8964 } 8965 8966 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y) 8967 if (N0.getOpcode() == ISD::FMUL && 8968 isConstantFPBuildVectorOrConstantFP(N1) && 8969 isConstantFPBuildVectorOrConstantFP(N0.getOperand(1))) { 8970 return DAG.getNode(ISD::FMA, DL, VT, 8971 N0.getOperand(0), 8972 DAG.getNode(ISD::FMUL, DL, VT, N1, N0.getOperand(1), 8973 &Flags), 8974 N2); 8975 } 8976 } 8977 8978 // (fma x, 1, y) -> (fadd x, y) 8979 // (fma x, -1, y) -> (fadd (fneg x), y) 8980 if (N1CFP) { 8981 if (N1CFP->isExactlyValue(1.0)) 8982 // TODO: The FMA node should have flags that propagate to this node. 8983 return DAG.getNode(ISD::FADD, DL, VT, N0, N2); 8984 8985 if (N1CFP->isExactlyValue(-1.0) && 8986 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) { 8987 SDValue RHSNeg = DAG.getNode(ISD::FNEG, DL, VT, N0); 8988 AddToWorklist(RHSNeg.getNode()); 8989 // TODO: The FMA node should have flags that propagate to this node. 8990 return DAG.getNode(ISD::FADD, DL, VT, N2, RHSNeg); 8991 } 8992 } 8993 8994 if (Options.UnsafeFPMath) { 8995 // (fma x, c, x) -> (fmul x, (c+1)) 8996 if (N1CFP && N0 == N2) { 8997 return DAG.getNode(ISD::FMUL, DL, VT, N0, 8998 DAG.getNode(ISD::FADD, DL, VT, N1, 8999 DAG.getConstantFP(1.0, DL, VT), &Flags), 9000 &Flags); 9001 } 9002 9003 // (fma x, c, (fneg x)) -> (fmul x, (c-1)) 9004 if (N1CFP && N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0) { 9005 return DAG.getNode(ISD::FMUL, DL, VT, N0, 9006 DAG.getNode(ISD::FADD, DL, VT, N1, 9007 DAG.getConstantFP(-1.0, DL, VT), &Flags), 9008 &Flags); 9009 } 9010 } 9011 9012 return SDValue(); 9013 } 9014 9015 // Combine multiple FDIVs with the same divisor into multiple FMULs by the 9016 // reciprocal. 9017 // E.g., (a / D; b / D;) -> (recip = 1.0 / D; a * recip; b * recip) 9018 // Notice that this is not always beneficial. One reason is different targets 9019 // may have different costs for FDIV and FMUL, so sometimes the cost of two 9020 // FDIVs may be lower than the cost of one FDIV and two FMULs. Another reason 9021 // is the critical path is increased from "one FDIV" to "one FDIV + one FMUL". 9022 SDValue DAGCombiner::combineRepeatedFPDivisors(SDNode *N) { 9023 bool UnsafeMath = DAG.getTarget().Options.UnsafeFPMath; 9024 const SDNodeFlags *Flags = N->getFlags(); 9025 if (!UnsafeMath && !Flags->hasAllowReciprocal()) 9026 return SDValue(); 9027 9028 // Skip if current node is a reciprocal. 9029 SDValue N0 = N->getOperand(0); 9030 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 9031 if (N0CFP && N0CFP->isExactlyValue(1.0)) 9032 return SDValue(); 9033 9034 // Exit early if the target does not want this transform or if there can't 9035 // possibly be enough uses of the divisor to make the transform worthwhile. 9036 SDValue N1 = N->getOperand(1); 9037 unsigned MinUses = TLI.combineRepeatedFPDivisors(); 9038 if (!MinUses || N1->use_size() < MinUses) 9039 return SDValue(); 9040 9041 // Find all FDIV users of the same divisor. 9042 // Use a set because duplicates may be present in the user list. 9043 SetVector<SDNode *> Users; 9044 for (auto *U : N1->uses()) { 9045 if (U->getOpcode() == ISD::FDIV && U->getOperand(1) == N1) { 9046 // This division is eligible for optimization only if global unsafe math 9047 // is enabled or if this division allows reciprocal formation. 9048 if (UnsafeMath || U->getFlags()->hasAllowReciprocal()) 9049 Users.insert(U); 9050 } 9051 } 9052 9053 // Now that we have the actual number of divisor uses, make sure it meets 9054 // the minimum threshold specified by the target. 9055 if (Users.size() < MinUses) 9056 return SDValue(); 9057 9058 EVT VT = N->getValueType(0); 9059 SDLoc DL(N); 9060 SDValue FPOne = DAG.getConstantFP(1.0, DL, VT); 9061 SDValue Reciprocal = DAG.getNode(ISD::FDIV, DL, VT, FPOne, N1, Flags); 9062 9063 // Dividend / Divisor -> Dividend * Reciprocal 9064 for (auto *U : Users) { 9065 SDValue Dividend = U->getOperand(0); 9066 if (Dividend != FPOne) { 9067 SDValue NewNode = DAG.getNode(ISD::FMUL, SDLoc(U), VT, Dividend, 9068 Reciprocal, Flags); 9069 CombineTo(U, NewNode); 9070 } else if (U != Reciprocal.getNode()) { 9071 // In the absence of fast-math-flags, this user node is always the 9072 // same node as Reciprocal, but with FMF they may be different nodes. 9073 CombineTo(U, Reciprocal); 9074 } 9075 } 9076 return SDValue(N, 0); // N was replaced. 9077 } 9078 9079 SDValue DAGCombiner::visitFDIV(SDNode *N) { 9080 SDValue N0 = N->getOperand(0); 9081 SDValue N1 = N->getOperand(1); 9082 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 9083 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 9084 EVT VT = N->getValueType(0); 9085 SDLoc DL(N); 9086 const TargetOptions &Options = DAG.getTarget().Options; 9087 SDNodeFlags *Flags = &cast<BinaryWithFlagsSDNode>(N)->Flags; 9088 9089 // fold vector ops 9090 if (VT.isVector()) 9091 if (SDValue FoldedVOp = SimplifyVBinOp(N)) 9092 return FoldedVOp; 9093 9094 // fold (fdiv c1, c2) -> c1/c2 9095 if (N0CFP && N1CFP) 9096 return DAG.getNode(ISD::FDIV, SDLoc(N), VT, N0, N1, Flags); 9097 9098 if (Options.UnsafeFPMath) { 9099 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable. 9100 if (N1CFP) { 9101 // Compute the reciprocal 1.0 / c2. 9102 const APFloat &N1APF = N1CFP->getValueAPF(); 9103 APFloat Recip(N1APF.getSemantics(), 1); // 1.0 9104 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven); 9105 // Only do the transform if the reciprocal is a legal fp immediate that 9106 // isn't too nasty (eg NaN, denormal, ...). 9107 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty 9108 (!LegalOperations || 9109 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM 9110 // backend)... we should handle this gracefully after Legalize. 9111 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) || 9112 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) || 9113 TLI.isFPImmLegal(Recip, VT))) 9114 return DAG.getNode(ISD::FMUL, DL, VT, N0, 9115 DAG.getConstantFP(Recip, DL, VT), Flags); 9116 } 9117 9118 // If this FDIV is part of a reciprocal square root, it may be folded 9119 // into a target-specific square root estimate instruction. 9120 if (N1.getOpcode() == ISD::FSQRT) { 9121 if (SDValue RV = buildRsqrtEstimate(N1.getOperand(0), Flags)) { 9122 return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags); 9123 } 9124 } else if (N1.getOpcode() == ISD::FP_EXTEND && 9125 N1.getOperand(0).getOpcode() == ISD::FSQRT) { 9126 if (SDValue RV = buildRsqrtEstimate(N1.getOperand(0).getOperand(0), 9127 Flags)) { 9128 RV = DAG.getNode(ISD::FP_EXTEND, SDLoc(N1), VT, RV); 9129 AddToWorklist(RV.getNode()); 9130 return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags); 9131 } 9132 } else if (N1.getOpcode() == ISD::FP_ROUND && 9133 N1.getOperand(0).getOpcode() == ISD::FSQRT) { 9134 if (SDValue RV = buildRsqrtEstimate(N1.getOperand(0).getOperand(0), 9135 Flags)) { 9136 RV = DAG.getNode(ISD::FP_ROUND, SDLoc(N1), VT, RV, N1.getOperand(1)); 9137 AddToWorklist(RV.getNode()); 9138 return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags); 9139 } 9140 } else if (N1.getOpcode() == ISD::FMUL) { 9141 // Look through an FMUL. Even though this won't remove the FDIV directly, 9142 // it's still worthwhile to get rid of the FSQRT if possible. 9143 SDValue SqrtOp; 9144 SDValue OtherOp; 9145 if (N1.getOperand(0).getOpcode() == ISD::FSQRT) { 9146 SqrtOp = N1.getOperand(0); 9147 OtherOp = N1.getOperand(1); 9148 } else if (N1.getOperand(1).getOpcode() == ISD::FSQRT) { 9149 SqrtOp = N1.getOperand(1); 9150 OtherOp = N1.getOperand(0); 9151 } 9152 if (SqrtOp.getNode()) { 9153 // We found a FSQRT, so try to make this fold: 9154 // x / (y * sqrt(z)) -> x * (rsqrt(z) / y) 9155 if (SDValue RV = buildRsqrtEstimate(SqrtOp.getOperand(0), Flags)) { 9156 RV = DAG.getNode(ISD::FDIV, SDLoc(N1), VT, RV, OtherOp, Flags); 9157 AddToWorklist(RV.getNode()); 9158 return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags); 9159 } 9160 } 9161 } 9162 9163 // Fold into a reciprocal estimate and multiply instead of a real divide. 9164 if (SDValue RV = BuildReciprocalEstimate(N1, Flags)) { 9165 AddToWorklist(RV.getNode()); 9166 return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags); 9167 } 9168 } 9169 9170 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y) 9171 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI, &Options)) { 9172 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI, &Options)) { 9173 // Both can be negated for free, check to see if at least one is cheaper 9174 // negated. 9175 if (LHSNeg == 2 || RHSNeg == 2) 9176 return DAG.getNode(ISD::FDIV, SDLoc(N), VT, 9177 GetNegatedExpression(N0, DAG, LegalOperations), 9178 GetNegatedExpression(N1, DAG, LegalOperations), 9179 Flags); 9180 } 9181 } 9182 9183 if (SDValue CombineRepeatedDivisors = combineRepeatedFPDivisors(N)) 9184 return CombineRepeatedDivisors; 9185 9186 return SDValue(); 9187 } 9188 9189 SDValue DAGCombiner::visitFREM(SDNode *N) { 9190 SDValue N0 = N->getOperand(0); 9191 SDValue N1 = N->getOperand(1); 9192 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 9193 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 9194 EVT VT = N->getValueType(0); 9195 9196 // fold (frem c1, c2) -> fmod(c1,c2) 9197 if (N0CFP && N1CFP) 9198 return DAG.getNode(ISD::FREM, SDLoc(N), VT, N0, N1, 9199 &cast<BinaryWithFlagsSDNode>(N)->Flags); 9200 9201 return SDValue(); 9202 } 9203 9204 SDValue DAGCombiner::visitFSQRT(SDNode *N) { 9205 if (!DAG.getTarget().Options.UnsafeFPMath) 9206 return SDValue(); 9207 9208 SDValue N0 = N->getOperand(0); 9209 if (TLI.isFsqrtCheap(N0, DAG)) 9210 return SDValue(); 9211 9212 // TODO: FSQRT nodes should have flags that propagate to the created nodes. 9213 // For now, create a Flags object for use with all unsafe math transforms. 9214 SDNodeFlags Flags; 9215 Flags.setUnsafeAlgebra(true); 9216 return buildSqrtEstimate(N0, &Flags); 9217 } 9218 9219 /// copysign(x, fp_extend(y)) -> copysign(x, y) 9220 /// copysign(x, fp_round(y)) -> copysign(x, y) 9221 static inline bool CanCombineFCOPYSIGN_EXTEND_ROUND(SDNode *N) { 9222 SDValue N1 = N->getOperand(1); 9223 if ((N1.getOpcode() == ISD::FP_EXTEND || 9224 N1.getOpcode() == ISD::FP_ROUND)) { 9225 // Do not optimize out type conversion of f128 type yet. 9226 // For some targets like x86_64, configuration is changed to keep one f128 9227 // value in one SSE register, but instruction selection cannot handle 9228 // FCOPYSIGN on SSE registers yet. 9229 EVT N1VT = N1->getValueType(0); 9230 EVT N1Op0VT = N1->getOperand(0)->getValueType(0); 9231 return (N1VT == N1Op0VT || N1Op0VT != MVT::f128); 9232 } 9233 return false; 9234 } 9235 9236 SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) { 9237 SDValue N0 = N->getOperand(0); 9238 SDValue N1 = N->getOperand(1); 9239 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 9240 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); 9241 EVT VT = N->getValueType(0); 9242 9243 if (N0CFP && N1CFP) // Constant fold 9244 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1); 9245 9246 if (N1CFP) { 9247 const APFloat &V = N1CFP->getValueAPF(); 9248 // copysign(x, c1) -> fabs(x) iff ispos(c1) 9249 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1) 9250 if (!V.isNegative()) { 9251 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT)) 9252 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0); 9253 } else { 9254 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT)) 9255 return DAG.getNode(ISD::FNEG, SDLoc(N), VT, 9256 DAG.getNode(ISD::FABS, SDLoc(N0), VT, N0)); 9257 } 9258 } 9259 9260 // copysign(fabs(x), y) -> copysign(x, y) 9261 // copysign(fneg(x), y) -> copysign(x, y) 9262 // copysign(copysign(x,z), y) -> copysign(x, y) 9263 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG || 9264 N0.getOpcode() == ISD::FCOPYSIGN) 9265 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0.getOperand(0), N1); 9266 9267 // copysign(x, abs(y)) -> abs(x) 9268 if (N1.getOpcode() == ISD::FABS) 9269 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0); 9270 9271 // copysign(x, copysign(y,z)) -> copysign(x, z) 9272 if (N1.getOpcode() == ISD::FCOPYSIGN) 9273 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1.getOperand(1)); 9274 9275 // copysign(x, fp_extend(y)) -> copysign(x, y) 9276 // copysign(x, fp_round(y)) -> copysign(x, y) 9277 if (CanCombineFCOPYSIGN_EXTEND_ROUND(N)) 9278 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1.getOperand(0)); 9279 9280 return SDValue(); 9281 } 9282 9283 SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) { 9284 SDValue N0 = N->getOperand(0); 9285 EVT VT = N->getValueType(0); 9286 EVT OpVT = N0.getValueType(); 9287 9288 // fold (sint_to_fp c1) -> c1fp 9289 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 9290 // ...but only if the target supports immediate floating-point values 9291 (!LegalOperations || 9292 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) 9293 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0); 9294 9295 // If the input is a legal type, and SINT_TO_FP is not legal on this target, 9296 // but UINT_TO_FP is legal on this target, try to convert. 9297 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) && 9298 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) { 9299 // If the sign bit is known to be zero, we can change this to UINT_TO_FP. 9300 if (DAG.SignBitIsZero(N0)) 9301 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0); 9302 } 9303 9304 // The next optimizations are desirable only if SELECT_CC can be lowered. 9305 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT) || !LegalOperations) { 9306 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc) 9307 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 && 9308 !VT.isVector() && 9309 (!LegalOperations || 9310 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) { 9311 SDLoc DL(N); 9312 SDValue Ops[] = 9313 { N0.getOperand(0), N0.getOperand(1), 9314 DAG.getConstantFP(-1.0, DL, VT), DAG.getConstantFP(0.0, DL, VT), 9315 N0.getOperand(2) }; 9316 return DAG.getNode(ISD::SELECT_CC, DL, VT, Ops); 9317 } 9318 9319 // fold (sint_to_fp (zext (setcc x, y, cc))) -> 9320 // (select_cc x, y, 1.0, 0.0,, cc) 9321 if (N0.getOpcode() == ISD::ZERO_EXTEND && 9322 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() && 9323 (!LegalOperations || 9324 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) { 9325 SDLoc DL(N); 9326 SDValue Ops[] = 9327 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1), 9328 DAG.getConstantFP(1.0, DL, VT), DAG.getConstantFP(0.0, DL, VT), 9329 N0.getOperand(0).getOperand(2) }; 9330 return DAG.getNode(ISD::SELECT_CC, DL, VT, Ops); 9331 } 9332 } 9333 9334 return SDValue(); 9335 } 9336 9337 SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) { 9338 SDValue N0 = N->getOperand(0); 9339 EVT VT = N->getValueType(0); 9340 EVT OpVT = N0.getValueType(); 9341 9342 // fold (uint_to_fp c1) -> c1fp 9343 if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && 9344 // ...but only if the target supports immediate floating-point values 9345 (!LegalOperations || 9346 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) 9347 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0); 9348 9349 // If the input is a legal type, and UINT_TO_FP is not legal on this target, 9350 // but SINT_TO_FP is legal on this target, try to convert. 9351 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) && 9352 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) { 9353 // If the sign bit is known to be zero, we can change this to SINT_TO_FP. 9354 if (DAG.SignBitIsZero(N0)) 9355 return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0); 9356 } 9357 9358 // The next optimizations are desirable only if SELECT_CC can be lowered. 9359 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT) || !LegalOperations) { 9360 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc) 9361 9362 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() && 9363 (!LegalOperations || 9364 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) { 9365 SDLoc DL(N); 9366 SDValue Ops[] = 9367 { N0.getOperand(0), N0.getOperand(1), 9368 DAG.getConstantFP(1.0, DL, VT), DAG.getConstantFP(0.0, DL, VT), 9369 N0.getOperand(2) }; 9370 return DAG.getNode(ISD::SELECT_CC, DL, VT, Ops); 9371 } 9372 } 9373 9374 return SDValue(); 9375 } 9376 9377 // Fold (fp_to_{s/u}int ({s/u}int_to_fpx)) -> zext x, sext x, trunc x, or x 9378 static SDValue FoldIntToFPToInt(SDNode *N, SelectionDAG &DAG) { 9379 SDValue N0 = N->getOperand(0); 9380 EVT VT = N->getValueType(0); 9381 9382 if (N0.getOpcode() != ISD::UINT_TO_FP && N0.getOpcode() != ISD::SINT_TO_FP) 9383 return SDValue(); 9384 9385 SDValue Src = N0.getOperand(0); 9386 EVT SrcVT = Src.getValueType(); 9387 bool IsInputSigned = N0.getOpcode() == ISD::SINT_TO_FP; 9388 bool IsOutputSigned = N->getOpcode() == ISD::FP_TO_SINT; 9389 9390 // We can safely assume the conversion won't overflow the output range, 9391 // because (for example) (uint8_t)18293.f is undefined behavior. 9392 9393 // Since we can assume the conversion won't overflow, our decision as to 9394 // whether the input will fit in the float should depend on the minimum 9395 // of the input range and output range. 9396 9397 // This means this is also safe for a signed input and unsigned output, since 9398 // a negative input would lead to undefined behavior. 9399 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; 9400 unsigned OutputSize = (int)VT.getScalarSizeInBits() - IsOutputSigned; 9401 unsigned ActualSize = std::min(InputSize, OutputSize); 9402 const fltSemantics &sem = DAG.EVTToAPFloatSemantics(N0.getValueType()); 9403 9404 // We can only fold away the float conversion if the input range can be 9405 // represented exactly in the float range. 9406 if (APFloat::semanticsPrecision(sem) >= ActualSize) { 9407 if (VT.getScalarSizeInBits() > SrcVT.getScalarSizeInBits()) { 9408 unsigned ExtOp = IsInputSigned && IsOutputSigned ? ISD::SIGN_EXTEND 9409 : ISD::ZERO_EXTEND; 9410 return DAG.getNode(ExtOp, SDLoc(N), VT, Src); 9411 } 9412 if (VT.getScalarSizeInBits() < SrcVT.getScalarSizeInBits()) 9413 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Src); 9414 return DAG.getBitcast(VT, Src); 9415 } 9416 return SDValue(); 9417 } 9418 9419 SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) { 9420 SDValue N0 = N->getOperand(0); 9421 EVT VT = N->getValueType(0); 9422 9423 // fold (fp_to_sint c1fp) -> c1 9424 if (isConstantFPBuildVectorOrConstantFP(N0)) 9425 return DAG.getNode(ISD::FP_TO_SINT, SDLoc(N), VT, N0); 9426 9427 return FoldIntToFPToInt(N, DAG); 9428 } 9429 9430 SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) { 9431 SDValue N0 = N->getOperand(0); 9432 EVT VT = N->getValueType(0); 9433 9434 // fold (fp_to_uint c1fp) -> c1 9435 if (isConstantFPBuildVectorOrConstantFP(N0)) 9436 return DAG.getNode(ISD::FP_TO_UINT, SDLoc(N), VT, N0); 9437 9438 return FoldIntToFPToInt(N, DAG); 9439 } 9440 9441 SDValue DAGCombiner::visitFP_ROUND(SDNode *N) { 9442 SDValue N0 = N->getOperand(0); 9443 SDValue N1 = N->getOperand(1); 9444 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 9445 EVT VT = N->getValueType(0); 9446 9447 // fold (fp_round c1fp) -> c1fp 9448 if (N0CFP) 9449 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0, N1); 9450 9451 // fold (fp_round (fp_extend x)) -> x 9452 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType()) 9453 return N0.getOperand(0); 9454 9455 // fold (fp_round (fp_round x)) -> (fp_round x) 9456 if (N0.getOpcode() == ISD::FP_ROUND) { 9457 const bool NIsTrunc = N->getConstantOperandVal(1) == 1; 9458 const bool N0IsTrunc = N0.getConstantOperandVal(1) == 1; 9459 9460 // Skip this folding if it results in an fp_round from f80 to f16. 9461 // 9462 // f80 to f16 always generates an expensive (and as yet, unimplemented) 9463 // libcall to __truncxfhf2 instead of selecting native f16 conversion 9464 // instructions from f32 or f64. Moreover, the first (value-preserving) 9465 // fp_round from f80 to either f32 or f64 may become a NOP in platforms like 9466 // x86. 9467 if (N0.getOperand(0).getValueType() == MVT::f80 && VT == MVT::f16) 9468 return SDValue(); 9469 9470 // If the first fp_round isn't a value preserving truncation, it might 9471 // introduce a tie in the second fp_round, that wouldn't occur in the 9472 // single-step fp_round we want to fold to. 9473 // In other words, double rounding isn't the same as rounding. 9474 // Also, this is a value preserving truncation iff both fp_round's are. 9475 if (DAG.getTarget().Options.UnsafeFPMath || N0IsTrunc) { 9476 SDLoc DL(N); 9477 return DAG.getNode(ISD::FP_ROUND, DL, VT, N0.getOperand(0), 9478 DAG.getIntPtrConstant(NIsTrunc && N0IsTrunc, DL)); 9479 } 9480 } 9481 9482 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y) 9483 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) { 9484 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, SDLoc(N0), VT, 9485 N0.getOperand(0), N1); 9486 AddToWorklist(Tmp.getNode()); 9487 return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, 9488 Tmp, N0.getOperand(1)); 9489 } 9490 9491 return SDValue(); 9492 } 9493 9494 SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) { 9495 SDValue N0 = N->getOperand(0); 9496 EVT VT = N->getValueType(0); 9497 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT(); 9498 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0); 9499 9500 // fold (fp_round_inreg c1fp) -> c1fp 9501 if (N0CFP && isTypeLegal(EVT)) { 9502 SDLoc DL(N); 9503 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), DL, EVT); 9504 return DAG.getNode(ISD::FP_EXTEND, DL, VT, Round); 9505 } 9506 9507 return SDValue(); 9508 } 9509 9510 SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) { 9511 SDValue N0 = N->getOperand(0); 9512 EVT VT = N->getValueType(0); 9513 9514 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded. 9515 if (N->hasOneUse() && 9516 N->use_begin()->getOpcode() == ISD::FP_ROUND) 9517 return SDValue(); 9518 9519 // fold (fp_extend c1fp) -> c1fp 9520 if (isConstantFPBuildVectorOrConstantFP(N0)) 9521 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, N0); 9522 9523 // fold (fp_extend (fp16_to_fp op)) -> (fp16_to_fp op) 9524 if (N0.getOpcode() == ISD::FP16_TO_FP && 9525 TLI.getOperationAction(ISD::FP16_TO_FP, VT) == TargetLowering::Legal) 9526 return DAG.getNode(ISD::FP16_TO_FP, SDLoc(N), VT, N0.getOperand(0)); 9527 9528 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the 9529 // value of X. 9530 if (N0.getOpcode() == ISD::FP_ROUND 9531 && N0.getConstantOperandVal(1) == 1) { 9532 SDValue In = N0.getOperand(0); 9533 if (In.getValueType() == VT) return In; 9534 if (VT.bitsLT(In.getValueType())) 9535 return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, 9536 In, N0.getOperand(1)); 9537 return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, In); 9538 } 9539 9540 // fold (fpext (load x)) -> (fpext (fptrunc (extload x))) 9541 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() && 9542 TLI.isLoadExtLegal(ISD::EXTLOAD, VT, N0.getValueType())) { 9543 LoadSDNode *LN0 = cast<LoadSDNode>(N0); 9544 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT, 9545 LN0->getChain(), 9546 LN0->getBasePtr(), N0.getValueType(), 9547 LN0->getMemOperand()); 9548 CombineTo(N, ExtLoad); 9549 CombineTo(N0.getNode(), 9550 DAG.getNode(ISD::FP_ROUND, SDLoc(N0), 9551 N0.getValueType(), ExtLoad, 9552 DAG.getIntPtrConstant(1, SDLoc(N0))), 9553 ExtLoad.getValue(1)); 9554 return SDValue(N, 0); // Return N so it doesn't get rechecked! 9555 } 9556 9557 return SDValue(); 9558 } 9559 9560 SDValue DAGCombiner::visitFCEIL(SDNode *N) { 9561 SDValue N0 = N->getOperand(0); 9562 EVT VT = N->getValueType(0); 9563 9564 // fold (fceil c1) -> fceil(c1) 9565 if (isConstantFPBuildVectorOrConstantFP(N0)) 9566 return DAG.getNode(ISD::FCEIL, SDLoc(N), VT, N0); 9567 9568 return SDValue(); 9569 } 9570 9571 SDValue DAGCombiner::visitFTRUNC(SDNode *N) { 9572 SDValue N0 = N->getOperand(0); 9573 EVT VT = N->getValueType(0); 9574 9575 // fold (ftrunc c1) -> ftrunc(c1) 9576 if (isConstantFPBuildVectorOrConstantFP(N0)) 9577 return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0); 9578 9579 return SDValue(); 9580 } 9581 9582 SDValue DAGCombiner::visitFFLOOR(SDNode *N) { 9583 SDValue N0 = N->getOperand(0); 9584 EVT VT = N->getValueType(0); 9585 9586 // fold (ffloor c1) -> ffloor(c1) 9587 if (isConstantFPBuildVectorOrConstantFP(N0)) 9588 return DAG.getNode(ISD::FFLOOR, SDLoc(N), VT, N0); 9589 9590 return SDValue(); 9591 } 9592 9593 // FIXME: FNEG and FABS have a lot in common; refactor. 9594 SDValue DAGCombiner::visitFNEG(SDNode *N) { 9595 SDValue N0 = N->getOperand(0); 9596 EVT VT = N->getValueType(0); 9597 9598 // Constant fold FNEG. 9599 if (isConstantFPBuildVectorOrConstantFP(N0)) 9600 return DAG.getNode(ISD::FNEG, SDLoc(N), VT, N0); 9601 9602 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(), 9603 &DAG.getTarget().Options)) 9604 return GetNegatedExpression(N0, DAG, LegalOperations); 9605 9606 // Transform fneg(bitconvert(x)) -> bitconvert(x ^ sign) to avoid loading 9607 // constant pool values. 9608 if (!TLI.isFNegFree(VT) && 9609 N0.getOpcode() == ISD::BITCAST && 9610 N0.getNode()->hasOneUse()) { 9611 SDValue Int = N0.getOperand(0); 9612 EVT IntVT = Int.getValueType(); 9613 if (IntVT.isInteger() && !IntVT.isVector()) { 9614 APInt SignMask; 9615 if (N0.getValueType().isVector()) { 9616 // For a vector, get a mask such as 0x80... per scalar element 9617 // and splat it. 9618 SignMask = APInt::getSignBit(N0.getScalarValueSizeInBits()); 9619 SignMask = APInt::getSplat(IntVT.getSizeInBits(), SignMask); 9620 } else { 9621 // For a scalar, just generate 0x80... 9622 SignMask = APInt::getSignBit(IntVT.getSizeInBits()); 9623 } 9624 SDLoc DL0(N0); 9625 Int = DAG.getNode(ISD::XOR, DL0, IntVT, Int, 9626 DAG.getConstant(SignMask, DL0, IntVT)); 9627 AddToWorklist(Int.getNode()); 9628 return DAG.getBitcast(VT, Int); 9629 } 9630 } 9631 9632 // (fneg (fmul c, x)) -> (fmul -c, x) 9633 if (N0.getOpcode() == ISD::FMUL && 9634 (N0.getNode()->hasOneUse() || !TLI.isFNegFree(VT))) { 9635 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1)); 9636 if (CFP1) { 9637 APFloat CVal = CFP1->getValueAPF(); 9638 CVal.changeSign(); 9639 if (Level >= AfterLegalizeDAG && 9640 (TLI.isFPImmLegal(CVal, VT) || 9641 TLI.isOperationLegal(ISD::ConstantFP, VT))) 9642 return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0.getOperand(0), 9643 DAG.getNode(ISD::FNEG, SDLoc(N), VT, 9644 N0.getOperand(1)), 9645 &cast<BinaryWithFlagsSDNode>(N0)->Flags); 9646 } 9647 } 9648 9649 return SDValue(); 9650 } 9651 9652 SDValue DAGCombiner::visitFMINNUM(SDNode *N) { 9653 SDValue N0 = N->getOperand(0); 9654 SDValue N1 = N->getOperand(1); 9655 EVT VT = N->getValueType(0); 9656 const ConstantFPSDNode *N0CFP = isConstOrConstSplatFP(N0); 9657 const ConstantFPSDNode *N1CFP = isConstOrConstSplatFP(N1); 9658 9659 if (N0CFP && N1CFP) { 9660 const APFloat &C0 = N0CFP->getValueAPF(); 9661 const APFloat &C1 = N1CFP->getValueAPF(); 9662 return DAG.getConstantFP(minnum(C0, C1), SDLoc(N), VT); 9663 } 9664 9665 // Canonicalize to constant on RHS. 9666 if (isConstantFPBuildVectorOrConstantFP(N0) && 9667 !isConstantFPBuildVectorOrConstantFP(N1)) 9668 return DAG.getNode(ISD::FMINNUM, SDLoc(N), VT, N1, N0); 9669 9670 return SDValue(); 9671 } 9672 9673 SDValue DAGCombiner::visitFMAXNUM(SDNode *N) { 9674 SDValue N0 = N->getOperand(0); 9675 SDValue N1 = N->getOperand(1); 9676 EVT VT = N->getValueType(0); 9677 const ConstantFPSDNode *N0CFP = isConstOrConstSplatFP(N0); 9678 const ConstantFPSDNode *N1CFP = isConstOrConstSplatFP(N1); 9679 9680 if (N0CFP && N1CFP) { 9681 const APFloat &C0 = N0CFP->getValueAPF(); 9682 const APFloat &C1 = N1CFP->getValueAPF(); 9683 return DAG.getConstantFP(maxnum(C0, C1), SDLoc(N), VT); 9684 } 9685 9686 // Canonicalize to constant on RHS. 9687 if (isConstantFPBuildVectorOrConstantFP(N0) && 9688 !isConstantFPBuildVectorOrConstantFP(N1)) 9689 return DAG.getNode(ISD::FMAXNUM, SDLoc(N), VT, N1, N0); 9690 9691 return SDValue(); 9692 } 9693 9694 SDValue DAGCombiner::visitFABS(SDNode *N) { 9695 SDValue N0 = N->getOperand(0); 9696 EVT VT = N->getValueType(0); 9697 9698 // fold (fabs c1) -> fabs(c1) 9699 if (isConstantFPBuildVectorOrConstantFP(N0)) 9700 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0); 9701 9702 // fold (fabs (fabs x)) -> (fabs x) 9703 if (N0.getOpcode() == ISD::FABS) 9704 return N->getOperand(0); 9705 9706 // fold (fabs (fneg x)) -> (fabs x) 9707 // fold (fabs (fcopysign x, y)) -> (fabs x) 9708 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN) 9709 return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0.getOperand(0)); 9710 9711 // Transform fabs(bitconvert(x)) -> bitconvert(x & ~sign) to avoid loading 9712 // constant pool values. 9713 if (!TLI.isFAbsFree(VT) && 9714 N0.getOpcode() == ISD::BITCAST && 9715 N0.getNode()->hasOneUse()) { 9716 SDValue Int = N0.getOperand(0); 9717 EVT IntVT = Int.getValueType(); 9718 if (IntVT.isInteger() && !IntVT.isVector()) { 9719 APInt SignMask; 9720 if (N0.getValueType().isVector()) { 9721 // For a vector, get a mask such as 0x7f... per scalar element 9722 // and splat it. 9723 SignMask = ~APInt::getSignBit(N0.getScalarValueSizeInBits()); 9724 SignMask = APInt::getSplat(IntVT.getSizeInBits(), SignMask); 9725 } else { 9726 // For a scalar, just generate 0x7f... 9727 SignMask = ~APInt::getSignBit(IntVT.getSizeInBits()); 9728 } 9729 SDLoc DL(N0); 9730 Int = DAG.getNode(ISD::AND, DL, IntVT, Int, 9731 DAG.getConstant(SignMask, DL, IntVT)); 9732 AddToWorklist(Int.getNode()); 9733 return DAG.getBitcast(N->getValueType(0), Int); 9734 } 9735 } 9736 9737 return SDValue(); 9738 } 9739 9740 SDValue DAGCombiner::visitBRCOND(SDNode *N) { 9741 SDValue Chain = N->getOperand(0); 9742 SDValue N1 = N->getOperand(1); 9743 SDValue N2 = N->getOperand(2); 9744 9745 // If N is a constant we could fold this into a fallthrough or unconditional 9746 // branch. However that doesn't happen very often in normal code, because 9747 // Instcombine/SimplifyCFG should have handled the available opportunities. 9748 // If we did this folding here, it would be necessary to update the 9749 // MachineBasicBlock CFG, which is awkward. 9750 9751 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal 9752 // on the target. 9753 if (N1.getOpcode() == ISD::SETCC && 9754 TLI.isOperationLegalOrCustom(ISD::BR_CC, 9755 N1.getOperand(0).getValueType())) { 9756 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other, 9757 Chain, N1.getOperand(2), 9758 N1.getOperand(0), N1.getOperand(1), N2); 9759 } 9760 9761 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) || 9762 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) && 9763 (N1.getOperand(0).hasOneUse() && 9764 N1.getOperand(0).getOpcode() == ISD::SRL))) { 9765 SDNode *Trunc = nullptr; 9766 if (N1.getOpcode() == ISD::TRUNCATE) { 9767 // Look pass the truncate. 9768 Trunc = N1.getNode(); 9769 N1 = N1.getOperand(0); 9770 } 9771 9772 // Match this pattern so that we can generate simpler code: 9773 // 9774 // %a = ... 9775 // %b = and i32 %a, 2 9776 // %c = srl i32 %b, 1 9777 // brcond i32 %c ... 9778 // 9779 // into 9780 // 9781 // %a = ... 9782 // %b = and i32 %a, 2 9783 // %c = setcc eq %b, 0 9784 // brcond %c ... 9785 // 9786 // This applies only when the AND constant value has one bit set and the 9787 // SRL constant is equal to the log2 of the AND constant. The back-end is 9788 // smart enough to convert the result into a TEST/JMP sequence. 9789 SDValue Op0 = N1.getOperand(0); 9790 SDValue Op1 = N1.getOperand(1); 9791 9792 if (Op0.getOpcode() == ISD::AND && 9793 Op1.getOpcode() == ISD::Constant) { 9794 SDValue AndOp1 = Op0.getOperand(1); 9795 9796 if (AndOp1.getOpcode() == ISD::Constant) { 9797 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue(); 9798 9799 if (AndConst.isPowerOf2() && 9800 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) { 9801 SDLoc DL(N); 9802 SDValue SetCC = 9803 DAG.getSetCC(DL, 9804 getSetCCResultType(Op0.getValueType()), 9805 Op0, DAG.getConstant(0, DL, Op0.getValueType()), 9806 ISD::SETNE); 9807 9808 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, DL, 9809 MVT::Other, Chain, SetCC, N2); 9810 // Don't add the new BRCond into the worklist or else SimplifySelectCC 9811 // will convert it back to (X & C1) >> C2. 9812 CombineTo(N, NewBRCond, false); 9813 // Truncate is dead. 9814 if (Trunc) 9815 deleteAndRecombine(Trunc); 9816 // Replace the uses of SRL with SETCC 9817 WorklistRemover DeadNodes(*this); 9818 DAG.ReplaceAllUsesOfValueWith(N1, SetCC); 9819 deleteAndRecombine(N1.getNode()); 9820 return SDValue(N, 0); // Return N so it doesn't get rechecked! 9821 } 9822 } 9823 } 9824 9825 if (Trunc) 9826 // Restore N1 if the above transformation doesn't match. 9827 N1 = N->getOperand(1); 9828 } 9829 9830 // Transform br(xor(x, y)) -> br(x != y) 9831 // Transform br(xor(xor(x,y), 1)) -> br (x == y) 9832 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) { 9833 SDNode *TheXor = N1.getNode(); 9834 SDValue Op0 = TheXor->getOperand(0); 9835 SDValue Op1 = TheXor->getOperand(1); 9836 if (Op0.getOpcode() == Op1.getOpcode()) { 9837 // Avoid missing important xor optimizations. 9838 if (SDValue Tmp = visitXOR(TheXor)) { 9839 if (Tmp.getNode() != TheXor) { 9840 DEBUG(dbgs() << "\nReplacing.8 "; 9841 TheXor->dump(&DAG); 9842 dbgs() << "\nWith: "; 9843 Tmp.getNode()->dump(&DAG); 9844 dbgs() << '\n'); 9845 WorklistRemover DeadNodes(*this); 9846 DAG.ReplaceAllUsesOfValueWith(N1, Tmp); 9847 deleteAndRecombine(TheXor); 9848 return DAG.getNode(ISD::BRCOND, SDLoc(N), 9849 MVT::Other, Chain, Tmp, N2); 9850 } 9851 9852 // visitXOR has changed XOR's operands or replaced the XOR completely, 9853 // bail out. 9854 return SDValue(N, 0); 9855 } 9856 } 9857 9858 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) { 9859 bool Equal = false; 9860 if (isOneConstant(Op0) && Op0.hasOneUse() && 9861 Op0.getOpcode() == ISD::XOR) { 9862 TheXor = Op0.getNode(); 9863 Equal = true; 9864 } 9865 9866 EVT SetCCVT = N1.getValueType(); 9867 if (LegalTypes) 9868 SetCCVT = getSetCCResultType(SetCCVT); 9869 SDValue SetCC = DAG.getSetCC(SDLoc(TheXor), 9870 SetCCVT, 9871 Op0, Op1, 9872 Equal ? ISD::SETEQ : ISD::SETNE); 9873 // Replace the uses of XOR with SETCC 9874 WorklistRemover DeadNodes(*this); 9875 DAG.ReplaceAllUsesOfValueWith(N1, SetCC); 9876 deleteAndRecombine(N1.getNode()); 9877 return DAG.getNode(ISD::BRCOND, SDLoc(N), 9878 MVT::Other, Chain, SetCC, N2); 9879 } 9880 } 9881 9882 return SDValue(); 9883 } 9884 9885 // Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB. 9886 // 9887 SDValue DAGCombiner::visitBR_CC(SDNode *N) { 9888 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1)); 9889 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3); 9890 9891 // If N is a constant we could fold this into a fallthrough or unconditional 9892 // branch. However that doesn't happen very often in normal code, because 9893 // Instcombine/SimplifyCFG should have handled the available opportunities. 9894 // If we did this folding here, it would be necessary to update the 9895 // MachineBasicBlock CFG, which is awkward. 9896 9897 // Use SimplifySetCC to simplify SETCC's. 9898 SDValue Simp = SimplifySetCC(getSetCCResultType(CondLHS.getValueType()), 9899 CondLHS, CondRHS, CC->get(), SDLoc(N), 9900 false); 9901 if (Simp.getNode()) AddToWorklist(Simp.getNode()); 9902 9903 // fold to a simpler setcc 9904 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC) 9905 return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other, 9906 N->getOperand(0), Simp.getOperand(2), 9907 Simp.getOperand(0), Simp.getOperand(1), 9908 N->getOperand(4)); 9909 9910 return SDValue(); 9911 } 9912 9913 /// Return true if 'Use' is a load or a store that uses N as its base pointer 9914 /// and that N may be folded in the load / store addressing mode. 9915 static bool canFoldInAddressingMode(SDNode *N, SDNode *Use, 9916 SelectionDAG &DAG, 9917 const TargetLowering &TLI) { 9918 EVT VT; 9919 unsigned AS; 9920 9921 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) { 9922 if (LD->isIndexed() || LD->getBasePtr().getNode() != N) 9923 return false; 9924 VT = LD->getMemoryVT(); 9925 AS = LD->getAddressSpace(); 9926 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) { 9927 if (ST->isIndexed() || ST->getBasePtr().getNode() != N) 9928 return false; 9929 VT = ST->getMemoryVT(); 9930 AS = ST->getAddressSpace(); 9931 } else 9932 return false; 9933 9934 TargetLowering::AddrMode AM; 9935 if (N->getOpcode() == ISD::ADD) { 9936 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1)); 9937 if (Offset) 9938 // [reg +/- imm] 9939 AM.BaseOffs = Offset->getSExtValue(); 9940 else 9941 // [reg +/- reg] 9942 AM.Scale = 1; 9943 } else if (N->getOpcode() == ISD::SUB) { 9944 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1)); 9945 if (Offset) 9946 // [reg +/- imm] 9947 AM.BaseOffs = -Offset->getSExtValue(); 9948 else 9949 // [reg +/- reg] 9950 AM.Scale = 1; 9951 } else 9952 return false; 9953 9954 return TLI.isLegalAddressingMode(DAG.getDataLayout(), AM, 9955 VT.getTypeForEVT(*DAG.getContext()), AS); 9956 } 9957 9958 /// Try turning a load/store into a pre-indexed load/store when the base 9959 /// pointer is an add or subtract and it has other uses besides the load/store. 9960 /// After the transformation, the new indexed load/store has effectively folded 9961 /// the add/subtract in and all of its other uses are redirected to the 9962 /// new load/store. 9963 bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) { 9964 if (Level < AfterLegalizeDAG) 9965 return false; 9966 9967 bool isLoad = true; 9968 SDValue Ptr; 9969 EVT VT; 9970 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 9971 if (LD->isIndexed()) 9972 return false; 9973 VT = LD->getMemoryVT(); 9974 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) && 9975 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT)) 9976 return false; 9977 Ptr = LD->getBasePtr(); 9978 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { 9979 if (ST->isIndexed()) 9980 return false; 9981 VT = ST->getMemoryVT(); 9982 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) && 9983 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT)) 9984 return false; 9985 Ptr = ST->getBasePtr(); 9986 isLoad = false; 9987 } else { 9988 return false; 9989 } 9990 9991 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail 9992 // out. There is no reason to make this a preinc/predec. 9993 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) || 9994 Ptr.getNode()->hasOneUse()) 9995 return false; 9996 9997 // Ask the target to do addressing mode selection. 9998 SDValue BasePtr; 9999 SDValue Offset; 10000 ISD::MemIndexedMode AM = ISD::UNINDEXED; 10001 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG)) 10002 return false; 10003 10004 // Backends without true r+i pre-indexed forms may need to pass a 10005 // constant base with a variable offset so that constant coercion 10006 // will work with the patterns in canonical form. 10007 bool Swapped = false; 10008 if (isa<ConstantSDNode>(BasePtr)) { 10009 std::swap(BasePtr, Offset); 10010 Swapped = true; 10011 } 10012 10013 // Don't create a indexed load / store with zero offset. 10014 if (isNullConstant(Offset)) 10015 return false; 10016 10017 // Try turning it into a pre-indexed load / store except when: 10018 // 1) The new base ptr is a frame index. 10019 // 2) If N is a store and the new base ptr is either the same as or is a 10020 // predecessor of the value being stored. 10021 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded 10022 // that would create a cycle. 10023 // 4) All uses are load / store ops that use it as old base ptr. 10024 10025 // Check #1. Preinc'ing a frame index would require copying the stack pointer 10026 // (plus the implicit offset) to a register to preinc anyway. 10027 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr)) 10028 return false; 10029 10030 // Check #2. 10031 if (!isLoad) { 10032 SDValue Val = cast<StoreSDNode>(N)->getValue(); 10033 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode())) 10034 return false; 10035 } 10036 10037 // Caches for hasPredecessorHelper. 10038 SmallPtrSet<const SDNode *, 32> Visited; 10039 SmallVector<const SDNode *, 16> Worklist; 10040 Worklist.push_back(N); 10041 10042 // If the offset is a constant, there may be other adds of constants that 10043 // can be folded with this one. We should do this to avoid having to keep 10044 // a copy of the original base pointer. 10045 SmallVector<SDNode *, 16> OtherUses; 10046 if (isa<ConstantSDNode>(Offset)) 10047 for (SDNode::use_iterator UI = BasePtr.getNode()->use_begin(), 10048 UE = BasePtr.getNode()->use_end(); 10049 UI != UE; ++UI) { 10050 SDUse &Use = UI.getUse(); 10051 // Skip the use that is Ptr and uses of other results from BasePtr's 10052 // node (important for nodes that return multiple results). 10053 if (Use.getUser() == Ptr.getNode() || Use != BasePtr) 10054 continue; 10055 10056 if (SDNode::hasPredecessorHelper(Use.getUser(), Visited, Worklist)) 10057 continue; 10058 10059 if (Use.getUser()->getOpcode() != ISD::ADD && 10060 Use.getUser()->getOpcode() != ISD::SUB) { 10061 OtherUses.clear(); 10062 break; 10063 } 10064 10065 SDValue Op1 = Use.getUser()->getOperand((UI.getOperandNo() + 1) & 1); 10066 if (!isa<ConstantSDNode>(Op1)) { 10067 OtherUses.clear(); 10068 break; 10069 } 10070 10071 // FIXME: In some cases, we can be smarter about this. 10072 if (Op1.getValueType() != Offset.getValueType()) { 10073 OtherUses.clear(); 10074 break; 10075 } 10076 10077 OtherUses.push_back(Use.getUser()); 10078 } 10079 10080 if (Swapped) 10081 std::swap(BasePtr, Offset); 10082 10083 // Now check for #3 and #4. 10084 bool RealUse = false; 10085 10086 for (SDNode *Use : Ptr.getNode()->uses()) { 10087 if (Use == N) 10088 continue; 10089 if (SDNode::hasPredecessorHelper(Use, Visited, Worklist)) 10090 return false; 10091 10092 // If Ptr may be folded in addressing mode of other use, then it's 10093 // not profitable to do this transformation. 10094 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI)) 10095 RealUse = true; 10096 } 10097 10098 if (!RealUse) 10099 return false; 10100 10101 SDValue Result; 10102 if (isLoad) 10103 Result = DAG.getIndexedLoad(SDValue(N,0), SDLoc(N), 10104 BasePtr, Offset, AM); 10105 else 10106 Result = DAG.getIndexedStore(SDValue(N,0), SDLoc(N), 10107 BasePtr, Offset, AM); 10108 ++PreIndexedNodes; 10109 ++NodesCombined; 10110 DEBUG(dbgs() << "\nReplacing.4 "; 10111 N->dump(&DAG); 10112 dbgs() << "\nWith: "; 10113 Result.getNode()->dump(&DAG); 10114 dbgs() << '\n'); 10115 WorklistRemover DeadNodes(*this); 10116 if (isLoad) { 10117 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0)); 10118 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2)); 10119 } else { 10120 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1)); 10121 } 10122 10123 // Finally, since the node is now dead, remove it from the graph. 10124 deleteAndRecombine(N); 10125 10126 if (Swapped) 10127 std::swap(BasePtr, Offset); 10128 10129 // Replace other uses of BasePtr that can be updated to use Ptr 10130 for (unsigned i = 0, e = OtherUses.size(); i != e; ++i) { 10131 unsigned OffsetIdx = 1; 10132 if (OtherUses[i]->getOperand(OffsetIdx).getNode() == BasePtr.getNode()) 10133 OffsetIdx = 0; 10134 assert(OtherUses[i]->getOperand(!OffsetIdx).getNode() == 10135 BasePtr.getNode() && "Expected BasePtr operand"); 10136 10137 // We need to replace ptr0 in the following expression: 10138 // x0 * offset0 + y0 * ptr0 = t0 10139 // knowing that 10140 // x1 * offset1 + y1 * ptr0 = t1 (the indexed load/store) 10141 // 10142 // where x0, x1, y0 and y1 in {-1, 1} are given by the types of the 10143 // indexed load/store and the expresion that needs to be re-written. 10144 // 10145 // Therefore, we have: 10146 // t0 = (x0 * offset0 - x1 * y0 * y1 *offset1) + (y0 * y1) * t1 10147 10148 ConstantSDNode *CN = 10149 cast<ConstantSDNode>(OtherUses[i]->getOperand(OffsetIdx)); 10150 int X0, X1, Y0, Y1; 10151 const APInt &Offset0 = CN->getAPIntValue(); 10152 APInt Offset1 = cast<ConstantSDNode>(Offset)->getAPIntValue(); 10153 10154 X0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 1) ? -1 : 1; 10155 Y0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 0) ? -1 : 1; 10156 X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1; 10157 Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1; 10158 10159 unsigned Opcode = (Y0 * Y1 < 0) ? ISD::SUB : ISD::ADD; 10160 10161 APInt CNV = Offset0; 10162 if (X0 < 0) CNV = -CNV; 10163 if (X1 * Y0 * Y1 < 0) CNV = CNV + Offset1; 10164 else CNV = CNV - Offset1; 10165 10166 SDLoc DL(OtherUses[i]); 10167 10168 // We can now generate the new expression. 10169 SDValue NewOp1 = DAG.getConstant(CNV, DL, CN->getValueType(0)); 10170 SDValue NewOp2 = Result.getValue(isLoad ? 1 : 0); 10171 10172 SDValue NewUse = DAG.getNode(Opcode, 10173 DL, 10174 OtherUses[i]->getValueType(0), NewOp1, NewOp2); 10175 DAG.ReplaceAllUsesOfValueWith(SDValue(OtherUses[i], 0), NewUse); 10176 deleteAndRecombine(OtherUses[i]); 10177 } 10178 10179 // Replace the uses of Ptr with uses of the updated base value. 10180 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0)); 10181 deleteAndRecombine(Ptr.getNode()); 10182 10183 return true; 10184 } 10185 10186 /// Try to combine a load/store with a add/sub of the base pointer node into a 10187 /// post-indexed load/store. The transformation folded the add/subtract into the 10188 /// new indexed load/store effectively and all of its uses are redirected to the 10189 /// new load/store. 10190 bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) { 10191 if (Level < AfterLegalizeDAG) 10192 return false; 10193 10194 bool isLoad = true; 10195 SDValue Ptr; 10196 EVT VT; 10197 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 10198 if (LD->isIndexed()) 10199 return false; 10200 VT = LD->getMemoryVT(); 10201 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) && 10202 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT)) 10203 return false; 10204 Ptr = LD->getBasePtr(); 10205 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { 10206 if (ST->isIndexed()) 10207 return false; 10208 VT = ST->getMemoryVT(); 10209 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) && 10210 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT)) 10211 return false; 10212 Ptr = ST->getBasePtr(); 10213 isLoad = false; 10214 } else { 10215 return false; 10216 } 10217 10218 if (Ptr.getNode()->hasOneUse()) 10219 return false; 10220 10221 for (SDNode *Op : Ptr.getNode()->uses()) { 10222 if (Op == N || 10223 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB)) 10224 continue; 10225 10226 SDValue BasePtr; 10227 SDValue Offset; 10228 ISD::MemIndexedMode AM = ISD::UNINDEXED; 10229 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) { 10230 // Don't create a indexed load / store with zero offset. 10231 if (isNullConstant(Offset)) 10232 continue; 10233 10234 // Try turning it into a post-indexed load / store except when 10235 // 1) All uses are load / store ops that use it as base ptr (and 10236 // it may be folded as addressing mmode). 10237 // 2) Op must be independent of N, i.e. Op is neither a predecessor 10238 // nor a successor of N. Otherwise, if Op is folded that would 10239 // create a cycle. 10240 10241 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr)) 10242 continue; 10243 10244 // Check for #1. 10245 bool TryNext = false; 10246 for (SDNode *Use : BasePtr.getNode()->uses()) { 10247 if (Use == Ptr.getNode()) 10248 continue; 10249 10250 // If all the uses are load / store addresses, then don't do the 10251 // transformation. 10252 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){ 10253 bool RealUse = false; 10254 for (SDNode *UseUse : Use->uses()) { 10255 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI)) 10256 RealUse = true; 10257 } 10258 10259 if (!RealUse) { 10260 TryNext = true; 10261 break; 10262 } 10263 } 10264 } 10265 10266 if (TryNext) 10267 continue; 10268 10269 // Check for #2 10270 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) { 10271 SDValue Result = isLoad 10272 ? DAG.getIndexedLoad(SDValue(N,0), SDLoc(N), 10273 BasePtr, Offset, AM) 10274 : DAG.getIndexedStore(SDValue(N,0), SDLoc(N), 10275 BasePtr, Offset, AM); 10276 ++PostIndexedNodes; 10277 ++NodesCombined; 10278 DEBUG(dbgs() << "\nReplacing.5 "; 10279 N->dump(&DAG); 10280 dbgs() << "\nWith: "; 10281 Result.getNode()->dump(&DAG); 10282 dbgs() << '\n'); 10283 WorklistRemover DeadNodes(*this); 10284 if (isLoad) { 10285 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0)); 10286 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2)); 10287 } else { 10288 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1)); 10289 } 10290 10291 // Finally, since the node is now dead, remove it from the graph. 10292 deleteAndRecombine(N); 10293 10294 // Replace the uses of Use with uses of the updated base value. 10295 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0), 10296 Result.getValue(isLoad ? 1 : 0)); 10297 deleteAndRecombine(Op); 10298 return true; 10299 } 10300 } 10301 } 10302 10303 return false; 10304 } 10305 10306 /// \brief Return the base-pointer arithmetic from an indexed \p LD. 10307 SDValue DAGCombiner::SplitIndexingFromLoad(LoadSDNode *LD) { 10308 ISD::MemIndexedMode AM = LD->getAddressingMode(); 10309 assert(AM != ISD::UNINDEXED); 10310 SDValue BP = LD->getOperand(1); 10311 SDValue Inc = LD->getOperand(2); 10312 10313 // Some backends use TargetConstants for load offsets, but don't expect 10314 // TargetConstants in general ADD nodes. We can convert these constants into 10315 // regular Constants (if the constant is not opaque). 10316 assert((Inc.getOpcode() != ISD::TargetConstant || 10317 !cast<ConstantSDNode>(Inc)->isOpaque()) && 10318 "Cannot split out indexing using opaque target constants"); 10319 if (Inc.getOpcode() == ISD::TargetConstant) { 10320 ConstantSDNode *ConstInc = cast<ConstantSDNode>(Inc); 10321 Inc = DAG.getConstant(*ConstInc->getConstantIntValue(), SDLoc(Inc), 10322 ConstInc->getValueType(0)); 10323 } 10324 10325 unsigned Opc = 10326 (AM == ISD::PRE_INC || AM == ISD::POST_INC ? ISD::ADD : ISD::SUB); 10327 return DAG.getNode(Opc, SDLoc(LD), BP.getSimpleValueType(), BP, Inc); 10328 } 10329 10330 SDValue DAGCombiner::visitLOAD(SDNode *N) { 10331 LoadSDNode *LD = cast<LoadSDNode>(N); 10332 SDValue Chain = LD->getChain(); 10333 SDValue Ptr = LD->getBasePtr(); 10334 10335 // If load is not volatile and there are no uses of the loaded value (and 10336 // the updated indexed value in case of indexed loads), change uses of the 10337 // chain value into uses of the chain input (i.e. delete the dead load). 10338 if (!LD->isVolatile()) { 10339 if (N->getValueType(1) == MVT::Other) { 10340 // Unindexed loads. 10341 if (!N->hasAnyUseOfValue(0)) { 10342 // It's not safe to use the two value CombineTo variant here. e.g. 10343 // v1, chain2 = load chain1, loc 10344 // v2, chain3 = load chain2, loc 10345 // v3 = add v2, c 10346 // Now we replace use of chain2 with chain1. This makes the second load 10347 // isomorphic to the one we are deleting, and thus makes this load live. 10348 DEBUG(dbgs() << "\nReplacing.6 "; 10349 N->dump(&DAG); 10350 dbgs() << "\nWith chain: "; 10351 Chain.getNode()->dump(&DAG); 10352 dbgs() << "\n"); 10353 WorklistRemover DeadNodes(*this); 10354 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain); 10355 10356 if (N->use_empty()) 10357 deleteAndRecombine(N); 10358 10359 return SDValue(N, 0); // Return N so it doesn't get rechecked! 10360 } 10361 } else { 10362 // Indexed loads. 10363 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?"); 10364 10365 // If this load has an opaque TargetConstant offset, then we cannot split 10366 // the indexing into an add/sub directly (that TargetConstant may not be 10367 // valid for a different type of node, and we cannot convert an opaque 10368 // target constant into a regular constant). 10369 bool HasOTCInc = LD->getOperand(2).getOpcode() == ISD::TargetConstant && 10370 cast<ConstantSDNode>(LD->getOperand(2))->isOpaque(); 10371 10372 if (!N->hasAnyUseOfValue(0) && 10373 ((MaySplitLoadIndex && !HasOTCInc) || !N->hasAnyUseOfValue(1))) { 10374 SDValue Undef = DAG.getUNDEF(N->getValueType(0)); 10375 SDValue Index; 10376 if (N->hasAnyUseOfValue(1) && MaySplitLoadIndex && !HasOTCInc) { 10377 Index = SplitIndexingFromLoad(LD); 10378 // Try to fold the base pointer arithmetic into subsequent loads and 10379 // stores. 10380 AddUsersToWorklist(N); 10381 } else 10382 Index = DAG.getUNDEF(N->getValueType(1)); 10383 DEBUG(dbgs() << "\nReplacing.7 "; 10384 N->dump(&DAG); 10385 dbgs() << "\nWith: "; 10386 Undef.getNode()->dump(&DAG); 10387 dbgs() << " and 2 other values\n"); 10388 WorklistRemover DeadNodes(*this); 10389 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef); 10390 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Index); 10391 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain); 10392 deleteAndRecombine(N); 10393 return SDValue(N, 0); // Return N so it doesn't get rechecked! 10394 } 10395 } 10396 } 10397 10398 // If this load is directly stored, replace the load value with the stored 10399 // value. 10400 // TODO: Handle store large -> read small portion. 10401 // TODO: Handle TRUNCSTORE/LOADEXT 10402 if (OptLevel != CodeGenOpt::None && 10403 ISD::isNormalLoad(N) && !LD->isVolatile()) { 10404 if (ISD::isNON_TRUNCStore(Chain.getNode())) { 10405 StoreSDNode *PrevST = cast<StoreSDNode>(Chain); 10406 if (PrevST->getBasePtr() == Ptr && 10407 PrevST->getValue().getValueType() == N->getValueType(0)) 10408 return CombineTo(N, Chain.getOperand(1), Chain); 10409 } 10410 } 10411 10412 // Try to infer better alignment information than the load already has. 10413 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) { 10414 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) { 10415 if (Align > LD->getMemOperand()->getBaseAlignment()) { 10416 SDValue NewLoad = DAG.getExtLoad( 10417 LD->getExtensionType(), SDLoc(N), LD->getValueType(0), Chain, Ptr, 10418 LD->getPointerInfo(), LD->getMemoryVT(), Align, 10419 LD->getMemOperand()->getFlags(), LD->getAAInfo()); 10420 if (NewLoad.getNode() != N) 10421 return CombineTo(N, NewLoad, SDValue(NewLoad.getNode(), 1), true); 10422 } 10423 } 10424 } 10425 10426 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA 10427 : DAG.getSubtarget().useAA(); 10428 #ifndef NDEBUG 10429 if (CombinerAAOnlyFunc.getNumOccurrences() && 10430 CombinerAAOnlyFunc != DAG.getMachineFunction().getName()) 10431 UseAA = false; 10432 #endif 10433 if (UseAA && LD->isUnindexed()) { 10434 // Walk up chain skipping non-aliasing memory nodes. 10435 SDValue BetterChain = FindBetterChain(N, Chain); 10436 10437 // If there is a better chain. 10438 if (Chain != BetterChain) { 10439 SDValue ReplLoad; 10440 10441 // Replace the chain to void dependency. 10442 if (LD->getExtensionType() == ISD::NON_EXTLOAD) { 10443 ReplLoad = DAG.getLoad(N->getValueType(0), SDLoc(LD), 10444 BetterChain, Ptr, LD->getMemOperand()); 10445 } else { 10446 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD), 10447 LD->getValueType(0), 10448 BetterChain, Ptr, LD->getMemoryVT(), 10449 LD->getMemOperand()); 10450 } 10451 10452 // Create token factor to keep old chain connected. 10453 SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N), 10454 MVT::Other, Chain, ReplLoad.getValue(1)); 10455 10456 // Make sure the new and old chains are cleaned up. 10457 AddToWorklist(Token.getNode()); 10458 10459 // Replace uses with load result and token factor. Don't add users 10460 // to work list. 10461 return CombineTo(N, ReplLoad.getValue(0), Token, false); 10462 } 10463 } 10464 10465 // Try transforming N to an indexed load. 10466 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N)) 10467 return SDValue(N, 0); 10468 10469 // Try to slice up N to more direct loads if the slices are mapped to 10470 // different register banks or pairing can take place. 10471 if (SliceUpLoad(N)) 10472 return SDValue(N, 0); 10473 10474 return SDValue(); 10475 } 10476 10477 namespace { 10478 /// \brief Helper structure used to slice a load in smaller loads. 10479 /// Basically a slice is obtained from the following sequence: 10480 /// Origin = load Ty1, Base 10481 /// Shift = srl Ty1 Origin, CstTy Amount 10482 /// Inst = trunc Shift to Ty2 10483 /// 10484 /// Then, it will be rewriten into: 10485 /// Slice = load SliceTy, Base + SliceOffset 10486 /// [Inst = zext Slice to Ty2], only if SliceTy <> Ty2 10487 /// 10488 /// SliceTy is deduced from the number of bits that are actually used to 10489 /// build Inst. 10490 struct LoadedSlice { 10491 /// \brief Helper structure used to compute the cost of a slice. 10492 struct Cost { 10493 /// Are we optimizing for code size. 10494 bool ForCodeSize; 10495 /// Various cost. 10496 unsigned Loads; 10497 unsigned Truncates; 10498 unsigned CrossRegisterBanksCopies; 10499 unsigned ZExts; 10500 unsigned Shift; 10501 10502 Cost(bool ForCodeSize = false) 10503 : ForCodeSize(ForCodeSize), Loads(0), Truncates(0), 10504 CrossRegisterBanksCopies(0), ZExts(0), Shift(0) {} 10505 10506 /// \brief Get the cost of one isolated slice. 10507 Cost(const LoadedSlice &LS, bool ForCodeSize = false) 10508 : ForCodeSize(ForCodeSize), Loads(1), Truncates(0), 10509 CrossRegisterBanksCopies(0), ZExts(0), Shift(0) { 10510 EVT TruncType = LS.Inst->getValueType(0); 10511 EVT LoadedType = LS.getLoadedType(); 10512 if (TruncType != LoadedType && 10513 !LS.DAG->getTargetLoweringInfo().isZExtFree(LoadedType, TruncType)) 10514 ZExts = 1; 10515 } 10516 10517 /// \brief Account for slicing gain in the current cost. 10518 /// Slicing provide a few gains like removing a shift or a 10519 /// truncate. This method allows to grow the cost of the original 10520 /// load with the gain from this slice. 10521 void addSliceGain(const LoadedSlice &LS) { 10522 // Each slice saves a truncate. 10523 const TargetLowering &TLI = LS.DAG->getTargetLoweringInfo(); 10524 if (!TLI.isTruncateFree(LS.Inst->getOperand(0).getValueType(), 10525 LS.Inst->getValueType(0))) 10526 ++Truncates; 10527 // If there is a shift amount, this slice gets rid of it. 10528 if (LS.Shift) 10529 ++Shift; 10530 // If this slice can merge a cross register bank copy, account for it. 10531 if (LS.canMergeExpensiveCrossRegisterBankCopy()) 10532 ++CrossRegisterBanksCopies; 10533 } 10534 10535 Cost &operator+=(const Cost &RHS) { 10536 Loads += RHS.Loads; 10537 Truncates += RHS.Truncates; 10538 CrossRegisterBanksCopies += RHS.CrossRegisterBanksCopies; 10539 ZExts += RHS.ZExts; 10540 Shift += RHS.Shift; 10541 return *this; 10542 } 10543 10544 bool operator==(const Cost &RHS) const { 10545 return Loads == RHS.Loads && Truncates == RHS.Truncates && 10546 CrossRegisterBanksCopies == RHS.CrossRegisterBanksCopies && 10547 ZExts == RHS.ZExts && Shift == RHS.Shift; 10548 } 10549 10550 bool operator!=(const Cost &RHS) const { return !(*this == RHS); } 10551 10552 bool operator<(const Cost &RHS) const { 10553 // Assume cross register banks copies are as expensive as loads. 10554 // FIXME: Do we want some more target hooks? 10555 unsigned ExpensiveOpsLHS = Loads + CrossRegisterBanksCopies; 10556 unsigned ExpensiveOpsRHS = RHS.Loads + RHS.CrossRegisterBanksCopies; 10557 // Unless we are optimizing for code size, consider the 10558 // expensive operation first. 10559 if (!ForCodeSize && ExpensiveOpsLHS != ExpensiveOpsRHS) 10560 return ExpensiveOpsLHS < ExpensiveOpsRHS; 10561 return (Truncates + ZExts + Shift + ExpensiveOpsLHS) < 10562 (RHS.Truncates + RHS.ZExts + RHS.Shift + ExpensiveOpsRHS); 10563 } 10564 10565 bool operator>(const Cost &RHS) const { return RHS < *this; } 10566 10567 bool operator<=(const Cost &RHS) const { return !(RHS < *this); } 10568 10569 bool operator>=(const Cost &RHS) const { return !(*this < RHS); } 10570 }; 10571 // The last instruction that represent the slice. This should be a 10572 // truncate instruction. 10573 SDNode *Inst; 10574 // The original load instruction. 10575 LoadSDNode *Origin; 10576 // The right shift amount in bits from the original load. 10577 unsigned Shift; 10578 // The DAG from which Origin came from. 10579 // This is used to get some contextual information about legal types, etc. 10580 SelectionDAG *DAG; 10581 10582 LoadedSlice(SDNode *Inst = nullptr, LoadSDNode *Origin = nullptr, 10583 unsigned Shift = 0, SelectionDAG *DAG = nullptr) 10584 : Inst(Inst), Origin(Origin), Shift(Shift), DAG(DAG) {} 10585 10586 /// \brief Get the bits used in a chunk of bits \p BitWidth large. 10587 /// \return Result is \p BitWidth and has used bits set to 1 and 10588 /// not used bits set to 0. 10589 APInt getUsedBits() const { 10590 // Reproduce the trunc(lshr) sequence: 10591 // - Start from the truncated value. 10592 // - Zero extend to the desired bit width. 10593 // - Shift left. 10594 assert(Origin && "No original load to compare against."); 10595 unsigned BitWidth = Origin->getValueSizeInBits(0); 10596 assert(Inst && "This slice is not bound to an instruction"); 10597 assert(Inst->getValueSizeInBits(0) <= BitWidth && 10598 "Extracted slice is bigger than the whole type!"); 10599 APInt UsedBits(Inst->getValueSizeInBits(0), 0); 10600 UsedBits.setAllBits(); 10601 UsedBits = UsedBits.zext(BitWidth); 10602 UsedBits <<= Shift; 10603 return UsedBits; 10604 } 10605 10606 /// \brief Get the size of the slice to be loaded in bytes. 10607 unsigned getLoadedSize() const { 10608 unsigned SliceSize = getUsedBits().countPopulation(); 10609 assert(!(SliceSize & 0x7) && "Size is not a multiple of a byte."); 10610 return SliceSize / 8; 10611 } 10612 10613 /// \brief Get the type that will be loaded for this slice. 10614 /// Note: This may not be the final type for the slice. 10615 EVT getLoadedType() const { 10616 assert(DAG && "Missing context"); 10617 LLVMContext &Ctxt = *DAG->getContext(); 10618 return EVT::getIntegerVT(Ctxt, getLoadedSize() * 8); 10619 } 10620 10621 /// \brief Get the alignment of the load used for this slice. 10622 unsigned getAlignment() const { 10623 unsigned Alignment = Origin->getAlignment(); 10624 unsigned Offset = getOffsetFromBase(); 10625 if (Offset != 0) 10626 Alignment = MinAlign(Alignment, Alignment + Offset); 10627 return Alignment; 10628 } 10629 10630 /// \brief Check if this slice can be rewritten with legal operations. 10631 bool isLegal() const { 10632 // An invalid slice is not legal. 10633 if (!Origin || !Inst || !DAG) 10634 return false; 10635 10636 // Offsets are for indexed load only, we do not handle that. 10637 if (!Origin->getOffset().isUndef()) 10638 return false; 10639 10640 const TargetLowering &TLI = DAG->getTargetLoweringInfo(); 10641 10642 // Check that the type is legal. 10643 EVT SliceType = getLoadedType(); 10644 if (!TLI.isTypeLegal(SliceType)) 10645 return false; 10646 10647 // Check that the load is legal for this type. 10648 if (!TLI.isOperationLegal(ISD::LOAD, SliceType)) 10649 return false; 10650 10651 // Check that the offset can be computed. 10652 // 1. Check its type. 10653 EVT PtrType = Origin->getBasePtr().getValueType(); 10654 if (PtrType == MVT::Untyped || PtrType.isExtended()) 10655 return false; 10656 10657 // 2. Check that it fits in the immediate. 10658 if (!TLI.isLegalAddImmediate(getOffsetFromBase())) 10659 return false; 10660 10661 // 3. Check that the computation is legal. 10662 if (!TLI.isOperationLegal(ISD::ADD, PtrType)) 10663 return false; 10664 10665 // Check that the zext is legal if it needs one. 10666 EVT TruncateType = Inst->getValueType(0); 10667 if (TruncateType != SliceType && 10668 !TLI.isOperationLegal(ISD::ZERO_EXTEND, TruncateType)) 10669 return false; 10670 10671 return true; 10672 } 10673 10674 /// \brief Get the offset in bytes of this slice in the original chunk of 10675 /// bits. 10676 /// \pre DAG != nullptr. 10677 uint64_t getOffsetFromBase() const { 10678 assert(DAG && "Missing context."); 10679 bool IsBigEndian = DAG->getDataLayout().isBigEndian(); 10680 assert(!(Shift & 0x7) && "Shifts not aligned on Bytes are not supported."); 10681 uint64_t Offset = Shift / 8; 10682 unsigned TySizeInBytes = Origin->getValueSizeInBits(0) / 8; 10683 assert(!(Origin->getValueSizeInBits(0) & 0x7) && 10684 "The size of the original loaded type is not a multiple of a" 10685 " byte."); 10686 // If Offset is bigger than TySizeInBytes, it means we are loading all 10687 // zeros. This should have been optimized before in the process. 10688 assert(TySizeInBytes > Offset && 10689 "Invalid shift amount for given loaded size"); 10690 if (IsBigEndian) 10691 Offset = TySizeInBytes - Offset - getLoadedSize(); 10692 return Offset; 10693 } 10694 10695 /// \brief Generate the sequence of instructions to load the slice 10696 /// represented by this object and redirect the uses of this slice to 10697 /// this new sequence of instructions. 10698 /// \pre this->Inst && this->Origin are valid Instructions and this 10699 /// object passed the legal check: LoadedSlice::isLegal returned true. 10700 /// \return The last instruction of the sequence used to load the slice. 10701 SDValue loadSlice() const { 10702 assert(Inst && Origin && "Unable to replace a non-existing slice."); 10703 const SDValue &OldBaseAddr = Origin->getBasePtr(); 10704 SDValue BaseAddr = OldBaseAddr; 10705 // Get the offset in that chunk of bytes w.r.t. the endianness. 10706 int64_t Offset = static_cast<int64_t>(getOffsetFromBase()); 10707 assert(Offset >= 0 && "Offset too big to fit in int64_t!"); 10708 if (Offset) { 10709 // BaseAddr = BaseAddr + Offset. 10710 EVT ArithType = BaseAddr.getValueType(); 10711 SDLoc DL(Origin); 10712 BaseAddr = DAG->getNode(ISD::ADD, DL, ArithType, BaseAddr, 10713 DAG->getConstant(Offset, DL, ArithType)); 10714 } 10715 10716 // Create the type of the loaded slice according to its size. 10717 EVT SliceType = getLoadedType(); 10718 10719 // Create the load for the slice. 10720 SDValue LastInst = 10721 DAG->getLoad(SliceType, SDLoc(Origin), Origin->getChain(), BaseAddr, 10722 Origin->getPointerInfo().getWithOffset(Offset), 10723 getAlignment(), Origin->getMemOperand()->getFlags()); 10724 // If the final type is not the same as the loaded type, this means that 10725 // we have to pad with zero. Create a zero extend for that. 10726 EVT FinalType = Inst->getValueType(0); 10727 if (SliceType != FinalType) 10728 LastInst = 10729 DAG->getNode(ISD::ZERO_EXTEND, SDLoc(LastInst), FinalType, LastInst); 10730 return LastInst; 10731 } 10732 10733 /// \brief Check if this slice can be merged with an expensive cross register 10734 /// bank copy. E.g., 10735 /// i = load i32 10736 /// f = bitcast i32 i to float 10737 bool canMergeExpensiveCrossRegisterBankCopy() const { 10738 if (!Inst || !Inst->hasOneUse()) 10739 return false; 10740 SDNode *Use = *Inst->use_begin(); 10741 if (Use->getOpcode() != ISD::BITCAST) 10742 return false; 10743 assert(DAG && "Missing context"); 10744 const TargetLowering &TLI = DAG->getTargetLoweringInfo(); 10745 EVT ResVT = Use->getValueType(0); 10746 const TargetRegisterClass *ResRC = TLI.getRegClassFor(ResVT.getSimpleVT()); 10747 const TargetRegisterClass *ArgRC = 10748 TLI.getRegClassFor(Use->getOperand(0).getValueType().getSimpleVT()); 10749 if (ArgRC == ResRC || !TLI.isOperationLegal(ISD::LOAD, ResVT)) 10750 return false; 10751 10752 // At this point, we know that we perform a cross-register-bank copy. 10753 // Check if it is expensive. 10754 const TargetRegisterInfo *TRI = DAG->getSubtarget().getRegisterInfo(); 10755 // Assume bitcasts are cheap, unless both register classes do not 10756 // explicitly share a common sub class. 10757 if (!TRI || TRI->getCommonSubClass(ArgRC, ResRC)) 10758 return false; 10759 10760 // Check if it will be merged with the load. 10761 // 1. Check the alignment constraint. 10762 unsigned RequiredAlignment = DAG->getDataLayout().getABITypeAlignment( 10763 ResVT.getTypeForEVT(*DAG->getContext())); 10764 10765 if (RequiredAlignment > getAlignment()) 10766 return false; 10767 10768 // 2. Check that the load is a legal operation for that type. 10769 if (!TLI.isOperationLegal(ISD::LOAD, ResVT)) 10770 return false; 10771 10772 // 3. Check that we do not have a zext in the way. 10773 if (Inst->getValueType(0) != getLoadedType()) 10774 return false; 10775 10776 return true; 10777 } 10778 }; 10779 } 10780 10781 /// \brief Check that all bits set in \p UsedBits form a dense region, i.e., 10782 /// \p UsedBits looks like 0..0 1..1 0..0. 10783 static bool areUsedBitsDense(const APInt &UsedBits) { 10784 // If all the bits are one, this is dense! 10785 if (UsedBits.isAllOnesValue()) 10786 return true; 10787 10788 // Get rid of the unused bits on the right. 10789 APInt NarrowedUsedBits = UsedBits.lshr(UsedBits.countTrailingZeros()); 10790 // Get rid of the unused bits on the left. 10791 if (NarrowedUsedBits.countLeadingZeros()) 10792 NarrowedUsedBits = NarrowedUsedBits.trunc(NarrowedUsedBits.getActiveBits()); 10793 // Check that the chunk of bits is completely used. 10794 return NarrowedUsedBits.isAllOnesValue(); 10795 } 10796 10797 /// \brief Check whether or not \p First and \p Second are next to each other 10798 /// in memory. This means that there is no hole between the bits loaded 10799 /// by \p First and the bits loaded by \p Second. 10800 static bool areSlicesNextToEachOther(const LoadedSlice &First, 10801 const LoadedSlice &Second) { 10802 assert(First.Origin == Second.Origin && First.Origin && 10803 "Unable to match different memory origins."); 10804 APInt UsedBits = First.getUsedBits(); 10805 assert((UsedBits & Second.getUsedBits()) == 0 && 10806 "Slices are not supposed to overlap."); 10807 UsedBits |= Second.getUsedBits(); 10808 return areUsedBitsDense(UsedBits); 10809 } 10810 10811 /// \brief Adjust the \p GlobalLSCost according to the target 10812 /// paring capabilities and the layout of the slices. 10813 /// \pre \p GlobalLSCost should account for at least as many loads as 10814 /// there is in the slices in \p LoadedSlices. 10815 static void adjustCostForPairing(SmallVectorImpl<LoadedSlice> &LoadedSlices, 10816 LoadedSlice::Cost &GlobalLSCost) { 10817 unsigned NumberOfSlices = LoadedSlices.size(); 10818 // If there is less than 2 elements, no pairing is possible. 10819 if (NumberOfSlices < 2) 10820 return; 10821 10822 // Sort the slices so that elements that are likely to be next to each 10823 // other in memory are next to each other in the list. 10824 std::sort(LoadedSlices.begin(), LoadedSlices.end(), 10825 [](const LoadedSlice &LHS, const LoadedSlice &RHS) { 10826 assert(LHS.Origin == RHS.Origin && "Different bases not implemented."); 10827 return LHS.getOffsetFromBase() < RHS.getOffsetFromBase(); 10828 }); 10829 const TargetLowering &TLI = LoadedSlices[0].DAG->getTargetLoweringInfo(); 10830 // First (resp. Second) is the first (resp. Second) potentially candidate 10831 // to be placed in a paired load. 10832 const LoadedSlice *First = nullptr; 10833 const LoadedSlice *Second = nullptr; 10834 for (unsigned CurrSlice = 0; CurrSlice < NumberOfSlices; ++CurrSlice, 10835 // Set the beginning of the pair. 10836 First = Second) { 10837 10838 Second = &LoadedSlices[CurrSlice]; 10839 10840 // If First is NULL, it means we start a new pair. 10841 // Get to the next slice. 10842 if (!First) 10843 continue; 10844 10845 EVT LoadedType = First->getLoadedType(); 10846 10847 // If the types of the slices are different, we cannot pair them. 10848 if (LoadedType != Second->getLoadedType()) 10849 continue; 10850 10851 // Check if the target supplies paired loads for this type. 10852 unsigned RequiredAlignment = 0; 10853 if (!TLI.hasPairedLoad(LoadedType, RequiredAlignment)) { 10854 // move to the next pair, this type is hopeless. 10855 Second = nullptr; 10856 continue; 10857 } 10858 // Check if we meet the alignment requirement. 10859 if (RequiredAlignment > First->getAlignment()) 10860 continue; 10861 10862 // Check that both loads are next to each other in memory. 10863 if (!areSlicesNextToEachOther(*First, *Second)) 10864 continue; 10865 10866 assert(GlobalLSCost.Loads > 0 && "We save more loads than we created!"); 10867 --GlobalLSCost.Loads; 10868 // Move to the next pair. 10869 Second = nullptr; 10870 } 10871 } 10872 10873 /// \brief Check the profitability of all involved LoadedSlice. 10874 /// Currently, it is considered profitable if there is exactly two 10875 /// involved slices (1) which are (2) next to each other in memory, and 10876 /// whose cost (\see LoadedSlice::Cost) is smaller than the original load (3). 10877 /// 10878 /// Note: The order of the elements in \p LoadedSlices may be modified, but not 10879 /// the elements themselves. 10880 /// 10881 /// FIXME: When the cost model will be mature enough, we can relax 10882 /// constraints (1) and (2). 10883 static bool isSlicingProfitable(SmallVectorImpl<LoadedSlice> &LoadedSlices, 10884 const APInt &UsedBits, bool ForCodeSize) { 10885 unsigned NumberOfSlices = LoadedSlices.size(); 10886 if (StressLoadSlicing) 10887 return NumberOfSlices > 1; 10888 10889 // Check (1). 10890 if (NumberOfSlices != 2) 10891 return false; 10892 10893 // Check (2). 10894 if (!areUsedBitsDense(UsedBits)) 10895 return false; 10896 10897 // Check (3). 10898 LoadedSlice::Cost OrigCost(ForCodeSize), GlobalSlicingCost(ForCodeSize); 10899 // The original code has one big load. 10900 OrigCost.Loads = 1; 10901 for (unsigned CurrSlice = 0; CurrSlice < NumberOfSlices; ++CurrSlice) { 10902 const LoadedSlice &LS = LoadedSlices[CurrSlice]; 10903 // Accumulate the cost of all the slices. 10904 LoadedSlice::Cost SliceCost(LS, ForCodeSize); 10905 GlobalSlicingCost += SliceCost; 10906 10907 // Account as cost in the original configuration the gain obtained 10908 // with the current slices. 10909 OrigCost.addSliceGain(LS); 10910 } 10911 10912 // If the target supports paired load, adjust the cost accordingly. 10913 adjustCostForPairing(LoadedSlices, GlobalSlicingCost); 10914 return OrigCost > GlobalSlicingCost; 10915 } 10916 10917 /// \brief If the given load, \p LI, is used only by trunc or trunc(lshr) 10918 /// operations, split it in the various pieces being extracted. 10919 /// 10920 /// This sort of thing is introduced by SROA. 10921 /// This slicing takes care not to insert overlapping loads. 10922 /// \pre LI is a simple load (i.e., not an atomic or volatile load). 10923 bool DAGCombiner::SliceUpLoad(SDNode *N) { 10924 if (Level < AfterLegalizeDAG) 10925 return false; 10926 10927 LoadSDNode *LD = cast<LoadSDNode>(N); 10928 if (LD->isVolatile() || !ISD::isNormalLoad(LD) || 10929 !LD->getValueType(0).isInteger()) 10930 return false; 10931 10932 // Keep track of already used bits to detect overlapping values. 10933 // In that case, we will just abort the transformation. 10934 APInt UsedBits(LD->getValueSizeInBits(0), 0); 10935 10936 SmallVector<LoadedSlice, 4> LoadedSlices; 10937 10938 // Check if this load is used as several smaller chunks of bits. 10939 // Basically, look for uses in trunc or trunc(lshr) and record a new chain 10940 // of computation for each trunc. 10941 for (SDNode::use_iterator UI = LD->use_begin(), UIEnd = LD->use_end(); 10942 UI != UIEnd; ++UI) { 10943 // Skip the uses of the chain. 10944 if (UI.getUse().getResNo() != 0) 10945 continue; 10946 10947 SDNode *User = *UI; 10948 unsigned Shift = 0; 10949 10950 // Check if this is a trunc(lshr). 10951 if (User->getOpcode() == ISD::SRL && User->hasOneUse() && 10952 isa<ConstantSDNode>(User->getOperand(1))) { 10953 Shift = cast<ConstantSDNode>(User->getOperand(1))->getZExtValue(); 10954 User = *User->use_begin(); 10955 } 10956 10957 // At this point, User is a Truncate, iff we encountered, trunc or 10958 // trunc(lshr). 10959 if (User->getOpcode() != ISD::TRUNCATE) 10960 return false; 10961 10962 // The width of the type must be a power of 2 and greater than 8-bits. 10963 // Otherwise the load cannot be represented in LLVM IR. 10964 // Moreover, if we shifted with a non-8-bits multiple, the slice 10965 // will be across several bytes. We do not support that. 10966 unsigned Width = User->getValueSizeInBits(0); 10967 if (Width < 8 || !isPowerOf2_32(Width) || (Shift & 0x7)) 10968 return 0; 10969 10970 // Build the slice for this chain of computations. 10971 LoadedSlice LS(User, LD, Shift, &DAG); 10972 APInt CurrentUsedBits = LS.getUsedBits(); 10973 10974 // Check if this slice overlaps with another. 10975 if ((CurrentUsedBits & UsedBits) != 0) 10976 return false; 10977 // Update the bits used globally. 10978 UsedBits |= CurrentUsedBits; 10979 10980 // Check if the new slice would be legal. 10981 if (!LS.isLegal()) 10982 return false; 10983 10984 // Record the slice. 10985 LoadedSlices.push_back(LS); 10986 } 10987 10988 // Abort slicing if it does not seem to be profitable. 10989 if (!isSlicingProfitable(LoadedSlices, UsedBits, ForCodeSize)) 10990 return false; 10991 10992 ++SlicedLoads; 10993 10994 // Rewrite each chain to use an independent load. 10995 // By construction, each chain can be represented by a unique load. 10996 10997 // Prepare the argument for the new token factor for all the slices. 10998 SmallVector<SDValue, 8> ArgChains; 10999 for (SmallVectorImpl<LoadedSlice>::const_iterator 11000 LSIt = LoadedSlices.begin(), 11001 LSItEnd = LoadedSlices.end(); 11002 LSIt != LSItEnd; ++LSIt) { 11003 SDValue SliceInst = LSIt->loadSlice(); 11004 CombineTo(LSIt->Inst, SliceInst, true); 11005 if (SliceInst.getOpcode() != ISD::LOAD) 11006 SliceInst = SliceInst.getOperand(0); 11007 assert(SliceInst->getOpcode() == ISD::LOAD && 11008 "It takes more than a zext to get to the loaded slice!!"); 11009 ArgChains.push_back(SliceInst.getValue(1)); 11010 } 11011 11012 SDValue Chain = DAG.getNode(ISD::TokenFactor, SDLoc(LD), MVT::Other, 11013 ArgChains); 11014 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain); 11015 return true; 11016 } 11017 11018 /// Check to see if V is (and load (ptr), imm), where the load is having 11019 /// specific bytes cleared out. If so, return the byte size being masked out 11020 /// and the shift amount. 11021 static std::pair<unsigned, unsigned> 11022 CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) { 11023 std::pair<unsigned, unsigned> Result(0, 0); 11024 11025 // Check for the structure we're looking for. 11026 if (V->getOpcode() != ISD::AND || 11027 !isa<ConstantSDNode>(V->getOperand(1)) || 11028 !ISD::isNormalLoad(V->getOperand(0).getNode())) 11029 return Result; 11030 11031 // Check the chain and pointer. 11032 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0)); 11033 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer. 11034 11035 // The store should be chained directly to the load or be an operand of a 11036 // tokenfactor. 11037 if (LD == Chain.getNode()) 11038 ; // ok. 11039 else if (Chain->getOpcode() != ISD::TokenFactor) 11040 return Result; // Fail. 11041 else { 11042 bool isOk = false; 11043 for (const SDValue &ChainOp : Chain->op_values()) 11044 if (ChainOp.getNode() == LD) { 11045 isOk = true; 11046 break; 11047 } 11048 if (!isOk) return Result; 11049 } 11050 11051 // This only handles simple types. 11052 if (V.getValueType() != MVT::i16 && 11053 V.getValueType() != MVT::i32 && 11054 V.getValueType() != MVT::i64) 11055 return Result; 11056 11057 // Check the constant mask. Invert it so that the bits being masked out are 11058 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits 11059 // follow the sign bit for uniformity. 11060 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue(); 11061 unsigned NotMaskLZ = countLeadingZeros(NotMask); 11062 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte. 11063 unsigned NotMaskTZ = countTrailingZeros(NotMask); 11064 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte. 11065 if (NotMaskLZ == 64) return Result; // All zero mask. 11066 11067 // See if we have a continuous run of bits. If so, we have 0*1+0* 11068 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) 11069 return Result; 11070 11071 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64. 11072 if (V.getValueType() != MVT::i64 && NotMaskLZ) 11073 NotMaskLZ -= 64-V.getValueSizeInBits(); 11074 11075 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; 11076 switch (MaskedBytes) { 11077 case 1: 11078 case 2: 11079 case 4: break; 11080 default: return Result; // All one mask, or 5-byte mask. 11081 } 11082 11083 // Verify that the first bit starts at a multiple of mask so that the access 11084 // is aligned the same as the access width. 11085 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result; 11086 11087 Result.first = MaskedBytes; 11088 Result.second = NotMaskTZ/8; 11089 return Result; 11090 } 11091 11092 11093 /// Check to see if IVal is something that provides a value as specified by 11094 /// MaskInfo. If so, replace the specified store with a narrower store of 11095 /// truncated IVal. 11096 static SDNode * 11097 ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo, 11098 SDValue IVal, StoreSDNode *St, 11099 DAGCombiner *DC) { 11100 unsigned NumBytes = MaskInfo.first; 11101 unsigned ByteShift = MaskInfo.second; 11102 SelectionDAG &DAG = DC->getDAG(); 11103 11104 // Check to see if IVal is all zeros in the part being masked in by the 'or' 11105 // that uses this. If not, this is not a replacement. 11106 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(), 11107 ByteShift*8, (ByteShift+NumBytes)*8); 11108 if (!DAG.MaskedValueIsZero(IVal, Mask)) return nullptr; 11109 11110 // Check that it is legal on the target to do this. It is legal if the new 11111 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type 11112 // legalization. 11113 MVT VT = MVT::getIntegerVT(NumBytes*8); 11114 if (!DC->isTypeLegal(VT)) 11115 return nullptr; 11116 11117 // Okay, we can do this! Replace the 'St' store with a store of IVal that is 11118 // shifted by ByteShift and truncated down to NumBytes. 11119 if (ByteShift) { 11120 SDLoc DL(IVal); 11121 IVal = DAG.getNode(ISD::SRL, DL, IVal.getValueType(), IVal, 11122 DAG.getConstant(ByteShift*8, DL, 11123 DC->getShiftAmountTy(IVal.getValueType()))); 11124 } 11125 11126 // Figure out the offset for the store and the alignment of the access. 11127 unsigned StOffset; 11128 unsigned NewAlign = St->getAlignment(); 11129 11130 if (DAG.getDataLayout().isLittleEndian()) 11131 StOffset = ByteShift; 11132 else 11133 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; 11134 11135 SDValue Ptr = St->getBasePtr(); 11136 if (StOffset) { 11137 SDLoc DL(IVal); 11138 Ptr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), 11139 Ptr, DAG.getConstant(StOffset, DL, Ptr.getValueType())); 11140 NewAlign = MinAlign(NewAlign, StOffset); 11141 } 11142 11143 // Truncate down to the new size. 11144 IVal = DAG.getNode(ISD::TRUNCATE, SDLoc(IVal), VT, IVal); 11145 11146 ++OpsNarrowed; 11147 return DAG 11148 .getStore(St->getChain(), SDLoc(St), IVal, Ptr, 11149 St->getPointerInfo().getWithOffset(StOffset), NewAlign) 11150 .getNode(); 11151 } 11152 11153 11154 /// Look for sequence of load / op / store where op is one of 'or', 'xor', and 11155 /// 'and' of immediates. If 'op' is only touching some of the loaded bits, try 11156 /// narrowing the load and store if it would end up being a win for performance 11157 /// or code size. 11158 SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) { 11159 StoreSDNode *ST = cast<StoreSDNode>(N); 11160 if (ST->isVolatile()) 11161 return SDValue(); 11162 11163 SDValue Chain = ST->getChain(); 11164 SDValue Value = ST->getValue(); 11165 SDValue Ptr = ST->getBasePtr(); 11166 EVT VT = Value.getValueType(); 11167 11168 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse()) 11169 return SDValue(); 11170 11171 unsigned Opc = Value.getOpcode(); 11172 11173 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst 11174 // is a byte mask indicating a consecutive number of bytes, check to see if 11175 // Y is known to provide just those bytes. If so, we try to replace the 11176 // load + replace + store sequence with a single (narrower) store, which makes 11177 // the load dead. 11178 if (Opc == ISD::OR) { 11179 std::pair<unsigned, unsigned> MaskedLoad; 11180 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain); 11181 if (MaskedLoad.first) 11182 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad, 11183 Value.getOperand(1), ST,this)) 11184 return SDValue(NewST, 0); 11185 11186 // Or is commutative, so try swapping X and Y. 11187 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain); 11188 if (MaskedLoad.first) 11189 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad, 11190 Value.getOperand(0), ST,this)) 11191 return SDValue(NewST, 0); 11192 } 11193 11194 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) || 11195 Value.getOperand(1).getOpcode() != ISD::Constant) 11196 return SDValue(); 11197 11198 SDValue N0 = Value.getOperand(0); 11199 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() && 11200 Chain == SDValue(N0.getNode(), 1)) { 11201 LoadSDNode *LD = cast<LoadSDNode>(N0); 11202 if (LD->getBasePtr() != Ptr || 11203 LD->getPointerInfo().getAddrSpace() != 11204 ST->getPointerInfo().getAddrSpace()) 11205 return SDValue(); 11206 11207 // Find the type to narrow it the load / op / store to. 11208 SDValue N1 = Value.getOperand(1); 11209 unsigned BitWidth = N1.getValueSizeInBits(); 11210 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue(); 11211 if (Opc == ISD::AND) 11212 Imm ^= APInt::getAllOnesValue(BitWidth); 11213 if (Imm == 0 || Imm.isAllOnesValue()) 11214 return SDValue(); 11215 unsigned ShAmt = Imm.countTrailingZeros(); 11216 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1; 11217 unsigned NewBW = NextPowerOf2(MSB - ShAmt); 11218 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); 11219 // The narrowing should be profitable, the load/store operation should be 11220 // legal (or custom) and the store size should be equal to the NewVT width. 11221 while (NewBW < BitWidth && 11222 (NewVT.getStoreSizeInBits() != NewBW || 11223 !TLI.isOperationLegalOrCustom(Opc, NewVT) || 11224 !TLI.isNarrowingProfitable(VT, NewVT))) { 11225 NewBW = NextPowerOf2(NewBW); 11226 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); 11227 } 11228 if (NewBW >= BitWidth) 11229 return SDValue(); 11230 11231 // If the lsb changed does not start at the type bitwidth boundary, 11232 // start at the previous one. 11233 if (ShAmt % NewBW) 11234 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW; 11235 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, 11236 std::min(BitWidth, ShAmt + NewBW)); 11237 if ((Imm & Mask) == Imm) { 11238 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW); 11239 if (Opc == ISD::AND) 11240 NewImm ^= APInt::getAllOnesValue(NewBW); 11241 uint64_t PtrOff = ShAmt / 8; 11242 // For big endian targets, we need to adjust the offset to the pointer to 11243 // load the correct bytes. 11244 if (DAG.getDataLayout().isBigEndian()) 11245 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff; 11246 11247 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff); 11248 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext()); 11249 if (NewAlign < DAG.getDataLayout().getABITypeAlignment(NewVTTy)) 11250 return SDValue(); 11251 11252 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LD), 11253 Ptr.getValueType(), Ptr, 11254 DAG.getConstant(PtrOff, SDLoc(LD), 11255 Ptr.getValueType())); 11256 SDValue NewLD = 11257 DAG.getLoad(NewVT, SDLoc(N0), LD->getChain(), NewPtr, 11258 LD->getPointerInfo().getWithOffset(PtrOff), NewAlign, 11259 LD->getMemOperand()->getFlags(), LD->getAAInfo()); 11260 SDValue NewVal = DAG.getNode(Opc, SDLoc(Value), NewVT, NewLD, 11261 DAG.getConstant(NewImm, SDLoc(Value), 11262 NewVT)); 11263 SDValue NewST = 11264 DAG.getStore(Chain, SDLoc(N), NewVal, NewPtr, 11265 ST->getPointerInfo().getWithOffset(PtrOff), NewAlign); 11266 11267 AddToWorklist(NewPtr.getNode()); 11268 AddToWorklist(NewLD.getNode()); 11269 AddToWorklist(NewVal.getNode()); 11270 WorklistRemover DeadNodes(*this); 11271 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1)); 11272 ++OpsNarrowed; 11273 return NewST; 11274 } 11275 } 11276 11277 return SDValue(); 11278 } 11279 11280 /// For a given floating point load / store pair, if the load value isn't used 11281 /// by any other operations, then consider transforming the pair to integer 11282 /// load / store operations if the target deems the transformation profitable. 11283 SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) { 11284 StoreSDNode *ST = cast<StoreSDNode>(N); 11285 SDValue Chain = ST->getChain(); 11286 SDValue Value = ST->getValue(); 11287 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) && 11288 Value.hasOneUse() && 11289 Chain == SDValue(Value.getNode(), 1)) { 11290 LoadSDNode *LD = cast<LoadSDNode>(Value); 11291 EVT VT = LD->getMemoryVT(); 11292 if (!VT.isFloatingPoint() || 11293 VT != ST->getMemoryVT() || 11294 LD->isNonTemporal() || 11295 ST->isNonTemporal() || 11296 LD->getPointerInfo().getAddrSpace() != 0 || 11297 ST->getPointerInfo().getAddrSpace() != 0) 11298 return SDValue(); 11299 11300 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits()); 11301 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) || 11302 !TLI.isOperationLegal(ISD::STORE, IntVT) || 11303 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) || 11304 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT)) 11305 return SDValue(); 11306 11307 unsigned LDAlign = LD->getAlignment(); 11308 unsigned STAlign = ST->getAlignment(); 11309 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext()); 11310 unsigned ABIAlign = DAG.getDataLayout().getABITypeAlignment(IntVTTy); 11311 if (LDAlign < ABIAlign || STAlign < ABIAlign) 11312 return SDValue(); 11313 11314 SDValue NewLD = 11315 DAG.getLoad(IntVT, SDLoc(Value), LD->getChain(), LD->getBasePtr(), 11316 LD->getPointerInfo(), LDAlign); 11317 11318 SDValue NewST = 11319 DAG.getStore(NewLD.getValue(1), SDLoc(N), NewLD, ST->getBasePtr(), 11320 ST->getPointerInfo(), STAlign); 11321 11322 AddToWorklist(NewLD.getNode()); 11323 AddToWorklist(NewST.getNode()); 11324 WorklistRemover DeadNodes(*this); 11325 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1)); 11326 ++LdStFP2Int; 11327 return NewST; 11328 } 11329 11330 return SDValue(); 11331 } 11332 11333 // This is a helper function for visitMUL to check the profitability 11334 // of folding (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2). 11335 // MulNode is the original multiply, AddNode is (add x, c1), 11336 // and ConstNode is c2. 11337 // 11338 // If the (add x, c1) has multiple uses, we could increase 11339 // the number of adds if we make this transformation. 11340 // It would only be worth doing this if we can remove a 11341 // multiply in the process. Check for that here. 11342 // To illustrate: 11343 // (A + c1) * c3 11344 // (A + c2) * c3 11345 // We're checking for cases where we have common "c3 * A" expressions. 11346 bool DAGCombiner::isMulAddWithConstProfitable(SDNode *MulNode, 11347 SDValue &AddNode, 11348 SDValue &ConstNode) { 11349 APInt Val; 11350 11351 // If the add only has one use, this would be OK to do. 11352 if (AddNode.getNode()->hasOneUse()) 11353 return true; 11354 11355 // Walk all the users of the constant with which we're multiplying. 11356 for (SDNode *Use : ConstNode->uses()) { 11357 11358 if (Use == MulNode) // This use is the one we're on right now. Skip it. 11359 continue; 11360 11361 if (Use->getOpcode() == ISD::MUL) { // We have another multiply use. 11362 SDNode *OtherOp; 11363 SDNode *MulVar = AddNode.getOperand(0).getNode(); 11364 11365 // OtherOp is what we're multiplying against the constant. 11366 if (Use->getOperand(0) == ConstNode) 11367 OtherOp = Use->getOperand(1).getNode(); 11368 else 11369 OtherOp = Use->getOperand(0).getNode(); 11370 11371 // Check to see if multiply is with the same operand of our "add". 11372 // 11373 // ConstNode = CONST 11374 // Use = ConstNode * A <-- visiting Use. OtherOp is A. 11375 // ... 11376 // AddNode = (A + c1) <-- MulVar is A. 11377 // = AddNode * ConstNode <-- current visiting instruction. 11378 // 11379 // If we make this transformation, we will have a common 11380 // multiply (ConstNode * A) that we can save. 11381 if (OtherOp == MulVar) 11382 return true; 11383 11384 // Now check to see if a future expansion will give us a common 11385 // multiply. 11386 // 11387 // ConstNode = CONST 11388 // AddNode = (A + c1) 11389 // ... = AddNode * ConstNode <-- current visiting instruction. 11390 // ... 11391 // OtherOp = (A + c2) 11392 // Use = OtherOp * ConstNode <-- visiting Use. 11393 // 11394 // If we make this transformation, we will have a common 11395 // multiply (CONST * A) after we also do the same transformation 11396 // to the "t2" instruction. 11397 if (OtherOp->getOpcode() == ISD::ADD && 11398 DAG.isConstantIntBuildVectorOrConstantInt(OtherOp->getOperand(1)) && 11399 OtherOp->getOperand(0).getNode() == MulVar) 11400 return true; 11401 } 11402 } 11403 11404 // Didn't find a case where this would be profitable. 11405 return false; 11406 } 11407 11408 SDValue DAGCombiner::getMergedConstantVectorStore( 11409 SelectionDAG &DAG, const SDLoc &SL, ArrayRef<MemOpLink> Stores, 11410 SmallVectorImpl<SDValue> &Chains, EVT Ty) const { 11411 SmallVector<SDValue, 8> BuildVector; 11412 11413 for (unsigned I = 0, E = Ty.getVectorNumElements(); I != E; ++I) { 11414 StoreSDNode *St = cast<StoreSDNode>(Stores[I].MemNode); 11415 Chains.push_back(St->getChain()); 11416 BuildVector.push_back(St->getValue()); 11417 } 11418 11419 return DAG.getBuildVector(Ty, SL, BuildVector); 11420 } 11421 11422 bool DAGCombiner::MergeStoresOfConstantsOrVecElts( 11423 SmallVectorImpl<MemOpLink> &StoreNodes, EVT MemVT, 11424 unsigned NumStores, bool IsConstantSrc, bool UseVector) { 11425 // Make sure we have something to merge. 11426 if (NumStores < 2) 11427 return false; 11428 11429 int64_t ElementSizeBytes = MemVT.getSizeInBits() / 8; 11430 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode; 11431 unsigned LatestNodeUsed = 0; 11432 11433 for (unsigned i=0; i < NumStores; ++i) { 11434 // Find a chain for the new wide-store operand. Notice that some 11435 // of the store nodes that we found may not be selected for inclusion 11436 // in the wide store. The chain we use needs to be the chain of the 11437 // latest store node which is *used* and replaced by the wide store. 11438 if (StoreNodes[i].SequenceNum < StoreNodes[LatestNodeUsed].SequenceNum) 11439 LatestNodeUsed = i; 11440 } 11441 11442 SmallVector<SDValue, 8> Chains; 11443 11444 // The latest Node in the DAG. 11445 LSBaseSDNode *LatestOp = StoreNodes[LatestNodeUsed].MemNode; 11446 SDLoc DL(StoreNodes[0].MemNode); 11447 11448 SDValue StoredVal; 11449 if (UseVector) { 11450 bool IsVec = MemVT.isVector(); 11451 unsigned Elts = NumStores; 11452 if (IsVec) { 11453 // When merging vector stores, get the total number of elements. 11454 Elts *= MemVT.getVectorNumElements(); 11455 } 11456 // Get the type for the merged vector store. 11457 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(), Elts); 11458 assert(TLI.isTypeLegal(Ty) && "Illegal vector store"); 11459 11460 if (IsConstantSrc) { 11461 StoredVal = getMergedConstantVectorStore(DAG, DL, StoreNodes, Chains, Ty); 11462 } else { 11463 SmallVector<SDValue, 8> Ops; 11464 for (unsigned i = 0; i < NumStores; ++i) { 11465 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); 11466 SDValue Val = St->getValue(); 11467 // All operands of BUILD_VECTOR / CONCAT_VECTOR must have the same type. 11468 if (Val.getValueType() != MemVT) 11469 return false; 11470 Ops.push_back(Val); 11471 Chains.push_back(St->getChain()); 11472 } 11473 11474 // Build the extracted vector elements back into a vector. 11475 StoredVal = DAG.getNode(IsVec ? ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, 11476 DL, Ty, Ops); } 11477 } else { 11478 // We should always use a vector store when merging extracted vector 11479 // elements, so this path implies a store of constants. 11480 assert(IsConstantSrc && "Merged vector elements should use vector store"); 11481 11482 unsigned SizeInBits = NumStores * ElementSizeBytes * 8; 11483 APInt StoreInt(SizeInBits, 0); 11484 11485 // Construct a single integer constant which is made of the smaller 11486 // constant inputs. 11487 bool IsLE = DAG.getDataLayout().isLittleEndian(); 11488 for (unsigned i = 0; i < NumStores; ++i) { 11489 unsigned Idx = IsLE ? (NumStores - 1 - i) : i; 11490 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode); 11491 Chains.push_back(St->getChain()); 11492 11493 SDValue Val = St->getValue(); 11494 StoreInt <<= ElementSizeBytes * 8; 11495 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) { 11496 StoreInt |= C->getAPIntValue().zext(SizeInBits); 11497 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) { 11498 StoreInt |= C->getValueAPF().bitcastToAPInt().zext(SizeInBits); 11499 } else { 11500 llvm_unreachable("Invalid constant element type"); 11501 } 11502 } 11503 11504 // Create the new Load and Store operations. 11505 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), SizeInBits); 11506 StoredVal = DAG.getConstant(StoreInt, DL, StoreTy); 11507 } 11508 11509 assert(!Chains.empty()); 11510 11511 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains); 11512 SDValue NewStore = DAG.getStore(NewChain, DL, StoredVal, 11513 FirstInChain->getBasePtr(), 11514 FirstInChain->getPointerInfo(), 11515 FirstInChain->getAlignment()); 11516 11517 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA 11518 : DAG.getSubtarget().useAA(); 11519 if (UseAA) { 11520 // Replace all merged stores with the new store. 11521 for (unsigned i = 0; i < NumStores; ++i) 11522 CombineTo(StoreNodes[i].MemNode, NewStore); 11523 } else { 11524 // Replace the last store with the new store. 11525 CombineTo(LatestOp, NewStore); 11526 // Erase all other stores. 11527 for (unsigned i = 0; i < NumStores; ++i) { 11528 if (StoreNodes[i].MemNode == LatestOp) 11529 continue; 11530 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); 11531 // ReplaceAllUsesWith will replace all uses that existed when it was 11532 // called, but graph optimizations may cause new ones to appear. For 11533 // example, the case in pr14333 looks like 11534 // 11535 // St's chain -> St -> another store -> X 11536 // 11537 // And the only difference from St to the other store is the chain. 11538 // When we change it's chain to be St's chain they become identical, 11539 // get CSEed and the net result is that X is now a use of St. 11540 // Since we know that St is redundant, just iterate. 11541 while (!St->use_empty()) 11542 DAG.ReplaceAllUsesWith(SDValue(St, 0), St->getChain()); 11543 deleteAndRecombine(St); 11544 } 11545 } 11546 11547 StoreNodes.erase(StoreNodes.begin() + NumStores, StoreNodes.end()); 11548 return true; 11549 } 11550 11551 void DAGCombiner::getStoreMergeAndAliasCandidates( 11552 StoreSDNode* St, SmallVectorImpl<MemOpLink> &StoreNodes, 11553 SmallVectorImpl<LSBaseSDNode*> &AliasLoadNodes) { 11554 // This holds the base pointer, index, and the offset in bytes from the base 11555 // pointer. 11556 BaseIndexOffset BasePtr = BaseIndexOffset::match(St->getBasePtr(), DAG); 11557 11558 // We must have a base and an offset. 11559 if (!BasePtr.Base.getNode()) 11560 return; 11561 11562 // Do not handle stores to undef base pointers. 11563 if (BasePtr.Base.isUndef()) 11564 return; 11565 11566 // Walk up the chain and look for nodes with offsets from the same 11567 // base pointer. Stop when reaching an instruction with a different kind 11568 // or instruction which has a different base pointer. 11569 EVT MemVT = St->getMemoryVT(); 11570 unsigned Seq = 0; 11571 StoreSDNode *Index = St; 11572 11573 11574 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA 11575 : DAG.getSubtarget().useAA(); 11576 11577 if (UseAA) { 11578 // Look at other users of the same chain. Stores on the same chain do not 11579 // alias. If combiner-aa is enabled, non-aliasing stores are canonicalized 11580 // to be on the same chain, so don't bother looking at adjacent chains. 11581 11582 SDValue Chain = St->getChain(); 11583 for (auto I = Chain->use_begin(), E = Chain->use_end(); I != E; ++I) { 11584 if (StoreSDNode *OtherST = dyn_cast<StoreSDNode>(*I)) { 11585 if (I.getOperandNo() != 0) 11586 continue; 11587 11588 if (OtherST->isVolatile() || OtherST->isIndexed()) 11589 continue; 11590 11591 if (OtherST->getMemoryVT() != MemVT) 11592 continue; 11593 11594 BaseIndexOffset Ptr = BaseIndexOffset::match(OtherST->getBasePtr(), DAG); 11595 11596 if (Ptr.equalBaseIndex(BasePtr)) 11597 StoreNodes.push_back(MemOpLink(OtherST, Ptr.Offset, Seq++)); 11598 } 11599 } 11600 11601 return; 11602 } 11603 11604 while (Index) { 11605 // If the chain has more than one use, then we can't reorder the mem ops. 11606 if (Index != St && !SDValue(Index, 0)->hasOneUse()) 11607 break; 11608 11609 // Find the base pointer and offset for this memory node. 11610 BaseIndexOffset Ptr = BaseIndexOffset::match(Index->getBasePtr(), DAG); 11611 11612 // Check that the base pointer is the same as the original one. 11613 if (!Ptr.equalBaseIndex(BasePtr)) 11614 break; 11615 11616 // The memory operands must not be volatile. 11617 if (Index->isVolatile() || Index->isIndexed()) 11618 break; 11619 11620 // No truncation. 11621 if (Index->isTruncatingStore()) 11622 break; 11623 11624 // The stored memory type must be the same. 11625 if (Index->getMemoryVT() != MemVT) 11626 break; 11627 11628 // We do not allow under-aligned stores in order to prevent 11629 // overriding stores. NOTE: this is a bad hack. Alignment SHOULD 11630 // be irrelevant here; what MATTERS is that we not move memory 11631 // operations that potentially overlap past each-other. 11632 if (Index->getAlignment() < MemVT.getStoreSize()) 11633 break; 11634 11635 // We found a potential memory operand to merge. 11636 StoreNodes.push_back(MemOpLink(Index, Ptr.Offset, Seq++)); 11637 11638 // Find the next memory operand in the chain. If the next operand in the 11639 // chain is a store then move up and continue the scan with the next 11640 // memory operand. If the next operand is a load save it and use alias 11641 // information to check if it interferes with anything. 11642 SDNode *NextInChain = Index->getChain().getNode(); 11643 while (1) { 11644 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) { 11645 // We found a store node. Use it for the next iteration. 11646 Index = STn; 11647 break; 11648 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) { 11649 if (Ldn->isVolatile()) { 11650 Index = nullptr; 11651 break; 11652 } 11653 11654 // Save the load node for later. Continue the scan. 11655 AliasLoadNodes.push_back(Ldn); 11656 NextInChain = Ldn->getChain().getNode(); 11657 continue; 11658 } else { 11659 Index = nullptr; 11660 break; 11661 } 11662 } 11663 } 11664 } 11665 11666 // We need to check that merging these stores does not cause a loop 11667 // in the DAG. Any store candidate may depend on another candidate 11668 // indirectly through its operand (we already consider dependencies 11669 // through the chain). Check in parallel by searching up from 11670 // non-chain operands of candidates. 11671 bool DAGCombiner::checkMergeStoreCandidatesForDependencies( 11672 SmallVectorImpl<MemOpLink> &StoreNodes) { 11673 SmallPtrSet<const SDNode *, 16> Visited; 11674 SmallVector<const SDNode *, 8> Worklist; 11675 // search ops of store candidates 11676 for (unsigned i = 0; i < StoreNodes.size(); ++i) { 11677 SDNode *n = StoreNodes[i].MemNode; 11678 // Potential loops may happen only through non-chain operands 11679 for (unsigned j = 1; j < n->getNumOperands(); ++j) 11680 Worklist.push_back(n->getOperand(j).getNode()); 11681 } 11682 // search through DAG. We can stop early if we find a storenode 11683 for (unsigned i = 0; i < StoreNodes.size(); ++i) { 11684 if (SDNode::hasPredecessorHelper(StoreNodes[i].MemNode, Visited, Worklist)) 11685 return false; 11686 } 11687 return true; 11688 } 11689 11690 bool DAGCombiner::MergeConsecutiveStores( 11691 StoreSDNode* St, SmallVectorImpl<MemOpLink> &StoreNodes) { 11692 if (OptLevel == CodeGenOpt::None) 11693 return false; 11694 11695 EVT MemVT = St->getMemoryVT(); 11696 int64_t ElementSizeBytes = MemVT.getSizeInBits() / 8; 11697 bool NoVectors = DAG.getMachineFunction().getFunction()->hasFnAttribute( 11698 Attribute::NoImplicitFloat); 11699 11700 // This function cannot currently deal with non-byte-sized memory sizes. 11701 if (ElementSizeBytes * 8 != MemVT.getSizeInBits()) 11702 return false; 11703 11704 if (!MemVT.isSimple()) 11705 return false; 11706 11707 // Perform an early exit check. Do not bother looking at stored values that 11708 // are not constants, loads, or extracted vector elements. 11709 SDValue StoredVal = St->getValue(); 11710 bool IsLoadSrc = isa<LoadSDNode>(StoredVal); 11711 bool IsConstantSrc = isa<ConstantSDNode>(StoredVal) || 11712 isa<ConstantFPSDNode>(StoredVal); 11713 bool IsExtractVecSrc = (StoredVal.getOpcode() == ISD::EXTRACT_VECTOR_ELT || 11714 StoredVal.getOpcode() == ISD::EXTRACT_SUBVECTOR); 11715 11716 if (!IsConstantSrc && !IsLoadSrc && !IsExtractVecSrc) 11717 return false; 11718 11719 // Don't merge vectors into wider vectors if the source data comes from loads. 11720 // TODO: This restriction can be lifted by using logic similar to the 11721 // ExtractVecSrc case. 11722 if (MemVT.isVector() && IsLoadSrc) 11723 return false; 11724 11725 // Only look at ends of store sequences. 11726 SDValue Chain = SDValue(St, 0); 11727 if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE) 11728 return false; 11729 11730 // Save the LoadSDNodes that we find in the chain. 11731 // We need to make sure that these nodes do not interfere with 11732 // any of the store nodes. 11733 SmallVector<LSBaseSDNode*, 8> AliasLoadNodes; 11734 11735 getStoreMergeAndAliasCandidates(St, StoreNodes, AliasLoadNodes); 11736 11737 // Check if there is anything to merge. 11738 if (StoreNodes.size() < 2) 11739 return false; 11740 11741 // only do dependence check in AA case 11742 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA 11743 : DAG.getSubtarget().useAA(); 11744 if (UseAA && !checkMergeStoreCandidatesForDependencies(StoreNodes)) 11745 return false; 11746 11747 // Sort the memory operands according to their distance from the 11748 // base pointer. As a secondary criteria: make sure stores coming 11749 // later in the code come first in the list. This is important for 11750 // the non-UseAA case, because we're merging stores into the FINAL 11751 // store along a chain which potentially contains aliasing stores. 11752 // Thus, if there are multiple stores to the same address, the last 11753 // one can be considered for merging but not the others. 11754 std::sort(StoreNodes.begin(), StoreNodes.end(), 11755 [](MemOpLink LHS, MemOpLink RHS) { 11756 return LHS.OffsetFromBase < RHS.OffsetFromBase || 11757 (LHS.OffsetFromBase == RHS.OffsetFromBase && 11758 LHS.SequenceNum < RHS.SequenceNum); 11759 }); 11760 11761 // Scan the memory operations on the chain and find the first non-consecutive 11762 // store memory address. 11763 unsigned LastConsecutiveStore = 0; 11764 int64_t StartAddress = StoreNodes[0].OffsetFromBase; 11765 for (unsigned i = 0, e = StoreNodes.size(); i < e; ++i) { 11766 11767 // Check that the addresses are consecutive starting from the second 11768 // element in the list of stores. 11769 if (i > 0) { 11770 int64_t CurrAddress = StoreNodes[i].OffsetFromBase; 11771 if (CurrAddress - StartAddress != (ElementSizeBytes * i)) 11772 break; 11773 } 11774 11775 // Check if this store interferes with any of the loads that we found. 11776 // If we find a load that alias with this store. Stop the sequence. 11777 if (any_of(AliasLoadNodes, [&](LSBaseSDNode *Ldn) { 11778 return isAlias(Ldn, StoreNodes[i].MemNode); 11779 })) 11780 break; 11781 11782 // Mark this node as useful. 11783 LastConsecutiveStore = i; 11784 } 11785 11786 // The node with the lowest store address. 11787 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode; 11788 unsigned FirstStoreAS = FirstInChain->getAddressSpace(); 11789 unsigned FirstStoreAlign = FirstInChain->getAlignment(); 11790 LLVMContext &Context = *DAG.getContext(); 11791 const DataLayout &DL = DAG.getDataLayout(); 11792 11793 // Store the constants into memory as one consecutive store. 11794 if (IsConstantSrc) { 11795 unsigned LastLegalType = 0; 11796 unsigned LastLegalVectorType = 0; 11797 bool NonZero = false; 11798 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) { 11799 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); 11800 SDValue StoredVal = St->getValue(); 11801 11802 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) { 11803 NonZero |= !C->isNullValue(); 11804 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) { 11805 NonZero |= !C->getConstantFPValue()->isNullValue(); 11806 } else { 11807 // Non-constant. 11808 break; 11809 } 11810 11811 // Find a legal type for the constant store. 11812 unsigned SizeInBits = (i+1) * ElementSizeBytes * 8; 11813 EVT StoreTy = EVT::getIntegerVT(Context, SizeInBits); 11814 bool IsFast; 11815 if (TLI.isTypeLegal(StoreTy) && 11816 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstStoreAS, 11817 FirstStoreAlign, &IsFast) && IsFast) { 11818 LastLegalType = i+1; 11819 // Or check whether a truncstore is legal. 11820 } else if (TLI.getTypeAction(Context, StoreTy) == 11821 TargetLowering::TypePromoteInteger) { 11822 EVT LegalizedStoredValueTy = 11823 TLI.getTypeToTransformTo(Context, StoredVal.getValueType()); 11824 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy) && 11825 TLI.allowsMemoryAccess(Context, DL, LegalizedStoredValueTy, 11826 FirstStoreAS, FirstStoreAlign, &IsFast) && 11827 IsFast) { 11828 LastLegalType = i + 1; 11829 } 11830 } 11831 11832 // We only use vectors if the constant is known to be zero or the target 11833 // allows it and the function is not marked with the noimplicitfloat 11834 // attribute. 11835 if ((!NonZero || TLI.storeOfVectorConstantIsCheap(MemVT, i+1, 11836 FirstStoreAS)) && 11837 !NoVectors) { 11838 // Find a legal type for the vector store. 11839 EVT Ty = EVT::getVectorVT(Context, MemVT, i+1); 11840 if (TLI.isTypeLegal(Ty) && 11841 TLI.allowsMemoryAccess(Context, DL, Ty, FirstStoreAS, 11842 FirstStoreAlign, &IsFast) && IsFast) 11843 LastLegalVectorType = i + 1; 11844 } 11845 } 11846 11847 // Check if we found a legal integer type to store. 11848 if (LastLegalType == 0 && LastLegalVectorType == 0) 11849 return false; 11850 11851 bool UseVector = (LastLegalVectorType > LastLegalType) && !NoVectors; 11852 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType; 11853 11854 return MergeStoresOfConstantsOrVecElts(StoreNodes, MemVT, NumElem, 11855 true, UseVector); 11856 } 11857 11858 // When extracting multiple vector elements, try to store them 11859 // in one vector store rather than a sequence of scalar stores. 11860 if (IsExtractVecSrc) { 11861 unsigned NumStoresToMerge = 0; 11862 bool IsVec = MemVT.isVector(); 11863 for (unsigned i = 0; i < LastConsecutiveStore + 1; ++i) { 11864 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); 11865 unsigned StoreValOpcode = St->getValue().getOpcode(); 11866 // This restriction could be loosened. 11867 // Bail out if any stored values are not elements extracted from a vector. 11868 // It should be possible to handle mixed sources, but load sources need 11869 // more careful handling (see the block of code below that handles 11870 // consecutive loads). 11871 if (StoreValOpcode != ISD::EXTRACT_VECTOR_ELT && 11872 StoreValOpcode != ISD::EXTRACT_SUBVECTOR) 11873 return false; 11874 11875 // Find a legal type for the vector store. 11876 unsigned Elts = i + 1; 11877 if (IsVec) { 11878 // When merging vector stores, get the total number of elements. 11879 Elts *= MemVT.getVectorNumElements(); 11880 } 11881 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(), Elts); 11882 bool IsFast; 11883 if (TLI.isTypeLegal(Ty) && 11884 TLI.allowsMemoryAccess(Context, DL, Ty, FirstStoreAS, 11885 FirstStoreAlign, &IsFast) && IsFast) 11886 NumStoresToMerge = i + 1; 11887 } 11888 11889 return MergeStoresOfConstantsOrVecElts(StoreNodes, MemVT, NumStoresToMerge, 11890 false, true); 11891 } 11892 11893 // Below we handle the case of multiple consecutive stores that 11894 // come from multiple consecutive loads. We merge them into a single 11895 // wide load and a single wide store. 11896 11897 // Look for load nodes which are used by the stored values. 11898 SmallVector<MemOpLink, 8> LoadNodes; 11899 11900 // Find acceptable loads. Loads need to have the same chain (token factor), 11901 // must not be zext, volatile, indexed, and they must be consecutive. 11902 BaseIndexOffset LdBasePtr; 11903 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) { 11904 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); 11905 LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue()); 11906 if (!Ld) break; 11907 11908 // Loads must only have one use. 11909 if (!Ld->hasNUsesOfValue(1, 0)) 11910 break; 11911 11912 // The memory operands must not be volatile. 11913 if (Ld->isVolatile() || Ld->isIndexed()) 11914 break; 11915 11916 // We do not accept ext loads. 11917 if (Ld->getExtensionType() != ISD::NON_EXTLOAD) 11918 break; 11919 11920 // The stored memory type must be the same. 11921 if (Ld->getMemoryVT() != MemVT) 11922 break; 11923 11924 BaseIndexOffset LdPtr = BaseIndexOffset::match(Ld->getBasePtr(), DAG); 11925 // If this is not the first ptr that we check. 11926 if (LdBasePtr.Base.getNode()) { 11927 // The base ptr must be the same. 11928 if (!LdPtr.equalBaseIndex(LdBasePtr)) 11929 break; 11930 } else { 11931 // Check that all other base pointers are the same as this one. 11932 LdBasePtr = LdPtr; 11933 } 11934 11935 // We found a potential memory operand to merge. 11936 LoadNodes.push_back(MemOpLink(Ld, LdPtr.Offset, 0)); 11937 } 11938 11939 if (LoadNodes.size() < 2) 11940 return false; 11941 11942 // If we have load/store pair instructions and we only have two values, 11943 // don't bother. 11944 unsigned RequiredAlignment; 11945 if (LoadNodes.size() == 2 && TLI.hasPairedLoad(MemVT, RequiredAlignment) && 11946 St->getAlignment() >= RequiredAlignment) 11947 return false; 11948 11949 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode); 11950 unsigned FirstLoadAS = FirstLoad->getAddressSpace(); 11951 unsigned FirstLoadAlign = FirstLoad->getAlignment(); 11952 11953 // Scan the memory operations on the chain and find the first non-consecutive 11954 // load memory address. These variables hold the index in the store node 11955 // array. 11956 unsigned LastConsecutiveLoad = 0; 11957 // This variable refers to the size and not index in the array. 11958 unsigned LastLegalVectorType = 0; 11959 unsigned LastLegalIntegerType = 0; 11960 StartAddress = LoadNodes[0].OffsetFromBase; 11961 SDValue FirstChain = FirstLoad->getChain(); 11962 for (unsigned i = 1; i < LoadNodes.size(); ++i) { 11963 // All loads must share the same chain. 11964 if (LoadNodes[i].MemNode->getChain() != FirstChain) 11965 break; 11966 11967 int64_t CurrAddress = LoadNodes[i].OffsetFromBase; 11968 if (CurrAddress - StartAddress != (ElementSizeBytes * i)) 11969 break; 11970 LastConsecutiveLoad = i; 11971 // Find a legal type for the vector store. 11972 EVT StoreTy = EVT::getVectorVT(Context, MemVT, i+1); 11973 bool IsFastSt, IsFastLd; 11974 if (TLI.isTypeLegal(StoreTy) && 11975 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstStoreAS, 11976 FirstStoreAlign, &IsFastSt) && IsFastSt && 11977 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstLoadAS, 11978 FirstLoadAlign, &IsFastLd) && IsFastLd) { 11979 LastLegalVectorType = i + 1; 11980 } 11981 11982 // Find a legal type for the integer store. 11983 unsigned SizeInBits = (i+1) * ElementSizeBytes * 8; 11984 StoreTy = EVT::getIntegerVT(Context, SizeInBits); 11985 if (TLI.isTypeLegal(StoreTy) && 11986 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstStoreAS, 11987 FirstStoreAlign, &IsFastSt) && IsFastSt && 11988 TLI.allowsMemoryAccess(Context, DL, StoreTy, FirstLoadAS, 11989 FirstLoadAlign, &IsFastLd) && IsFastLd) 11990 LastLegalIntegerType = i + 1; 11991 // Or check whether a truncstore and extload is legal. 11992 else if (TLI.getTypeAction(Context, StoreTy) == 11993 TargetLowering::TypePromoteInteger) { 11994 EVT LegalizedStoredValueTy = 11995 TLI.getTypeToTransformTo(Context, StoreTy); 11996 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy) && 11997 TLI.isLoadExtLegal(ISD::ZEXTLOAD, LegalizedStoredValueTy, StoreTy) && 11998 TLI.isLoadExtLegal(ISD::SEXTLOAD, LegalizedStoredValueTy, StoreTy) && 11999 TLI.isLoadExtLegal(ISD::EXTLOAD, LegalizedStoredValueTy, StoreTy) && 12000 TLI.allowsMemoryAccess(Context, DL, LegalizedStoredValueTy, 12001 FirstStoreAS, FirstStoreAlign, &IsFastSt) && 12002 IsFastSt && 12003 TLI.allowsMemoryAccess(Context, DL, LegalizedStoredValueTy, 12004 FirstLoadAS, FirstLoadAlign, &IsFastLd) && 12005 IsFastLd) 12006 LastLegalIntegerType = i+1; 12007 } 12008 } 12009 12010 // Only use vector types if the vector type is larger than the integer type. 12011 // If they are the same, use integers. 12012 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType && !NoVectors; 12013 unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType); 12014 12015 // We add +1 here because the LastXXX variables refer to location while 12016 // the NumElem refers to array/index size. 12017 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1; 12018 NumElem = std::min(LastLegalType, NumElem); 12019 12020 if (NumElem < 2) 12021 return false; 12022 12023 // Collect the chains from all merged stores. 12024 SmallVector<SDValue, 8> MergeStoreChains; 12025 MergeStoreChains.push_back(StoreNodes[0].MemNode->getChain()); 12026 12027 // The latest Node in the DAG. 12028 unsigned LatestNodeUsed = 0; 12029 for (unsigned i=1; i<NumElem; ++i) { 12030 // Find a chain for the new wide-store operand. Notice that some 12031 // of the store nodes that we found may not be selected for inclusion 12032 // in the wide store. The chain we use needs to be the chain of the 12033 // latest store node which is *used* and replaced by the wide store. 12034 if (StoreNodes[i].SequenceNum < StoreNodes[LatestNodeUsed].SequenceNum) 12035 LatestNodeUsed = i; 12036 12037 MergeStoreChains.push_back(StoreNodes[i].MemNode->getChain()); 12038 } 12039 12040 LSBaseSDNode *LatestOp = StoreNodes[LatestNodeUsed].MemNode; 12041 12042 // Find if it is better to use vectors or integers to load and store 12043 // to memory. 12044 EVT JointMemOpVT; 12045 if (UseVectorTy) { 12046 JointMemOpVT = EVT::getVectorVT(Context, MemVT, NumElem); 12047 } else { 12048 unsigned SizeInBits = NumElem * ElementSizeBytes * 8; 12049 JointMemOpVT = EVT::getIntegerVT(Context, SizeInBits); 12050 } 12051 12052 SDLoc LoadDL(LoadNodes[0].MemNode); 12053 SDLoc StoreDL(StoreNodes[0].MemNode); 12054 12055 // The merged loads are required to have the same incoming chain, so 12056 // using the first's chain is acceptable. 12057 SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL, FirstLoad->getChain(), 12058 FirstLoad->getBasePtr(), 12059 FirstLoad->getPointerInfo(), FirstLoadAlign); 12060 12061 SDValue NewStoreChain = 12062 DAG.getNode(ISD::TokenFactor, StoreDL, MVT::Other, MergeStoreChains); 12063 12064 SDValue NewStore = 12065 DAG.getStore(NewStoreChain, StoreDL, NewLoad, FirstInChain->getBasePtr(), 12066 FirstInChain->getPointerInfo(), FirstStoreAlign); 12067 12068 // Transfer chain users from old loads to the new load. 12069 for (unsigned i = 0; i < NumElem; ++i) { 12070 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode); 12071 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), 12072 SDValue(NewLoad.getNode(), 1)); 12073 } 12074 12075 if (UseAA) { 12076 // Replace the all stores with the new store. 12077 for (unsigned i = 0; i < NumElem; ++i) 12078 CombineTo(StoreNodes[i].MemNode, NewStore); 12079 } else { 12080 // Replace the last store with the new store. 12081 CombineTo(LatestOp, NewStore); 12082 // Erase all other stores. 12083 for (unsigned i = 0; i < NumElem; ++i) { 12084 // Remove all Store nodes. 12085 if (StoreNodes[i].MemNode == LatestOp) 12086 continue; 12087 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode); 12088 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain()); 12089 deleteAndRecombine(St); 12090 } 12091 } 12092 12093 StoreNodes.erase(StoreNodes.begin() + NumElem, StoreNodes.end()); 12094 return true; 12095 } 12096 12097 SDValue DAGCombiner::replaceStoreChain(StoreSDNode *ST, SDValue BetterChain) { 12098 SDLoc SL(ST); 12099 SDValue ReplStore; 12100 12101 // Replace the chain to avoid dependency. 12102 if (ST->isTruncatingStore()) { 12103 ReplStore = DAG.getTruncStore(BetterChain, SL, ST->getValue(), 12104 ST->getBasePtr(), ST->getMemoryVT(), 12105 ST->getMemOperand()); 12106 } else { 12107 ReplStore = DAG.getStore(BetterChain, SL, ST->getValue(), ST->getBasePtr(), 12108 ST->getMemOperand()); 12109 } 12110 12111 // Create token to keep both nodes around. 12112 SDValue Token = DAG.getNode(ISD::TokenFactor, SL, 12113 MVT::Other, ST->getChain(), ReplStore); 12114 12115 // Make sure the new and old chains are cleaned up. 12116 AddToWorklist(Token.getNode()); 12117 12118 // Don't add users to work list. 12119 return CombineTo(ST, Token, false); 12120 } 12121 12122 SDValue DAGCombiner::replaceStoreOfFPConstant(StoreSDNode *ST) { 12123 SDValue Value = ST->getValue(); 12124 if (Value.getOpcode() == ISD::TargetConstantFP) 12125 return SDValue(); 12126 12127 SDLoc DL(ST); 12128 12129 SDValue Chain = ST->getChain(); 12130 SDValue Ptr = ST->getBasePtr(); 12131 12132 const ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Value); 12133 12134 // NOTE: If the original store is volatile, this transform must not increase 12135 // the number of stores. For example, on x86-32 an f64 can be stored in one 12136 // processor operation but an i64 (which is not legal) requires two. So the 12137 // transform should not be done in this case. 12138 12139 SDValue Tmp; 12140 switch (CFP->getSimpleValueType(0).SimpleTy) { 12141 default: 12142 llvm_unreachable("Unknown FP type"); 12143 case MVT::f16: // We don't do this for these yet. 12144 case MVT::f80: 12145 case MVT::f128: 12146 case MVT::ppcf128: 12147 return SDValue(); 12148 case MVT::f32: 12149 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) || 12150 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) { 12151 ; 12152 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF(). 12153 bitcastToAPInt().getZExtValue(), SDLoc(CFP), 12154 MVT::i32); 12155 return DAG.getStore(Chain, DL, Tmp, Ptr, ST->getMemOperand()); 12156 } 12157 12158 return SDValue(); 12159 case MVT::f64: 12160 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations && 12161 !ST->isVolatile()) || 12162 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) { 12163 ; 12164 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt(). 12165 getZExtValue(), SDLoc(CFP), MVT::i64); 12166 return DAG.getStore(Chain, DL, Tmp, 12167 Ptr, ST->getMemOperand()); 12168 } 12169 12170 if (!ST->isVolatile() && 12171 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) { 12172 // Many FP stores are not made apparent until after legalize, e.g. for 12173 // argument passing. Since this is so common, custom legalize the 12174 // 64-bit integer store into two 32-bit stores. 12175 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue(); 12176 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, SDLoc(CFP), MVT::i32); 12177 SDValue Hi = DAG.getConstant(Val >> 32, SDLoc(CFP), MVT::i32); 12178 if (DAG.getDataLayout().isBigEndian()) 12179 std::swap(Lo, Hi); 12180 12181 unsigned Alignment = ST->getAlignment(); 12182 MachineMemOperand::Flags MMOFlags = ST->getMemOperand()->getFlags(); 12183 AAMDNodes AAInfo = ST->getAAInfo(); 12184 12185 SDValue St0 = DAG.getStore(Chain, DL, Lo, Ptr, ST->getPointerInfo(), 12186 ST->getAlignment(), MMOFlags, AAInfo); 12187 Ptr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr, 12188 DAG.getConstant(4, DL, Ptr.getValueType())); 12189 Alignment = MinAlign(Alignment, 4U); 12190 SDValue St1 = DAG.getStore(Chain, DL, Hi, Ptr, 12191 ST->getPointerInfo().getWithOffset(4), 12192 Alignment, MMOFlags, AAInfo); 12193 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, 12194 St0, St1); 12195 } 12196 12197 return SDValue(); 12198 } 12199 } 12200 12201 SDValue DAGCombiner::visitSTORE(SDNode *N) { 12202 StoreSDNode *ST = cast<StoreSDNode>(N); 12203 SDValue Chain = ST->getChain(); 12204 SDValue Value = ST->getValue(); 12205 SDValue Ptr = ST->getBasePtr(); 12206 12207 // If this is a store of a bit convert, store the input value if the 12208 // resultant store does not need a higher alignment than the original. 12209 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() && 12210 ST->isUnindexed()) { 12211 EVT SVT = Value.getOperand(0).getValueType(); 12212 if (((!LegalOperations && !ST->isVolatile()) || 12213 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)) && 12214 TLI.isStoreBitCastBeneficial(Value.getValueType(), SVT)) { 12215 unsigned OrigAlign = ST->getAlignment(); 12216 bool Fast = false; 12217 if (TLI.allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), SVT, 12218 ST->getAddressSpace(), OrigAlign, &Fast) && 12219 Fast) { 12220 return DAG.getStore(Chain, SDLoc(N), Value.getOperand(0), Ptr, 12221 ST->getPointerInfo(), OrigAlign, 12222 ST->getMemOperand()->getFlags(), ST->getAAInfo()); 12223 } 12224 } 12225 } 12226 12227 // Turn 'store undef, Ptr' -> nothing. 12228 if (Value.isUndef() && ST->isUnindexed()) 12229 return Chain; 12230 12231 // Try to infer better alignment information than the store already has. 12232 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) { 12233 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) { 12234 if (Align > ST->getAlignment()) { 12235 SDValue NewStore = 12236 DAG.getTruncStore(Chain, SDLoc(N), Value, Ptr, ST->getPointerInfo(), 12237 ST->getMemoryVT(), Align, 12238 ST->getMemOperand()->getFlags(), ST->getAAInfo()); 12239 if (NewStore.getNode() != N) 12240 return CombineTo(ST, NewStore, true); 12241 } 12242 } 12243 } 12244 12245 // Try transforming a pair floating point load / store ops to integer 12246 // load / store ops. 12247 if (SDValue NewST = TransformFPLoadStorePair(N)) 12248 return NewST; 12249 12250 bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA 12251 : DAG.getSubtarget().useAA(); 12252 #ifndef NDEBUG 12253 if (CombinerAAOnlyFunc.getNumOccurrences() && 12254 CombinerAAOnlyFunc != DAG.getMachineFunction().getName()) 12255 UseAA = false; 12256 #endif 12257 if (UseAA && ST->isUnindexed()) { 12258 // FIXME: We should do this even without AA enabled. AA will just allow 12259 // FindBetterChain to work in more situations. The problem with this is that 12260 // any combine that expects memory operations to be on consecutive chains 12261 // first needs to be updated to look for users of the same chain. 12262 12263 // Walk up chain skipping non-aliasing memory nodes, on this store and any 12264 // adjacent stores. 12265 if (findBetterNeighborChains(ST)) { 12266 // replaceStoreChain uses CombineTo, which handled all of the worklist 12267 // manipulation. Return the original node to not do anything else. 12268 return SDValue(ST, 0); 12269 } 12270 Chain = ST->getChain(); 12271 } 12272 12273 // Try transforming N to an indexed store. 12274 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N)) 12275 return SDValue(N, 0); 12276 12277 // FIXME: is there such a thing as a truncating indexed store? 12278 if (ST->isTruncatingStore() && ST->isUnindexed() && 12279 Value.getValueType().isInteger()) { 12280 // See if we can simplify the input to this truncstore with knowledge that 12281 // only the low bits are being used. For example: 12282 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8" 12283 SDValue Shorter = GetDemandedBits( 12284 Value, APInt::getLowBitsSet(Value.getScalarValueSizeInBits(), 12285 ST->getMemoryVT().getScalarSizeInBits())); 12286 AddToWorklist(Value.getNode()); 12287 if (Shorter.getNode()) 12288 return DAG.getTruncStore(Chain, SDLoc(N), Shorter, 12289 Ptr, ST->getMemoryVT(), ST->getMemOperand()); 12290 12291 // Otherwise, see if we can simplify the operation with 12292 // SimplifyDemandedBits, which only works if the value has a single use. 12293 if (SimplifyDemandedBits( 12294 Value, 12295 APInt::getLowBitsSet(Value.getScalarValueSizeInBits(), 12296 ST->getMemoryVT().getScalarSizeInBits()))) 12297 return SDValue(N, 0); 12298 } 12299 12300 // If this is a load followed by a store to the same location, then the store 12301 // is dead/noop. 12302 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) { 12303 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() && 12304 ST->isUnindexed() && !ST->isVolatile() && 12305 // There can't be any side effects between the load and store, such as 12306 // a call or store. 12307 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) { 12308 // The store is dead, remove it. 12309 return Chain; 12310 } 12311 } 12312 12313 // If this is a store followed by a store with the same value to the same 12314 // location, then the store is dead/noop. 12315 if (StoreSDNode *ST1 = dyn_cast<StoreSDNode>(Chain)) { 12316 if (ST1->getBasePtr() == Ptr && ST->getMemoryVT() == ST1->getMemoryVT() && 12317 ST1->getValue() == Value && ST->isUnindexed() && !ST->isVolatile() && 12318 ST1->isUnindexed() && !ST1->isVolatile()) { 12319 // The store is dead, remove it. 12320 return Chain; 12321 } 12322 } 12323 12324 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a 12325 // truncating store. We can do this even if this is already a truncstore. 12326 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE) 12327 && Value.getNode()->hasOneUse() && ST->isUnindexed() && 12328 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(), 12329 ST->getMemoryVT())) { 12330 return DAG.getTruncStore(Chain, SDLoc(N), Value.getOperand(0), 12331 Ptr, ST->getMemoryVT(), ST->getMemOperand()); 12332 } 12333 12334 // Only perform this optimization before the types are legal, because we 12335 // don't want to perform this optimization on every DAGCombine invocation. 12336 if (!LegalTypes) { 12337 for (;;) { 12338 // There can be multiple store sequences on the same chain. 12339 // Keep trying to merge store sequences until we are unable to do so 12340 // or until we merge the last store on the chain. 12341 SmallVector<MemOpLink, 8> StoreNodes; 12342 bool Changed = MergeConsecutiveStores(ST, StoreNodes); 12343 if (!Changed) break; 12344 12345 if (any_of(StoreNodes, 12346 [ST](const MemOpLink &Link) { return Link.MemNode == ST; })) { 12347 // ST has been merged and no longer exists. 12348 return SDValue(N, 0); 12349 } 12350 } 12351 } 12352 12353 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr' 12354 // 12355 // Make sure to do this only after attempting to merge stores in order to 12356 // avoid changing the types of some subset of stores due to visit order, 12357 // preventing their merging. 12358 if (isa<ConstantFPSDNode>(Value)) { 12359 if (SDValue NewSt = replaceStoreOfFPConstant(ST)) 12360 return NewSt; 12361 } 12362 12363 if (SDValue NewSt = splitMergedValStore(ST)) 12364 return NewSt; 12365 12366 return ReduceLoadOpStoreWidth(N); 12367 } 12368 12369 /// For the instruction sequence of store below, F and I values 12370 /// are bundled together as an i64 value before being stored into memory. 12371 /// Sometimes it is more efficent to generate separate stores for F and I, 12372 /// which can remove the bitwise instructions or sink them to colder places. 12373 /// 12374 /// (store (or (zext (bitcast F to i32) to i64), 12375 /// (shl (zext I to i64), 32)), addr) --> 12376 /// (store F, addr) and (store I, addr+4) 12377 /// 12378 /// Similarly, splitting for other merged store can also be beneficial, like: 12379 /// For pair of {i32, i32}, i64 store --> two i32 stores. 12380 /// For pair of {i32, i16}, i64 store --> two i32 stores. 12381 /// For pair of {i16, i16}, i32 store --> two i16 stores. 12382 /// For pair of {i16, i8}, i32 store --> two i16 stores. 12383 /// For pair of {i8, i8}, i16 store --> two i8 stores. 12384 /// 12385 /// We allow each target to determine specifically which kind of splitting is 12386 /// supported. 12387 /// 12388 /// The store patterns are commonly seen from the simple code snippet below 12389 /// if only std::make_pair(...) is sroa transformed before inlined into hoo. 12390 /// void goo(const std::pair<int, float> &); 12391 /// hoo() { 12392 /// ... 12393 /// goo(std::make_pair(tmp, ftmp)); 12394 /// ... 12395 /// } 12396 /// 12397 SDValue DAGCombiner::splitMergedValStore(StoreSDNode *ST) { 12398 if (OptLevel == CodeGenOpt::None) 12399 return SDValue(); 12400 12401 SDValue Val = ST->getValue(); 12402 SDLoc DL(ST); 12403 12404 // Match OR operand. 12405 if (!Val.getValueType().isScalarInteger() || Val.getOpcode() != ISD::OR) 12406 return SDValue(); 12407 12408 // Match SHL operand and get Lower and Higher parts of Val. 12409 SDValue Op1 = Val.getOperand(0); 12410 SDValue Op2 = Val.getOperand(1); 12411 SDValue Lo, Hi; 12412 if (Op1.getOpcode() != ISD::SHL) { 12413 std::swap(Op1, Op2); 12414 if (Op1.getOpcode() != ISD::SHL) 12415 return SDValue(); 12416 } 12417 Lo = Op2; 12418 Hi = Op1.getOperand(0); 12419 if (!Op1.hasOneUse()) 12420 return SDValue(); 12421 12422 // Match shift amount to HalfValBitSize. 12423 unsigned HalfValBitSize = Val.getValueSizeInBits() / 2; 12424 ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(Op1.getOperand(1)); 12425 if (!ShAmt || ShAmt->getAPIntValue() != HalfValBitSize) 12426 return SDValue(); 12427 12428 // Lo and Hi are zero-extended from int with size less equal than 32 12429 // to i64. 12430 if (Lo.getOpcode() != ISD::ZERO_EXTEND || !Lo.hasOneUse() || 12431 !Lo.getOperand(0).getValueType().isScalarInteger() || 12432 Lo.getOperand(0).getValueSizeInBits() > HalfValBitSize || 12433 Hi.getOpcode() != ISD::ZERO_EXTEND || !Hi.hasOneUse() || 12434 !Hi.getOperand(0).getValueType().isScalarInteger() || 12435 Hi.getOperand(0).getValueSizeInBits() > HalfValBitSize) 12436 return SDValue(); 12437 12438 // Use the EVT of low and high parts before bitcast as the input 12439 // of target query. 12440 EVT LowTy = (Lo.getOperand(0).getOpcode() == ISD::BITCAST) 12441 ? Lo.getOperand(0).getValueType() 12442 : Lo.getValueType(); 12443 EVT HighTy = (Hi.getOperand(0).getOpcode() == ISD::BITCAST) 12444 ? Hi.getOperand(0).getValueType() 12445 : Hi.getValueType(); 12446 if (!TLI.isMultiStoresCheaperThanBitsMerge(LowTy, HighTy)) 12447 return SDValue(); 12448 12449 // Start to split store. 12450 unsigned Alignment = ST->getAlignment(); 12451 MachineMemOperand::Flags MMOFlags = ST->getMemOperand()->getFlags(); 12452 AAMDNodes AAInfo = ST->getAAInfo(); 12453 12454 // Change the sizes of Lo and Hi's value types to HalfValBitSize. 12455 EVT VT = EVT::getIntegerVT(*DAG.getContext(), HalfValBitSize); 12456 Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Lo.getOperand(0)); 12457 Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Hi.getOperand(0)); 12458 12459 SDValue Chain = ST->getChain(); 12460 SDValue Ptr = ST->getBasePtr(); 12461 // Lower value store. 12462 SDValue St0 = DAG.getStore(Chain, DL, Lo, Ptr, ST->getPointerInfo(), 12463 ST->getAlignment(), MMOFlags, AAInfo); 12464 Ptr = 12465 DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr, 12466 DAG.getConstant(HalfValBitSize / 8, DL, Ptr.getValueType())); 12467 // Higher value store. 12468 SDValue St1 = 12469 DAG.getStore(St0, DL, Hi, Ptr, 12470 ST->getPointerInfo().getWithOffset(HalfValBitSize / 8), 12471 Alignment / 2, MMOFlags, AAInfo); 12472 return St1; 12473 } 12474 12475 SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) { 12476 SDValue InVec = N->getOperand(0); 12477 SDValue InVal = N->getOperand(1); 12478 SDValue EltNo = N->getOperand(2); 12479 SDLoc DL(N); 12480 12481 // If the inserted element is an UNDEF, just use the input vector. 12482 if (InVal.isUndef()) 12483 return InVec; 12484 12485 EVT VT = InVec.getValueType(); 12486 12487 // If we can't generate a legal BUILD_VECTOR, exit 12488 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) 12489 return SDValue(); 12490 12491 // Check that we know which element is being inserted 12492 if (!isa<ConstantSDNode>(EltNo)) 12493 return SDValue(); 12494 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); 12495 12496 // Canonicalize insert_vector_elt dag nodes. 12497 // Example: 12498 // (insert_vector_elt (insert_vector_elt A, Idx0), Idx1) 12499 // -> (insert_vector_elt (insert_vector_elt A, Idx1), Idx0) 12500 // 12501 // Do this only if the child insert_vector node has one use; also 12502 // do this only if indices are both constants and Idx1 < Idx0. 12503 if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT && InVec.hasOneUse() 12504 && isa<ConstantSDNode>(InVec.getOperand(2))) { 12505 unsigned OtherElt = 12506 cast<ConstantSDNode>(InVec.getOperand(2))->getZExtValue(); 12507 if (Elt < OtherElt) { 12508 // Swap nodes. 12509 SDValue NewOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, 12510 InVec.getOperand(0), InVal, EltNo); 12511 AddToWorklist(NewOp.getNode()); 12512 return DAG.getNode(ISD::INSERT_VECTOR_ELT, SDLoc(InVec.getNode()), 12513 VT, NewOp, InVec.getOperand(1), InVec.getOperand(2)); 12514 } 12515 } 12516 12517 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially 12518 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the 12519 // vector elements. 12520 SmallVector<SDValue, 8> Ops; 12521 // Do not combine these two vectors if the output vector will not replace 12522 // the input vector. 12523 if (InVec.getOpcode() == ISD::BUILD_VECTOR && InVec.hasOneUse()) { 12524 Ops.append(InVec.getNode()->op_begin(), 12525 InVec.getNode()->op_end()); 12526 } else if (InVec.isUndef()) { 12527 unsigned NElts = VT.getVectorNumElements(); 12528 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType())); 12529 } else { 12530 return SDValue(); 12531 } 12532 12533 // Insert the element 12534 if (Elt < Ops.size()) { 12535 // All the operands of BUILD_VECTOR must have the same type; 12536 // we enforce that here. 12537 EVT OpVT = Ops[0].getValueType(); 12538 if (InVal.getValueType() != OpVT) 12539 InVal = OpVT.bitsGT(InVal.getValueType()) ? 12540 DAG.getNode(ISD::ANY_EXTEND, DL, OpVT, InVal) : 12541 DAG.getNode(ISD::TRUNCATE, DL, OpVT, InVal); 12542 Ops[Elt] = InVal; 12543 } 12544 12545 // Return the new vector 12546 return DAG.getBuildVector(VT, DL, Ops); 12547 } 12548 12549 SDValue DAGCombiner::ReplaceExtractVectorEltOfLoadWithNarrowedLoad( 12550 SDNode *EVE, EVT InVecVT, SDValue EltNo, LoadSDNode *OriginalLoad) { 12551 assert(!OriginalLoad->isVolatile()); 12552 12553 EVT ResultVT = EVE->getValueType(0); 12554 EVT VecEltVT = InVecVT.getVectorElementType(); 12555 unsigned Align = OriginalLoad->getAlignment(); 12556 unsigned NewAlign = DAG.getDataLayout().getABITypeAlignment( 12557 VecEltVT.getTypeForEVT(*DAG.getContext())); 12558 12559 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VecEltVT)) 12560 return SDValue(); 12561 12562 Align = NewAlign; 12563 12564 SDValue NewPtr = OriginalLoad->getBasePtr(); 12565 SDValue Offset; 12566 EVT PtrType = NewPtr.getValueType(); 12567 MachinePointerInfo MPI; 12568 SDLoc DL(EVE); 12569 if (auto *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo)) { 12570 int Elt = ConstEltNo->getZExtValue(); 12571 unsigned PtrOff = VecEltVT.getSizeInBits() * Elt / 8; 12572 Offset = DAG.getConstant(PtrOff, DL, PtrType); 12573 MPI = OriginalLoad->getPointerInfo().getWithOffset(PtrOff); 12574 } else { 12575 Offset = DAG.getZExtOrTrunc(EltNo, DL, PtrType); 12576 Offset = DAG.getNode( 12577 ISD::MUL, DL, PtrType, Offset, 12578 DAG.getConstant(VecEltVT.getStoreSize(), DL, PtrType)); 12579 MPI = OriginalLoad->getPointerInfo(); 12580 } 12581 NewPtr = DAG.getNode(ISD::ADD, DL, PtrType, NewPtr, Offset); 12582 12583 // The replacement we need to do here is a little tricky: we need to 12584 // replace an extractelement of a load with a load. 12585 // Use ReplaceAllUsesOfValuesWith to do the replacement. 12586 // Note that this replacement assumes that the extractvalue is the only 12587 // use of the load; that's okay because we don't want to perform this 12588 // transformation in other cases anyway. 12589 SDValue Load; 12590 SDValue Chain; 12591 if (ResultVT.bitsGT(VecEltVT)) { 12592 // If the result type of vextract is wider than the load, then issue an 12593 // extending load instead. 12594 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, ResultVT, 12595 VecEltVT) 12596 ? ISD::ZEXTLOAD 12597 : ISD::EXTLOAD; 12598 Load = DAG.getExtLoad(ExtType, SDLoc(EVE), ResultVT, 12599 OriginalLoad->getChain(), NewPtr, MPI, VecEltVT, 12600 Align, OriginalLoad->getMemOperand()->getFlags(), 12601 OriginalLoad->getAAInfo()); 12602 Chain = Load.getValue(1); 12603 } else { 12604 Load = DAG.getLoad(VecEltVT, SDLoc(EVE), OriginalLoad->getChain(), NewPtr, 12605 MPI, Align, OriginalLoad->getMemOperand()->getFlags(), 12606 OriginalLoad->getAAInfo()); 12607 Chain = Load.getValue(1); 12608 if (ResultVT.bitsLT(VecEltVT)) 12609 Load = DAG.getNode(ISD::TRUNCATE, SDLoc(EVE), ResultVT, Load); 12610 else 12611 Load = DAG.getBitcast(ResultVT, Load); 12612 } 12613 WorklistRemover DeadNodes(*this); 12614 SDValue From[] = { SDValue(EVE, 0), SDValue(OriginalLoad, 1) }; 12615 SDValue To[] = { Load, Chain }; 12616 DAG.ReplaceAllUsesOfValuesWith(From, To, 2); 12617 // Since we're explicitly calling ReplaceAllUses, add the new node to the 12618 // worklist explicitly as well. 12619 AddToWorklist(Load.getNode()); 12620 AddUsersToWorklist(Load.getNode()); // Add users too 12621 // Make sure to revisit this node to clean it up; it will usually be dead. 12622 AddToWorklist(EVE); 12623 ++OpsNarrowed; 12624 return SDValue(EVE, 0); 12625 } 12626 12627 SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) { 12628 // (vextract (scalar_to_vector val, 0) -> val 12629 SDValue InVec = N->getOperand(0); 12630 EVT VT = InVec.getValueType(); 12631 EVT NVT = N->getValueType(0); 12632 12633 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) { 12634 // Check if the result type doesn't match the inserted element type. A 12635 // SCALAR_TO_VECTOR may truncate the inserted element and the 12636 // EXTRACT_VECTOR_ELT may widen the extracted vector. 12637 SDValue InOp = InVec.getOperand(0); 12638 if (InOp.getValueType() != NVT) { 12639 assert(InOp.getValueType().isInteger() && NVT.isInteger()); 12640 return DAG.getSExtOrTrunc(InOp, SDLoc(InVec), NVT); 12641 } 12642 return InOp; 12643 } 12644 12645 SDValue EltNo = N->getOperand(1); 12646 ConstantSDNode *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo); 12647 12648 // extract_vector_elt (build_vector x, y), 1 -> y 12649 if (ConstEltNo && 12650 InVec.getOpcode() == ISD::BUILD_VECTOR && 12651 TLI.isTypeLegal(VT) && 12652 (InVec.hasOneUse() || 12653 TLI.aggressivelyPreferBuildVectorSources(VT))) { 12654 SDValue Elt = InVec.getOperand(ConstEltNo->getZExtValue()); 12655 EVT InEltVT = Elt.getValueType(); 12656 12657 // Sometimes build_vector's scalar input types do not match result type. 12658 if (NVT == InEltVT) 12659 return Elt; 12660 12661 // TODO: It may be useful to truncate if free if the build_vector implicitly 12662 // converts. 12663 } 12664 12665 // extract_vector_elt (v2i32 (bitcast i64:x)), 0 -> i32 (trunc i64:x) 12666 if (ConstEltNo && InVec.getOpcode() == ISD::BITCAST && InVec.hasOneUse() && 12667 ConstEltNo->isNullValue() && VT.isInteger()) { 12668 SDValue BCSrc = InVec.getOperand(0); 12669 if (BCSrc.getValueType().isScalarInteger()) 12670 return DAG.getNode(ISD::TRUNCATE, SDLoc(N), NVT, BCSrc); 12671 } 12672 12673 // extract_vector_elt (insert_vector_elt vec, val, idx), idx) -> val 12674 // 12675 // This only really matters if the index is non-constant since other combines 12676 // on the constant elements already work. 12677 if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT && 12678 EltNo == InVec.getOperand(2)) { 12679 SDValue Elt = InVec.getOperand(1); 12680 return VT.isInteger() ? DAG.getAnyExtOrTrunc(Elt, SDLoc(N), NVT) : Elt; 12681 } 12682 12683 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT. 12684 // We only perform this optimization before the op legalization phase because 12685 // we may introduce new vector instructions which are not backed by TD 12686 // patterns. For example on AVX, extracting elements from a wide vector 12687 // without using extract_subvector. However, if we can find an underlying 12688 // scalar value, then we can always use that. 12689 if (ConstEltNo && InVec.getOpcode() == ISD::VECTOR_SHUFFLE) { 12690 int NumElem = VT.getVectorNumElements(); 12691 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec); 12692 // Find the new index to extract from. 12693 int OrigElt = SVOp->getMaskElt(ConstEltNo->getZExtValue()); 12694 12695 // Extracting an undef index is undef. 12696 if (OrigElt == -1) 12697 return DAG.getUNDEF(NVT); 12698 12699 // Select the right vector half to extract from. 12700 SDValue SVInVec; 12701 if (OrigElt < NumElem) { 12702 SVInVec = InVec->getOperand(0); 12703 } else { 12704 SVInVec = InVec->getOperand(1); 12705 OrigElt -= NumElem; 12706 } 12707 12708 if (SVInVec.getOpcode() == ISD::BUILD_VECTOR) { 12709 SDValue InOp = SVInVec.getOperand(OrigElt); 12710 if (InOp.getValueType() != NVT) { 12711 assert(InOp.getValueType().isInteger() && NVT.isInteger()); 12712 InOp = DAG.getSExtOrTrunc(InOp, SDLoc(SVInVec), NVT); 12713 } 12714 12715 return InOp; 12716 } 12717 12718 // FIXME: We should handle recursing on other vector shuffles and 12719 // scalar_to_vector here as well. 12720 12721 if (!LegalOperations) { 12722 EVT IndexTy = TLI.getVectorIdxTy(DAG.getDataLayout()); 12723 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(N), NVT, SVInVec, 12724 DAG.getConstant(OrigElt, SDLoc(SVOp), IndexTy)); 12725 } 12726 } 12727 12728 bool BCNumEltsChanged = false; 12729 EVT ExtVT = VT.getVectorElementType(); 12730 EVT LVT = ExtVT; 12731 12732 // If the result of load has to be truncated, then it's not necessarily 12733 // profitable. 12734 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT)) 12735 return SDValue(); 12736 12737 if (InVec.getOpcode() == ISD::BITCAST) { 12738 // Don't duplicate a load with other uses. 12739 if (!InVec.hasOneUse()) 12740 return SDValue(); 12741 12742 EVT BCVT = InVec.getOperand(0).getValueType(); 12743 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType())) 12744 return SDValue(); 12745 if (VT.getVectorNumElements() != BCVT.getVectorNumElements()) 12746 BCNumEltsChanged = true; 12747 InVec = InVec.getOperand(0); 12748 ExtVT = BCVT.getVectorElementType(); 12749 } 12750 12751 // (vextract (vN[if]M load $addr), i) -> ([if]M load $addr + i * size) 12752 if (!LegalOperations && !ConstEltNo && InVec.hasOneUse() && 12753 ISD::isNormalLoad(InVec.getNode()) && 12754 !N->getOperand(1)->hasPredecessor(InVec.getNode())) { 12755 SDValue Index = N->getOperand(1); 12756 if (LoadSDNode *OrigLoad = dyn_cast<LoadSDNode>(InVec)) { 12757 if (!OrigLoad->isVolatile()) { 12758 return ReplaceExtractVectorEltOfLoadWithNarrowedLoad(N, VT, Index, 12759 OrigLoad); 12760 } 12761 } 12762 } 12763 12764 // Perform only after legalization to ensure build_vector / vector_shuffle 12765 // optimizations have already been done. 12766 if (!LegalOperations) return SDValue(); 12767 12768 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size) 12769 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size) 12770 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr) 12771 12772 if (ConstEltNo) { 12773 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); 12774 12775 LoadSDNode *LN0 = nullptr; 12776 const ShuffleVectorSDNode *SVN = nullptr; 12777 if (ISD::isNormalLoad(InVec.getNode())) { 12778 LN0 = cast<LoadSDNode>(InVec); 12779 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR && 12780 InVec.getOperand(0).getValueType() == ExtVT && 12781 ISD::isNormalLoad(InVec.getOperand(0).getNode())) { 12782 // Don't duplicate a load with other uses. 12783 if (!InVec.hasOneUse()) 12784 return SDValue(); 12785 12786 LN0 = cast<LoadSDNode>(InVec.getOperand(0)); 12787 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) { 12788 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1) 12789 // => 12790 // (load $addr+1*size) 12791 12792 // Don't duplicate a load with other uses. 12793 if (!InVec.hasOneUse()) 12794 return SDValue(); 12795 12796 // If the bit convert changed the number of elements, it is unsafe 12797 // to examine the mask. 12798 if (BCNumEltsChanged) 12799 return SDValue(); 12800 12801 // Select the input vector, guarding against out of range extract vector. 12802 unsigned NumElems = VT.getVectorNumElements(); 12803 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt); 12804 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1); 12805 12806 if (InVec.getOpcode() == ISD::BITCAST) { 12807 // Don't duplicate a load with other uses. 12808 if (!InVec.hasOneUse()) 12809 return SDValue(); 12810 12811 InVec = InVec.getOperand(0); 12812 } 12813 if (ISD::isNormalLoad(InVec.getNode())) { 12814 LN0 = cast<LoadSDNode>(InVec); 12815 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems; 12816 EltNo = DAG.getConstant(Elt, SDLoc(EltNo), EltNo.getValueType()); 12817 } 12818 } 12819 12820 // Make sure we found a non-volatile load and the extractelement is 12821 // the only use. 12822 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile()) 12823 return SDValue(); 12824 12825 // If Idx was -1 above, Elt is going to be -1, so just return undef. 12826 if (Elt == -1) 12827 return DAG.getUNDEF(LVT); 12828 12829 return ReplaceExtractVectorEltOfLoadWithNarrowedLoad(N, VT, EltNo, LN0); 12830 } 12831 12832 return SDValue(); 12833 } 12834 12835 // Simplify (build_vec (ext )) to (bitcast (build_vec )) 12836 SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) { 12837 // We perform this optimization post type-legalization because 12838 // the type-legalizer often scalarizes integer-promoted vectors. 12839 // Performing this optimization before may create bit-casts which 12840 // will be type-legalized to complex code sequences. 12841 // We perform this optimization only before the operation legalizer because we 12842 // may introduce illegal operations. 12843 if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes) 12844 return SDValue(); 12845 12846 unsigned NumInScalars = N->getNumOperands(); 12847 SDLoc DL(N); 12848 EVT VT = N->getValueType(0); 12849 12850 // Check to see if this is a BUILD_VECTOR of a bunch of values 12851 // which come from any_extend or zero_extend nodes. If so, we can create 12852 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR 12853 // optimizations. We do not handle sign-extend because we can't fill the sign 12854 // using shuffles. 12855 EVT SourceType = MVT::Other; 12856 bool AllAnyExt = true; 12857 12858 for (unsigned i = 0; i != NumInScalars; ++i) { 12859 SDValue In = N->getOperand(i); 12860 // Ignore undef inputs. 12861 if (In.isUndef()) continue; 12862 12863 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND; 12864 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND; 12865 12866 // Abort if the element is not an extension. 12867 if (!ZeroExt && !AnyExt) { 12868 SourceType = MVT::Other; 12869 break; 12870 } 12871 12872 // The input is a ZeroExt or AnyExt. Check the original type. 12873 EVT InTy = In.getOperand(0).getValueType(); 12874 12875 // Check that all of the widened source types are the same. 12876 if (SourceType == MVT::Other) 12877 // First time. 12878 SourceType = InTy; 12879 else if (InTy != SourceType) { 12880 // Multiple income types. Abort. 12881 SourceType = MVT::Other; 12882 break; 12883 } 12884 12885 // Check if all of the extends are ANY_EXTENDs. 12886 AllAnyExt &= AnyExt; 12887 } 12888 12889 // In order to have valid types, all of the inputs must be extended from the 12890 // same source type and all of the inputs must be any or zero extend. 12891 // Scalar sizes must be a power of two. 12892 EVT OutScalarTy = VT.getScalarType(); 12893 bool ValidTypes = SourceType != MVT::Other && 12894 isPowerOf2_32(OutScalarTy.getSizeInBits()) && 12895 isPowerOf2_32(SourceType.getSizeInBits()); 12896 12897 // Create a new simpler BUILD_VECTOR sequence which other optimizations can 12898 // turn into a single shuffle instruction. 12899 if (!ValidTypes) 12900 return SDValue(); 12901 12902 bool isLE = DAG.getDataLayout().isLittleEndian(); 12903 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits(); 12904 assert(ElemRatio > 1 && "Invalid element size ratio"); 12905 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType): 12906 DAG.getConstant(0, DL, SourceType); 12907 12908 unsigned NewBVElems = ElemRatio * VT.getVectorNumElements(); 12909 SmallVector<SDValue, 8> Ops(NewBVElems, Filler); 12910 12911 // Populate the new build_vector 12912 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 12913 SDValue Cast = N->getOperand(i); 12914 assert((Cast.getOpcode() == ISD::ANY_EXTEND || 12915 Cast.getOpcode() == ISD::ZERO_EXTEND || 12916 Cast.isUndef()) && "Invalid cast opcode"); 12917 SDValue In; 12918 if (Cast.isUndef()) 12919 In = DAG.getUNDEF(SourceType); 12920 else 12921 In = Cast->getOperand(0); 12922 unsigned Index = isLE ? (i * ElemRatio) : 12923 (i * ElemRatio + (ElemRatio - 1)); 12924 12925 assert(Index < Ops.size() && "Invalid index"); 12926 Ops[Index] = In; 12927 } 12928 12929 // The type of the new BUILD_VECTOR node. 12930 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems); 12931 assert(VecVT.getSizeInBits() == VT.getSizeInBits() && 12932 "Invalid vector size"); 12933 // Check if the new vector type is legal. 12934 if (!isTypeLegal(VecVT)) return SDValue(); 12935 12936 // Make the new BUILD_VECTOR. 12937 SDValue BV = DAG.getBuildVector(VecVT, DL, Ops); 12938 12939 // The new BUILD_VECTOR node has the potential to be further optimized. 12940 AddToWorklist(BV.getNode()); 12941 // Bitcast to the desired type. 12942 return DAG.getBitcast(VT, BV); 12943 } 12944 12945 SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) { 12946 EVT VT = N->getValueType(0); 12947 12948 unsigned NumInScalars = N->getNumOperands(); 12949 SDLoc DL(N); 12950 12951 EVT SrcVT = MVT::Other; 12952 unsigned Opcode = ISD::DELETED_NODE; 12953 unsigned NumDefs = 0; 12954 12955 for (unsigned i = 0; i != NumInScalars; ++i) { 12956 SDValue In = N->getOperand(i); 12957 unsigned Opc = In.getOpcode(); 12958 12959 if (Opc == ISD::UNDEF) 12960 continue; 12961 12962 // If all scalar values are floats and converted from integers. 12963 if (Opcode == ISD::DELETED_NODE && 12964 (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) { 12965 Opcode = Opc; 12966 } 12967 12968 if (Opc != Opcode) 12969 return SDValue(); 12970 12971 EVT InVT = In.getOperand(0).getValueType(); 12972 12973 // If all scalar values are typed differently, bail out. It's chosen to 12974 // simplify BUILD_VECTOR of integer types. 12975 if (SrcVT == MVT::Other) 12976 SrcVT = InVT; 12977 if (SrcVT != InVT) 12978 return SDValue(); 12979 NumDefs++; 12980 } 12981 12982 // If the vector has just one element defined, it's not worth to fold it into 12983 // a vectorized one. 12984 if (NumDefs < 2) 12985 return SDValue(); 12986 12987 assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP) 12988 && "Should only handle conversion from integer to float."); 12989 assert(SrcVT != MVT::Other && "Cannot determine source type!"); 12990 12991 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars); 12992 12993 if (!TLI.isOperationLegalOrCustom(Opcode, NVT)) 12994 return SDValue(); 12995 12996 // Just because the floating-point vector type is legal does not necessarily 12997 // mean that the corresponding integer vector type is. 12998 if (!isTypeLegal(NVT)) 12999 return SDValue(); 13000 13001 SmallVector<SDValue, 8> Opnds; 13002 for (unsigned i = 0; i != NumInScalars; ++i) { 13003 SDValue In = N->getOperand(i); 13004 13005 if (In.isUndef()) 13006 Opnds.push_back(DAG.getUNDEF(SrcVT)); 13007 else 13008 Opnds.push_back(In.getOperand(0)); 13009 } 13010 SDValue BV = DAG.getBuildVector(NVT, DL, Opnds); 13011 AddToWorklist(BV.getNode()); 13012 13013 return DAG.getNode(Opcode, DL, VT, BV); 13014 } 13015 13016 SDValue DAGCombiner::createBuildVecShuffle(SDLoc DL, SDNode *N, 13017 ArrayRef<int> VectorMask, 13018 SDValue VecIn1, SDValue VecIn2, 13019 unsigned LeftIdx) { 13020 MVT IdxTy = TLI.getVectorIdxTy(DAG.getDataLayout()); 13021 SDValue ZeroIdx = DAG.getConstant(0, DL, IdxTy); 13022 13023 EVT VT = N->getValueType(0); 13024 EVT InVT1 = VecIn1.getValueType(); 13025 EVT InVT2 = VecIn2.getNode() ? VecIn2.getValueType() : InVT1; 13026 13027 unsigned Vec2Offset = InVT1.getVectorNumElements(); 13028 unsigned NumElems = VT.getVectorNumElements(); 13029 unsigned ShuffleNumElems = NumElems; 13030 13031 // We can't generate a shuffle node with mismatched input and output types. 13032 // Try to make the types match the type of the output. 13033 if (InVT1 != VT || InVT2 != VT) { 13034 if ((VT.getSizeInBits() % InVT1.getSizeInBits() == 0) && InVT1 == InVT2) { 13035 // If the output vector length is a multiple of both input lengths, 13036 // we can concatenate them and pad the rest with undefs. 13037 unsigned NumConcats = VT.getSizeInBits() / InVT1.getSizeInBits(); 13038 assert(NumConcats >= 2 && "Concat needs at least two inputs!"); 13039 SmallVector<SDValue, 2> ConcatOps(NumConcats, DAG.getUNDEF(InVT1)); 13040 ConcatOps[0] = VecIn1; 13041 ConcatOps[1] = VecIn2 ? VecIn2 : DAG.getUNDEF(InVT1); 13042 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, ConcatOps); 13043 VecIn2 = SDValue(); 13044 } else if (InVT1.getSizeInBits() == VT.getSizeInBits() * 2) { 13045 if (!TLI.isExtractSubvectorCheap(VT, NumElems)) 13046 return SDValue(); 13047 13048 if (!VecIn2.getNode()) { 13049 // If we only have one input vector, and it's twice the size of the 13050 // output, split it in two. 13051 VecIn2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, VecIn1, 13052 DAG.getConstant(NumElems, DL, IdxTy)); 13053 VecIn1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, VecIn1, ZeroIdx); 13054 // Since we now have shorter input vectors, adjust the offset of the 13055 // second vector's start. 13056 Vec2Offset = NumElems; 13057 } else if (InVT2.getSizeInBits() <= InVT1.getSizeInBits()) { 13058 // VecIn1 is wider than the output, and we have another, possibly 13059 // smaller input. Pad the smaller input with undefs, shuffle at the 13060 // input vector width, and extract the output. 13061 // The shuffle type is different than VT, so check legality again. 13062 if (LegalOperations && 13063 !TLI.isOperationLegal(ISD::VECTOR_SHUFFLE, InVT1)) 13064 return SDValue(); 13065 13066 if (InVT1 != InVT2) 13067 VecIn2 = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, InVT1, 13068 DAG.getUNDEF(InVT1), VecIn2, ZeroIdx); 13069 ShuffleNumElems = NumElems * 2; 13070 } else { 13071 // Both VecIn1 and VecIn2 are wider than the output, and VecIn2 is wider 13072 // than VecIn1. We can't handle this for now - this case will disappear 13073 // when we start sorting the vectors by type. 13074 return SDValue(); 13075 } 13076 } else { 13077 // TODO: Support cases where the length mismatch isn't exactly by a 13078 // factor of 2. 13079 // TODO: Move this check upwards, so that if we have bad type 13080 // mismatches, we don't create any DAG nodes. 13081 return SDValue(); 13082 } 13083 } 13084 13085 // Initialize mask to undef. 13086 SmallVector<int, 8> Mask(ShuffleNumElems, -1); 13087 13088 // Only need to run up to the number of elements actually used, not the 13089 // total number of elements in the shuffle - if we are shuffling a wider 13090 // vector, the high lanes should be set to undef. 13091 for (unsigned i = 0; i != NumElems; ++i) { 13092 if (VectorMask[i] <= 0) 13093 continue; 13094 13095 unsigned ExtIndex = N->getOperand(i).getConstantOperandVal(1); 13096 if (VectorMask[i] == (int)LeftIdx) { 13097 Mask[i] = ExtIndex; 13098 } else if (VectorMask[i] == (int)LeftIdx + 1) { 13099 Mask[i] = Vec2Offset + ExtIndex; 13100 } 13101 } 13102 13103 // The type the input vectors may have changed above. 13104 InVT1 = VecIn1.getValueType(); 13105 13106 // If we already have a VecIn2, it should have the same type as VecIn1. 13107 // If we don't, get an undef/zero vector of the appropriate type. 13108 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(InVT1); 13109 assert(InVT1 == VecIn2.getValueType() && "Unexpected second input type."); 13110 13111 SDValue Shuffle = DAG.getVectorShuffle(InVT1, DL, VecIn1, VecIn2, Mask); 13112 if (ShuffleNumElems > NumElems) 13113 Shuffle = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, Shuffle, ZeroIdx); 13114 13115 return Shuffle; 13116 } 13117 13118 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT 13119 // operations. If the types of the vectors we're extracting from allow it, 13120 // turn this into a vector_shuffle node. 13121 SDValue DAGCombiner::reduceBuildVecToShuffle(SDNode *N) { 13122 SDLoc DL(N); 13123 EVT VT = N->getValueType(0); 13124 13125 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes. 13126 if (!isTypeLegal(VT)) 13127 return SDValue(); 13128 13129 // May only combine to shuffle after legalize if shuffle is legal. 13130 if (LegalOperations && !TLI.isOperationLegal(ISD::VECTOR_SHUFFLE, VT)) 13131 return SDValue(); 13132 13133 bool UsesZeroVector = false; 13134 unsigned NumElems = N->getNumOperands(); 13135 13136 // Record, for each element of the newly built vector, which input vector 13137 // that element comes from. -1 stands for undef, 0 for the zero vector, 13138 // and positive values for the input vectors. 13139 // VectorMask maps each element to its vector number, and VecIn maps vector 13140 // numbers to their initial SDValues. 13141 13142 SmallVector<int, 8> VectorMask(NumElems, -1); 13143 SmallVector<SDValue, 8> VecIn; 13144 VecIn.push_back(SDValue()); 13145 13146 for (unsigned i = 0; i != NumElems; ++i) { 13147 SDValue Op = N->getOperand(i); 13148 13149 if (Op.isUndef()) 13150 continue; 13151 13152 // See if we can use a blend with a zero vector. 13153 // TODO: Should we generalize this to a blend with an arbitrary constant 13154 // vector? 13155 if (isNullConstant(Op) || isNullFPConstant(Op)) { 13156 UsesZeroVector = true; 13157 VectorMask[i] = 0; 13158 continue; 13159 } 13160 13161 // Not an undef or zero. If the input is something other than an 13162 // EXTRACT_VECTOR_ELT with a constant index, bail out. 13163 if (Op.getOpcode() != ISD::EXTRACT_VECTOR_ELT || 13164 !isa<ConstantSDNode>(Op.getOperand(1))) 13165 return SDValue(); 13166 13167 SDValue ExtractedFromVec = Op.getOperand(0); 13168 13169 // All inputs must have the same element type as the output. 13170 if (VT.getVectorElementType() != 13171 ExtractedFromVec.getValueType().getVectorElementType()) 13172 return SDValue(); 13173 13174 // Have we seen this input vector before? 13175 // The vectors are expected to be tiny (usually 1 or 2 elements), so using 13176 // a map back from SDValues to numbers isn't worth it. 13177 unsigned Idx = std::distance( 13178 VecIn.begin(), std::find(VecIn.begin(), VecIn.end(), ExtractedFromVec)); 13179 if (Idx == VecIn.size()) 13180 VecIn.push_back(ExtractedFromVec); 13181 13182 VectorMask[i] = Idx; 13183 } 13184 13185 // If we didn't find at least one input vector, bail out. 13186 if (VecIn.size() < 2) 13187 return SDValue(); 13188 13189 // TODO: We want to sort the vectors by descending length, so that adjacent 13190 // pairs have similar length, and the longer vector is always first in the 13191 // pair. 13192 13193 // TODO: Should this fire if some of the input vectors has illegal type (like 13194 // it does now), or should we let legalization run its course first? 13195 13196 // Shuffle phase: 13197 // Take pairs of vectors, and shuffle them so that the result has elements 13198 // from these vectors in the correct places. 13199 // For example, given: 13200 // t10: i32 = extract_vector_elt t1, Constant:i64<0> 13201 // t11: i32 = extract_vector_elt t2, Constant:i64<0> 13202 // t12: i32 = extract_vector_elt t3, Constant:i64<0> 13203 // t13: i32 = extract_vector_elt t1, Constant:i64<1> 13204 // t14: v4i32 = BUILD_VECTOR t10, t11, t12, t13 13205 // We will generate: 13206 // t20: v4i32 = vector_shuffle<0,4,u,1> t1, t2 13207 // t21: v4i32 = vector_shuffle<u,u,0,u> t3, undef 13208 SmallVector<SDValue, 4> Shuffles; 13209 for (unsigned In = 0, Len = (VecIn.size() / 2); In < Len; ++In) { 13210 unsigned LeftIdx = 2 * In + 1; 13211 SDValue VecLeft = VecIn[LeftIdx]; 13212 SDValue VecRight = 13213 (LeftIdx + 1) < VecIn.size() ? VecIn[LeftIdx + 1] : SDValue(); 13214 13215 if (SDValue Shuffle = createBuildVecShuffle(DL, N, VectorMask, VecLeft, 13216 VecRight, LeftIdx)) 13217 Shuffles.push_back(Shuffle); 13218 else 13219 return SDValue(); 13220 } 13221 13222 // If we need the zero vector as an "ingredient" in the blend tree, add it 13223 // to the list of shuffles. 13224 if (UsesZeroVector) 13225 Shuffles.push_back(VT.isInteger() ? DAG.getConstant(0, DL, VT) 13226 : DAG.getConstantFP(0.0, DL, VT)); 13227 13228 // If we only have one shuffle, we're done. 13229 if (Shuffles.size() == 1) 13230 return Shuffles[0]; 13231 13232 // Update the vector mask to point to the post-shuffle vectors. 13233 for (int &Vec : VectorMask) 13234 if (Vec == 0) 13235 Vec = Shuffles.size() - 1; 13236 else 13237 Vec = (Vec - 1) / 2; 13238 13239 // More than one shuffle. Generate a binary tree of blends, e.g. if from 13240 // the previous step we got the set of shuffles t10, t11, t12, t13, we will 13241 // generate: 13242 // t10: v8i32 = vector_shuffle<0,8,u,u,u,u,u,u> t1, t2 13243 // t11: v8i32 = vector_shuffle<u,u,0,8,u,u,u,u> t3, t4 13244 // t12: v8i32 = vector_shuffle<u,u,u,u,0,8,u,u> t5, t6 13245 // t13: v8i32 = vector_shuffle<u,u,u,u,u,u,0,8> t7, t8 13246 // t20: v8i32 = vector_shuffle<0,1,10,11,u,u,u,u> t10, t11 13247 // t21: v8i32 = vector_shuffle<u,u,u,u,4,5,14,15> t12, t13 13248 // t30: v8i32 = vector_shuffle<0,1,2,3,12,13,14,15> t20, t21 13249 13250 // Make sure the initial size of the shuffle list is even. 13251 if (Shuffles.size() % 2) 13252 Shuffles.push_back(DAG.getUNDEF(VT)); 13253 13254 for (unsigned CurSize = Shuffles.size(); CurSize > 1; CurSize /= 2) { 13255 if (CurSize % 2) { 13256 Shuffles[CurSize] = DAG.getUNDEF(VT); 13257 CurSize++; 13258 } 13259 for (unsigned In = 0, Len = CurSize / 2; In < Len; ++In) { 13260 int Left = 2 * In; 13261 int Right = 2 * In + 1; 13262 SmallVector<int, 8> Mask(NumElems, -1); 13263 for (unsigned i = 0; i != NumElems; ++i) { 13264 if (VectorMask[i] == Left) { 13265 Mask[i] = i; 13266 VectorMask[i] = In; 13267 } else if (VectorMask[i] == Right) { 13268 Mask[i] = i + NumElems; 13269 VectorMask[i] = In; 13270 } 13271 } 13272 13273 Shuffles[In] = 13274 DAG.getVectorShuffle(VT, DL, Shuffles[Left], Shuffles[Right], Mask); 13275 } 13276 } 13277 13278 return Shuffles[0]; 13279 } 13280 13281 SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) { 13282 EVT VT = N->getValueType(0); 13283 13284 // A vector built entirely of undefs is undef. 13285 if (ISD::allOperandsUndef(N)) 13286 return DAG.getUNDEF(VT); 13287 13288 if (SDValue V = reduceBuildVecExtToExtBuildVec(N)) 13289 return V; 13290 13291 if (SDValue V = reduceBuildVecConvertToConvertBuildVec(N)) 13292 return V; 13293 13294 if (SDValue V = reduceBuildVecToShuffle(N)) 13295 return V; 13296 13297 return SDValue(); 13298 } 13299 13300 static SDValue combineConcatVectorOfScalars(SDNode *N, SelectionDAG &DAG) { 13301 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 13302 EVT OpVT = N->getOperand(0).getValueType(); 13303 13304 // If the operands are legal vectors, leave them alone. 13305 if (TLI.isTypeLegal(OpVT)) 13306 return SDValue(); 13307 13308 SDLoc DL(N); 13309 EVT VT = N->getValueType(0); 13310 SmallVector<SDValue, 8> Ops; 13311 13312 EVT SVT = EVT::getIntegerVT(*DAG.getContext(), OpVT.getSizeInBits()); 13313 SDValue ScalarUndef = DAG.getNode(ISD::UNDEF, DL, SVT); 13314 13315 // Keep track of what we encounter. 13316 bool AnyInteger = false; 13317 bool AnyFP = false; 13318 for (const SDValue &Op : N->ops()) { 13319 if (ISD::BITCAST == Op.getOpcode() && 13320 !Op.getOperand(0).getValueType().isVector()) 13321 Ops.push_back(Op.getOperand(0)); 13322 else if (ISD::UNDEF == Op.getOpcode()) 13323 Ops.push_back(ScalarUndef); 13324 else 13325 return SDValue(); 13326 13327 // Note whether we encounter an integer or floating point scalar. 13328 // If it's neither, bail out, it could be something weird like x86mmx. 13329 EVT LastOpVT = Ops.back().getValueType(); 13330 if (LastOpVT.isFloatingPoint()) 13331 AnyFP = true; 13332 else if (LastOpVT.isInteger()) 13333 AnyInteger = true; 13334 else 13335 return SDValue(); 13336 } 13337 13338 // If any of the operands is a floating point scalar bitcast to a vector, 13339 // use floating point types throughout, and bitcast everything. 13340 // Replace UNDEFs by another scalar UNDEF node, of the final desired type. 13341 if (AnyFP) { 13342 SVT = EVT::getFloatingPointVT(OpVT.getSizeInBits()); 13343 ScalarUndef = DAG.getNode(ISD::UNDEF, DL, SVT); 13344 if (AnyInteger) { 13345 for (SDValue &Op : Ops) { 13346 if (Op.getValueType() == SVT) 13347 continue; 13348 if (Op.isUndef()) 13349 Op = ScalarUndef; 13350 else 13351 Op = DAG.getBitcast(SVT, Op); 13352 } 13353 } 13354 } 13355 13356 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SVT, 13357 VT.getSizeInBits() / SVT.getSizeInBits()); 13358 return DAG.getBitcast(VT, DAG.getBuildVector(VecVT, DL, Ops)); 13359 } 13360 13361 // Check to see if this is a CONCAT_VECTORS of a bunch of EXTRACT_SUBVECTOR 13362 // operations. If so, and if the EXTRACT_SUBVECTOR vector inputs come from at 13363 // most two distinct vectors the same size as the result, attempt to turn this 13364 // into a legal shuffle. 13365 static SDValue combineConcatVectorOfExtracts(SDNode *N, SelectionDAG &DAG) { 13366 EVT VT = N->getValueType(0); 13367 EVT OpVT = N->getOperand(0).getValueType(); 13368 int NumElts = VT.getVectorNumElements(); 13369 int NumOpElts = OpVT.getVectorNumElements(); 13370 13371 SDValue SV0 = DAG.getUNDEF(VT), SV1 = DAG.getUNDEF(VT); 13372 SmallVector<int, 8> Mask; 13373 13374 for (SDValue Op : N->ops()) { 13375 // Peek through any bitcast. 13376 while (Op.getOpcode() == ISD::BITCAST) 13377 Op = Op.getOperand(0); 13378 13379 // UNDEF nodes convert to UNDEF shuffle mask values. 13380 if (Op.isUndef()) { 13381 Mask.append((unsigned)NumOpElts, -1); 13382 continue; 13383 } 13384 13385 if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR) 13386 return SDValue(); 13387 13388 // What vector are we extracting the subvector from and at what index? 13389 SDValue ExtVec = Op.getOperand(0); 13390 13391 // We want the EVT of the original extraction to correctly scale the 13392 // extraction index. 13393 EVT ExtVT = ExtVec.getValueType(); 13394 13395 // Peek through any bitcast. 13396 while (ExtVec.getOpcode() == ISD::BITCAST) 13397 ExtVec = ExtVec.getOperand(0); 13398 13399 // UNDEF nodes convert to UNDEF shuffle mask values. 13400 if (ExtVec.isUndef()) { 13401 Mask.append((unsigned)NumOpElts, -1); 13402 continue; 13403 } 13404 13405 if (!isa<ConstantSDNode>(Op.getOperand(1))) 13406 return SDValue(); 13407 int ExtIdx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); 13408 13409 // Ensure that we are extracting a subvector from a vector the same 13410 // size as the result. 13411 if (ExtVT.getSizeInBits() != VT.getSizeInBits()) 13412 return SDValue(); 13413 13414 // Scale the subvector index to account for any bitcast. 13415 int NumExtElts = ExtVT.getVectorNumElements(); 13416 if (0 == (NumExtElts % NumElts)) 13417 ExtIdx /= (NumExtElts / NumElts); 13418 else if (0 == (NumElts % NumExtElts)) 13419 ExtIdx *= (NumElts / NumExtElts); 13420 else 13421 return SDValue(); 13422 13423 // At most we can reference 2 inputs in the final shuffle. 13424 if (SV0.isUndef() || SV0 == ExtVec) { 13425 SV0 = ExtVec; 13426 for (int i = 0; i != NumOpElts; ++i) 13427 Mask.push_back(i + ExtIdx); 13428 } else if (SV1.isUndef() || SV1 == ExtVec) { 13429 SV1 = ExtVec; 13430 for (int i = 0; i != NumOpElts; ++i) 13431 Mask.push_back(i + ExtIdx + NumElts); 13432 } else { 13433 return SDValue(); 13434 } 13435 } 13436 13437 if (!DAG.getTargetLoweringInfo().isShuffleMaskLegal(Mask, VT)) 13438 return SDValue(); 13439 13440 return DAG.getVectorShuffle(VT, SDLoc(N), DAG.getBitcast(VT, SV0), 13441 DAG.getBitcast(VT, SV1), Mask); 13442 } 13443 13444 SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) { 13445 // If we only have one input vector, we don't need to do any concatenation. 13446 if (N->getNumOperands() == 1) 13447 return N->getOperand(0); 13448 13449 // Check if all of the operands are undefs. 13450 EVT VT = N->getValueType(0); 13451 if (ISD::allOperandsUndef(N)) 13452 return DAG.getUNDEF(VT); 13453 13454 // Optimize concat_vectors where all but the first of the vectors are undef. 13455 if (std::all_of(std::next(N->op_begin()), N->op_end(), [](const SDValue &Op) { 13456 return Op.isUndef(); 13457 })) { 13458 SDValue In = N->getOperand(0); 13459 assert(In.getValueType().isVector() && "Must concat vectors"); 13460 13461 // Transform: concat_vectors(scalar, undef) -> scalar_to_vector(sclr). 13462 if (In->getOpcode() == ISD::BITCAST && 13463 !In->getOperand(0)->getValueType(0).isVector()) { 13464 SDValue Scalar = In->getOperand(0); 13465 13466 // If the bitcast type isn't legal, it might be a trunc of a legal type; 13467 // look through the trunc so we can still do the transform: 13468 // concat_vectors(trunc(scalar), undef) -> scalar_to_vector(scalar) 13469 if (Scalar->getOpcode() == ISD::TRUNCATE && 13470 !TLI.isTypeLegal(Scalar.getValueType()) && 13471 TLI.isTypeLegal(Scalar->getOperand(0).getValueType())) 13472 Scalar = Scalar->getOperand(0); 13473 13474 EVT SclTy = Scalar->getValueType(0); 13475 13476 if (!SclTy.isFloatingPoint() && !SclTy.isInteger()) 13477 return SDValue(); 13478 13479 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SclTy, 13480 VT.getSizeInBits() / SclTy.getSizeInBits()); 13481 if (!TLI.isTypeLegal(NVT) || !TLI.isTypeLegal(Scalar.getValueType())) 13482 return SDValue(); 13483 13484 SDValue Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(N), NVT, Scalar); 13485 return DAG.getBitcast(VT, Res); 13486 } 13487 } 13488 13489 // Fold any combination of BUILD_VECTOR or UNDEF nodes into one BUILD_VECTOR. 13490 // We have already tested above for an UNDEF only concatenation. 13491 // fold (concat_vectors (BUILD_VECTOR A, B, ...), (BUILD_VECTOR C, D, ...)) 13492 // -> (BUILD_VECTOR A, B, ..., C, D, ...) 13493 auto IsBuildVectorOrUndef = [](const SDValue &Op) { 13494 return ISD::UNDEF == Op.getOpcode() || ISD::BUILD_VECTOR == Op.getOpcode(); 13495 }; 13496 if (llvm::all_of(N->ops(), IsBuildVectorOrUndef)) { 13497 SmallVector<SDValue, 8> Opnds; 13498 EVT SVT = VT.getScalarType(); 13499 13500 EVT MinVT = SVT; 13501 if (!SVT.isFloatingPoint()) { 13502 // If BUILD_VECTOR are from built from integer, they may have different 13503 // operand types. Get the smallest type and truncate all operands to it. 13504 bool FoundMinVT = false; 13505 for (const SDValue &Op : N->ops()) 13506 if (ISD::BUILD_VECTOR == Op.getOpcode()) { 13507 EVT OpSVT = Op.getOperand(0)->getValueType(0); 13508 MinVT = (!FoundMinVT || OpSVT.bitsLE(MinVT)) ? OpSVT : MinVT; 13509 FoundMinVT = true; 13510 } 13511 assert(FoundMinVT && "Concat vector type mismatch"); 13512 } 13513 13514 for (const SDValue &Op : N->ops()) { 13515 EVT OpVT = Op.getValueType(); 13516 unsigned NumElts = OpVT.getVectorNumElements(); 13517 13518 if (ISD::UNDEF == Op.getOpcode()) 13519 Opnds.append(NumElts, DAG.getUNDEF(MinVT)); 13520 13521 if (ISD::BUILD_VECTOR == Op.getOpcode()) { 13522 if (SVT.isFloatingPoint()) { 13523 assert(SVT == OpVT.getScalarType() && "Concat vector type mismatch"); 13524 Opnds.append(Op->op_begin(), Op->op_begin() + NumElts); 13525 } else { 13526 for (unsigned i = 0; i != NumElts; ++i) 13527 Opnds.push_back( 13528 DAG.getNode(ISD::TRUNCATE, SDLoc(N), MinVT, Op.getOperand(i))); 13529 } 13530 } 13531 } 13532 13533 assert(VT.getVectorNumElements() == Opnds.size() && 13534 "Concat vector type mismatch"); 13535 return DAG.getBuildVector(VT, SDLoc(N), Opnds); 13536 } 13537 13538 // Fold CONCAT_VECTORS of only bitcast scalars (or undef) to BUILD_VECTOR. 13539 if (SDValue V = combineConcatVectorOfScalars(N, DAG)) 13540 return V; 13541 13542 // Fold CONCAT_VECTORS of EXTRACT_SUBVECTOR (or undef) to VECTOR_SHUFFLE. 13543 if (Level < AfterLegalizeVectorOps && TLI.isTypeLegal(VT)) 13544 if (SDValue V = combineConcatVectorOfExtracts(N, DAG)) 13545 return V; 13546 13547 // Type legalization of vectors and DAG canonicalization of SHUFFLE_VECTOR 13548 // nodes often generate nop CONCAT_VECTOR nodes. 13549 // Scan the CONCAT_VECTOR operands and look for a CONCAT operations that 13550 // place the incoming vectors at the exact same location. 13551 SDValue SingleSource = SDValue(); 13552 unsigned PartNumElem = N->getOperand(0).getValueType().getVectorNumElements(); 13553 13554 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 13555 SDValue Op = N->getOperand(i); 13556 13557 if (Op.isUndef()) 13558 continue; 13559 13560 // Check if this is the identity extract: 13561 if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR) 13562 return SDValue(); 13563 13564 // Find the single incoming vector for the extract_subvector. 13565 if (SingleSource.getNode()) { 13566 if (Op.getOperand(0) != SingleSource) 13567 return SDValue(); 13568 } else { 13569 SingleSource = Op.getOperand(0); 13570 13571 // Check the source type is the same as the type of the result. 13572 // If not, this concat may extend the vector, so we can not 13573 // optimize it away. 13574 if (SingleSource.getValueType() != N->getValueType(0)) 13575 return SDValue(); 13576 } 13577 13578 unsigned IdentityIndex = i * PartNumElem; 13579 ConstantSDNode *CS = dyn_cast<ConstantSDNode>(Op.getOperand(1)); 13580 // The extract index must be constant. 13581 if (!CS) 13582 return SDValue(); 13583 13584 // Check that we are reading from the identity index. 13585 if (CS->getZExtValue() != IdentityIndex) 13586 return SDValue(); 13587 } 13588 13589 if (SingleSource.getNode()) 13590 return SingleSource; 13591 13592 return SDValue(); 13593 } 13594 13595 SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) { 13596 EVT NVT = N->getValueType(0); 13597 SDValue V = N->getOperand(0); 13598 13599 if (V->getOpcode() == ISD::CONCAT_VECTORS) { 13600 // Combine: 13601 // (extract_subvec (concat V1, V2, ...), i) 13602 // Into: 13603 // Vi if possible 13604 // Only operand 0 is checked as 'concat' assumes all inputs of the same 13605 // type. 13606 if (V->getOperand(0).getValueType() != NVT) 13607 return SDValue(); 13608 unsigned Idx = N->getConstantOperandVal(1); 13609 unsigned NumElems = NVT.getVectorNumElements(); 13610 assert((Idx % NumElems) == 0 && 13611 "IDX in concat is not a multiple of the result vector length."); 13612 return V->getOperand(Idx / NumElems); 13613 } 13614 13615 // Skip bitcasting 13616 if (V->getOpcode() == ISD::BITCAST) 13617 V = V.getOperand(0); 13618 13619 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) { 13620 // Handle only simple case where vector being inserted and vector 13621 // being extracted are of same type, and are half size of larger vectors. 13622 EVT BigVT = V->getOperand(0).getValueType(); 13623 EVT SmallVT = V->getOperand(1).getValueType(); 13624 if (!NVT.bitsEq(SmallVT) || NVT.getSizeInBits()*2 != BigVT.getSizeInBits()) 13625 return SDValue(); 13626 13627 // Only handle cases where both indexes are constants with the same type. 13628 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1)); 13629 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2)); 13630 13631 if (InsIdx && ExtIdx && 13632 InsIdx->getValueType(0).getSizeInBits() <= 64 && 13633 ExtIdx->getValueType(0).getSizeInBits() <= 64) { 13634 // Combine: 13635 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx) 13636 // Into: 13637 // indices are equal or bit offsets are equal => V1 13638 // otherwise => (extract_subvec V1, ExtIdx) 13639 if (InsIdx->getZExtValue() * SmallVT.getScalarSizeInBits() == 13640 ExtIdx->getZExtValue() * NVT.getScalarSizeInBits()) 13641 return DAG.getBitcast(NVT, V->getOperand(1)); 13642 return DAG.getNode( 13643 ISD::EXTRACT_SUBVECTOR, SDLoc(N), NVT, 13644 DAG.getBitcast(N->getOperand(0).getValueType(), V->getOperand(0)), 13645 N->getOperand(1)); 13646 } 13647 } 13648 13649 return SDValue(); 13650 } 13651 13652 static SDValue simplifyShuffleOperandRecursively(SmallBitVector &UsedElements, 13653 SDValue V, SelectionDAG &DAG) { 13654 SDLoc DL(V); 13655 EVT VT = V.getValueType(); 13656 13657 switch (V.getOpcode()) { 13658 default: 13659 return V; 13660 13661 case ISD::CONCAT_VECTORS: { 13662 EVT OpVT = V->getOperand(0).getValueType(); 13663 int OpSize = OpVT.getVectorNumElements(); 13664 SmallBitVector OpUsedElements(OpSize, false); 13665 bool FoundSimplification = false; 13666 SmallVector<SDValue, 4> NewOps; 13667 NewOps.reserve(V->getNumOperands()); 13668 for (int i = 0, NumOps = V->getNumOperands(); i < NumOps; ++i) { 13669 SDValue Op = V->getOperand(i); 13670 bool OpUsed = false; 13671 for (int j = 0; j < OpSize; ++j) 13672 if (UsedElements[i * OpSize + j]) { 13673 OpUsedElements[j] = true; 13674 OpUsed = true; 13675 } 13676 NewOps.push_back( 13677 OpUsed ? simplifyShuffleOperandRecursively(OpUsedElements, Op, DAG) 13678 : DAG.getUNDEF(OpVT)); 13679 FoundSimplification |= Op == NewOps.back(); 13680 OpUsedElements.reset(); 13681 } 13682 if (FoundSimplification) 13683 V = DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, NewOps); 13684 return V; 13685 } 13686 13687 case ISD::INSERT_SUBVECTOR: { 13688 SDValue BaseV = V->getOperand(0); 13689 SDValue SubV = V->getOperand(1); 13690 auto *IdxN = dyn_cast<ConstantSDNode>(V->getOperand(2)); 13691 if (!IdxN) 13692 return V; 13693 13694 int SubSize = SubV.getValueType().getVectorNumElements(); 13695 int Idx = IdxN->getZExtValue(); 13696 bool SubVectorUsed = false; 13697 SmallBitVector SubUsedElements(SubSize, false); 13698 for (int i = 0; i < SubSize; ++i) 13699 if (UsedElements[i + Idx]) { 13700 SubVectorUsed = true; 13701 SubUsedElements[i] = true; 13702 UsedElements[i + Idx] = false; 13703 } 13704 13705 // Now recurse on both the base and sub vectors. 13706 SDValue SimplifiedSubV = 13707 SubVectorUsed 13708 ? simplifyShuffleOperandRecursively(SubUsedElements, SubV, DAG) 13709 : DAG.getUNDEF(SubV.getValueType()); 13710 SDValue SimplifiedBaseV = simplifyShuffleOperandRecursively(UsedElements, BaseV, DAG); 13711 if (SimplifiedSubV != SubV || SimplifiedBaseV != BaseV) 13712 V = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, VT, 13713 SimplifiedBaseV, SimplifiedSubV, V->getOperand(2)); 13714 return V; 13715 } 13716 } 13717 } 13718 13719 static SDValue simplifyShuffleOperands(ShuffleVectorSDNode *SVN, SDValue N0, 13720 SDValue N1, SelectionDAG &DAG) { 13721 EVT VT = SVN->getValueType(0); 13722 int NumElts = VT.getVectorNumElements(); 13723 SmallBitVector N0UsedElements(NumElts, false), N1UsedElements(NumElts, false); 13724 for (int M : SVN->getMask()) 13725 if (M >= 0 && M < NumElts) 13726 N0UsedElements[M] = true; 13727 else if (M >= NumElts) 13728 N1UsedElements[M - NumElts] = true; 13729 13730 SDValue S0 = simplifyShuffleOperandRecursively(N0UsedElements, N0, DAG); 13731 SDValue S1 = simplifyShuffleOperandRecursively(N1UsedElements, N1, DAG); 13732 if (S0 == N0 && S1 == N1) 13733 return SDValue(); 13734 13735 return DAG.getVectorShuffle(VT, SDLoc(SVN), S0, S1, SVN->getMask()); 13736 } 13737 13738 // Tries to turn a shuffle of two CONCAT_VECTORS into a single concat, 13739 // or turn a shuffle of a single concat into simpler shuffle then concat. 13740 static SDValue partitionShuffleOfConcats(SDNode *N, SelectionDAG &DAG) { 13741 EVT VT = N->getValueType(0); 13742 unsigned NumElts = VT.getVectorNumElements(); 13743 13744 SDValue N0 = N->getOperand(0); 13745 SDValue N1 = N->getOperand(1); 13746 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); 13747 13748 SmallVector<SDValue, 4> Ops; 13749 EVT ConcatVT = N0.getOperand(0).getValueType(); 13750 unsigned NumElemsPerConcat = ConcatVT.getVectorNumElements(); 13751 unsigned NumConcats = NumElts / NumElemsPerConcat; 13752 13753 // Special case: shuffle(concat(A,B)) can be more efficiently represented 13754 // as concat(shuffle(A,B),UNDEF) if the shuffle doesn't set any of the high 13755 // half vector elements. 13756 if (NumElemsPerConcat * 2 == NumElts && N1.isUndef() && 13757 std::all_of(SVN->getMask().begin() + NumElemsPerConcat, 13758 SVN->getMask().end(), [](int i) { return i == -1; })) { 13759 N0 = DAG.getVectorShuffle(ConcatVT, SDLoc(N), N0.getOperand(0), N0.getOperand(1), 13760 makeArrayRef(SVN->getMask().begin(), NumElemsPerConcat)); 13761 N1 = DAG.getUNDEF(ConcatVT); 13762 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, N0, N1); 13763 } 13764 13765 // Look at every vector that's inserted. We're looking for exact 13766 // subvector-sized copies from a concatenated vector 13767 for (unsigned I = 0; I != NumConcats; ++I) { 13768 // Make sure we're dealing with a copy. 13769 unsigned Begin = I * NumElemsPerConcat; 13770 bool AllUndef = true, NoUndef = true; 13771 for (unsigned J = Begin; J != Begin + NumElemsPerConcat; ++J) { 13772 if (SVN->getMaskElt(J) >= 0) 13773 AllUndef = false; 13774 else 13775 NoUndef = false; 13776 } 13777 13778 if (NoUndef) { 13779 if (SVN->getMaskElt(Begin) % NumElemsPerConcat != 0) 13780 return SDValue(); 13781 13782 for (unsigned J = 1; J != NumElemsPerConcat; ++J) 13783 if (SVN->getMaskElt(Begin + J - 1) + 1 != SVN->getMaskElt(Begin + J)) 13784 return SDValue(); 13785 13786 unsigned FirstElt = SVN->getMaskElt(Begin) / NumElemsPerConcat; 13787 if (FirstElt < N0.getNumOperands()) 13788 Ops.push_back(N0.getOperand(FirstElt)); 13789 else 13790 Ops.push_back(N1.getOperand(FirstElt - N0.getNumOperands())); 13791 13792 } else if (AllUndef) { 13793 Ops.push_back(DAG.getUNDEF(N0.getOperand(0).getValueType())); 13794 } else { // Mixed with general masks and undefs, can't do optimization. 13795 return SDValue(); 13796 } 13797 } 13798 13799 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Ops); 13800 } 13801 13802 // Attempt to combine a shuffle of 2 inputs of 'scalar sources' - 13803 // BUILD_VECTOR or SCALAR_TO_VECTOR into a single BUILD_VECTOR. 13804 // 13805 // SHUFFLE(BUILD_VECTOR(), BUILD_VECTOR()) -> BUILD_VECTOR() is always 13806 // a simplification in some sense, but it isn't appropriate in general: some 13807 // BUILD_VECTORs are substantially cheaper than others. The general case 13808 // of a BUILD_VECTOR requires inserting each element individually (or 13809 // performing the equivalent in a temporary stack variable). A BUILD_VECTOR of 13810 // all constants is a single constant pool load. A BUILD_VECTOR where each 13811 // element is identical is a splat. A BUILD_VECTOR where most of the operands 13812 // are undef lowers to a small number of element insertions. 13813 // 13814 // To deal with this, we currently use a bunch of mostly arbitrary heuristics. 13815 // We don't fold shuffles where one side is a non-zero constant, and we don't 13816 // fold shuffles if the resulting BUILD_VECTOR would have duplicate 13817 // non-constant operands. This seems to work out reasonably well in practice. 13818 static SDValue combineShuffleOfScalars(ShuffleVectorSDNode *SVN, 13819 SelectionDAG &DAG, 13820 const TargetLowering &TLI) { 13821 EVT VT = SVN->getValueType(0); 13822 unsigned NumElts = VT.getVectorNumElements(); 13823 SDValue N0 = SVN->getOperand(0); 13824 SDValue N1 = SVN->getOperand(1); 13825 13826 if (!N0->hasOneUse() || !N1->hasOneUse()) 13827 return SDValue(); 13828 // If only one of N1,N2 is constant, bail out if it is not ALL_ZEROS as 13829 // discussed above. 13830 if (!N1.isUndef()) { 13831 bool N0AnyConst = isAnyConstantBuildVector(N0.getNode()); 13832 bool N1AnyConst = isAnyConstantBuildVector(N1.getNode()); 13833 if (N0AnyConst && !N1AnyConst && !ISD::isBuildVectorAllZeros(N0.getNode())) 13834 return SDValue(); 13835 if (!N0AnyConst && N1AnyConst && !ISD::isBuildVectorAllZeros(N1.getNode())) 13836 return SDValue(); 13837 } 13838 13839 SmallVector<SDValue, 8> Ops; 13840 SmallSet<SDValue, 16> DuplicateOps; 13841 for (int M : SVN->getMask()) { 13842 SDValue Op = DAG.getUNDEF(VT.getScalarType()); 13843 if (M >= 0) { 13844 int Idx = M < (int)NumElts ? M : M - NumElts; 13845 SDValue &S = (M < (int)NumElts ? N0 : N1); 13846 if (S.getOpcode() == ISD::BUILD_VECTOR) { 13847 Op = S.getOperand(Idx); 13848 } else if (S.getOpcode() == ISD::SCALAR_TO_VECTOR) { 13849 if (Idx == 0) 13850 Op = S.getOperand(0); 13851 } else { 13852 // Operand can't be combined - bail out. 13853 return SDValue(); 13854 } 13855 } 13856 13857 // Don't duplicate a non-constant BUILD_VECTOR operand; semantically, this is 13858 // fine, but it's likely to generate low-quality code if the target can't 13859 // reconstruct an appropriate shuffle. 13860 if (!Op.isUndef() && !isa<ConstantSDNode>(Op) && !isa<ConstantFPSDNode>(Op)) 13861 if (!DuplicateOps.insert(Op).second) 13862 return SDValue(); 13863 13864 Ops.push_back(Op); 13865 } 13866 // BUILD_VECTOR requires all inputs to be of the same type, find the 13867 // maximum type and extend them all. 13868 EVT SVT = VT.getScalarType(); 13869 if (SVT.isInteger()) 13870 for (SDValue &Op : Ops) 13871 SVT = (SVT.bitsLT(Op.getValueType()) ? Op.getValueType() : SVT); 13872 if (SVT != VT.getScalarType()) 13873 for (SDValue &Op : Ops) 13874 Op = TLI.isZExtFree(Op.getValueType(), SVT) 13875 ? DAG.getZExtOrTrunc(Op, SDLoc(SVN), SVT) 13876 : DAG.getSExtOrTrunc(Op, SDLoc(SVN), SVT); 13877 return DAG.getBuildVector(VT, SDLoc(SVN), Ops); 13878 } 13879 13880 SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) { 13881 EVT VT = N->getValueType(0); 13882 unsigned NumElts = VT.getVectorNumElements(); 13883 13884 SDValue N0 = N->getOperand(0); 13885 SDValue N1 = N->getOperand(1); 13886 13887 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG"); 13888 13889 // Canonicalize shuffle undef, undef -> undef 13890 if (N0.isUndef() && N1.isUndef()) 13891 return DAG.getUNDEF(VT); 13892 13893 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); 13894 13895 // Canonicalize shuffle v, v -> v, undef 13896 if (N0 == N1) { 13897 SmallVector<int, 8> NewMask; 13898 for (unsigned i = 0; i != NumElts; ++i) { 13899 int Idx = SVN->getMaskElt(i); 13900 if (Idx >= (int)NumElts) Idx -= NumElts; 13901 NewMask.push_back(Idx); 13902 } 13903 return DAG.getVectorShuffle(VT, SDLoc(N), N0, DAG.getUNDEF(VT), NewMask); 13904 } 13905 13906 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask. 13907 if (N0.isUndef()) 13908 return DAG.getCommutedVectorShuffle(*SVN); 13909 13910 // Remove references to rhs if it is undef 13911 if (N1.isUndef()) { 13912 bool Changed = false; 13913 SmallVector<int, 8> NewMask; 13914 for (unsigned i = 0; i != NumElts; ++i) { 13915 int Idx = SVN->getMaskElt(i); 13916 if (Idx >= (int)NumElts) { 13917 Idx = -1; 13918 Changed = true; 13919 } 13920 NewMask.push_back(Idx); 13921 } 13922 if (Changed) 13923 return DAG.getVectorShuffle(VT, SDLoc(N), N0, N1, NewMask); 13924 } 13925 13926 // If it is a splat, check if the argument vector is another splat or a 13927 // build_vector. 13928 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) { 13929 SDNode *V = N0.getNode(); 13930 13931 // If this is a bit convert that changes the element type of the vector but 13932 // not the number of vector elements, look through it. Be careful not to 13933 // look though conversions that change things like v4f32 to v2f64. 13934 if (V->getOpcode() == ISD::BITCAST) { 13935 SDValue ConvInput = V->getOperand(0); 13936 if (ConvInput.getValueType().isVector() && 13937 ConvInput.getValueType().getVectorNumElements() == NumElts) 13938 V = ConvInput.getNode(); 13939 } 13940 13941 if (V->getOpcode() == ISD::BUILD_VECTOR) { 13942 assert(V->getNumOperands() == NumElts && 13943 "BUILD_VECTOR has wrong number of operands"); 13944 SDValue Base; 13945 bool AllSame = true; 13946 for (unsigned i = 0; i != NumElts; ++i) { 13947 if (!V->getOperand(i).isUndef()) { 13948 Base = V->getOperand(i); 13949 break; 13950 } 13951 } 13952 // Splat of <u, u, u, u>, return <u, u, u, u> 13953 if (!Base.getNode()) 13954 return N0; 13955 for (unsigned i = 0; i != NumElts; ++i) { 13956 if (V->getOperand(i) != Base) { 13957 AllSame = false; 13958 break; 13959 } 13960 } 13961 // Splat of <x, x, x, x>, return <x, x, x, x> 13962 if (AllSame) 13963 return N0; 13964 13965 // Canonicalize any other splat as a build_vector. 13966 const SDValue &Splatted = V->getOperand(SVN->getSplatIndex()); 13967 SmallVector<SDValue, 8> Ops(NumElts, Splatted); 13968 SDValue NewBV = DAG.getBuildVector(V->getValueType(0), SDLoc(N), Ops); 13969 13970 // We may have jumped through bitcasts, so the type of the 13971 // BUILD_VECTOR may not match the type of the shuffle. 13972 if (V->getValueType(0) != VT) 13973 NewBV = DAG.getBitcast(VT, NewBV); 13974 return NewBV; 13975 } 13976 } 13977 13978 // There are various patterns used to build up a vector from smaller vectors, 13979 // subvectors, or elements. Scan chains of these and replace unused insertions 13980 // or components with undef. 13981 if (SDValue S = simplifyShuffleOperands(SVN, N0, N1, DAG)) 13982 return S; 13983 13984 if (N0.getOpcode() == ISD::CONCAT_VECTORS && 13985 Level < AfterLegalizeVectorOps && 13986 (N1.isUndef() || 13987 (N1.getOpcode() == ISD::CONCAT_VECTORS && 13988 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()))) { 13989 if (SDValue V = partitionShuffleOfConcats(N, DAG)) 13990 return V; 13991 } 13992 13993 // Attempt to combine a shuffle of 2 inputs of 'scalar sources' - 13994 // BUILD_VECTOR or SCALAR_TO_VECTOR into a single BUILD_VECTOR. 13995 if (Level < AfterLegalizeVectorOps && TLI.isTypeLegal(VT)) 13996 if (SDValue Res = combineShuffleOfScalars(SVN, DAG, TLI)) 13997 return Res; 13998 13999 // If this shuffle only has a single input that is a bitcasted shuffle, 14000 // attempt to merge the 2 shuffles and suitably bitcast the inputs/output 14001 // back to their original types. 14002 if (N0.getOpcode() == ISD::BITCAST && N0.hasOneUse() && 14003 N1.isUndef() && Level < AfterLegalizeVectorOps && 14004 TLI.isTypeLegal(VT)) { 14005 14006 // Peek through the bitcast only if there is one user. 14007 SDValue BC0 = N0; 14008 while (BC0.getOpcode() == ISD::BITCAST) { 14009 if (!BC0.hasOneUse()) 14010 break; 14011 BC0 = BC0.getOperand(0); 14012 } 14013 14014 auto ScaleShuffleMask = [](ArrayRef<int> Mask, int Scale) { 14015 if (Scale == 1) 14016 return SmallVector<int, 8>(Mask.begin(), Mask.end()); 14017 14018 SmallVector<int, 8> NewMask; 14019 for (int M : Mask) 14020 for (int s = 0; s != Scale; ++s) 14021 NewMask.push_back(M < 0 ? -1 : Scale * M + s); 14022 return NewMask; 14023 }; 14024 14025 if (BC0.getOpcode() == ISD::VECTOR_SHUFFLE && BC0.hasOneUse()) { 14026 EVT SVT = VT.getScalarType(); 14027 EVT InnerVT = BC0->getValueType(0); 14028 EVT InnerSVT = InnerVT.getScalarType(); 14029 14030 // Determine which shuffle works with the smaller scalar type. 14031 EVT ScaleVT = SVT.bitsLT(InnerSVT) ? VT : InnerVT; 14032 EVT ScaleSVT = ScaleVT.getScalarType(); 14033 14034 if (TLI.isTypeLegal(ScaleVT) && 14035 0 == (InnerSVT.getSizeInBits() % ScaleSVT.getSizeInBits()) && 14036 0 == (SVT.getSizeInBits() % ScaleSVT.getSizeInBits())) { 14037 14038 int InnerScale = InnerSVT.getSizeInBits() / ScaleSVT.getSizeInBits(); 14039 int OuterScale = SVT.getSizeInBits() / ScaleSVT.getSizeInBits(); 14040 14041 // Scale the shuffle masks to the smaller scalar type. 14042 ShuffleVectorSDNode *InnerSVN = cast<ShuffleVectorSDNode>(BC0); 14043 SmallVector<int, 8> InnerMask = 14044 ScaleShuffleMask(InnerSVN->getMask(), InnerScale); 14045 SmallVector<int, 8> OuterMask = 14046 ScaleShuffleMask(SVN->getMask(), OuterScale); 14047 14048 // Merge the shuffle masks. 14049 SmallVector<int, 8> NewMask; 14050 for (int M : OuterMask) 14051 NewMask.push_back(M < 0 ? -1 : InnerMask[M]); 14052 14053 // Test for shuffle mask legality over both commutations. 14054 SDValue SV0 = BC0->getOperand(0); 14055 SDValue SV1 = BC0->getOperand(1); 14056 bool LegalMask = TLI.isShuffleMaskLegal(NewMask, ScaleVT); 14057 if (!LegalMask) { 14058 std::swap(SV0, SV1); 14059 ShuffleVectorSDNode::commuteMask(NewMask); 14060 LegalMask = TLI.isShuffleMaskLegal(NewMask, ScaleVT); 14061 } 14062 14063 if (LegalMask) { 14064 SV0 = DAG.getBitcast(ScaleVT, SV0); 14065 SV1 = DAG.getBitcast(ScaleVT, SV1); 14066 return DAG.getBitcast( 14067 VT, DAG.getVectorShuffle(ScaleVT, SDLoc(N), SV0, SV1, NewMask)); 14068 } 14069 } 14070 } 14071 } 14072 14073 // Canonicalize shuffles according to rules: 14074 // shuffle(A, shuffle(A, B)) -> shuffle(shuffle(A,B), A) 14075 // shuffle(B, shuffle(A, B)) -> shuffle(shuffle(A,B), B) 14076 // shuffle(B, shuffle(A, Undef)) -> shuffle(shuffle(A, Undef), B) 14077 if (N1.getOpcode() == ISD::VECTOR_SHUFFLE && 14078 N0.getOpcode() != ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG && 14079 TLI.isTypeLegal(VT)) { 14080 // The incoming shuffle must be of the same type as the result of the 14081 // current shuffle. 14082 assert(N1->getOperand(0).getValueType() == VT && 14083 "Shuffle types don't match"); 14084 14085 SDValue SV0 = N1->getOperand(0); 14086 SDValue SV1 = N1->getOperand(1); 14087 bool HasSameOp0 = N0 == SV0; 14088 bool IsSV1Undef = SV1.isUndef(); 14089 if (HasSameOp0 || IsSV1Undef || N0 == SV1) 14090 // Commute the operands of this shuffle so that next rule 14091 // will trigger. 14092 return DAG.getCommutedVectorShuffle(*SVN); 14093 } 14094 14095 // Try to fold according to rules: 14096 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(A, B, M2) 14097 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(A, C, M2) 14098 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(B, C, M2) 14099 // Don't try to fold shuffles with illegal type. 14100 // Only fold if this shuffle is the only user of the other shuffle. 14101 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && N->isOnlyUserOf(N0.getNode()) && 14102 Level < AfterLegalizeDAG && TLI.isTypeLegal(VT)) { 14103 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0); 14104 14105 // Don't try to fold splats; they're likely to simplify somehow, or they 14106 // might be free. 14107 if (OtherSV->isSplat()) 14108 return SDValue(); 14109 14110 // The incoming shuffle must be of the same type as the result of the 14111 // current shuffle. 14112 assert(OtherSV->getOperand(0).getValueType() == VT && 14113 "Shuffle types don't match"); 14114 14115 SDValue SV0, SV1; 14116 SmallVector<int, 4> Mask; 14117 // Compute the combined shuffle mask for a shuffle with SV0 as the first 14118 // operand, and SV1 as the second operand. 14119 for (unsigned i = 0; i != NumElts; ++i) { 14120 int Idx = SVN->getMaskElt(i); 14121 if (Idx < 0) { 14122 // Propagate Undef. 14123 Mask.push_back(Idx); 14124 continue; 14125 } 14126 14127 SDValue CurrentVec; 14128 if (Idx < (int)NumElts) { 14129 // This shuffle index refers to the inner shuffle N0. Lookup the inner 14130 // shuffle mask to identify which vector is actually referenced. 14131 Idx = OtherSV->getMaskElt(Idx); 14132 if (Idx < 0) { 14133 // Propagate Undef. 14134 Mask.push_back(Idx); 14135 continue; 14136 } 14137 14138 CurrentVec = (Idx < (int) NumElts) ? OtherSV->getOperand(0) 14139 : OtherSV->getOperand(1); 14140 } else { 14141 // This shuffle index references an element within N1. 14142 CurrentVec = N1; 14143 } 14144 14145 // Simple case where 'CurrentVec' is UNDEF. 14146 if (CurrentVec.isUndef()) { 14147 Mask.push_back(-1); 14148 continue; 14149 } 14150 14151 // Canonicalize the shuffle index. We don't know yet if CurrentVec 14152 // will be the first or second operand of the combined shuffle. 14153 Idx = Idx % NumElts; 14154 if (!SV0.getNode() || SV0 == CurrentVec) { 14155 // Ok. CurrentVec is the left hand side. 14156 // Update the mask accordingly. 14157 SV0 = CurrentVec; 14158 Mask.push_back(Idx); 14159 continue; 14160 } 14161 14162 // Bail out if we cannot convert the shuffle pair into a single shuffle. 14163 if (SV1.getNode() && SV1 != CurrentVec) 14164 return SDValue(); 14165 14166 // Ok. CurrentVec is the right hand side. 14167 // Update the mask accordingly. 14168 SV1 = CurrentVec; 14169 Mask.push_back(Idx + NumElts); 14170 } 14171 14172 // Check if all indices in Mask are Undef. In case, propagate Undef. 14173 bool isUndefMask = true; 14174 for (unsigned i = 0; i != NumElts && isUndefMask; ++i) 14175 isUndefMask &= Mask[i] < 0; 14176 14177 if (isUndefMask) 14178 return DAG.getUNDEF(VT); 14179 14180 if (!SV0.getNode()) 14181 SV0 = DAG.getUNDEF(VT); 14182 if (!SV1.getNode()) 14183 SV1 = DAG.getUNDEF(VT); 14184 14185 // Avoid introducing shuffles with illegal mask. 14186 if (!TLI.isShuffleMaskLegal(Mask, VT)) { 14187 ShuffleVectorSDNode::commuteMask(Mask); 14188 14189 if (!TLI.isShuffleMaskLegal(Mask, VT)) 14190 return SDValue(); 14191 14192 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(B, A, M2) 14193 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(C, A, M2) 14194 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(C, B, M2) 14195 std::swap(SV0, SV1); 14196 } 14197 14198 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(A, B, M2) 14199 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(A, C, M2) 14200 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(B, C, M2) 14201 return DAG.getVectorShuffle(VT, SDLoc(N), SV0, SV1, Mask); 14202 } 14203 14204 return SDValue(); 14205 } 14206 14207 SDValue DAGCombiner::visitSCALAR_TO_VECTOR(SDNode *N) { 14208 SDValue InVal = N->getOperand(0); 14209 EVT VT = N->getValueType(0); 14210 14211 // Replace a SCALAR_TO_VECTOR(EXTRACT_VECTOR_ELT(V,C0)) pattern 14212 // with a VECTOR_SHUFFLE. 14213 if (InVal.getOpcode() == ISD::EXTRACT_VECTOR_ELT) { 14214 SDValue InVec = InVal->getOperand(0); 14215 SDValue EltNo = InVal->getOperand(1); 14216 14217 // FIXME: We could support implicit truncation if the shuffle can be 14218 // scaled to a smaller vector scalar type. 14219 ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(EltNo); 14220 if (C0 && VT == InVec.getValueType() && 14221 VT.getScalarType() == InVal.getValueType()) { 14222 SmallVector<int, 8> NewMask(VT.getVectorNumElements(), -1); 14223 int Elt = C0->getZExtValue(); 14224 NewMask[0] = Elt; 14225 14226 if (TLI.isShuffleMaskLegal(NewMask, VT)) 14227 return DAG.getVectorShuffle(VT, SDLoc(N), InVec, DAG.getUNDEF(VT), 14228 NewMask); 14229 } 14230 } 14231 14232 return SDValue(); 14233 } 14234 14235 SDValue DAGCombiner::visitINSERT_SUBVECTOR(SDNode *N) { 14236 EVT VT = N->getValueType(0); 14237 SDValue N0 = N->getOperand(0); 14238 SDValue N1 = N->getOperand(1); 14239 SDValue N2 = N->getOperand(2); 14240 14241 // Combine INSERT_SUBVECTORs where we are inserting to the same index. 14242 // INSERT_SUBVECTOR( INSERT_SUBVECTOR( Vec, SubOld, Idx ), SubNew, Idx ) 14243 // --> INSERT_SUBVECTOR( Vec, SubNew, Idx ) 14244 if (N0.getOpcode() == ISD::INSERT_SUBVECTOR && 14245 N0.getOperand(1).getValueType() == N1.getValueType() && 14246 N0.getOperand(2) == N2) 14247 return DAG.getNode(ISD::INSERT_SUBVECTOR, SDLoc(N), VT, N0.getOperand(0), 14248 N1, N2); 14249 14250 if (N0.getValueType() != N1.getValueType()) 14251 return SDValue(); 14252 14253 // If the input vector is a concatenation, and the insert replaces 14254 // one of the halves, we can optimize into a single concat_vectors. 14255 if (N0.getOpcode() == ISD::CONCAT_VECTORS && N0->getNumOperands() == 2 && 14256 N2.getOpcode() == ISD::Constant) { 14257 APInt InsIdx = cast<ConstantSDNode>(N2)->getAPIntValue(); 14258 14259 // Lower half: fold (insert_subvector (concat_vectors X, Y), Z) -> 14260 // (concat_vectors Z, Y) 14261 if (InsIdx == 0) 14262 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, N1, 14263 N0.getOperand(1)); 14264 14265 // Upper half: fold (insert_subvector (concat_vectors X, Y), Z) -> 14266 // (concat_vectors X, Z) 14267 if (InsIdx == VT.getVectorNumElements() / 2) 14268 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, N0.getOperand(0), 14269 N1); 14270 } 14271 14272 return SDValue(); 14273 } 14274 14275 SDValue DAGCombiner::visitFP_TO_FP16(SDNode *N) { 14276 SDValue N0 = N->getOperand(0); 14277 14278 // fold (fp_to_fp16 (fp16_to_fp op)) -> op 14279 if (N0->getOpcode() == ISD::FP16_TO_FP) 14280 return N0->getOperand(0); 14281 14282 return SDValue(); 14283 } 14284 14285 SDValue DAGCombiner::visitFP16_TO_FP(SDNode *N) { 14286 SDValue N0 = N->getOperand(0); 14287 14288 // fold fp16_to_fp(op & 0xffff) -> fp16_to_fp(op) 14289 if (N0->getOpcode() == ISD::AND) { 14290 ConstantSDNode *AndConst = getAsNonOpaqueConstant(N0.getOperand(1)); 14291 if (AndConst && AndConst->getAPIntValue() == 0xffff) { 14292 return DAG.getNode(ISD::FP16_TO_FP, SDLoc(N), N->getValueType(0), 14293 N0.getOperand(0)); 14294 } 14295 } 14296 14297 return SDValue(); 14298 } 14299 14300 /// Returns a vector_shuffle if it able to transform an AND to a vector_shuffle 14301 /// with the destination vector and a zero vector. 14302 /// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==> 14303 /// vector_shuffle V, Zero, <0, 4, 2, 4> 14304 SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) { 14305 EVT VT = N->getValueType(0); 14306 SDValue LHS = N->getOperand(0); 14307 SDValue RHS = N->getOperand(1); 14308 SDLoc DL(N); 14309 14310 // Make sure we're not running after operation legalization where it 14311 // may have custom lowered the vector shuffles. 14312 if (LegalOperations) 14313 return SDValue(); 14314 14315 if (N->getOpcode() != ISD::AND) 14316 return SDValue(); 14317 14318 if (RHS.getOpcode() == ISD::BITCAST) 14319 RHS = RHS.getOperand(0); 14320 14321 if (RHS.getOpcode() != ISD::BUILD_VECTOR) 14322 return SDValue(); 14323 14324 EVT RVT = RHS.getValueType(); 14325 unsigned NumElts = RHS.getNumOperands(); 14326 14327 // Attempt to create a valid clear mask, splitting the mask into 14328 // sub elements and checking to see if each is 14329 // all zeros or all ones - suitable for shuffle masking. 14330 auto BuildClearMask = [&](int Split) { 14331 int NumSubElts = NumElts * Split; 14332 int NumSubBits = RVT.getScalarSizeInBits() / Split; 14333 14334 SmallVector<int, 8> Indices; 14335 for (int i = 0; i != NumSubElts; ++i) { 14336 int EltIdx = i / Split; 14337 int SubIdx = i % Split; 14338 SDValue Elt = RHS.getOperand(EltIdx); 14339 if (Elt.isUndef()) { 14340 Indices.push_back(-1); 14341 continue; 14342 } 14343 14344 APInt Bits; 14345 if (isa<ConstantSDNode>(Elt)) 14346 Bits = cast<ConstantSDNode>(Elt)->getAPIntValue(); 14347 else if (isa<ConstantFPSDNode>(Elt)) 14348 Bits = cast<ConstantFPSDNode>(Elt)->getValueAPF().bitcastToAPInt(); 14349 else 14350 return SDValue(); 14351 14352 // Extract the sub element from the constant bit mask. 14353 if (DAG.getDataLayout().isBigEndian()) { 14354 Bits = Bits.lshr((Split - SubIdx - 1) * NumSubBits); 14355 } else { 14356 Bits = Bits.lshr(SubIdx * NumSubBits); 14357 } 14358 14359 if (Split > 1) 14360 Bits = Bits.trunc(NumSubBits); 14361 14362 if (Bits.isAllOnesValue()) 14363 Indices.push_back(i); 14364 else if (Bits == 0) 14365 Indices.push_back(i + NumSubElts); 14366 else 14367 return SDValue(); 14368 } 14369 14370 // Let's see if the target supports this vector_shuffle. 14371 EVT ClearSVT = EVT::getIntegerVT(*DAG.getContext(), NumSubBits); 14372 EVT ClearVT = EVT::getVectorVT(*DAG.getContext(), ClearSVT, NumSubElts); 14373 if (!TLI.isVectorClearMaskLegal(Indices, ClearVT)) 14374 return SDValue(); 14375 14376 SDValue Zero = DAG.getConstant(0, DL, ClearVT); 14377 return DAG.getBitcast(VT, DAG.getVectorShuffle(ClearVT, DL, 14378 DAG.getBitcast(ClearVT, LHS), 14379 Zero, Indices)); 14380 }; 14381 14382 // Determine maximum split level (byte level masking). 14383 int MaxSplit = 1; 14384 if (RVT.getScalarSizeInBits() % 8 == 0) 14385 MaxSplit = RVT.getScalarSizeInBits() / 8; 14386 14387 for (int Split = 1; Split <= MaxSplit; ++Split) 14388 if (RVT.getScalarSizeInBits() % Split == 0) 14389 if (SDValue S = BuildClearMask(Split)) 14390 return S; 14391 14392 return SDValue(); 14393 } 14394 14395 /// Visit a binary vector operation, like ADD. 14396 SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) { 14397 assert(N->getValueType(0).isVector() && 14398 "SimplifyVBinOp only works on vectors!"); 14399 14400 SDValue LHS = N->getOperand(0); 14401 SDValue RHS = N->getOperand(1); 14402 SDValue Ops[] = {LHS, RHS}; 14403 14404 // See if we can constant fold the vector operation. 14405 if (SDValue Fold = DAG.FoldConstantVectorArithmetic( 14406 N->getOpcode(), SDLoc(LHS), LHS.getValueType(), Ops, N->getFlags())) 14407 return Fold; 14408 14409 // Try to convert a constant mask AND into a shuffle clear mask. 14410 if (SDValue Shuffle = XformToShuffleWithZero(N)) 14411 return Shuffle; 14412 14413 // Type legalization might introduce new shuffles in the DAG. 14414 // Fold (VBinOp (shuffle (A, Undef, Mask)), (shuffle (B, Undef, Mask))) 14415 // -> (shuffle (VBinOp (A, B)), Undef, Mask). 14416 if (LegalTypes && isa<ShuffleVectorSDNode>(LHS) && 14417 isa<ShuffleVectorSDNode>(RHS) && LHS.hasOneUse() && RHS.hasOneUse() && 14418 LHS.getOperand(1).isUndef() && 14419 RHS.getOperand(1).isUndef()) { 14420 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(LHS); 14421 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(RHS); 14422 14423 if (SVN0->getMask().equals(SVN1->getMask())) { 14424 EVT VT = N->getValueType(0); 14425 SDValue UndefVector = LHS.getOperand(1); 14426 SDValue NewBinOp = DAG.getNode(N->getOpcode(), SDLoc(N), VT, 14427 LHS.getOperand(0), RHS.getOperand(0), 14428 N->getFlags()); 14429 AddUsersToWorklist(N); 14430 return DAG.getVectorShuffle(VT, SDLoc(N), NewBinOp, UndefVector, 14431 SVN0->getMask()); 14432 } 14433 } 14434 14435 return SDValue(); 14436 } 14437 14438 SDValue DAGCombiner::SimplifySelect(const SDLoc &DL, SDValue N0, SDValue N1, 14439 SDValue N2) { 14440 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!"); 14441 14442 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2, 14443 cast<CondCodeSDNode>(N0.getOperand(2))->get()); 14444 14445 // If we got a simplified select_cc node back from SimplifySelectCC, then 14446 // break it down into a new SETCC node, and a new SELECT node, and then return 14447 // the SELECT node, since we were called with a SELECT node. 14448 if (SCC.getNode()) { 14449 // Check to see if we got a select_cc back (to turn into setcc/select). 14450 // Otherwise, just return whatever node we got back, like fabs. 14451 if (SCC.getOpcode() == ISD::SELECT_CC) { 14452 SDValue SETCC = DAG.getNode(ISD::SETCC, SDLoc(N0), 14453 N0.getValueType(), 14454 SCC.getOperand(0), SCC.getOperand(1), 14455 SCC.getOperand(4)); 14456 AddToWorklist(SETCC.getNode()); 14457 return DAG.getSelect(SDLoc(SCC), SCC.getValueType(), SETCC, 14458 SCC.getOperand(2), SCC.getOperand(3)); 14459 } 14460 14461 return SCC; 14462 } 14463 return SDValue(); 14464 } 14465 14466 /// Given a SELECT or a SELECT_CC node, where LHS and RHS are the two values 14467 /// being selected between, see if we can simplify the select. Callers of this 14468 /// should assume that TheSelect is deleted if this returns true. As such, they 14469 /// should return the appropriate thing (e.g. the node) back to the top-level of 14470 /// the DAG combiner loop to avoid it being looked at. 14471 bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS, 14472 SDValue RHS) { 14473 14474 // fold (select (setcc x, [+-]0.0, *lt), NaN, (fsqrt x)) 14475 // The select + setcc is redundant, because fsqrt returns NaN for X < 0. 14476 if (const ConstantFPSDNode *NaN = isConstOrConstSplatFP(LHS)) { 14477 if (NaN->isNaN() && RHS.getOpcode() == ISD::FSQRT) { 14478 // We have: (select (setcc ?, ?, ?), NaN, (fsqrt ?)) 14479 SDValue Sqrt = RHS; 14480 ISD::CondCode CC; 14481 SDValue CmpLHS; 14482 const ConstantFPSDNode *Zero = nullptr; 14483 14484 if (TheSelect->getOpcode() == ISD::SELECT_CC) { 14485 CC = dyn_cast<CondCodeSDNode>(TheSelect->getOperand(4))->get(); 14486 CmpLHS = TheSelect->getOperand(0); 14487 Zero = isConstOrConstSplatFP(TheSelect->getOperand(1)); 14488 } else { 14489 // SELECT or VSELECT 14490 SDValue Cmp = TheSelect->getOperand(0); 14491 if (Cmp.getOpcode() == ISD::SETCC) { 14492 CC = dyn_cast<CondCodeSDNode>(Cmp.getOperand(2))->get(); 14493 CmpLHS = Cmp.getOperand(0); 14494 Zero = isConstOrConstSplatFP(Cmp.getOperand(1)); 14495 } 14496 } 14497 if (Zero && Zero->isZero() && 14498 Sqrt.getOperand(0) == CmpLHS && (CC == ISD::SETOLT || 14499 CC == ISD::SETULT || CC == ISD::SETLT)) { 14500 // We have: (select (setcc x, [+-]0.0, *lt), NaN, (fsqrt x)) 14501 CombineTo(TheSelect, Sqrt); 14502 return true; 14503 } 14504 } 14505 } 14506 // Cannot simplify select with vector condition 14507 if (TheSelect->getOperand(0).getValueType().isVector()) return false; 14508 14509 // If this is a select from two identical things, try to pull the operation 14510 // through the select. 14511 if (LHS.getOpcode() != RHS.getOpcode() || 14512 !LHS.hasOneUse() || !RHS.hasOneUse()) 14513 return false; 14514 14515 // If this is a load and the token chain is identical, replace the select 14516 // of two loads with a load through a select of the address to load from. 14517 // This triggers in things like "select bool X, 10.0, 123.0" after the FP 14518 // constants have been dropped into the constant pool. 14519 if (LHS.getOpcode() == ISD::LOAD) { 14520 LoadSDNode *LLD = cast<LoadSDNode>(LHS); 14521 LoadSDNode *RLD = cast<LoadSDNode>(RHS); 14522 14523 // Token chains must be identical. 14524 if (LHS.getOperand(0) != RHS.getOperand(0) || 14525 // Do not let this transformation reduce the number of volatile loads. 14526 LLD->isVolatile() || RLD->isVolatile() || 14527 // FIXME: If either is a pre/post inc/dec load, 14528 // we'd need to split out the address adjustment. 14529 LLD->isIndexed() || RLD->isIndexed() || 14530 // If this is an EXTLOAD, the VT's must match. 14531 LLD->getMemoryVT() != RLD->getMemoryVT() || 14532 // If this is an EXTLOAD, the kind of extension must match. 14533 (LLD->getExtensionType() != RLD->getExtensionType() && 14534 // The only exception is if one of the extensions is anyext. 14535 LLD->getExtensionType() != ISD::EXTLOAD && 14536 RLD->getExtensionType() != ISD::EXTLOAD) || 14537 // FIXME: this discards src value information. This is 14538 // over-conservative. It would be beneficial to be able to remember 14539 // both potential memory locations. Since we are discarding 14540 // src value info, don't do the transformation if the memory 14541 // locations are not in the default address space. 14542 LLD->getPointerInfo().getAddrSpace() != 0 || 14543 RLD->getPointerInfo().getAddrSpace() != 0 || 14544 !TLI.isOperationLegalOrCustom(TheSelect->getOpcode(), 14545 LLD->getBasePtr().getValueType())) 14546 return false; 14547 14548 // Check that the select condition doesn't reach either load. If so, 14549 // folding this will induce a cycle into the DAG. If not, this is safe to 14550 // xform, so create a select of the addresses. 14551 SDValue Addr; 14552 if (TheSelect->getOpcode() == ISD::SELECT) { 14553 SDNode *CondNode = TheSelect->getOperand(0).getNode(); 14554 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) || 14555 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode))) 14556 return false; 14557 // The loads must not depend on one another. 14558 if (LLD->isPredecessorOf(RLD) || 14559 RLD->isPredecessorOf(LLD)) 14560 return false; 14561 Addr = DAG.getSelect(SDLoc(TheSelect), 14562 LLD->getBasePtr().getValueType(), 14563 TheSelect->getOperand(0), LLD->getBasePtr(), 14564 RLD->getBasePtr()); 14565 } else { // Otherwise SELECT_CC 14566 SDNode *CondLHS = TheSelect->getOperand(0).getNode(); 14567 SDNode *CondRHS = TheSelect->getOperand(1).getNode(); 14568 14569 if ((LLD->hasAnyUseOfValue(1) && 14570 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) || 14571 (RLD->hasAnyUseOfValue(1) && 14572 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS)))) 14573 return false; 14574 14575 Addr = DAG.getNode(ISD::SELECT_CC, SDLoc(TheSelect), 14576 LLD->getBasePtr().getValueType(), 14577 TheSelect->getOperand(0), 14578 TheSelect->getOperand(1), 14579 LLD->getBasePtr(), RLD->getBasePtr(), 14580 TheSelect->getOperand(4)); 14581 } 14582 14583 SDValue Load; 14584 // It is safe to replace the two loads if they have different alignments, 14585 // but the new load must be the minimum (most restrictive) alignment of the 14586 // inputs. 14587 unsigned Alignment = std::min(LLD->getAlignment(), RLD->getAlignment()); 14588 MachineMemOperand::Flags MMOFlags = LLD->getMemOperand()->getFlags(); 14589 if (!RLD->isInvariant()) 14590 MMOFlags &= ~MachineMemOperand::MOInvariant; 14591 if (!RLD->isDereferenceable()) 14592 MMOFlags &= ~MachineMemOperand::MODereferenceable; 14593 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) { 14594 // FIXME: Discards pointer and AA info. 14595 Load = DAG.getLoad(TheSelect->getValueType(0), SDLoc(TheSelect), 14596 LLD->getChain(), Addr, MachinePointerInfo(), Alignment, 14597 MMOFlags); 14598 } else { 14599 // FIXME: Discards pointer and AA info. 14600 Load = DAG.getExtLoad( 14601 LLD->getExtensionType() == ISD::EXTLOAD ? RLD->getExtensionType() 14602 : LLD->getExtensionType(), 14603 SDLoc(TheSelect), TheSelect->getValueType(0), LLD->getChain(), Addr, 14604 MachinePointerInfo(), LLD->getMemoryVT(), Alignment, MMOFlags); 14605 } 14606 14607 // Users of the select now use the result of the load. 14608 CombineTo(TheSelect, Load); 14609 14610 // Users of the old loads now use the new load's chain. We know the 14611 // old-load value is dead now. 14612 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1)); 14613 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1)); 14614 return true; 14615 } 14616 14617 return false; 14618 } 14619 14620 /// Try to fold an expression of the form (N0 cond N1) ? N2 : N3 to a shift and 14621 /// bitwise 'and'. 14622 SDValue DAGCombiner::foldSelectCCToShiftAnd(const SDLoc &DL, SDValue N0, 14623 SDValue N1, SDValue N2, SDValue N3, 14624 ISD::CondCode CC) { 14625 // If this is a select where the false operand is zero and the compare is a 14626 // check of the sign bit, see if we can perform the "gzip trick": 14627 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A 14628 // select_cc setgt X, 0, A, 0 -> and (not (sra X, size(X)-1)), A 14629 EVT XType = N0.getValueType(); 14630 EVT AType = N2.getValueType(); 14631 if (!isNullConstant(N3) || !XType.bitsGE(AType)) 14632 return SDValue(); 14633 14634 // If the comparison is testing for a positive value, we have to invert 14635 // the sign bit mask, so only do that transform if the target has a bitwise 14636 // 'and not' instruction (the invert is free). 14637 if (CC == ISD::SETGT && TLI.hasAndNot(N2)) { 14638 // (X > -1) ? A : 0 14639 // (X > 0) ? X : 0 <-- This is canonical signed max. 14640 if (!(isAllOnesConstant(N1) || (isNullConstant(N1) && N0 == N2))) 14641 return SDValue(); 14642 } else if (CC == ISD::SETLT) { 14643 // (X < 0) ? A : 0 14644 // (X < 1) ? X : 0 <-- This is un-canonicalized signed min. 14645 if (!(isNullConstant(N1) || (isOneConstant(N1) && N0 == N2))) 14646 return SDValue(); 14647 } else { 14648 return SDValue(); 14649 } 14650 14651 // and (sra X, size(X)-1), A -> "and (srl X, C2), A" iff A is a single-bit 14652 // constant. 14653 EVT ShiftAmtTy = getShiftAmountTy(N0.getValueType()); 14654 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); 14655 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue() - 1)) == 0)) { 14656 unsigned ShCt = XType.getSizeInBits() - N2C->getAPIntValue().logBase2() - 1; 14657 SDValue ShiftAmt = DAG.getConstant(ShCt, DL, ShiftAmtTy); 14658 SDValue Shift = DAG.getNode(ISD::SRL, DL, XType, N0, ShiftAmt); 14659 AddToWorklist(Shift.getNode()); 14660 14661 if (XType.bitsGT(AType)) { 14662 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); 14663 AddToWorklist(Shift.getNode()); 14664 } 14665 14666 if (CC == ISD::SETGT) 14667 Shift = DAG.getNOT(DL, Shift, AType); 14668 14669 return DAG.getNode(ISD::AND, DL, AType, Shift, N2); 14670 } 14671 14672 SDValue ShiftAmt = DAG.getConstant(XType.getSizeInBits() - 1, DL, ShiftAmtTy); 14673 SDValue Shift = DAG.getNode(ISD::SRA, DL, XType, N0, ShiftAmt); 14674 AddToWorklist(Shift.getNode()); 14675 14676 if (XType.bitsGT(AType)) { 14677 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); 14678 AddToWorklist(Shift.getNode()); 14679 } 14680 14681 if (CC == ISD::SETGT) 14682 Shift = DAG.getNOT(DL, Shift, AType); 14683 14684 return DAG.getNode(ISD::AND, DL, AType, Shift, N2); 14685 } 14686 14687 /// Simplify an expression of the form (N0 cond N1) ? N2 : N3 14688 /// where 'cond' is the comparison specified by CC. 14689 SDValue DAGCombiner::SimplifySelectCC(const SDLoc &DL, SDValue N0, SDValue N1, 14690 SDValue N2, SDValue N3, ISD::CondCode CC, 14691 bool NotExtCompare) { 14692 // (x ? y : y) -> y. 14693 if (N2 == N3) return N2; 14694 14695 EVT VT = N2.getValueType(); 14696 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); 14697 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); 14698 14699 // Determine if the condition we're dealing with is constant 14700 SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()), 14701 N0, N1, CC, DL, false); 14702 if (SCC.getNode()) AddToWorklist(SCC.getNode()); 14703 14704 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) { 14705 // fold select_cc true, x, y -> x 14706 // fold select_cc false, x, y -> y 14707 return !SCCC->isNullValue() ? N2 : N3; 14708 } 14709 14710 // Check to see if we can simplify the select into an fabs node 14711 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) { 14712 // Allow either -0.0 or 0.0 14713 if (CFP->isZero()) { 14714 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs 14715 if ((CC == ISD::SETGE || CC == ISD::SETGT) && 14716 N0 == N2 && N3.getOpcode() == ISD::FNEG && 14717 N2 == N3.getOperand(0)) 14718 return DAG.getNode(ISD::FABS, DL, VT, N0); 14719 14720 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs 14721 if ((CC == ISD::SETLT || CC == ISD::SETLE) && 14722 N0 == N3 && N2.getOpcode() == ISD::FNEG && 14723 N2.getOperand(0) == N3) 14724 return DAG.getNode(ISD::FABS, DL, VT, N3); 14725 } 14726 } 14727 14728 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)" 14729 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0 14730 // in it. This is a win when the constant is not otherwise available because 14731 // it replaces two constant pool loads with one. We only do this if the FP 14732 // type is known to be legal, because if it isn't, then we are before legalize 14733 // types an we want the other legalization to happen first (e.g. to avoid 14734 // messing with soft float) and if the ConstantFP is not legal, because if 14735 // it is legal, we may not need to store the FP constant in a constant pool. 14736 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2)) 14737 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) { 14738 if (TLI.isTypeLegal(N2.getValueType()) && 14739 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) != 14740 TargetLowering::Legal && 14741 !TLI.isFPImmLegal(TV->getValueAPF(), TV->getValueType(0)) && 14742 !TLI.isFPImmLegal(FV->getValueAPF(), FV->getValueType(0))) && 14743 // If both constants have multiple uses, then we won't need to do an 14744 // extra load, they are likely around in registers for other users. 14745 (TV->hasOneUse() || FV->hasOneUse())) { 14746 Constant *Elts[] = { 14747 const_cast<ConstantFP*>(FV->getConstantFPValue()), 14748 const_cast<ConstantFP*>(TV->getConstantFPValue()) 14749 }; 14750 Type *FPTy = Elts[0]->getType(); 14751 const DataLayout &TD = DAG.getDataLayout(); 14752 14753 // Create a ConstantArray of the two constants. 14754 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts); 14755 SDValue CPIdx = 14756 DAG.getConstantPool(CA, TLI.getPointerTy(DAG.getDataLayout()), 14757 TD.getPrefTypeAlignment(FPTy)); 14758 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); 14759 14760 // Get the offsets to the 0 and 1 element of the array so that we can 14761 // select between them. 14762 SDValue Zero = DAG.getIntPtrConstant(0, DL); 14763 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType()); 14764 SDValue One = DAG.getIntPtrConstant(EltSize, SDLoc(FV)); 14765 14766 SDValue Cond = DAG.getSetCC(DL, 14767 getSetCCResultType(N0.getValueType()), 14768 N0, N1, CC); 14769 AddToWorklist(Cond.getNode()); 14770 SDValue CstOffset = DAG.getSelect(DL, Zero.getValueType(), 14771 Cond, One, Zero); 14772 AddToWorklist(CstOffset.getNode()); 14773 CPIdx = DAG.getNode(ISD::ADD, DL, CPIdx.getValueType(), CPIdx, 14774 CstOffset); 14775 AddToWorklist(CPIdx.getNode()); 14776 return DAG.getLoad( 14777 TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx, 14778 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), 14779 Alignment); 14780 } 14781 } 14782 14783 if (SDValue V = foldSelectCCToShiftAnd(DL, N0, N1, N2, N3, CC)) 14784 return V; 14785 14786 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A) 14787 // where y is has a single bit set. 14788 // A plaintext description would be, we can turn the SELECT_CC into an AND 14789 // when the condition can be materialized as an all-ones register. Any 14790 // single bit-test can be materialized as an all-ones register with 14791 // shift-left and shift-right-arith. 14792 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND && 14793 N0->getValueType(0) == VT && isNullConstant(N1) && isNullConstant(N2)) { 14794 SDValue AndLHS = N0->getOperand(0); 14795 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1)); 14796 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) { 14797 // Shift the tested bit over the sign bit. 14798 const APInt &AndMask = ConstAndRHS->getAPIntValue(); 14799 SDValue ShlAmt = 14800 DAG.getConstant(AndMask.countLeadingZeros(), SDLoc(AndLHS), 14801 getShiftAmountTy(AndLHS.getValueType())); 14802 SDValue Shl = DAG.getNode(ISD::SHL, SDLoc(N0), VT, AndLHS, ShlAmt); 14803 14804 // Now arithmetic right shift it all the way over, so the result is either 14805 // all-ones, or zero. 14806 SDValue ShrAmt = 14807 DAG.getConstant(AndMask.getBitWidth() - 1, SDLoc(Shl), 14808 getShiftAmountTy(Shl.getValueType())); 14809 SDValue Shr = DAG.getNode(ISD::SRA, SDLoc(N0), VT, Shl, ShrAmt); 14810 14811 return DAG.getNode(ISD::AND, DL, VT, Shr, N3); 14812 } 14813 } 14814 14815 // fold select C, 16, 0 -> shl C, 4 14816 if (N2C && isNullConstant(N3) && N2C->getAPIntValue().isPowerOf2() && 14817 TLI.getBooleanContents(N0.getValueType()) == 14818 TargetLowering::ZeroOrOneBooleanContent) { 14819 14820 // If the caller doesn't want us to simplify this into a zext of a compare, 14821 // don't do it. 14822 if (NotExtCompare && N2C->isOne()) 14823 return SDValue(); 14824 14825 // Get a SetCC of the condition 14826 // NOTE: Don't create a SETCC if it's not legal on this target. 14827 if (!LegalOperations || 14828 TLI.isOperationLegal(ISD::SETCC, N0.getValueType())) { 14829 SDValue Temp, SCC; 14830 // cast from setcc result type to select result type 14831 if (LegalTypes) { 14832 SCC = DAG.getSetCC(DL, getSetCCResultType(N0.getValueType()), 14833 N0, N1, CC); 14834 if (N2.getValueType().bitsLT(SCC.getValueType())) 14835 Temp = DAG.getZeroExtendInReg(SCC, SDLoc(N2), 14836 N2.getValueType()); 14837 else 14838 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2), 14839 N2.getValueType(), SCC); 14840 } else { 14841 SCC = DAG.getSetCC(SDLoc(N0), MVT::i1, N0, N1, CC); 14842 Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2), 14843 N2.getValueType(), SCC); 14844 } 14845 14846 AddToWorklist(SCC.getNode()); 14847 AddToWorklist(Temp.getNode()); 14848 14849 if (N2C->isOne()) 14850 return Temp; 14851 14852 // shl setcc result by log2 n2c 14853 return DAG.getNode( 14854 ISD::SHL, DL, N2.getValueType(), Temp, 14855 DAG.getConstant(N2C->getAPIntValue().logBase2(), SDLoc(Temp), 14856 getShiftAmountTy(Temp.getValueType()))); 14857 } 14858 } 14859 14860 // Check to see if this is an integer abs. 14861 // select_cc setg[te] X, 0, X, -X -> 14862 // select_cc setgt X, -1, X, -X -> 14863 // select_cc setl[te] X, 0, -X, X -> 14864 // select_cc setlt X, 1, -X, X -> 14865 // Y = sra (X, size(X)-1); xor (add (X, Y), Y) 14866 if (N1C) { 14867 ConstantSDNode *SubC = nullptr; 14868 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) || 14869 (N1C->isAllOnesValue() && CC == ISD::SETGT)) && 14870 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) 14871 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0)); 14872 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) || 14873 (N1C->isOne() && CC == ISD::SETLT)) && 14874 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1)) 14875 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0)); 14876 14877 EVT XType = N0.getValueType(); 14878 if (SubC && SubC->isNullValue() && XType.isInteger()) { 14879 SDLoc DL(N0); 14880 SDValue Shift = DAG.getNode(ISD::SRA, DL, XType, 14881 N0, 14882 DAG.getConstant(XType.getSizeInBits() - 1, DL, 14883 getShiftAmountTy(N0.getValueType()))); 14884 SDValue Add = DAG.getNode(ISD::ADD, DL, 14885 XType, N0, Shift); 14886 AddToWorklist(Shift.getNode()); 14887 AddToWorklist(Add.getNode()); 14888 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift); 14889 } 14890 } 14891 14892 // select_cc seteq X, 0, sizeof(X), ctlz(X) -> ctlz(X) 14893 // select_cc seteq X, 0, sizeof(X), ctlz_zero_undef(X) -> ctlz(X) 14894 // select_cc seteq X, 0, sizeof(X), cttz(X) -> cttz(X) 14895 // select_cc seteq X, 0, sizeof(X), cttz_zero_undef(X) -> cttz(X) 14896 // select_cc setne X, 0, ctlz(X), sizeof(X) -> ctlz(X) 14897 // select_cc setne X, 0, ctlz_zero_undef(X), sizeof(X) -> ctlz(X) 14898 // select_cc setne X, 0, cttz(X), sizeof(X) -> cttz(X) 14899 // select_cc setne X, 0, cttz_zero_undef(X), sizeof(X) -> cttz(X) 14900 if (N1C && N1C->isNullValue() && (CC == ISD::SETEQ || CC == ISD::SETNE)) { 14901 SDValue ValueOnZero = N2; 14902 SDValue Count = N3; 14903 // If the condition is NE instead of E, swap the operands. 14904 if (CC == ISD::SETNE) 14905 std::swap(ValueOnZero, Count); 14906 // Check if the value on zero is a constant equal to the bits in the type. 14907 if (auto *ValueOnZeroC = dyn_cast<ConstantSDNode>(ValueOnZero)) { 14908 if (ValueOnZeroC->getAPIntValue() == VT.getSizeInBits()) { 14909 // If the other operand is cttz/cttz_zero_undef of N0, and cttz is 14910 // legal, combine to just cttz. 14911 if ((Count.getOpcode() == ISD::CTTZ || 14912 Count.getOpcode() == ISD::CTTZ_ZERO_UNDEF) && 14913 N0 == Count.getOperand(0) && 14914 (!LegalOperations || TLI.isOperationLegal(ISD::CTTZ, VT))) 14915 return DAG.getNode(ISD::CTTZ, DL, VT, N0); 14916 // If the other operand is ctlz/ctlz_zero_undef of N0, and ctlz is 14917 // legal, combine to just ctlz. 14918 if ((Count.getOpcode() == ISD::CTLZ || 14919 Count.getOpcode() == ISD::CTLZ_ZERO_UNDEF) && 14920 N0 == Count.getOperand(0) && 14921 (!LegalOperations || TLI.isOperationLegal(ISD::CTLZ, VT))) 14922 return DAG.getNode(ISD::CTLZ, DL, VT, N0); 14923 } 14924 } 14925 } 14926 14927 return SDValue(); 14928 } 14929 14930 /// This is a stub for TargetLowering::SimplifySetCC. 14931 SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0, SDValue N1, 14932 ISD::CondCode Cond, const SDLoc &DL, 14933 bool foldBooleans) { 14934 TargetLowering::DAGCombinerInfo 14935 DagCombineInfo(DAG, Level, false, this); 14936 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL); 14937 } 14938 14939 /// Given an ISD::SDIV node expressing a divide by constant, return 14940 /// a DAG expression to select that will generate the same value by multiplying 14941 /// by a magic number. 14942 /// Ref: "Hacker's Delight" or "The PowerPC Compiler Writer's Guide". 14943 SDValue DAGCombiner::BuildSDIV(SDNode *N) { 14944 // when optimising for minimum size, we don't want to expand a div to a mul 14945 // and a shift. 14946 if (DAG.getMachineFunction().getFunction()->optForMinSize()) 14947 return SDValue(); 14948 14949 ConstantSDNode *C = isConstOrConstSplat(N->getOperand(1)); 14950 if (!C) 14951 return SDValue(); 14952 14953 // Avoid division by zero. 14954 if (C->isNullValue()) 14955 return SDValue(); 14956 14957 std::vector<SDNode*> Built; 14958 SDValue S = 14959 TLI.BuildSDIV(N, C->getAPIntValue(), DAG, LegalOperations, &Built); 14960 14961 for (SDNode *N : Built) 14962 AddToWorklist(N); 14963 return S; 14964 } 14965 14966 /// Given an ISD::SDIV node expressing a divide by constant power of 2, return a 14967 /// DAG expression that will generate the same value by right shifting. 14968 SDValue DAGCombiner::BuildSDIVPow2(SDNode *N) { 14969 ConstantSDNode *C = isConstOrConstSplat(N->getOperand(1)); 14970 if (!C) 14971 return SDValue(); 14972 14973 // Avoid division by zero. 14974 if (C->isNullValue()) 14975 return SDValue(); 14976 14977 std::vector<SDNode *> Built; 14978 SDValue S = TLI.BuildSDIVPow2(N, C->getAPIntValue(), DAG, &Built); 14979 14980 for (SDNode *N : Built) 14981 AddToWorklist(N); 14982 return S; 14983 } 14984 14985 /// Given an ISD::UDIV node expressing a divide by constant, return a DAG 14986 /// expression that will generate the same value by multiplying by a magic 14987 /// number. 14988 /// Ref: "Hacker's Delight" or "The PowerPC Compiler Writer's Guide". 14989 SDValue DAGCombiner::BuildUDIV(SDNode *N) { 14990 // when optimising for minimum size, we don't want to expand a div to a mul 14991 // and a shift. 14992 if (DAG.getMachineFunction().getFunction()->optForMinSize()) 14993 return SDValue(); 14994 14995 ConstantSDNode *C = isConstOrConstSplat(N->getOperand(1)); 14996 if (!C) 14997 return SDValue(); 14998 14999 // Avoid division by zero. 15000 if (C->isNullValue()) 15001 return SDValue(); 15002 15003 std::vector<SDNode*> Built; 15004 SDValue S = 15005 TLI.BuildUDIV(N, C->getAPIntValue(), DAG, LegalOperations, &Built); 15006 15007 for (SDNode *N : Built) 15008 AddToWorklist(N); 15009 return S; 15010 } 15011 15012 /// Determines the LogBase2 value for a non-null input value using the 15013 /// transform: LogBase2(V) = (EltBits - 1) - ctlz(V). 15014 SDValue DAGCombiner::BuildLogBase2(SDValue V, const SDLoc &DL) { 15015 EVT VT = V.getValueType(); 15016 unsigned EltBits = VT.getScalarSizeInBits(); 15017 SDValue Ctlz = DAG.getNode(ISD::CTLZ, DL, VT, V); 15018 SDValue Base = DAG.getConstant(EltBits - 1, DL, VT); 15019 SDValue LogBase2 = DAG.getNode(ISD::SUB, DL, VT, Base, Ctlz); 15020 return LogBase2; 15021 } 15022 15023 /// Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i) 15024 /// For the reciprocal, we need to find the zero of the function: 15025 /// F(X) = A X - 1 [which has a zero at X = 1/A] 15026 /// => 15027 /// X_{i+1} = X_i (2 - A X_i) = X_i + X_i (1 - A X_i) [this second form 15028 /// does not require additional intermediate precision] 15029 SDValue DAGCombiner::BuildReciprocalEstimate(SDValue Op, SDNodeFlags *Flags) { 15030 if (Level >= AfterLegalizeDAG) 15031 return SDValue(); 15032 15033 // TODO: Handle half and/or extended types? 15034 EVT VT = Op.getValueType(); 15035 if (VT.getScalarType() != MVT::f32 && VT.getScalarType() != MVT::f64) 15036 return SDValue(); 15037 15038 // If estimates are explicitly disabled for this function, we're done. 15039 MachineFunction &MF = DAG.getMachineFunction(); 15040 int Enabled = TLI.getRecipEstimateDivEnabled(VT, MF); 15041 if (Enabled == TLI.ReciprocalEstimate::Disabled) 15042 return SDValue(); 15043 15044 // Estimates may be explicitly enabled for this type with a custom number of 15045 // refinement steps. 15046 int Iterations = TLI.getDivRefinementSteps(VT, MF); 15047 if (SDValue Est = TLI.getRecipEstimate(Op, DAG, Enabled, Iterations)) { 15048 AddToWorklist(Est.getNode()); 15049 15050 if (Iterations) { 15051 EVT VT = Op.getValueType(); 15052 SDLoc DL(Op); 15053 SDValue FPOne = DAG.getConstantFP(1.0, DL, VT); 15054 15055 // Newton iterations: Est = Est + Est (1 - Arg * Est) 15056 for (int i = 0; i < Iterations; ++i) { 15057 SDValue NewEst = DAG.getNode(ISD::FMUL, DL, VT, Op, Est, Flags); 15058 AddToWorklist(NewEst.getNode()); 15059 15060 NewEst = DAG.getNode(ISD::FSUB, DL, VT, FPOne, NewEst, Flags); 15061 AddToWorklist(NewEst.getNode()); 15062 15063 NewEst = DAG.getNode(ISD::FMUL, DL, VT, Est, NewEst, Flags); 15064 AddToWorklist(NewEst.getNode()); 15065 15066 Est = DAG.getNode(ISD::FADD, DL, VT, Est, NewEst, Flags); 15067 AddToWorklist(Est.getNode()); 15068 } 15069 } 15070 return Est; 15071 } 15072 15073 return SDValue(); 15074 } 15075 15076 /// Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i) 15077 /// For the reciprocal sqrt, we need to find the zero of the function: 15078 /// F(X) = 1/X^2 - A [which has a zero at X = 1/sqrt(A)] 15079 /// => 15080 /// X_{i+1} = X_i (1.5 - A X_i^2 / 2) 15081 /// As a result, we precompute A/2 prior to the iteration loop. 15082 SDValue DAGCombiner::buildSqrtNROneConst(SDValue Arg, SDValue Est, 15083 unsigned Iterations, 15084 SDNodeFlags *Flags, bool Reciprocal) { 15085 EVT VT = Arg.getValueType(); 15086 SDLoc DL(Arg); 15087 SDValue ThreeHalves = DAG.getConstantFP(1.5, DL, VT); 15088 15089 // We now need 0.5 * Arg which we can write as (1.5 * Arg - Arg) so that 15090 // this entire sequence requires only one FP constant. 15091 SDValue HalfArg = DAG.getNode(ISD::FMUL, DL, VT, ThreeHalves, Arg, Flags); 15092 AddToWorklist(HalfArg.getNode()); 15093 15094 HalfArg = DAG.getNode(ISD::FSUB, DL, VT, HalfArg, Arg, Flags); 15095 AddToWorklist(HalfArg.getNode()); 15096 15097 // Newton iterations: Est = Est * (1.5 - HalfArg * Est * Est) 15098 for (unsigned i = 0; i < Iterations; ++i) { 15099 SDValue NewEst = DAG.getNode(ISD::FMUL, DL, VT, Est, Est, Flags); 15100 AddToWorklist(NewEst.getNode()); 15101 15102 NewEst = DAG.getNode(ISD::FMUL, DL, VT, HalfArg, NewEst, Flags); 15103 AddToWorklist(NewEst.getNode()); 15104 15105 NewEst = DAG.getNode(ISD::FSUB, DL, VT, ThreeHalves, NewEst, Flags); 15106 AddToWorklist(NewEst.getNode()); 15107 15108 Est = DAG.getNode(ISD::FMUL, DL, VT, Est, NewEst, Flags); 15109 AddToWorklist(Est.getNode()); 15110 } 15111 15112 // If non-reciprocal square root is requested, multiply the result by Arg. 15113 if (!Reciprocal) { 15114 Est = DAG.getNode(ISD::FMUL, DL, VT, Est, Arg, Flags); 15115 AddToWorklist(Est.getNode()); 15116 } 15117 15118 return Est; 15119 } 15120 15121 /// Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i) 15122 /// For the reciprocal sqrt, we need to find the zero of the function: 15123 /// F(X) = 1/X^2 - A [which has a zero at X = 1/sqrt(A)] 15124 /// => 15125 /// X_{i+1} = (-0.5 * X_i) * (A * X_i * X_i + (-3.0)) 15126 SDValue DAGCombiner::buildSqrtNRTwoConst(SDValue Arg, SDValue Est, 15127 unsigned Iterations, 15128 SDNodeFlags *Flags, bool Reciprocal) { 15129 EVT VT = Arg.getValueType(); 15130 SDLoc DL(Arg); 15131 SDValue MinusThree = DAG.getConstantFP(-3.0, DL, VT); 15132 SDValue MinusHalf = DAG.getConstantFP(-0.5, DL, VT); 15133 15134 // This routine must enter the loop below to work correctly 15135 // when (Reciprocal == false). 15136 assert(Iterations > 0); 15137 15138 // Newton iterations for reciprocal square root: 15139 // E = (E * -0.5) * ((A * E) * E + -3.0) 15140 for (unsigned i = 0; i < Iterations; ++i) { 15141 SDValue AE = DAG.getNode(ISD::FMUL, DL, VT, Arg, Est, Flags); 15142 AddToWorklist(AE.getNode()); 15143 15144 SDValue AEE = DAG.getNode(ISD::FMUL, DL, VT, AE, Est, Flags); 15145 AddToWorklist(AEE.getNode()); 15146 15147 SDValue RHS = DAG.getNode(ISD::FADD, DL, VT, AEE, MinusThree, Flags); 15148 AddToWorklist(RHS.getNode()); 15149 15150 // When calculating a square root at the last iteration build: 15151 // S = ((A * E) * -0.5) * ((A * E) * E + -3.0) 15152 // (notice a common subexpression) 15153 SDValue LHS; 15154 if (Reciprocal || (i + 1) < Iterations) { 15155 // RSQRT: LHS = (E * -0.5) 15156 LHS = DAG.getNode(ISD::FMUL, DL, VT, Est, MinusHalf, Flags); 15157 } else { 15158 // SQRT: LHS = (A * E) * -0.5 15159 LHS = DAG.getNode(ISD::FMUL, DL, VT, AE, MinusHalf, Flags); 15160 } 15161 AddToWorklist(LHS.getNode()); 15162 15163 Est = DAG.getNode(ISD::FMUL, DL, VT, LHS, RHS, Flags); 15164 AddToWorklist(Est.getNode()); 15165 } 15166 15167 return Est; 15168 } 15169 15170 /// Build code to calculate either rsqrt(Op) or sqrt(Op). In the latter case 15171 /// Op*rsqrt(Op) is actually computed, so additional postprocessing is needed if 15172 /// Op can be zero. 15173 SDValue DAGCombiner::buildSqrtEstimateImpl(SDValue Op, SDNodeFlags *Flags, 15174 bool Reciprocal) { 15175 if (Level >= AfterLegalizeDAG) 15176 return SDValue(); 15177 15178 // TODO: Handle half and/or extended types? 15179 EVT VT = Op.getValueType(); 15180 if (VT.getScalarType() != MVT::f32 && VT.getScalarType() != MVT::f64) 15181 return SDValue(); 15182 15183 // If estimates are explicitly disabled for this function, we're done. 15184 MachineFunction &MF = DAG.getMachineFunction(); 15185 int Enabled = TLI.getRecipEstimateSqrtEnabled(VT, MF); 15186 if (Enabled == TLI.ReciprocalEstimate::Disabled) 15187 return SDValue(); 15188 15189 // Estimates may be explicitly enabled for this type with a custom number of 15190 // refinement steps. 15191 int Iterations = TLI.getSqrtRefinementSteps(VT, MF); 15192 15193 bool UseOneConstNR = false; 15194 if (SDValue Est = 15195 TLI.getSqrtEstimate(Op, DAG, Enabled, Iterations, UseOneConstNR, 15196 Reciprocal)) { 15197 AddToWorklist(Est.getNode()); 15198 15199 if (Iterations) { 15200 Est = UseOneConstNR 15201 ? buildSqrtNROneConst(Op, Est, Iterations, Flags, Reciprocal) 15202 : buildSqrtNRTwoConst(Op, Est, Iterations, Flags, Reciprocal); 15203 15204 if (!Reciprocal) { 15205 // Unfortunately, Est is now NaN if the input was exactly 0.0. 15206 // Select out this case and force the answer to 0.0. 15207 EVT VT = Op.getValueType(); 15208 SDLoc DL(Op); 15209 15210 SDValue FPZero = DAG.getConstantFP(0.0, DL, VT); 15211 EVT CCVT = getSetCCResultType(VT); 15212 SDValue ZeroCmp = DAG.getSetCC(DL, CCVT, Op, FPZero, ISD::SETEQ); 15213 AddToWorklist(ZeroCmp.getNode()); 15214 15215 Est = DAG.getNode(VT.isVector() ? ISD::VSELECT : ISD::SELECT, DL, VT, 15216 ZeroCmp, FPZero, Est); 15217 AddToWorklist(Est.getNode()); 15218 } 15219 } 15220 return Est; 15221 } 15222 15223 return SDValue(); 15224 } 15225 15226 SDValue DAGCombiner::buildRsqrtEstimate(SDValue Op, SDNodeFlags *Flags) { 15227 return buildSqrtEstimateImpl(Op, Flags, true); 15228 } 15229 15230 SDValue DAGCombiner::buildSqrtEstimate(SDValue Op, SDNodeFlags *Flags) { 15231 return buildSqrtEstimateImpl(Op, Flags, false); 15232 } 15233 15234 /// Return true if base is a frame index, which is known not to alias with 15235 /// anything but itself. Provides base object and offset as results. 15236 static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset, 15237 const GlobalValue *&GV, const void *&CV) { 15238 // Assume it is a primitive operation. 15239 Base = Ptr; Offset = 0; GV = nullptr; CV = nullptr; 15240 15241 // If it's an adding a simple constant then integrate the offset. 15242 if (Base.getOpcode() == ISD::ADD) { 15243 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) { 15244 Base = Base.getOperand(0); 15245 Offset += C->getZExtValue(); 15246 } 15247 } 15248 15249 // Return the underlying GlobalValue, and update the Offset. Return false 15250 // for GlobalAddressSDNode since the same GlobalAddress may be represented 15251 // by multiple nodes with different offsets. 15252 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) { 15253 GV = G->getGlobal(); 15254 Offset += G->getOffset(); 15255 return false; 15256 } 15257 15258 // Return the underlying Constant value, and update the Offset. Return false 15259 // for ConstantSDNodes since the same constant pool entry may be represented 15260 // by multiple nodes with different offsets. 15261 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) { 15262 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal() 15263 : (const void *)C->getConstVal(); 15264 Offset += C->getOffset(); 15265 return false; 15266 } 15267 // If it's any of the following then it can't alias with anything but itself. 15268 return isa<FrameIndexSDNode>(Base); 15269 } 15270 15271 /// Return true if there is any possibility that the two addresses overlap. 15272 bool DAGCombiner::isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) const { 15273 // If they are the same then they must be aliases. 15274 if (Op0->getBasePtr() == Op1->getBasePtr()) return true; 15275 15276 // If they are both volatile then they cannot be reordered. 15277 if (Op0->isVolatile() && Op1->isVolatile()) return true; 15278 15279 // If one operation reads from invariant memory, and the other may store, they 15280 // cannot alias. These should really be checking the equivalent of mayWrite, 15281 // but it only matters for memory nodes other than load /store. 15282 if (Op0->isInvariant() && Op1->writeMem()) 15283 return false; 15284 15285 if (Op1->isInvariant() && Op0->writeMem()) 15286 return false; 15287 15288 // Gather base node and offset information. 15289 SDValue Base1, Base2; 15290 int64_t Offset1, Offset2; 15291 const GlobalValue *GV1, *GV2; 15292 const void *CV1, *CV2; 15293 bool isFrameIndex1 = FindBaseOffset(Op0->getBasePtr(), 15294 Base1, Offset1, GV1, CV1); 15295 bool isFrameIndex2 = FindBaseOffset(Op1->getBasePtr(), 15296 Base2, Offset2, GV2, CV2); 15297 15298 // If they have a same base address then check to see if they overlap. 15299 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2))) 15300 return !((Offset1 + (Op0->getMemoryVT().getSizeInBits() >> 3)) <= Offset2 || 15301 (Offset2 + (Op1->getMemoryVT().getSizeInBits() >> 3)) <= Offset1); 15302 15303 // It is possible for different frame indices to alias each other, mostly 15304 // when tail call optimization reuses return address slots for arguments. 15305 // To catch this case, look up the actual index of frame indices to compute 15306 // the real alias relationship. 15307 if (isFrameIndex1 && isFrameIndex2) { 15308 MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo(); 15309 Offset1 += MFI.getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex()); 15310 Offset2 += MFI.getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex()); 15311 return !((Offset1 + (Op0->getMemoryVT().getSizeInBits() >> 3)) <= Offset2 || 15312 (Offset2 + (Op1->getMemoryVT().getSizeInBits() >> 3)) <= Offset1); 15313 } 15314 15315 // Otherwise, if we know what the bases are, and they aren't identical, then 15316 // we know they cannot alias. 15317 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2)) 15318 return false; 15319 15320 // If we know required SrcValue1 and SrcValue2 have relatively large alignment 15321 // compared to the size and offset of the access, we may be able to prove they 15322 // do not alias. This check is conservative for now to catch cases created by 15323 // splitting vector types. 15324 if ((Op0->getOriginalAlignment() == Op1->getOriginalAlignment()) && 15325 (Op0->getSrcValueOffset() != Op1->getSrcValueOffset()) && 15326 (Op0->getMemoryVT().getSizeInBits() >> 3 == 15327 Op1->getMemoryVT().getSizeInBits() >> 3) && 15328 (Op0->getOriginalAlignment() > (Op0->getMemoryVT().getSizeInBits() >> 3))) { 15329 int64_t OffAlign1 = Op0->getSrcValueOffset() % Op0->getOriginalAlignment(); 15330 int64_t OffAlign2 = Op1->getSrcValueOffset() % Op1->getOriginalAlignment(); 15331 15332 // There is no overlap between these relatively aligned accesses of similar 15333 // size, return no alias. 15334 if ((OffAlign1 + (Op0->getMemoryVT().getSizeInBits() >> 3)) <= OffAlign2 || 15335 (OffAlign2 + (Op1->getMemoryVT().getSizeInBits() >> 3)) <= OffAlign1) 15336 return false; 15337 } 15338 15339 bool UseAA = CombinerGlobalAA.getNumOccurrences() > 0 15340 ? CombinerGlobalAA 15341 : DAG.getSubtarget().useAA(); 15342 #ifndef NDEBUG 15343 if (CombinerAAOnlyFunc.getNumOccurrences() && 15344 CombinerAAOnlyFunc != DAG.getMachineFunction().getName()) 15345 UseAA = false; 15346 #endif 15347 if (UseAA && 15348 Op0->getMemOperand()->getValue() && Op1->getMemOperand()->getValue()) { 15349 // Use alias analysis information. 15350 int64_t MinOffset = std::min(Op0->getSrcValueOffset(), 15351 Op1->getSrcValueOffset()); 15352 int64_t Overlap1 = (Op0->getMemoryVT().getSizeInBits() >> 3) + 15353 Op0->getSrcValueOffset() - MinOffset; 15354 int64_t Overlap2 = (Op1->getMemoryVT().getSizeInBits() >> 3) + 15355 Op1->getSrcValueOffset() - MinOffset; 15356 AliasResult AAResult = 15357 AA.alias(MemoryLocation(Op0->getMemOperand()->getValue(), Overlap1, 15358 UseTBAA ? Op0->getAAInfo() : AAMDNodes()), 15359 MemoryLocation(Op1->getMemOperand()->getValue(), Overlap2, 15360 UseTBAA ? Op1->getAAInfo() : AAMDNodes())); 15361 if (AAResult == NoAlias) 15362 return false; 15363 } 15364 15365 // Otherwise we have to assume they alias. 15366 return true; 15367 } 15368 15369 /// Walk up chain skipping non-aliasing memory nodes, 15370 /// looking for aliasing nodes and adding them to the Aliases vector. 15371 void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain, 15372 SmallVectorImpl<SDValue> &Aliases) { 15373 SmallVector<SDValue, 8> Chains; // List of chains to visit. 15374 SmallPtrSet<SDNode *, 16> Visited; // Visited node set. 15375 15376 // Get alias information for node. 15377 bool IsLoad = isa<LoadSDNode>(N) && !cast<LSBaseSDNode>(N)->isVolatile(); 15378 15379 // Starting off. 15380 Chains.push_back(OriginalChain); 15381 unsigned Depth = 0; 15382 15383 // Look at each chain and determine if it is an alias. If so, add it to the 15384 // aliases list. If not, then continue up the chain looking for the next 15385 // candidate. 15386 while (!Chains.empty()) { 15387 SDValue Chain = Chains.pop_back_val(); 15388 15389 // For TokenFactor nodes, look at each operand and only continue up the 15390 // chain until we reach the depth limit. 15391 // 15392 // FIXME: The depth check could be made to return the last non-aliasing 15393 // chain we found before we hit a tokenfactor rather than the original 15394 // chain. 15395 if (Depth > TLI.getGatherAllAliasesMaxDepth()) { 15396 Aliases.clear(); 15397 Aliases.push_back(OriginalChain); 15398 return; 15399 } 15400 15401 // Don't bother if we've been before. 15402 if (!Visited.insert(Chain.getNode()).second) 15403 continue; 15404 15405 switch (Chain.getOpcode()) { 15406 case ISD::EntryToken: 15407 // Entry token is ideal chain operand, but handled in FindBetterChain. 15408 break; 15409 15410 case ISD::LOAD: 15411 case ISD::STORE: { 15412 // Get alias information for Chain. 15413 bool IsOpLoad = isa<LoadSDNode>(Chain.getNode()) && 15414 !cast<LSBaseSDNode>(Chain.getNode())->isVolatile(); 15415 15416 // If chain is alias then stop here. 15417 if (!(IsLoad && IsOpLoad) && 15418 isAlias(cast<LSBaseSDNode>(N), cast<LSBaseSDNode>(Chain.getNode()))) { 15419 Aliases.push_back(Chain); 15420 } else { 15421 // Look further up the chain. 15422 Chains.push_back(Chain.getOperand(0)); 15423 ++Depth; 15424 } 15425 break; 15426 } 15427 15428 case ISD::TokenFactor: 15429 // We have to check each of the operands of the token factor for "small" 15430 // token factors, so we queue them up. Adding the operands to the queue 15431 // (stack) in reverse order maintains the original order and increases the 15432 // likelihood that getNode will find a matching token factor (CSE.) 15433 if (Chain.getNumOperands() > 16) { 15434 Aliases.push_back(Chain); 15435 break; 15436 } 15437 for (unsigned n = Chain.getNumOperands(); n;) 15438 Chains.push_back(Chain.getOperand(--n)); 15439 ++Depth; 15440 break; 15441 15442 default: 15443 // For all other instructions we will just have to take what we can get. 15444 Aliases.push_back(Chain); 15445 break; 15446 } 15447 } 15448 } 15449 15450 /// Walk up chain skipping non-aliasing memory nodes, looking for a better chain 15451 /// (aliasing node.) 15452 SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) { 15453 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor. 15454 15455 // Accumulate all the aliases to this node. 15456 GatherAllAliases(N, OldChain, Aliases); 15457 15458 // If no operands then chain to entry token. 15459 if (Aliases.size() == 0) 15460 return DAG.getEntryNode(); 15461 15462 // If a single operand then chain to it. We don't need to revisit it. 15463 if (Aliases.size() == 1) 15464 return Aliases[0]; 15465 15466 // Construct a custom tailored token factor. 15467 return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other, Aliases); 15468 } 15469 15470 bool DAGCombiner::findBetterNeighborChains(StoreSDNode *St) { 15471 // This holds the base pointer, index, and the offset in bytes from the base 15472 // pointer. 15473 BaseIndexOffset BasePtr = BaseIndexOffset::match(St->getBasePtr(), DAG); 15474 15475 // We must have a base and an offset. 15476 if (!BasePtr.Base.getNode()) 15477 return false; 15478 15479 // Do not handle stores to undef base pointers. 15480 if (BasePtr.Base.isUndef()) 15481 return false; 15482 15483 SmallVector<StoreSDNode *, 8> ChainedStores; 15484 ChainedStores.push_back(St); 15485 15486 // Walk up the chain and look for nodes with offsets from the same 15487 // base pointer. Stop when reaching an instruction with a different kind 15488 // or instruction which has a different base pointer. 15489 StoreSDNode *Index = St; 15490 while (Index) { 15491 // If the chain has more than one use, then we can't reorder the mem ops. 15492 if (Index != St && !SDValue(Index, 0)->hasOneUse()) 15493 break; 15494 15495 if (Index->isVolatile() || Index->isIndexed()) 15496 break; 15497 15498 // Find the base pointer and offset for this memory node. 15499 BaseIndexOffset Ptr = BaseIndexOffset::match(Index->getBasePtr(), DAG); 15500 15501 // Check that the base pointer is the same as the original one. 15502 if (!Ptr.equalBaseIndex(BasePtr)) 15503 break; 15504 15505 // Find the next memory operand in the chain. If the next operand in the 15506 // chain is a store then move up and continue the scan with the next 15507 // memory operand. If the next operand is a load save it and use alias 15508 // information to check if it interferes with anything. 15509 SDNode *NextInChain = Index->getChain().getNode(); 15510 while (true) { 15511 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) { 15512 // We found a store node. Use it for the next iteration. 15513 if (STn->isVolatile() || STn->isIndexed()) { 15514 Index = nullptr; 15515 break; 15516 } 15517 ChainedStores.push_back(STn); 15518 Index = STn; 15519 break; 15520 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) { 15521 NextInChain = Ldn->getChain().getNode(); 15522 continue; 15523 } else { 15524 Index = nullptr; 15525 break; 15526 } 15527 } 15528 } 15529 15530 bool MadeChangeToSt = false; 15531 SmallVector<std::pair<StoreSDNode *, SDValue>, 8> BetterChains; 15532 15533 for (StoreSDNode *ChainedStore : ChainedStores) { 15534 SDValue Chain = ChainedStore->getChain(); 15535 SDValue BetterChain = FindBetterChain(ChainedStore, Chain); 15536 15537 if (Chain != BetterChain) { 15538 if (ChainedStore == St) 15539 MadeChangeToSt = true; 15540 BetterChains.push_back(std::make_pair(ChainedStore, BetterChain)); 15541 } 15542 } 15543 15544 // Do all replacements after finding the replacements to make to avoid making 15545 // the chains more complicated by introducing new TokenFactors. 15546 for (auto Replacement : BetterChains) 15547 replaceStoreChain(Replacement.first, Replacement.second); 15548 15549 return MadeChangeToSt; 15550 } 15551 15552 /// This is the entry point for the file. 15553 void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA, 15554 CodeGenOpt::Level OptLevel) { 15555 /// This is the main entry point to this class. 15556 DAGCombiner(*this, AA, OptLevel).Run(Level); 15557 } 15558