1 //===-- lib/CodeGen/GlobalISel/GICombinerHelper.cpp -----------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 #include "llvm/CodeGen/GlobalISel/CombinerHelper.h" 9 #include "llvm/CodeGen/GlobalISel/Combiner.h" 10 #include "llvm/CodeGen/GlobalISel/GISelChangeObserver.h" 11 #include "llvm/CodeGen/GlobalISel/GISelKnownBits.h" 12 #include "llvm/CodeGen/GlobalISel/LegalizerInfo.h" 13 #include "llvm/CodeGen/GlobalISel/MIPatternMatch.h" 14 #include "llvm/CodeGen/GlobalISel/MachineIRBuilder.h" 15 #include "llvm/CodeGen/GlobalISel/Utils.h" 16 #include "llvm/CodeGen/MachineDominators.h" 17 #include "llvm/CodeGen/MachineFrameInfo.h" 18 #include "llvm/CodeGen/MachineInstr.h" 19 #include "llvm/CodeGen/MachineRegisterInfo.h" 20 #include "llvm/CodeGen/TargetInstrInfo.h" 21 #include "llvm/CodeGen/TargetLowering.h" 22 #include "llvm/Support/MathExtras.h" 23 #include "llvm/Target/TargetMachine.h" 24 25 #define DEBUG_TYPE "gi-combiner" 26 27 using namespace llvm; 28 using namespace MIPatternMatch; 29 30 // Option to allow testing of the combiner while no targets know about indexed 31 // addressing. 32 static cl::opt<bool> 33 ForceLegalIndexing("force-legal-indexing", cl::Hidden, cl::init(false), 34 cl::desc("Force all indexed operations to be " 35 "legal for the GlobalISel combiner")); 36 37 38 CombinerHelper::CombinerHelper(GISelChangeObserver &Observer, 39 MachineIRBuilder &B, GISelKnownBits *KB, 40 MachineDominatorTree *MDT, 41 const LegalizerInfo *LI) 42 : Builder(B), MRI(Builder.getMF().getRegInfo()), Observer(Observer), 43 KB(KB), MDT(MDT), LI(LI) { 44 (void)this->KB; 45 } 46 47 void CombinerHelper::replaceRegWith(MachineRegisterInfo &MRI, Register FromReg, 48 Register ToReg) const { 49 Observer.changingAllUsesOfReg(MRI, FromReg); 50 51 if (MRI.constrainRegAttrs(ToReg, FromReg)) 52 MRI.replaceRegWith(FromReg, ToReg); 53 else 54 Builder.buildCopy(ToReg, FromReg); 55 56 Observer.finishedChangingAllUsesOfReg(); 57 } 58 59 void CombinerHelper::replaceRegOpWith(MachineRegisterInfo &MRI, 60 MachineOperand &FromRegOp, 61 Register ToReg) const { 62 assert(FromRegOp.getParent() && "Expected an operand in an MI"); 63 Observer.changingInstr(*FromRegOp.getParent()); 64 65 FromRegOp.setReg(ToReg); 66 67 Observer.changedInstr(*FromRegOp.getParent()); 68 } 69 70 bool CombinerHelper::tryCombineCopy(MachineInstr &MI) { 71 if (matchCombineCopy(MI)) { 72 applyCombineCopy(MI); 73 return true; 74 } 75 return false; 76 } 77 bool CombinerHelper::matchCombineCopy(MachineInstr &MI) { 78 if (MI.getOpcode() != TargetOpcode::COPY) 79 return false; 80 Register DstReg = MI.getOperand(0).getReg(); 81 Register SrcReg = MI.getOperand(1).getReg(); 82 return canReplaceReg(DstReg, SrcReg, MRI); 83 } 84 void CombinerHelper::applyCombineCopy(MachineInstr &MI) { 85 Register DstReg = MI.getOperand(0).getReg(); 86 Register SrcReg = MI.getOperand(1).getReg(); 87 MI.eraseFromParent(); 88 replaceRegWith(MRI, DstReg, SrcReg); 89 } 90 91 bool CombinerHelper::tryCombineConcatVectors(MachineInstr &MI) { 92 bool IsUndef = false; 93 SmallVector<Register, 4> Ops; 94 if (matchCombineConcatVectors(MI, IsUndef, Ops)) { 95 applyCombineConcatVectors(MI, IsUndef, Ops); 96 return true; 97 } 98 return false; 99 } 100 101 bool CombinerHelper::matchCombineConcatVectors(MachineInstr &MI, bool &IsUndef, 102 SmallVectorImpl<Register> &Ops) { 103 assert(MI.getOpcode() == TargetOpcode::G_CONCAT_VECTORS && 104 "Invalid instruction"); 105 IsUndef = true; 106 MachineInstr *Undef = nullptr; 107 108 // Walk over all the operands of concat vectors and check if they are 109 // build_vector themselves or undef. 110 // Then collect their operands in Ops. 111 for (const MachineOperand &MO : MI.uses()) { 112 Register Reg = MO.getReg(); 113 MachineInstr *Def = MRI.getVRegDef(Reg); 114 assert(Def && "Operand not defined"); 115 switch (Def->getOpcode()) { 116 case TargetOpcode::G_BUILD_VECTOR: 117 IsUndef = false; 118 // Remember the operands of the build_vector to fold 119 // them into the yet-to-build flattened concat vectors. 120 for (const MachineOperand &BuildVecMO : Def->uses()) 121 Ops.push_back(BuildVecMO.getReg()); 122 break; 123 case TargetOpcode::G_IMPLICIT_DEF: { 124 LLT OpType = MRI.getType(Reg); 125 // Keep one undef value for all the undef operands. 126 if (!Undef) { 127 Builder.setInsertPt(*MI.getParent(), MI); 128 Undef = Builder.buildUndef(OpType.getScalarType()); 129 } 130 assert(MRI.getType(Undef->getOperand(0).getReg()) == 131 OpType.getScalarType() && 132 "All undefs should have the same type"); 133 // Break the undef vector in as many scalar elements as needed 134 // for the flattening. 135 for (unsigned EltIdx = 0, EltEnd = OpType.getNumElements(); 136 EltIdx != EltEnd; ++EltIdx) 137 Ops.push_back(Undef->getOperand(0).getReg()); 138 break; 139 } 140 default: 141 return false; 142 } 143 } 144 return true; 145 } 146 void CombinerHelper::applyCombineConcatVectors( 147 MachineInstr &MI, bool IsUndef, const ArrayRef<Register> Ops) { 148 // We determined that the concat_vectors can be flatten. 149 // Generate the flattened build_vector. 150 Register DstReg = MI.getOperand(0).getReg(); 151 Builder.setInsertPt(*MI.getParent(), MI); 152 Register NewDstReg = MRI.cloneVirtualRegister(DstReg); 153 154 // Note: IsUndef is sort of redundant. We could have determine it by 155 // checking that at all Ops are undef. Alternatively, we could have 156 // generate a build_vector of undefs and rely on another combine to 157 // clean that up. For now, given we already gather this information 158 // in tryCombineConcatVectors, just save compile time and issue the 159 // right thing. 160 if (IsUndef) 161 Builder.buildUndef(NewDstReg); 162 else 163 Builder.buildBuildVector(NewDstReg, Ops); 164 MI.eraseFromParent(); 165 replaceRegWith(MRI, DstReg, NewDstReg); 166 } 167 168 bool CombinerHelper::tryCombineShuffleVector(MachineInstr &MI) { 169 SmallVector<Register, 4> Ops; 170 if (matchCombineShuffleVector(MI, Ops)) { 171 applyCombineShuffleVector(MI, Ops); 172 return true; 173 } 174 return false; 175 } 176 177 bool CombinerHelper::matchCombineShuffleVector(MachineInstr &MI, 178 SmallVectorImpl<Register> &Ops) { 179 assert(MI.getOpcode() == TargetOpcode::G_SHUFFLE_VECTOR && 180 "Invalid instruction kind"); 181 LLT DstType = MRI.getType(MI.getOperand(0).getReg()); 182 Register Src1 = MI.getOperand(1).getReg(); 183 LLT SrcType = MRI.getType(Src1); 184 // As bizarre as it may look, shuffle vector can actually produce 185 // scalar! This is because at the IR level a <1 x ty> shuffle 186 // vector is perfectly valid. 187 unsigned DstNumElts = DstType.isVector() ? DstType.getNumElements() : 1; 188 unsigned SrcNumElts = SrcType.isVector() ? SrcType.getNumElements() : 1; 189 190 // If the resulting vector is smaller than the size of the source 191 // vectors being concatenated, we won't be able to replace the 192 // shuffle vector into a concat_vectors. 193 // 194 // Note: We may still be able to produce a concat_vectors fed by 195 // extract_vector_elt and so on. It is less clear that would 196 // be better though, so don't bother for now. 197 // 198 // If the destination is a scalar, the size of the sources doesn't 199 // matter. we will lower the shuffle to a plain copy. This will 200 // work only if the source and destination have the same size. But 201 // that's covered by the next condition. 202 // 203 // TODO: If the size between the source and destination don't match 204 // we could still emit an extract vector element in that case. 205 if (DstNumElts < 2 * SrcNumElts && DstNumElts != 1) 206 return false; 207 208 // Check that the shuffle mask can be broken evenly between the 209 // different sources. 210 if (DstNumElts % SrcNumElts != 0) 211 return false; 212 213 // Mask length is a multiple of the source vector length. 214 // Check if the shuffle is some kind of concatenation of the input 215 // vectors. 216 unsigned NumConcat = DstNumElts / SrcNumElts; 217 SmallVector<int, 8> ConcatSrcs(NumConcat, -1); 218 ArrayRef<int> Mask = MI.getOperand(3).getShuffleMask(); 219 for (unsigned i = 0; i != DstNumElts; ++i) { 220 int Idx = Mask[i]; 221 // Undef value. 222 if (Idx < 0) 223 continue; 224 // Ensure the indices in each SrcType sized piece are sequential and that 225 // the same source is used for the whole piece. 226 if ((Idx % SrcNumElts != (i % SrcNumElts)) || 227 (ConcatSrcs[i / SrcNumElts] >= 0 && 228 ConcatSrcs[i / SrcNumElts] != (int)(Idx / SrcNumElts))) 229 return false; 230 // Remember which source this index came from. 231 ConcatSrcs[i / SrcNumElts] = Idx / SrcNumElts; 232 } 233 234 // The shuffle is concatenating multiple vectors together. 235 // Collect the different operands for that. 236 Register UndefReg; 237 Register Src2 = MI.getOperand(2).getReg(); 238 for (auto Src : ConcatSrcs) { 239 if (Src < 0) { 240 if (!UndefReg) { 241 Builder.setInsertPt(*MI.getParent(), MI); 242 UndefReg = Builder.buildUndef(SrcType).getReg(0); 243 } 244 Ops.push_back(UndefReg); 245 } else if (Src == 0) 246 Ops.push_back(Src1); 247 else 248 Ops.push_back(Src2); 249 } 250 return true; 251 } 252 253 void CombinerHelper::applyCombineShuffleVector(MachineInstr &MI, 254 const ArrayRef<Register> Ops) { 255 Register DstReg = MI.getOperand(0).getReg(); 256 Builder.setInsertPt(*MI.getParent(), MI); 257 Register NewDstReg = MRI.cloneVirtualRegister(DstReg); 258 259 if (Ops.size() == 1) 260 Builder.buildCopy(NewDstReg, Ops[0]); 261 else 262 Builder.buildMerge(NewDstReg, Ops); 263 264 MI.eraseFromParent(); 265 replaceRegWith(MRI, DstReg, NewDstReg); 266 } 267 268 namespace { 269 270 /// Select a preference between two uses. CurrentUse is the current preference 271 /// while *ForCandidate is attributes of the candidate under consideration. 272 PreferredTuple ChoosePreferredUse(PreferredTuple &CurrentUse, 273 const LLT TyForCandidate, 274 unsigned OpcodeForCandidate, 275 MachineInstr *MIForCandidate) { 276 if (!CurrentUse.Ty.isValid()) { 277 if (CurrentUse.ExtendOpcode == OpcodeForCandidate || 278 CurrentUse.ExtendOpcode == TargetOpcode::G_ANYEXT) 279 return {TyForCandidate, OpcodeForCandidate, MIForCandidate}; 280 return CurrentUse; 281 } 282 283 // We permit the extend to hoist through basic blocks but this is only 284 // sensible if the target has extending loads. If you end up lowering back 285 // into a load and extend during the legalizer then the end result is 286 // hoisting the extend up to the load. 287 288 // Prefer defined extensions to undefined extensions as these are more 289 // likely to reduce the number of instructions. 290 if (OpcodeForCandidate == TargetOpcode::G_ANYEXT && 291 CurrentUse.ExtendOpcode != TargetOpcode::G_ANYEXT) 292 return CurrentUse; 293 else if (CurrentUse.ExtendOpcode == TargetOpcode::G_ANYEXT && 294 OpcodeForCandidate != TargetOpcode::G_ANYEXT) 295 return {TyForCandidate, OpcodeForCandidate, MIForCandidate}; 296 297 // Prefer sign extensions to zero extensions as sign-extensions tend to be 298 // more expensive. 299 if (CurrentUse.Ty == TyForCandidate) { 300 if (CurrentUse.ExtendOpcode == TargetOpcode::G_SEXT && 301 OpcodeForCandidate == TargetOpcode::G_ZEXT) 302 return CurrentUse; 303 else if (CurrentUse.ExtendOpcode == TargetOpcode::G_ZEXT && 304 OpcodeForCandidate == TargetOpcode::G_SEXT) 305 return {TyForCandidate, OpcodeForCandidate, MIForCandidate}; 306 } 307 308 // This is potentially target specific. We've chosen the largest type 309 // because G_TRUNC is usually free. One potential catch with this is that 310 // some targets have a reduced number of larger registers than smaller 311 // registers and this choice potentially increases the live-range for the 312 // larger value. 313 if (TyForCandidate.getSizeInBits() > CurrentUse.Ty.getSizeInBits()) { 314 return {TyForCandidate, OpcodeForCandidate, MIForCandidate}; 315 } 316 return CurrentUse; 317 } 318 319 /// Find a suitable place to insert some instructions and insert them. This 320 /// function accounts for special cases like inserting before a PHI node. 321 /// The current strategy for inserting before PHI's is to duplicate the 322 /// instructions for each predecessor. However, while that's ok for G_TRUNC 323 /// on most targets since it generally requires no code, other targets/cases may 324 /// want to try harder to find a dominating block. 325 static void InsertInsnsWithoutSideEffectsBeforeUse( 326 MachineIRBuilder &Builder, MachineInstr &DefMI, MachineOperand &UseMO, 327 std::function<void(MachineBasicBlock *, MachineBasicBlock::iterator, 328 MachineOperand &UseMO)> 329 Inserter) { 330 MachineInstr &UseMI = *UseMO.getParent(); 331 332 MachineBasicBlock *InsertBB = UseMI.getParent(); 333 334 // If the use is a PHI then we want the predecessor block instead. 335 if (UseMI.isPHI()) { 336 MachineOperand *PredBB = std::next(&UseMO); 337 InsertBB = PredBB->getMBB(); 338 } 339 340 // If the block is the same block as the def then we want to insert just after 341 // the def instead of at the start of the block. 342 if (InsertBB == DefMI.getParent()) { 343 MachineBasicBlock::iterator InsertPt = &DefMI; 344 Inserter(InsertBB, std::next(InsertPt), UseMO); 345 return; 346 } 347 348 // Otherwise we want the start of the BB 349 Inserter(InsertBB, InsertBB->getFirstNonPHI(), UseMO); 350 } 351 } // end anonymous namespace 352 353 bool CombinerHelper::tryCombineExtendingLoads(MachineInstr &MI) { 354 PreferredTuple Preferred; 355 if (matchCombineExtendingLoads(MI, Preferred)) { 356 applyCombineExtendingLoads(MI, Preferred); 357 return true; 358 } 359 return false; 360 } 361 362 bool CombinerHelper::matchCombineExtendingLoads(MachineInstr &MI, 363 PreferredTuple &Preferred) { 364 // We match the loads and follow the uses to the extend instead of matching 365 // the extends and following the def to the load. This is because the load 366 // must remain in the same position for correctness (unless we also add code 367 // to find a safe place to sink it) whereas the extend is freely movable. 368 // It also prevents us from duplicating the load for the volatile case or just 369 // for performance. 370 371 if (MI.getOpcode() != TargetOpcode::G_LOAD && 372 MI.getOpcode() != TargetOpcode::G_SEXTLOAD && 373 MI.getOpcode() != TargetOpcode::G_ZEXTLOAD) 374 return false; 375 376 auto &LoadValue = MI.getOperand(0); 377 assert(LoadValue.isReg() && "Result wasn't a register?"); 378 379 LLT LoadValueTy = MRI.getType(LoadValue.getReg()); 380 if (!LoadValueTy.isScalar()) 381 return false; 382 383 // Most architectures are going to legalize <s8 loads into at least a 1 byte 384 // load, and the MMOs can only describe memory accesses in multiples of bytes. 385 // If we try to perform extload combining on those, we can end up with 386 // %a(s8) = extload %ptr (load 1 byte from %ptr) 387 // ... which is an illegal extload instruction. 388 if (LoadValueTy.getSizeInBits() < 8) 389 return false; 390 391 // For non power-of-2 types, they will very likely be legalized into multiple 392 // loads. Don't bother trying to match them into extending loads. 393 if (!isPowerOf2_32(LoadValueTy.getSizeInBits())) 394 return false; 395 396 // Find the preferred type aside from the any-extends (unless it's the only 397 // one) and non-extending ops. We'll emit an extending load to that type and 398 // and emit a variant of (extend (trunc X)) for the others according to the 399 // relative type sizes. At the same time, pick an extend to use based on the 400 // extend involved in the chosen type. 401 unsigned PreferredOpcode = MI.getOpcode() == TargetOpcode::G_LOAD 402 ? TargetOpcode::G_ANYEXT 403 : MI.getOpcode() == TargetOpcode::G_SEXTLOAD 404 ? TargetOpcode::G_SEXT 405 : TargetOpcode::G_ZEXT; 406 Preferred = {LLT(), PreferredOpcode, nullptr}; 407 for (auto &UseMI : MRI.use_nodbg_instructions(LoadValue.getReg())) { 408 if (UseMI.getOpcode() == TargetOpcode::G_SEXT || 409 UseMI.getOpcode() == TargetOpcode::G_ZEXT || 410 (UseMI.getOpcode() == TargetOpcode::G_ANYEXT)) { 411 // Check for legality. 412 if (LI) { 413 LegalityQuery::MemDesc MMDesc; 414 const auto &MMO = **MI.memoperands_begin(); 415 MMDesc.SizeInBits = MMO.getSizeInBits(); 416 MMDesc.AlignInBits = MMO.getAlign().value() * 8; 417 MMDesc.Ordering = MMO.getOrdering(); 418 LLT UseTy = MRI.getType(UseMI.getOperand(0).getReg()); 419 LLT SrcTy = MRI.getType(MI.getOperand(1).getReg()); 420 if (LI->getAction({MI.getOpcode(), {UseTy, SrcTy}, {MMDesc}}).Action != 421 LegalizeActions::Legal) 422 continue; 423 } 424 Preferred = ChoosePreferredUse(Preferred, 425 MRI.getType(UseMI.getOperand(0).getReg()), 426 UseMI.getOpcode(), &UseMI); 427 } 428 } 429 430 // There were no extends 431 if (!Preferred.MI) 432 return false; 433 // It should be impossible to chose an extend without selecting a different 434 // type since by definition the result of an extend is larger. 435 assert(Preferred.Ty != LoadValueTy && "Extending to same type?"); 436 437 LLVM_DEBUG(dbgs() << "Preferred use is: " << *Preferred.MI); 438 return true; 439 } 440 441 void CombinerHelper::applyCombineExtendingLoads(MachineInstr &MI, 442 PreferredTuple &Preferred) { 443 // Rewrite the load to the chosen extending load. 444 Register ChosenDstReg = Preferred.MI->getOperand(0).getReg(); 445 446 // Inserter to insert a truncate back to the original type at a given point 447 // with some basic CSE to limit truncate duplication to one per BB. 448 DenseMap<MachineBasicBlock *, MachineInstr *> EmittedInsns; 449 auto InsertTruncAt = [&](MachineBasicBlock *InsertIntoBB, 450 MachineBasicBlock::iterator InsertBefore, 451 MachineOperand &UseMO) { 452 MachineInstr *PreviouslyEmitted = EmittedInsns.lookup(InsertIntoBB); 453 if (PreviouslyEmitted) { 454 Observer.changingInstr(*UseMO.getParent()); 455 UseMO.setReg(PreviouslyEmitted->getOperand(0).getReg()); 456 Observer.changedInstr(*UseMO.getParent()); 457 return; 458 } 459 460 Builder.setInsertPt(*InsertIntoBB, InsertBefore); 461 Register NewDstReg = MRI.cloneVirtualRegister(MI.getOperand(0).getReg()); 462 MachineInstr *NewMI = Builder.buildTrunc(NewDstReg, ChosenDstReg); 463 EmittedInsns[InsertIntoBB] = NewMI; 464 replaceRegOpWith(MRI, UseMO, NewDstReg); 465 }; 466 467 Observer.changingInstr(MI); 468 MI.setDesc( 469 Builder.getTII().get(Preferred.ExtendOpcode == TargetOpcode::G_SEXT 470 ? TargetOpcode::G_SEXTLOAD 471 : Preferred.ExtendOpcode == TargetOpcode::G_ZEXT 472 ? TargetOpcode::G_ZEXTLOAD 473 : TargetOpcode::G_LOAD)); 474 475 // Rewrite all the uses to fix up the types. 476 auto &LoadValue = MI.getOperand(0); 477 SmallVector<MachineOperand *, 4> Uses; 478 for (auto &UseMO : MRI.use_operands(LoadValue.getReg())) 479 Uses.push_back(&UseMO); 480 481 for (auto *UseMO : Uses) { 482 MachineInstr *UseMI = UseMO->getParent(); 483 484 // If the extend is compatible with the preferred extend then we should fix 485 // up the type and extend so that it uses the preferred use. 486 if (UseMI->getOpcode() == Preferred.ExtendOpcode || 487 UseMI->getOpcode() == TargetOpcode::G_ANYEXT) { 488 Register UseDstReg = UseMI->getOperand(0).getReg(); 489 MachineOperand &UseSrcMO = UseMI->getOperand(1); 490 const LLT UseDstTy = MRI.getType(UseDstReg); 491 if (UseDstReg != ChosenDstReg) { 492 if (Preferred.Ty == UseDstTy) { 493 // If the use has the same type as the preferred use, then merge 494 // the vregs and erase the extend. For example: 495 // %1:_(s8) = G_LOAD ... 496 // %2:_(s32) = G_SEXT %1(s8) 497 // %3:_(s32) = G_ANYEXT %1(s8) 498 // ... = ... %3(s32) 499 // rewrites to: 500 // %2:_(s32) = G_SEXTLOAD ... 501 // ... = ... %2(s32) 502 replaceRegWith(MRI, UseDstReg, ChosenDstReg); 503 Observer.erasingInstr(*UseMO->getParent()); 504 UseMO->getParent()->eraseFromParent(); 505 } else if (Preferred.Ty.getSizeInBits() < UseDstTy.getSizeInBits()) { 506 // If the preferred size is smaller, then keep the extend but extend 507 // from the result of the extending load. For example: 508 // %1:_(s8) = G_LOAD ... 509 // %2:_(s32) = G_SEXT %1(s8) 510 // %3:_(s64) = G_ANYEXT %1(s8) 511 // ... = ... %3(s64) 512 /// rewrites to: 513 // %2:_(s32) = G_SEXTLOAD ... 514 // %3:_(s64) = G_ANYEXT %2:_(s32) 515 // ... = ... %3(s64) 516 replaceRegOpWith(MRI, UseSrcMO, ChosenDstReg); 517 } else { 518 // If the preferred size is large, then insert a truncate. For 519 // example: 520 // %1:_(s8) = G_LOAD ... 521 // %2:_(s64) = G_SEXT %1(s8) 522 // %3:_(s32) = G_ZEXT %1(s8) 523 // ... = ... %3(s32) 524 /// rewrites to: 525 // %2:_(s64) = G_SEXTLOAD ... 526 // %4:_(s8) = G_TRUNC %2:_(s32) 527 // %3:_(s64) = G_ZEXT %2:_(s8) 528 // ... = ... %3(s64) 529 InsertInsnsWithoutSideEffectsBeforeUse(Builder, MI, *UseMO, 530 InsertTruncAt); 531 } 532 continue; 533 } 534 // The use is (one of) the uses of the preferred use we chose earlier. 535 // We're going to update the load to def this value later so just erase 536 // the old extend. 537 Observer.erasingInstr(*UseMO->getParent()); 538 UseMO->getParent()->eraseFromParent(); 539 continue; 540 } 541 542 // The use isn't an extend. Truncate back to the type we originally loaded. 543 // This is free on many targets. 544 InsertInsnsWithoutSideEffectsBeforeUse(Builder, MI, *UseMO, InsertTruncAt); 545 } 546 547 MI.getOperand(0).setReg(ChosenDstReg); 548 Observer.changedInstr(MI); 549 } 550 551 bool CombinerHelper::isPredecessor(const MachineInstr &DefMI, 552 const MachineInstr &UseMI) { 553 assert(!DefMI.isDebugInstr() && !UseMI.isDebugInstr() && 554 "shouldn't consider debug uses"); 555 assert(DefMI.getParent() == UseMI.getParent()); 556 if (&DefMI == &UseMI) 557 return false; 558 559 // Loop through the basic block until we find one of the instructions. 560 MachineBasicBlock::const_iterator I = DefMI.getParent()->begin(); 561 for (; &*I != &DefMI && &*I != &UseMI; ++I) 562 return &*I == &DefMI; 563 564 llvm_unreachable("Block must contain instructions"); 565 } 566 567 bool CombinerHelper::dominates(const MachineInstr &DefMI, 568 const MachineInstr &UseMI) { 569 assert(!DefMI.isDebugInstr() && !UseMI.isDebugInstr() && 570 "shouldn't consider debug uses"); 571 if (MDT) 572 return MDT->dominates(&DefMI, &UseMI); 573 else if (DefMI.getParent() != UseMI.getParent()) 574 return false; 575 576 return isPredecessor(DefMI, UseMI); 577 } 578 579 bool CombinerHelper::findPostIndexCandidate(MachineInstr &MI, Register &Addr, 580 Register &Base, Register &Offset) { 581 auto &MF = *MI.getParent()->getParent(); 582 const auto &TLI = *MF.getSubtarget().getTargetLowering(); 583 584 #ifndef NDEBUG 585 unsigned Opcode = MI.getOpcode(); 586 assert(Opcode == TargetOpcode::G_LOAD || Opcode == TargetOpcode::G_SEXTLOAD || 587 Opcode == TargetOpcode::G_ZEXTLOAD || Opcode == TargetOpcode::G_STORE); 588 #endif 589 590 Base = MI.getOperand(1).getReg(); 591 MachineInstr *BaseDef = MRI.getUniqueVRegDef(Base); 592 if (BaseDef && BaseDef->getOpcode() == TargetOpcode::G_FRAME_INDEX) 593 return false; 594 595 LLVM_DEBUG(dbgs() << "Searching for post-indexing opportunity for: " << MI); 596 597 for (auto &Use : MRI.use_nodbg_instructions(Base)) { 598 if (Use.getOpcode() != TargetOpcode::G_PTR_ADD) 599 continue; 600 601 Offset = Use.getOperand(2).getReg(); 602 if (!ForceLegalIndexing && 603 !TLI.isIndexingLegal(MI, Base, Offset, /*IsPre*/ false, MRI)) { 604 LLVM_DEBUG(dbgs() << " Ignoring candidate with illegal addrmode: " 605 << Use); 606 continue; 607 } 608 609 // Make sure the offset calculation is before the potentially indexed op. 610 // FIXME: we really care about dependency here. The offset calculation might 611 // be movable. 612 MachineInstr *OffsetDef = MRI.getUniqueVRegDef(Offset); 613 if (!OffsetDef || !dominates(*OffsetDef, MI)) { 614 LLVM_DEBUG(dbgs() << " Ignoring candidate with offset after mem-op: " 615 << Use); 616 continue; 617 } 618 619 // FIXME: check whether all uses of Base are load/store with foldable 620 // addressing modes. If so, using the normal addr-modes is better than 621 // forming an indexed one. 622 623 bool MemOpDominatesAddrUses = true; 624 for (auto &PtrAddUse : 625 MRI.use_nodbg_instructions(Use.getOperand(0).getReg())) { 626 if (!dominates(MI, PtrAddUse)) { 627 MemOpDominatesAddrUses = false; 628 break; 629 } 630 } 631 632 if (!MemOpDominatesAddrUses) { 633 LLVM_DEBUG( 634 dbgs() << " Ignoring candidate as memop does not dominate uses: " 635 << Use); 636 continue; 637 } 638 639 LLVM_DEBUG(dbgs() << " Found match: " << Use); 640 Addr = Use.getOperand(0).getReg(); 641 return true; 642 } 643 644 return false; 645 } 646 647 bool CombinerHelper::findPreIndexCandidate(MachineInstr &MI, Register &Addr, 648 Register &Base, Register &Offset) { 649 auto &MF = *MI.getParent()->getParent(); 650 const auto &TLI = *MF.getSubtarget().getTargetLowering(); 651 652 #ifndef NDEBUG 653 unsigned Opcode = MI.getOpcode(); 654 assert(Opcode == TargetOpcode::G_LOAD || Opcode == TargetOpcode::G_SEXTLOAD || 655 Opcode == TargetOpcode::G_ZEXTLOAD || Opcode == TargetOpcode::G_STORE); 656 #endif 657 658 Addr = MI.getOperand(1).getReg(); 659 MachineInstr *AddrDef = getOpcodeDef(TargetOpcode::G_PTR_ADD, Addr, MRI); 660 if (!AddrDef || MRI.hasOneNonDBGUse(Addr)) 661 return false; 662 663 Base = AddrDef->getOperand(1).getReg(); 664 Offset = AddrDef->getOperand(2).getReg(); 665 666 LLVM_DEBUG(dbgs() << "Found potential pre-indexed load_store: " << MI); 667 668 if (!ForceLegalIndexing && 669 !TLI.isIndexingLegal(MI, Base, Offset, /*IsPre*/ true, MRI)) { 670 LLVM_DEBUG(dbgs() << " Skipping, not legal for target"); 671 return false; 672 } 673 674 MachineInstr *BaseDef = getDefIgnoringCopies(Base, MRI); 675 if (BaseDef->getOpcode() == TargetOpcode::G_FRAME_INDEX) { 676 LLVM_DEBUG(dbgs() << " Skipping, frame index would need copy anyway."); 677 return false; 678 } 679 680 if (MI.getOpcode() == TargetOpcode::G_STORE) { 681 // Would require a copy. 682 if (Base == MI.getOperand(0).getReg()) { 683 LLVM_DEBUG(dbgs() << " Skipping, storing base so need copy anyway."); 684 return false; 685 } 686 687 // We're expecting one use of Addr in MI, but it could also be the 688 // value stored, which isn't actually dominated by the instruction. 689 if (MI.getOperand(0).getReg() == Addr) { 690 LLVM_DEBUG(dbgs() << " Skipping, does not dominate all addr uses"); 691 return false; 692 } 693 } 694 695 // FIXME: check whether all uses of the base pointer are constant PtrAdds. 696 // That might allow us to end base's liveness here by adjusting the constant. 697 698 for (auto &UseMI : MRI.use_nodbg_instructions(Addr)) { 699 if (!dominates(MI, UseMI)) { 700 LLVM_DEBUG(dbgs() << " Skipping, does not dominate all addr uses."); 701 return false; 702 } 703 } 704 705 return true; 706 } 707 708 bool CombinerHelper::tryCombineIndexedLoadStore(MachineInstr &MI) { 709 IndexedLoadStoreMatchInfo MatchInfo; 710 if (matchCombineIndexedLoadStore(MI, MatchInfo)) { 711 applyCombineIndexedLoadStore(MI, MatchInfo); 712 return true; 713 } 714 return false; 715 } 716 717 bool CombinerHelper::matchCombineIndexedLoadStore(MachineInstr &MI, IndexedLoadStoreMatchInfo &MatchInfo) { 718 unsigned Opcode = MI.getOpcode(); 719 if (Opcode != TargetOpcode::G_LOAD && Opcode != TargetOpcode::G_SEXTLOAD && 720 Opcode != TargetOpcode::G_ZEXTLOAD && Opcode != TargetOpcode::G_STORE) 721 return false; 722 723 MatchInfo.IsPre = findPreIndexCandidate(MI, MatchInfo.Addr, MatchInfo.Base, 724 MatchInfo.Offset); 725 if (!MatchInfo.IsPre && 726 !findPostIndexCandidate(MI, MatchInfo.Addr, MatchInfo.Base, 727 MatchInfo.Offset)) 728 return false; 729 730 return true; 731 } 732 733 void CombinerHelper::applyCombineIndexedLoadStore( 734 MachineInstr &MI, IndexedLoadStoreMatchInfo &MatchInfo) { 735 MachineInstr &AddrDef = *MRI.getUniqueVRegDef(MatchInfo.Addr); 736 MachineIRBuilder MIRBuilder(MI); 737 unsigned Opcode = MI.getOpcode(); 738 bool IsStore = Opcode == TargetOpcode::G_STORE; 739 unsigned NewOpcode; 740 switch (Opcode) { 741 case TargetOpcode::G_LOAD: 742 NewOpcode = TargetOpcode::G_INDEXED_LOAD; 743 break; 744 case TargetOpcode::G_SEXTLOAD: 745 NewOpcode = TargetOpcode::G_INDEXED_SEXTLOAD; 746 break; 747 case TargetOpcode::G_ZEXTLOAD: 748 NewOpcode = TargetOpcode::G_INDEXED_ZEXTLOAD; 749 break; 750 case TargetOpcode::G_STORE: 751 NewOpcode = TargetOpcode::G_INDEXED_STORE; 752 break; 753 default: 754 llvm_unreachable("Unknown load/store opcode"); 755 } 756 757 auto MIB = MIRBuilder.buildInstr(NewOpcode); 758 if (IsStore) { 759 MIB.addDef(MatchInfo.Addr); 760 MIB.addUse(MI.getOperand(0).getReg()); 761 } else { 762 MIB.addDef(MI.getOperand(0).getReg()); 763 MIB.addDef(MatchInfo.Addr); 764 } 765 766 MIB.addUse(MatchInfo.Base); 767 MIB.addUse(MatchInfo.Offset); 768 MIB.addImm(MatchInfo.IsPre); 769 MI.eraseFromParent(); 770 AddrDef.eraseFromParent(); 771 772 LLVM_DEBUG(dbgs() << " Combinined to indexed operation"); 773 } 774 775 bool CombinerHelper::matchElideBrByInvertingCond(MachineInstr &MI) { 776 if (MI.getOpcode() != TargetOpcode::G_BR) 777 return false; 778 779 // Try to match the following: 780 // bb1: 781 // %c(s32) = G_ICMP pred, %a, %b 782 // %c1(s1) = G_TRUNC %c(s32) 783 // G_BRCOND %c1, %bb2 784 // G_BR %bb3 785 // bb2: 786 // ... 787 // bb3: 788 789 // The above pattern does not have a fall through to the successor bb2, always 790 // resulting in a branch no matter which path is taken. Here we try to find 791 // and replace that pattern with conditional branch to bb3 and otherwise 792 // fallthrough to bb2. 793 794 MachineBasicBlock *MBB = MI.getParent(); 795 MachineBasicBlock::iterator BrIt(MI); 796 if (BrIt == MBB->begin()) 797 return false; 798 assert(std::next(BrIt) == MBB->end() && "expected G_BR to be a terminator"); 799 800 MachineInstr *BrCond = &*std::prev(BrIt); 801 if (BrCond->getOpcode() != TargetOpcode::G_BRCOND) 802 return false; 803 804 // Check that the next block is the conditional branch target. 805 if (!MBB->isLayoutSuccessor(BrCond->getOperand(1).getMBB())) 806 return false; 807 808 MachineInstr *CmpMI = MRI.getVRegDef(BrCond->getOperand(0).getReg()); 809 if (!CmpMI || CmpMI->getOpcode() != TargetOpcode::G_ICMP || 810 !MRI.hasOneNonDBGUse(CmpMI->getOperand(0).getReg())) 811 return false; 812 return true; 813 } 814 815 bool CombinerHelper::tryElideBrByInvertingCond(MachineInstr &MI) { 816 if (!matchElideBrByInvertingCond(MI)) 817 return false; 818 applyElideBrByInvertingCond(MI); 819 return true; 820 } 821 822 void CombinerHelper::applyElideBrByInvertingCond(MachineInstr &MI) { 823 MachineBasicBlock *BrTarget = MI.getOperand(0).getMBB(); 824 MachineBasicBlock::iterator BrIt(MI); 825 MachineInstr *BrCond = &*std::prev(BrIt); 826 MachineInstr *CmpMI = MRI.getVRegDef(BrCond->getOperand(0).getReg()); 827 828 CmpInst::Predicate InversePred = CmpInst::getInversePredicate( 829 (CmpInst::Predicate)CmpMI->getOperand(1).getPredicate()); 830 831 // Invert the G_ICMP condition. 832 Observer.changingInstr(*CmpMI); 833 CmpMI->getOperand(1).setPredicate(InversePred); 834 Observer.changedInstr(*CmpMI); 835 836 // Change the conditional branch target. 837 Observer.changingInstr(*BrCond); 838 BrCond->getOperand(1).setMBB(BrTarget); 839 Observer.changedInstr(*BrCond); 840 MI.eraseFromParent(); 841 } 842 843 static bool shouldLowerMemFuncForSize(const MachineFunction &MF) { 844 // On Darwin, -Os means optimize for size without hurting performance, so 845 // only really optimize for size when -Oz (MinSize) is used. 846 if (MF.getTarget().getTargetTriple().isOSDarwin()) 847 return MF.getFunction().hasMinSize(); 848 return MF.getFunction().hasOptSize(); 849 } 850 851 // Returns a list of types to use for memory op lowering in MemOps. A partial 852 // port of findOptimalMemOpLowering in TargetLowering. 853 static bool findGISelOptimalMemOpLowering(std::vector<LLT> &MemOps, 854 unsigned Limit, const MemOp &Op, 855 unsigned DstAS, unsigned SrcAS, 856 const AttributeList &FuncAttributes, 857 const TargetLowering &TLI) { 858 if (Op.isMemcpyWithFixedDstAlign() && Op.getSrcAlign() < Op.getDstAlign()) 859 return false; 860 861 LLT Ty = TLI.getOptimalMemOpLLT(Op, FuncAttributes); 862 863 if (Ty == LLT()) { 864 // Use the largest scalar type whose alignment constraints are satisfied. 865 // We only need to check DstAlign here as SrcAlign is always greater or 866 // equal to DstAlign (or zero). 867 Ty = LLT::scalar(64); 868 if (Op.isFixedDstAlign()) 869 while (Op.getDstAlign() < Ty.getSizeInBytes() && 870 !TLI.allowsMisalignedMemoryAccesses(Ty, DstAS, Op.getDstAlign())) 871 Ty = LLT::scalar(Ty.getSizeInBytes()); 872 assert(Ty.getSizeInBits() > 0 && "Could not find valid type"); 873 // FIXME: check for the largest legal type we can load/store to. 874 } 875 876 unsigned NumMemOps = 0; 877 uint64_t Size = Op.size(); 878 while (Size) { 879 unsigned TySize = Ty.getSizeInBytes(); 880 while (TySize > Size) { 881 // For now, only use non-vector load / store's for the left-over pieces. 882 LLT NewTy = Ty; 883 // FIXME: check for mem op safety and legality of the types. Not all of 884 // SDAGisms map cleanly to GISel concepts. 885 if (NewTy.isVector()) 886 NewTy = NewTy.getSizeInBits() > 64 ? LLT::scalar(64) : LLT::scalar(32); 887 NewTy = LLT::scalar(PowerOf2Floor(NewTy.getSizeInBits() - 1)); 888 unsigned NewTySize = NewTy.getSizeInBytes(); 889 assert(NewTySize > 0 && "Could not find appropriate type"); 890 891 // If the new LLT cannot cover all of the remaining bits, then consider 892 // issuing a (or a pair of) unaligned and overlapping load / store. 893 bool Fast; 894 // Need to get a VT equivalent for allowMisalignedMemoryAccesses(). 895 MVT VT = getMVTForLLT(Ty); 896 if (NumMemOps && Op.allowOverlap() && NewTySize < Size && 897 TLI.allowsMisalignedMemoryAccesses( 898 VT, DstAS, Op.isFixedDstAlign() ? Op.getDstAlign().value() : 0, 899 MachineMemOperand::MONone, &Fast) && 900 Fast) 901 TySize = Size; 902 else { 903 Ty = NewTy; 904 TySize = NewTySize; 905 } 906 } 907 908 if (++NumMemOps > Limit) 909 return false; 910 911 MemOps.push_back(Ty); 912 Size -= TySize; 913 } 914 915 return true; 916 } 917 918 static Type *getTypeForLLT(LLT Ty, LLVMContext &C) { 919 if (Ty.isVector()) 920 return FixedVectorType::get(IntegerType::get(C, Ty.getScalarSizeInBits()), 921 Ty.getNumElements()); 922 return IntegerType::get(C, Ty.getSizeInBits()); 923 } 924 925 // Get a vectorized representation of the memset value operand, GISel edition. 926 static Register getMemsetValue(Register Val, LLT Ty, MachineIRBuilder &MIB) { 927 MachineRegisterInfo &MRI = *MIB.getMRI(); 928 unsigned NumBits = Ty.getScalarSizeInBits(); 929 auto ValVRegAndVal = getConstantVRegValWithLookThrough(Val, MRI); 930 if (!Ty.isVector() && ValVRegAndVal) { 931 unsigned KnownVal = ValVRegAndVal->Value; 932 APInt Scalar = APInt(8, KnownVal); 933 APInt SplatVal = APInt::getSplat(NumBits, Scalar); 934 return MIB.buildConstant(Ty, SplatVal).getReg(0); 935 } 936 937 // Extend the byte value to the larger type, and then multiply by a magic 938 // value 0x010101... in order to replicate it across every byte. 939 LLT ExtType = Ty.getScalarType(); 940 auto ZExt = MIB.buildZExtOrTrunc(ExtType, Val); 941 if (NumBits > 8) { 942 APInt Magic = APInt::getSplat(NumBits, APInt(8, 0x01)); 943 auto MagicMI = MIB.buildConstant(ExtType, Magic); 944 Val = MIB.buildMul(ExtType, ZExt, MagicMI).getReg(0); 945 } 946 947 // For vector types create a G_BUILD_VECTOR. 948 if (Ty.isVector()) 949 Val = MIB.buildSplatVector(Ty, Val).getReg(0); 950 951 return Val; 952 } 953 954 bool CombinerHelper::optimizeMemset(MachineInstr &MI, Register Dst, 955 Register Val, unsigned KnownLen, 956 Align Alignment, bool IsVolatile) { 957 auto &MF = *MI.getParent()->getParent(); 958 const auto &TLI = *MF.getSubtarget().getTargetLowering(); 959 auto &DL = MF.getDataLayout(); 960 LLVMContext &C = MF.getFunction().getContext(); 961 962 assert(KnownLen != 0 && "Have a zero length memset length!"); 963 964 bool DstAlignCanChange = false; 965 MachineFrameInfo &MFI = MF.getFrameInfo(); 966 bool OptSize = shouldLowerMemFuncForSize(MF); 967 968 MachineInstr *FIDef = getOpcodeDef(TargetOpcode::G_FRAME_INDEX, Dst, MRI); 969 if (FIDef && !MFI.isFixedObjectIndex(FIDef->getOperand(1).getIndex())) 970 DstAlignCanChange = true; 971 972 unsigned Limit = TLI.getMaxStoresPerMemset(OptSize); 973 std::vector<LLT> MemOps; 974 975 const auto &DstMMO = **MI.memoperands_begin(); 976 MachinePointerInfo DstPtrInfo = DstMMO.getPointerInfo(); 977 978 auto ValVRegAndVal = getConstantVRegValWithLookThrough(Val, MRI); 979 bool IsZeroVal = ValVRegAndVal && ValVRegAndVal->Value == 0; 980 981 if (!findGISelOptimalMemOpLowering(MemOps, Limit, 982 MemOp::Set(KnownLen, DstAlignCanChange, 983 Alignment, 984 /*IsZeroMemset=*/IsZeroVal, 985 /*IsVolatile=*/IsVolatile), 986 DstPtrInfo.getAddrSpace(), ~0u, 987 MF.getFunction().getAttributes(), TLI)) 988 return false; 989 990 if (DstAlignCanChange) { 991 // Get an estimate of the type from the LLT. 992 Type *IRTy = getTypeForLLT(MemOps[0], C); 993 Align NewAlign = DL.getABITypeAlign(IRTy); 994 if (NewAlign > Alignment) { 995 Alignment = NewAlign; 996 unsigned FI = FIDef->getOperand(1).getIndex(); 997 // Give the stack frame object a larger alignment if needed. 998 if (MFI.getObjectAlign(FI) < Alignment) 999 MFI.setObjectAlignment(FI, Alignment); 1000 } 1001 } 1002 1003 MachineIRBuilder MIB(MI); 1004 // Find the largest store and generate the bit pattern for it. 1005 LLT LargestTy = MemOps[0]; 1006 for (unsigned i = 1; i < MemOps.size(); i++) 1007 if (MemOps[i].getSizeInBits() > LargestTy.getSizeInBits()) 1008 LargestTy = MemOps[i]; 1009 1010 // The memset stored value is always defined as an s8, so in order to make it 1011 // work with larger store types we need to repeat the bit pattern across the 1012 // wider type. 1013 Register MemSetValue = getMemsetValue(Val, LargestTy, MIB); 1014 1015 if (!MemSetValue) 1016 return false; 1017 1018 // Generate the stores. For each store type in the list, we generate the 1019 // matching store of that type to the destination address. 1020 LLT PtrTy = MRI.getType(Dst); 1021 unsigned DstOff = 0; 1022 unsigned Size = KnownLen; 1023 for (unsigned I = 0; I < MemOps.size(); I++) { 1024 LLT Ty = MemOps[I]; 1025 unsigned TySize = Ty.getSizeInBytes(); 1026 if (TySize > Size) { 1027 // Issuing an unaligned load / store pair that overlaps with the previous 1028 // pair. Adjust the offset accordingly. 1029 assert(I == MemOps.size() - 1 && I != 0); 1030 DstOff -= TySize - Size; 1031 } 1032 1033 // If this store is smaller than the largest store see whether we can get 1034 // the smaller value for free with a truncate. 1035 Register Value = MemSetValue; 1036 if (Ty.getSizeInBits() < LargestTy.getSizeInBits()) { 1037 MVT VT = getMVTForLLT(Ty); 1038 MVT LargestVT = getMVTForLLT(LargestTy); 1039 if (!LargestTy.isVector() && !Ty.isVector() && 1040 TLI.isTruncateFree(LargestVT, VT)) 1041 Value = MIB.buildTrunc(Ty, MemSetValue).getReg(0); 1042 else 1043 Value = getMemsetValue(Val, Ty, MIB); 1044 if (!Value) 1045 return false; 1046 } 1047 1048 auto *StoreMMO = 1049 MF.getMachineMemOperand(&DstMMO, DstOff, Ty.getSizeInBytes()); 1050 1051 Register Ptr = Dst; 1052 if (DstOff != 0) { 1053 auto Offset = 1054 MIB.buildConstant(LLT::scalar(PtrTy.getSizeInBits()), DstOff); 1055 Ptr = MIB.buildPtrAdd(PtrTy, Dst, Offset).getReg(0); 1056 } 1057 1058 MIB.buildStore(Value, Ptr, *StoreMMO); 1059 DstOff += Ty.getSizeInBytes(); 1060 Size -= TySize; 1061 } 1062 1063 MI.eraseFromParent(); 1064 return true; 1065 } 1066 1067 bool CombinerHelper::optimizeMemcpy(MachineInstr &MI, Register Dst, 1068 Register Src, unsigned KnownLen, 1069 Align DstAlign, Align SrcAlign, 1070 bool IsVolatile) { 1071 auto &MF = *MI.getParent()->getParent(); 1072 const auto &TLI = *MF.getSubtarget().getTargetLowering(); 1073 auto &DL = MF.getDataLayout(); 1074 LLVMContext &C = MF.getFunction().getContext(); 1075 1076 assert(KnownLen != 0 && "Have a zero length memcpy length!"); 1077 1078 bool DstAlignCanChange = false; 1079 MachineFrameInfo &MFI = MF.getFrameInfo(); 1080 bool OptSize = shouldLowerMemFuncForSize(MF); 1081 Align Alignment = commonAlignment(DstAlign, SrcAlign); 1082 1083 MachineInstr *FIDef = getOpcodeDef(TargetOpcode::G_FRAME_INDEX, Dst, MRI); 1084 if (FIDef && !MFI.isFixedObjectIndex(FIDef->getOperand(1).getIndex())) 1085 DstAlignCanChange = true; 1086 1087 // FIXME: infer better src pointer alignment like SelectionDAG does here. 1088 // FIXME: also use the equivalent of isMemSrcFromConstant and alwaysinlining 1089 // if the memcpy is in a tail call position. 1090 1091 unsigned Limit = TLI.getMaxStoresPerMemcpy(OptSize); 1092 std::vector<LLT> MemOps; 1093 1094 const auto &DstMMO = **MI.memoperands_begin(); 1095 const auto &SrcMMO = **std::next(MI.memoperands_begin()); 1096 MachinePointerInfo DstPtrInfo = DstMMO.getPointerInfo(); 1097 MachinePointerInfo SrcPtrInfo = SrcMMO.getPointerInfo(); 1098 1099 if (!findGISelOptimalMemOpLowering( 1100 MemOps, Limit, 1101 MemOp::Copy(KnownLen, DstAlignCanChange, Alignment, SrcAlign, 1102 IsVolatile), 1103 DstPtrInfo.getAddrSpace(), SrcPtrInfo.getAddrSpace(), 1104 MF.getFunction().getAttributes(), TLI)) 1105 return false; 1106 1107 if (DstAlignCanChange) { 1108 // Get an estimate of the type from the LLT. 1109 Type *IRTy = getTypeForLLT(MemOps[0], C); 1110 Align NewAlign = DL.getABITypeAlign(IRTy); 1111 1112 // Don't promote to an alignment that would require dynamic stack 1113 // realignment. 1114 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); 1115 if (!TRI->needsStackRealignment(MF)) 1116 while (NewAlign > Alignment && DL.exceedsNaturalStackAlignment(NewAlign)) 1117 NewAlign = NewAlign / 2; 1118 1119 if (NewAlign > Alignment) { 1120 Alignment = NewAlign; 1121 unsigned FI = FIDef->getOperand(1).getIndex(); 1122 // Give the stack frame object a larger alignment if needed. 1123 if (MFI.getObjectAlign(FI) < Alignment) 1124 MFI.setObjectAlignment(FI, Alignment); 1125 } 1126 } 1127 1128 LLVM_DEBUG(dbgs() << "Inlining memcpy: " << MI << " into loads & stores\n"); 1129 1130 MachineIRBuilder MIB(MI); 1131 // Now we need to emit a pair of load and stores for each of the types we've 1132 // collected. I.e. for each type, generate a load from the source pointer of 1133 // that type width, and then generate a corresponding store to the dest buffer 1134 // of that value loaded. This can result in a sequence of loads and stores 1135 // mixed types, depending on what the target specifies as good types to use. 1136 unsigned CurrOffset = 0; 1137 LLT PtrTy = MRI.getType(Src); 1138 unsigned Size = KnownLen; 1139 for (auto CopyTy : MemOps) { 1140 // Issuing an unaligned load / store pair that overlaps with the previous 1141 // pair. Adjust the offset accordingly. 1142 if (CopyTy.getSizeInBytes() > Size) 1143 CurrOffset -= CopyTy.getSizeInBytes() - Size; 1144 1145 // Construct MMOs for the accesses. 1146 auto *LoadMMO = 1147 MF.getMachineMemOperand(&SrcMMO, CurrOffset, CopyTy.getSizeInBytes()); 1148 auto *StoreMMO = 1149 MF.getMachineMemOperand(&DstMMO, CurrOffset, CopyTy.getSizeInBytes()); 1150 1151 // Create the load. 1152 Register LoadPtr = Src; 1153 Register Offset; 1154 if (CurrOffset != 0) { 1155 Offset = MIB.buildConstant(LLT::scalar(PtrTy.getSizeInBits()), CurrOffset) 1156 .getReg(0); 1157 LoadPtr = MIB.buildPtrAdd(PtrTy, Src, Offset).getReg(0); 1158 } 1159 auto LdVal = MIB.buildLoad(CopyTy, LoadPtr, *LoadMMO); 1160 1161 // Create the store. 1162 Register StorePtr = 1163 CurrOffset == 0 ? Dst : MIB.buildPtrAdd(PtrTy, Dst, Offset).getReg(0); 1164 MIB.buildStore(LdVal, StorePtr, *StoreMMO); 1165 CurrOffset += CopyTy.getSizeInBytes(); 1166 Size -= CopyTy.getSizeInBytes(); 1167 } 1168 1169 MI.eraseFromParent(); 1170 return true; 1171 } 1172 1173 bool CombinerHelper::optimizeMemmove(MachineInstr &MI, Register Dst, 1174 Register Src, unsigned KnownLen, 1175 Align DstAlign, Align SrcAlign, 1176 bool IsVolatile) { 1177 auto &MF = *MI.getParent()->getParent(); 1178 const auto &TLI = *MF.getSubtarget().getTargetLowering(); 1179 auto &DL = MF.getDataLayout(); 1180 LLVMContext &C = MF.getFunction().getContext(); 1181 1182 assert(KnownLen != 0 && "Have a zero length memmove length!"); 1183 1184 bool DstAlignCanChange = false; 1185 MachineFrameInfo &MFI = MF.getFrameInfo(); 1186 bool OptSize = shouldLowerMemFuncForSize(MF); 1187 Align Alignment = commonAlignment(DstAlign, SrcAlign); 1188 1189 MachineInstr *FIDef = getOpcodeDef(TargetOpcode::G_FRAME_INDEX, Dst, MRI); 1190 if (FIDef && !MFI.isFixedObjectIndex(FIDef->getOperand(1).getIndex())) 1191 DstAlignCanChange = true; 1192 1193 unsigned Limit = TLI.getMaxStoresPerMemmove(OptSize); 1194 std::vector<LLT> MemOps; 1195 1196 const auto &DstMMO = **MI.memoperands_begin(); 1197 const auto &SrcMMO = **std::next(MI.memoperands_begin()); 1198 MachinePointerInfo DstPtrInfo = DstMMO.getPointerInfo(); 1199 MachinePointerInfo SrcPtrInfo = SrcMMO.getPointerInfo(); 1200 1201 // FIXME: SelectionDAG always passes false for 'AllowOverlap', apparently due 1202 // to a bug in it's findOptimalMemOpLowering implementation. For now do the 1203 // same thing here. 1204 if (!findGISelOptimalMemOpLowering( 1205 MemOps, Limit, 1206 MemOp::Copy(KnownLen, DstAlignCanChange, Alignment, SrcAlign, 1207 /*IsVolatile*/ true), 1208 DstPtrInfo.getAddrSpace(), SrcPtrInfo.getAddrSpace(), 1209 MF.getFunction().getAttributes(), TLI)) 1210 return false; 1211 1212 if (DstAlignCanChange) { 1213 // Get an estimate of the type from the LLT. 1214 Type *IRTy = getTypeForLLT(MemOps[0], C); 1215 Align NewAlign = DL.getABITypeAlign(IRTy); 1216 1217 // Don't promote to an alignment that would require dynamic stack 1218 // realignment. 1219 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); 1220 if (!TRI->needsStackRealignment(MF)) 1221 while (NewAlign > Alignment && DL.exceedsNaturalStackAlignment(NewAlign)) 1222 NewAlign = NewAlign / 2; 1223 1224 if (NewAlign > Alignment) { 1225 Alignment = NewAlign; 1226 unsigned FI = FIDef->getOperand(1).getIndex(); 1227 // Give the stack frame object a larger alignment if needed. 1228 if (MFI.getObjectAlign(FI) < Alignment) 1229 MFI.setObjectAlignment(FI, Alignment); 1230 } 1231 } 1232 1233 LLVM_DEBUG(dbgs() << "Inlining memmove: " << MI << " into loads & stores\n"); 1234 1235 MachineIRBuilder MIB(MI); 1236 // Memmove requires that we perform the loads first before issuing the stores. 1237 // Apart from that, this loop is pretty much doing the same thing as the 1238 // memcpy codegen function. 1239 unsigned CurrOffset = 0; 1240 LLT PtrTy = MRI.getType(Src); 1241 SmallVector<Register, 16> LoadVals; 1242 for (auto CopyTy : MemOps) { 1243 // Construct MMO for the load. 1244 auto *LoadMMO = 1245 MF.getMachineMemOperand(&SrcMMO, CurrOffset, CopyTy.getSizeInBytes()); 1246 1247 // Create the load. 1248 Register LoadPtr = Src; 1249 if (CurrOffset != 0) { 1250 auto Offset = 1251 MIB.buildConstant(LLT::scalar(PtrTy.getSizeInBits()), CurrOffset); 1252 LoadPtr = MIB.buildPtrAdd(PtrTy, Src, Offset).getReg(0); 1253 } 1254 LoadVals.push_back(MIB.buildLoad(CopyTy, LoadPtr, *LoadMMO).getReg(0)); 1255 CurrOffset += CopyTy.getSizeInBytes(); 1256 } 1257 1258 CurrOffset = 0; 1259 for (unsigned I = 0; I < MemOps.size(); ++I) { 1260 LLT CopyTy = MemOps[I]; 1261 // Now store the values loaded. 1262 auto *StoreMMO = 1263 MF.getMachineMemOperand(&DstMMO, CurrOffset, CopyTy.getSizeInBytes()); 1264 1265 Register StorePtr = Dst; 1266 if (CurrOffset != 0) { 1267 auto Offset = 1268 MIB.buildConstant(LLT::scalar(PtrTy.getSizeInBits()), CurrOffset); 1269 StorePtr = MIB.buildPtrAdd(PtrTy, Dst, Offset).getReg(0); 1270 } 1271 MIB.buildStore(LoadVals[I], StorePtr, *StoreMMO); 1272 CurrOffset += CopyTy.getSizeInBytes(); 1273 } 1274 MI.eraseFromParent(); 1275 return true; 1276 } 1277 1278 bool CombinerHelper::tryCombineMemCpyFamily(MachineInstr &MI, unsigned MaxLen) { 1279 // This combine is fairly complex so it's not written with a separate 1280 // matcher function. 1281 assert(MI.getOpcode() == TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS); 1282 Intrinsic::ID ID = (Intrinsic::ID)MI.getIntrinsicID(); 1283 assert((ID == Intrinsic::memcpy || ID == Intrinsic::memmove || 1284 ID == Intrinsic::memset) && 1285 "Expected a memcpy like intrinsic"); 1286 1287 auto MMOIt = MI.memoperands_begin(); 1288 const MachineMemOperand *MemOp = *MMOIt; 1289 bool IsVolatile = MemOp->isVolatile(); 1290 // Don't try to optimize volatile. 1291 if (IsVolatile) 1292 return false; 1293 1294 Align DstAlign = MemOp->getBaseAlign(); 1295 Align SrcAlign; 1296 Register Dst = MI.getOperand(1).getReg(); 1297 Register Src = MI.getOperand(2).getReg(); 1298 Register Len = MI.getOperand(3).getReg(); 1299 1300 if (ID != Intrinsic::memset) { 1301 assert(MMOIt != MI.memoperands_end() && "Expected a second MMO on MI"); 1302 MemOp = *(++MMOIt); 1303 SrcAlign = MemOp->getBaseAlign(); 1304 } 1305 1306 // See if this is a constant length copy 1307 auto LenVRegAndVal = getConstantVRegValWithLookThrough(Len, MRI); 1308 if (!LenVRegAndVal) 1309 return false; // Leave it to the legalizer to lower it to a libcall. 1310 unsigned KnownLen = LenVRegAndVal->Value; 1311 1312 if (KnownLen == 0) { 1313 MI.eraseFromParent(); 1314 return true; 1315 } 1316 1317 if (MaxLen && KnownLen > MaxLen) 1318 return false; 1319 1320 if (ID == Intrinsic::memcpy) 1321 return optimizeMemcpy(MI, Dst, Src, KnownLen, DstAlign, SrcAlign, IsVolatile); 1322 if (ID == Intrinsic::memmove) 1323 return optimizeMemmove(MI, Dst, Src, KnownLen, DstAlign, SrcAlign, IsVolatile); 1324 if (ID == Intrinsic::memset) 1325 return optimizeMemset(MI, Dst, Src, KnownLen, DstAlign, IsVolatile); 1326 return false; 1327 } 1328 1329 bool CombinerHelper::matchPtrAddImmedChain(MachineInstr &MI, 1330 PtrAddChain &MatchInfo) { 1331 // We're trying to match the following pattern: 1332 // %t1 = G_PTR_ADD %base, G_CONSTANT imm1 1333 // %root = G_PTR_ADD %t1, G_CONSTANT imm2 1334 // --> 1335 // %root = G_PTR_ADD %base, G_CONSTANT (imm1 + imm2) 1336 1337 if (MI.getOpcode() != TargetOpcode::G_PTR_ADD) 1338 return false; 1339 1340 Register Add2 = MI.getOperand(1).getReg(); 1341 Register Imm1 = MI.getOperand(2).getReg(); 1342 auto MaybeImmVal = getConstantVRegValWithLookThrough(Imm1, MRI); 1343 if (!MaybeImmVal) 1344 return false; 1345 1346 MachineInstr *Add2Def = MRI.getUniqueVRegDef(Add2); 1347 if (!Add2Def || Add2Def->getOpcode() != TargetOpcode::G_PTR_ADD) 1348 return false; 1349 1350 Register Base = Add2Def->getOperand(1).getReg(); 1351 Register Imm2 = Add2Def->getOperand(2).getReg(); 1352 auto MaybeImm2Val = getConstantVRegValWithLookThrough(Imm2, MRI); 1353 if (!MaybeImm2Val) 1354 return false; 1355 1356 // Pass the combined immediate to the apply function. 1357 MatchInfo.Imm = MaybeImmVal->Value + MaybeImm2Val->Value; 1358 MatchInfo.Base = Base; 1359 return true; 1360 } 1361 1362 bool CombinerHelper::applyPtrAddImmedChain(MachineInstr &MI, 1363 PtrAddChain &MatchInfo) { 1364 assert(MI.getOpcode() == TargetOpcode::G_PTR_ADD && "Expected G_PTR_ADD"); 1365 MachineIRBuilder MIB(MI); 1366 LLT OffsetTy = MRI.getType(MI.getOperand(2).getReg()); 1367 auto NewOffset = MIB.buildConstant(OffsetTy, MatchInfo.Imm); 1368 Observer.changingInstr(MI); 1369 MI.getOperand(1).setReg(MatchInfo.Base); 1370 MI.getOperand(2).setReg(NewOffset.getReg(0)); 1371 Observer.changedInstr(MI); 1372 return true; 1373 } 1374 1375 bool CombinerHelper::matchCombineMulToShl(MachineInstr &MI, 1376 unsigned &ShiftVal) { 1377 assert(MI.getOpcode() == TargetOpcode::G_MUL && "Expected a G_MUL"); 1378 auto MaybeImmVal = 1379 getConstantVRegValWithLookThrough(MI.getOperand(2).getReg(), MRI); 1380 if (!MaybeImmVal || !isPowerOf2_64(MaybeImmVal->Value)) 1381 return false; 1382 ShiftVal = Log2_64(MaybeImmVal->Value); 1383 return true; 1384 } 1385 1386 bool CombinerHelper::applyCombineMulToShl(MachineInstr &MI, 1387 unsigned &ShiftVal) { 1388 assert(MI.getOpcode() == TargetOpcode::G_MUL && "Expected a G_MUL"); 1389 MachineIRBuilder MIB(MI); 1390 LLT ShiftTy = MRI.getType(MI.getOperand(0).getReg()); 1391 auto ShiftCst = MIB.buildConstant(ShiftTy, ShiftVal); 1392 Observer.changingInstr(MI); 1393 MI.setDesc(MIB.getTII().get(TargetOpcode::G_SHL)); 1394 MI.getOperand(2).setReg(ShiftCst.getReg(0)); 1395 Observer.changedInstr(MI); 1396 return true; 1397 } 1398 1399 bool CombinerHelper::matchCombineShiftToUnmerge(MachineInstr &MI, 1400 unsigned TargetShiftSize, 1401 unsigned &ShiftVal) { 1402 assert((MI.getOpcode() == TargetOpcode::G_SHL || 1403 MI.getOpcode() == TargetOpcode::G_LSHR || 1404 MI.getOpcode() == TargetOpcode::G_ASHR) && "Expected a shift"); 1405 1406 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); 1407 if (Ty.isVector()) // TODO: 1408 return false; 1409 1410 // Don't narrow further than the requested size. 1411 unsigned Size = Ty.getSizeInBits(); 1412 if (Size <= TargetShiftSize) 1413 return false; 1414 1415 auto MaybeImmVal = 1416 getConstantVRegValWithLookThrough(MI.getOperand(2).getReg(), MRI); 1417 if (!MaybeImmVal) 1418 return false; 1419 1420 ShiftVal = MaybeImmVal->Value; 1421 return ShiftVal >= Size / 2 && ShiftVal < Size; 1422 } 1423 1424 bool CombinerHelper::applyCombineShiftToUnmerge(MachineInstr &MI, 1425 const unsigned &ShiftVal) { 1426 Register DstReg = MI.getOperand(0).getReg(); 1427 Register SrcReg = MI.getOperand(1).getReg(); 1428 LLT Ty = MRI.getType(SrcReg); 1429 unsigned Size = Ty.getSizeInBits(); 1430 unsigned HalfSize = Size / 2; 1431 assert(ShiftVal >= HalfSize); 1432 1433 LLT HalfTy = LLT::scalar(HalfSize); 1434 1435 Builder.setInstr(MI); 1436 auto Unmerge = Builder.buildUnmerge(HalfTy, SrcReg); 1437 unsigned NarrowShiftAmt = ShiftVal - HalfSize; 1438 1439 if (MI.getOpcode() == TargetOpcode::G_LSHR) { 1440 Register Narrowed = Unmerge.getReg(1); 1441 1442 // dst = G_LSHR s64:x, C for C >= 32 1443 // => 1444 // lo, hi = G_UNMERGE_VALUES x 1445 // dst = G_MERGE_VALUES (G_LSHR hi, C - 32), 0 1446 1447 if (NarrowShiftAmt != 0) { 1448 Narrowed = Builder.buildLShr(HalfTy, Narrowed, 1449 Builder.buildConstant(HalfTy, NarrowShiftAmt)).getReg(0); 1450 } 1451 1452 auto Zero = Builder.buildConstant(HalfTy, 0); 1453 Builder.buildMerge(DstReg, { Narrowed, Zero }); 1454 } else if (MI.getOpcode() == TargetOpcode::G_SHL) { 1455 Register Narrowed = Unmerge.getReg(0); 1456 // dst = G_SHL s64:x, C for C >= 32 1457 // => 1458 // lo, hi = G_UNMERGE_VALUES x 1459 // dst = G_MERGE_VALUES 0, (G_SHL hi, C - 32) 1460 if (NarrowShiftAmt != 0) { 1461 Narrowed = Builder.buildShl(HalfTy, Narrowed, 1462 Builder.buildConstant(HalfTy, NarrowShiftAmt)).getReg(0); 1463 } 1464 1465 auto Zero = Builder.buildConstant(HalfTy, 0); 1466 Builder.buildMerge(DstReg, { Zero, Narrowed }); 1467 } else { 1468 assert(MI.getOpcode() == TargetOpcode::G_ASHR); 1469 auto Hi = Builder.buildAShr( 1470 HalfTy, Unmerge.getReg(1), 1471 Builder.buildConstant(HalfTy, HalfSize - 1)); 1472 1473 if (ShiftVal == HalfSize) { 1474 // (G_ASHR i64:x, 32) -> 1475 // G_MERGE_VALUES hi_32(x), (G_ASHR hi_32(x), 31) 1476 Builder.buildMerge(DstReg, { Unmerge.getReg(1), Hi }); 1477 } else if (ShiftVal == Size - 1) { 1478 // Don't need a second shift. 1479 // (G_ASHR i64:x, 63) -> 1480 // %narrowed = (G_ASHR hi_32(x), 31) 1481 // G_MERGE_VALUES %narrowed, %narrowed 1482 Builder.buildMerge(DstReg, { Hi, Hi }); 1483 } else { 1484 auto Lo = Builder.buildAShr( 1485 HalfTy, Unmerge.getReg(1), 1486 Builder.buildConstant(HalfTy, ShiftVal - HalfSize)); 1487 1488 // (G_ASHR i64:x, C) ->, for C >= 32 1489 // G_MERGE_VALUES (G_ASHR hi_32(x), C - 32), (G_ASHR hi_32(x), 31) 1490 Builder.buildMerge(DstReg, { Lo, Hi }); 1491 } 1492 } 1493 1494 MI.eraseFromParent(); 1495 return true; 1496 } 1497 1498 bool CombinerHelper::tryCombineShiftToUnmerge(MachineInstr &MI, 1499 unsigned TargetShiftAmount) { 1500 unsigned ShiftAmt; 1501 if (matchCombineShiftToUnmerge(MI, TargetShiftAmount, ShiftAmt)) { 1502 applyCombineShiftToUnmerge(MI, ShiftAmt); 1503 return true; 1504 } 1505 1506 return false; 1507 } 1508 1509 bool CombinerHelper::matchAnyExplicitUseIsUndef(MachineInstr &MI) { 1510 return any_of(MI.explicit_uses(), [this](const MachineOperand &MO) { 1511 return MO.isReg() && 1512 getOpcodeDef(TargetOpcode::G_IMPLICIT_DEF, MO.getReg(), MRI); 1513 }); 1514 } 1515 1516 bool CombinerHelper::matchAllExplicitUsesAreUndef(MachineInstr &MI) { 1517 return all_of(MI.explicit_uses(), [this](const MachineOperand &MO) { 1518 return !MO.isReg() || 1519 getOpcodeDef(TargetOpcode::G_IMPLICIT_DEF, MO.getReg(), MRI); 1520 }); 1521 } 1522 1523 bool CombinerHelper::matchUndefShuffleVectorMask(MachineInstr &MI) { 1524 assert(MI.getOpcode() == TargetOpcode::G_SHUFFLE_VECTOR); 1525 ArrayRef<int> Mask = MI.getOperand(3).getShuffleMask(); 1526 return all_of(Mask, [](int Elt) { return Elt < 0; }); 1527 } 1528 1529 bool CombinerHelper::matchUndefStore(MachineInstr &MI) { 1530 assert(MI.getOpcode() == TargetOpcode::G_STORE); 1531 return getOpcodeDef(TargetOpcode::G_IMPLICIT_DEF, MI.getOperand(0).getReg(), 1532 MRI); 1533 } 1534 1535 bool CombinerHelper::eraseInst(MachineInstr &MI) { 1536 MI.eraseFromParent(); 1537 return true; 1538 } 1539 1540 bool CombinerHelper::matchEqualDefs(const MachineOperand &MOP1, 1541 const MachineOperand &MOP2) { 1542 if (!MOP1.isReg() || !MOP2.isReg()) 1543 return false; 1544 MachineInstr *I1 = getDefIgnoringCopies(MOP1.getReg(), MRI); 1545 if (!I1) 1546 return false; 1547 MachineInstr *I2 = getDefIgnoringCopies(MOP2.getReg(), MRI); 1548 if (!I2) 1549 return false; 1550 1551 // Handle a case like this: 1552 // 1553 // %0:_(s64), %1:_(s64) = G_UNMERGE_VALUES %2:_(<2 x s64>) 1554 // 1555 // Even though %0 and %1 are produced by the same instruction they are not 1556 // the same values. 1557 if (I1 == I2) 1558 return MOP1.getReg() == MOP2.getReg(); 1559 1560 // If we have an instruction which loads or stores, we can't guarantee that 1561 // it is identical. 1562 // 1563 // For example, we may have 1564 // 1565 // %x1 = G_LOAD %addr (load N from @somewhere) 1566 // ... 1567 // call @foo 1568 // ... 1569 // %x2 = G_LOAD %addr (load N from @somewhere) 1570 // ... 1571 // %or = G_OR %x1, %x2 1572 // 1573 // It's possible that @foo will modify whatever lives at the address we're 1574 // loading from. To be safe, let's just assume that all loads and stores 1575 // are different (unless we have something which is guaranteed to not 1576 // change.) 1577 if (I1->mayLoadOrStore() && !I1->isDereferenceableInvariantLoad(nullptr)) 1578 return false; 1579 1580 // Check for physical registers on the instructions first to avoid cases 1581 // like this: 1582 // 1583 // %a = COPY $physreg 1584 // ... 1585 // SOMETHING implicit-def $physreg 1586 // ... 1587 // %b = COPY $physreg 1588 // 1589 // These copies are not equivalent. 1590 if (any_of(I1->uses(), [](const MachineOperand &MO) { 1591 return MO.isReg() && MO.getReg().isPhysical(); 1592 })) { 1593 // Check if we have a case like this: 1594 // 1595 // %a = COPY $physreg 1596 // %b = COPY %a 1597 // 1598 // In this case, I1 and I2 will both be equal to %a = COPY $physreg. 1599 // From that, we know that they must have the same value, since they must 1600 // have come from the same COPY. 1601 return I1->isIdenticalTo(*I2); 1602 } 1603 1604 // We don't have any physical registers, so we don't necessarily need the 1605 // same vreg defs. 1606 // 1607 // On the off-chance that there's some target instruction feeding into the 1608 // instruction, let's use produceSameValue instead of isIdenticalTo. 1609 return Builder.getTII().produceSameValue(*I1, *I2, &MRI); 1610 } 1611 1612 bool CombinerHelper::matchConstantOp(const MachineOperand &MOP, int64_t C) { 1613 if (!MOP.isReg()) 1614 return false; 1615 int64_t Cst; 1616 return mi_match(MOP.getReg(), MRI, m_ICst(Cst)) && Cst == C; 1617 } 1618 1619 bool CombinerHelper::replaceSingleDefInstWithOperand(MachineInstr &MI, 1620 unsigned OpIdx) { 1621 assert(MI.getNumExplicitDefs() == 1 && "Expected one explicit def?"); 1622 Register OldReg = MI.getOperand(0).getReg(); 1623 Register Replacement = MI.getOperand(OpIdx).getReg(); 1624 assert(canReplaceReg(OldReg, Replacement, MRI) && "Cannot replace register?"); 1625 MI.eraseFromParent(); 1626 replaceRegWith(MRI, OldReg, Replacement); 1627 return true; 1628 } 1629 1630 bool CombinerHelper::matchSelectSameVal(MachineInstr &MI) { 1631 assert(MI.getOpcode() == TargetOpcode::G_SELECT); 1632 // Match (cond ? x : x) 1633 return matchEqualDefs(MI.getOperand(2), MI.getOperand(3)) && 1634 canReplaceReg(MI.getOperand(0).getReg(), MI.getOperand(2).getReg(), 1635 MRI); 1636 } 1637 1638 bool CombinerHelper::matchBinOpSameVal(MachineInstr &MI) { 1639 return matchEqualDefs(MI.getOperand(1), MI.getOperand(2)) && 1640 canReplaceReg(MI.getOperand(0).getReg(), MI.getOperand(1).getReg(), 1641 MRI); 1642 } 1643 1644 bool CombinerHelper::matchOperandIsZero(MachineInstr &MI, unsigned OpIdx) { 1645 return matchConstantOp(MI.getOperand(OpIdx), 0) && 1646 canReplaceReg(MI.getOperand(0).getReg(), MI.getOperand(OpIdx).getReg(), 1647 MRI); 1648 } 1649 1650 bool CombinerHelper::replaceInstWithFConstant(MachineInstr &MI, double C) { 1651 assert(MI.getNumDefs() == 1 && "Expected only one def?"); 1652 Builder.setInstr(MI); 1653 Builder.buildFConstant(MI.getOperand(0), C); 1654 MI.eraseFromParent(); 1655 return true; 1656 } 1657 1658 bool CombinerHelper::replaceInstWithConstant(MachineInstr &MI, int64_t C) { 1659 assert(MI.getNumDefs() == 1 && "Expected only one def?"); 1660 Builder.setInstr(MI); 1661 Builder.buildConstant(MI.getOperand(0), C); 1662 MI.eraseFromParent(); 1663 return true; 1664 } 1665 1666 bool CombinerHelper::replaceInstWithUndef(MachineInstr &MI) { 1667 assert(MI.getNumDefs() == 1 && "Expected only one def?"); 1668 Builder.setInstr(MI); 1669 Builder.buildUndef(MI.getOperand(0)); 1670 MI.eraseFromParent(); 1671 return true; 1672 } 1673 1674 bool CombinerHelper::tryCombine(MachineInstr &MI) { 1675 if (tryCombineCopy(MI)) 1676 return true; 1677 if (tryCombineExtendingLoads(MI)) 1678 return true; 1679 if (tryCombineIndexedLoadStore(MI)) 1680 return true; 1681 return false; 1682 } 1683