1 //===------- HexagonCopyToCombine.cpp - Hexagon Copy-To-Combine Pass ------===// 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 // This pass replaces transfer instructions by combine instructions. 9 // We walk along a basic block and look for two combinable instructions and try 10 // to move them together. If we can move them next to each other we do so and 11 // replace them with a combine instruction. 12 //===----------------------------------------------------------------------===// 13 14 #include "HexagonInstrInfo.h" 15 #include "HexagonSubtarget.h" 16 #include "llvm/ADT/DenseMap.h" 17 #include "llvm/ADT/DenseSet.h" 18 #include "llvm/CodeGen/MachineBasicBlock.h" 19 #include "llvm/CodeGen/MachineFunction.h" 20 #include "llvm/CodeGen/MachineFunctionPass.h" 21 #include "llvm/CodeGen/MachineInstr.h" 22 #include "llvm/CodeGen/MachineInstrBuilder.h" 23 #include "llvm/CodeGen/Passes.h" 24 #include "llvm/CodeGen/TargetRegisterInfo.h" 25 #include "llvm/Pass.h" 26 #include "llvm/Support/CodeGen.h" 27 #include "llvm/Support/CommandLine.h" 28 #include "llvm/Support/Debug.h" 29 #include "llvm/Support/raw_ostream.h" 30 #include "llvm/Target/TargetMachine.h" 31 32 using namespace llvm; 33 34 #define DEBUG_TYPE "hexagon-copy-combine" 35 36 static 37 cl::opt<bool> IsCombinesDisabled("disable-merge-into-combines", 38 cl::Hidden, cl::ZeroOrMore, 39 cl::init(false), 40 cl::desc("Disable merging into combines")); 41 static 42 cl::opt<bool> IsConst64Disabled("disable-const64", 43 cl::Hidden, cl::ZeroOrMore, 44 cl::init(false), 45 cl::desc("Disable generation of const64")); 46 static 47 cl::opt<unsigned> 48 MaxNumOfInstsBetweenNewValueStoreAndTFR("max-num-inst-between-tfr-and-nv-store", 49 cl::Hidden, cl::init(4), 50 cl::desc("Maximum distance between a tfr feeding a store we " 51 "consider the store still to be newifiable")); 52 53 namespace llvm { 54 FunctionPass *createHexagonCopyToCombine(); 55 void initializeHexagonCopyToCombinePass(PassRegistry&); 56 } 57 58 59 namespace { 60 61 class HexagonCopyToCombine : public MachineFunctionPass { 62 const HexagonInstrInfo *TII; 63 const TargetRegisterInfo *TRI; 64 const HexagonSubtarget *ST; 65 bool ShouldCombineAggressively; 66 67 DenseSet<MachineInstr *> PotentiallyNewifiableTFR; 68 SmallVector<MachineInstr *, 8> DbgMItoMove; 69 70 public: 71 static char ID; 72 73 HexagonCopyToCombine() : MachineFunctionPass(ID) { 74 initializeHexagonCopyToCombinePass(*PassRegistry::getPassRegistry()); 75 } 76 77 void getAnalysisUsage(AnalysisUsage &AU) const override { 78 MachineFunctionPass::getAnalysisUsage(AU); 79 } 80 81 StringRef getPassName() const override { 82 return "Hexagon Copy-To-Combine Pass"; 83 } 84 85 bool runOnMachineFunction(MachineFunction &Fn) override; 86 87 MachineFunctionProperties getRequiredProperties() const override { 88 return MachineFunctionProperties().set( 89 MachineFunctionProperties::Property::NoVRegs); 90 } 91 92 private: 93 MachineInstr *findPairable(MachineInstr &I1, bool &DoInsertAtI1, 94 bool AllowC64); 95 96 void findPotentialNewifiableTFRs(MachineBasicBlock &); 97 98 void combine(MachineInstr &I1, MachineInstr &I2, 99 MachineBasicBlock::iterator &MI, bool DoInsertAtI1, 100 bool OptForSize); 101 102 bool isSafeToMoveTogether(MachineInstr &I1, MachineInstr &I2, 103 unsigned I1DestReg, unsigned I2DestReg, 104 bool &DoInsertAtI1); 105 106 void emitCombineRR(MachineBasicBlock::iterator &Before, unsigned DestReg, 107 MachineOperand &HiOperand, MachineOperand &LoOperand); 108 109 void emitCombineRI(MachineBasicBlock::iterator &Before, unsigned DestReg, 110 MachineOperand &HiOperand, MachineOperand &LoOperand); 111 112 void emitCombineIR(MachineBasicBlock::iterator &Before, unsigned DestReg, 113 MachineOperand &HiOperand, MachineOperand &LoOperand); 114 115 void emitCombineII(MachineBasicBlock::iterator &Before, unsigned DestReg, 116 MachineOperand &HiOperand, MachineOperand &LoOperand); 117 118 void emitConst64(MachineBasicBlock::iterator &Before, unsigned DestReg, 119 MachineOperand &HiOperand, MachineOperand &LoOperand); 120 }; 121 122 } // End anonymous namespace. 123 124 char HexagonCopyToCombine::ID = 0; 125 126 INITIALIZE_PASS(HexagonCopyToCombine, "hexagon-copy-combine", 127 "Hexagon Copy-To-Combine Pass", false, false) 128 129 static bool isCombinableInstType(MachineInstr &MI, const HexagonInstrInfo *TII, 130 bool ShouldCombineAggressively) { 131 switch (MI.getOpcode()) { 132 case Hexagon::A2_tfr: { 133 // A COPY instruction can be combined if its arguments are IntRegs (32bit). 134 const MachineOperand &Op0 = MI.getOperand(0); 135 const MachineOperand &Op1 = MI.getOperand(1); 136 assert(Op0.isReg() && Op1.isReg()); 137 138 Register DestReg = Op0.getReg(); 139 Register SrcReg = Op1.getReg(); 140 return Hexagon::IntRegsRegClass.contains(DestReg) && 141 Hexagon::IntRegsRegClass.contains(SrcReg); 142 } 143 144 case Hexagon::A2_tfrsi: { 145 // A transfer-immediate can be combined if its argument is a signed 8bit 146 // value. 147 const MachineOperand &Op0 = MI.getOperand(0); 148 const MachineOperand &Op1 = MI.getOperand(1); 149 assert(Op0.isReg()); 150 151 Register DestReg = Op0.getReg(); 152 // Ensure that TargetFlags are MO_NO_FLAG for a global. This is a 153 // workaround for an ABI bug that prevents GOT relocations on combine 154 // instructions 155 if (!Op1.isImm() && Op1.getTargetFlags() != HexagonII::MO_NO_FLAG) 156 return false; 157 158 // Only combine constant extended A2_tfrsi if we are in aggressive mode. 159 bool NotExt = Op1.isImm() && isInt<8>(Op1.getImm()); 160 return Hexagon::IntRegsRegClass.contains(DestReg) && 161 (ShouldCombineAggressively || NotExt); 162 } 163 164 case Hexagon::V6_vassign: 165 return true; 166 167 default: 168 break; 169 } 170 171 return false; 172 } 173 174 template <unsigned N> static bool isGreaterThanNBitTFRI(const MachineInstr &I) { 175 if (I.getOpcode() == Hexagon::TFRI64_V4 || 176 I.getOpcode() == Hexagon::A2_tfrsi) { 177 const MachineOperand &Op = I.getOperand(1); 178 return !Op.isImm() || !isInt<N>(Op.getImm()); 179 } 180 return false; 181 } 182 183 /// areCombinableOperations - Returns true if the two instruction can be merge 184 /// into a combine (ignoring register constraints). 185 static bool areCombinableOperations(const TargetRegisterInfo *TRI, 186 MachineInstr &HighRegInst, 187 MachineInstr &LowRegInst, bool AllowC64) { 188 unsigned HiOpc = HighRegInst.getOpcode(); 189 unsigned LoOpc = LowRegInst.getOpcode(); 190 191 auto verifyOpc = [](unsigned Opc) -> void { 192 switch (Opc) { 193 case Hexagon::A2_tfr: 194 case Hexagon::A2_tfrsi: 195 case Hexagon::V6_vassign: 196 break; 197 default: 198 llvm_unreachable("Unexpected opcode"); 199 } 200 }; 201 verifyOpc(HiOpc); 202 verifyOpc(LoOpc); 203 204 if (HiOpc == Hexagon::V6_vassign || LoOpc == Hexagon::V6_vassign) 205 return HiOpc == LoOpc; 206 207 if (!AllowC64) { 208 // There is no combine of two constant extended values. 209 if (isGreaterThanNBitTFRI<8>(HighRegInst) && 210 isGreaterThanNBitTFRI<6>(LowRegInst)) 211 return false; 212 } 213 214 // There is a combine of two constant extended values into CONST64, 215 // provided both constants are true immediates. 216 if (isGreaterThanNBitTFRI<16>(HighRegInst) && 217 isGreaterThanNBitTFRI<16>(LowRegInst) && !IsConst64Disabled) 218 return (HighRegInst.getOperand(1).isImm() && 219 LowRegInst.getOperand(1).isImm()); 220 221 // There is no combine of two constant extended values, unless handled above 222 // Make both 8-bit size checks to allow both combine (#,##) and combine(##,#) 223 if (isGreaterThanNBitTFRI<8>(HighRegInst) && 224 isGreaterThanNBitTFRI<8>(LowRegInst)) 225 return false; 226 227 return true; 228 } 229 230 static bool isEvenReg(unsigned Reg) { 231 assert(Register::isPhysicalRegister(Reg)); 232 if (Hexagon::IntRegsRegClass.contains(Reg)) 233 return (Reg - Hexagon::R0) % 2 == 0; 234 if (Hexagon::HvxVRRegClass.contains(Reg)) 235 return (Reg - Hexagon::V0) % 2 == 0; 236 llvm_unreachable("Invalid register"); 237 } 238 239 static void removeKillInfo(MachineInstr &MI, unsigned RegNotKilled) { 240 for (unsigned I = 0, E = MI.getNumOperands(); I != E; ++I) { 241 MachineOperand &Op = MI.getOperand(I); 242 if (!Op.isReg() || Op.getReg() != RegNotKilled || !Op.isKill()) 243 continue; 244 Op.setIsKill(false); 245 } 246 } 247 248 /// Returns true if it is unsafe to move a copy instruction from \p UseReg to 249 /// \p DestReg over the instruction \p MI. 250 static bool isUnsafeToMoveAcross(MachineInstr &MI, unsigned UseReg, 251 unsigned DestReg, 252 const TargetRegisterInfo *TRI) { 253 return (UseReg && (MI.modifiesRegister(UseReg, TRI))) || 254 MI.modifiesRegister(DestReg, TRI) || MI.readsRegister(DestReg, TRI) || 255 MI.hasUnmodeledSideEffects() || MI.isInlineAsm() || 256 MI.isMetaInstruction(); 257 } 258 259 static Register UseReg(const MachineOperand& MO) { 260 return MO.isReg() ? MO.getReg() : Register(); 261 } 262 263 /// isSafeToMoveTogether - Returns true if it is safe to move I1 next to I2 such 264 /// that the two instructions can be paired in a combine. 265 bool HexagonCopyToCombine::isSafeToMoveTogether(MachineInstr &I1, 266 MachineInstr &I2, 267 unsigned I1DestReg, 268 unsigned I2DestReg, 269 bool &DoInsertAtI1) { 270 Register I2UseReg = UseReg(I2.getOperand(1)); 271 272 // It is not safe to move I1 and I2 into one combine if I2 has a true 273 // dependence on I1. 274 if (I2UseReg && I1.modifiesRegister(I2UseReg, TRI)) 275 return false; 276 277 bool isSafe = true; 278 279 // First try to move I2 towards I1. 280 { 281 // A reverse_iterator instantiated like below starts before I2, and I1 282 // respectively. 283 // Look at instructions I in between I2 and (excluding) I1. 284 MachineBasicBlock::reverse_iterator I = ++I2.getIterator().getReverse(); 285 MachineBasicBlock::reverse_iterator End = I1.getIterator().getReverse(); 286 // At 03 we got better results (dhrystone!) by being more conservative. 287 if (!ShouldCombineAggressively) 288 End = ++I1.getIterator().getReverse(); 289 // If I2 kills its operand and we move I2 over an instruction that also 290 // uses I2's use reg we need to modify that (first) instruction to now kill 291 // this reg. 292 unsigned KilledOperand = 0; 293 if (I2.killsRegister(I2UseReg)) 294 KilledOperand = I2UseReg; 295 MachineInstr *KillingInstr = nullptr; 296 297 for (; I != End; ++I) { 298 // If the intervening instruction I: 299 // * modifies I2's use reg 300 // * modifies I2's def reg 301 // * reads I2's def reg 302 // * or has unmodelled side effects 303 // we can't move I2 across it. 304 if (I->isDebugInstr()) 305 continue; 306 307 if (isUnsafeToMoveAcross(*I, I2UseReg, I2DestReg, TRI)) { 308 isSafe = false; 309 break; 310 } 311 312 // Update first use of the killed operand. 313 if (!KillingInstr && KilledOperand && 314 I->readsRegister(KilledOperand, TRI)) 315 KillingInstr = &*I; 316 } 317 if (isSafe) { 318 // Update the intermediate instruction to with the kill flag. 319 if (KillingInstr) { 320 bool Added = KillingInstr->addRegisterKilled(KilledOperand, TRI, true); 321 (void)Added; // suppress compiler warning 322 assert(Added && "Must successfully update kill flag"); 323 removeKillInfo(I2, KilledOperand); 324 } 325 DoInsertAtI1 = true; 326 return true; 327 } 328 } 329 330 // Try to move I1 towards I2. 331 { 332 // Look at instructions I in between I1 and (excluding) I2. 333 MachineBasicBlock::iterator I(I1), End(I2); 334 // At O3 we got better results (dhrystone) by being more conservative here. 335 if (!ShouldCombineAggressively) 336 End = std::next(MachineBasicBlock::iterator(I2)); 337 Register I1UseReg = UseReg(I1.getOperand(1)); 338 // Track killed operands. If we move across an instruction that kills our 339 // operand, we need to update the kill information on the moved I1. It kills 340 // the operand now. 341 MachineInstr *KillingInstr = nullptr; 342 unsigned KilledOperand = 0; 343 344 while(++I != End) { 345 MachineInstr &MI = *I; 346 // If the intervening instruction MI: 347 // * modifies I1's use reg 348 // * modifies I1's def reg 349 // * reads I1's def reg 350 // * or has unmodelled side effects 351 // We introduce this special case because llvm has no api to remove a 352 // kill flag for a register (a removeRegisterKilled() analogous to 353 // addRegisterKilled) that handles aliased register correctly. 354 // * or has a killed aliased register use of I1's use reg 355 // %d4 = A2_tfrpi 16 356 // %r6 = A2_tfr %r9 357 // %r8 = KILL %r8, implicit killed %d4 358 // If we want to move R6 = across the KILL instruction we would have 359 // to remove the implicit killed %d4 operand. For now, we are 360 // conservative and disallow the move. 361 // we can't move I1 across it. 362 if (MI.isDebugInstr()) { 363 if (MI.readsRegister(I1DestReg, TRI)) // Move this instruction after I2. 364 DbgMItoMove.push_back(&MI); 365 continue; 366 } 367 368 if (isUnsafeToMoveAcross(MI, I1UseReg, I1DestReg, TRI) || 369 // Check for an aliased register kill. Bail out if we see one. 370 (!MI.killsRegister(I1UseReg) && MI.killsRegister(I1UseReg, TRI))) 371 return false; 372 373 // Check for an exact kill (registers match). 374 if (I1UseReg && MI.killsRegister(I1UseReg)) { 375 assert(!KillingInstr && "Should only see one killing instruction"); 376 KilledOperand = I1UseReg; 377 KillingInstr = &MI; 378 } 379 } 380 if (KillingInstr) { 381 removeKillInfo(*KillingInstr, KilledOperand); 382 // Update I1 to set the kill flag. This flag will later be picked up by 383 // the new COMBINE instruction. 384 bool Added = I1.addRegisterKilled(KilledOperand, TRI); 385 (void)Added; // suppress compiler warning 386 assert(Added && "Must successfully update kill flag"); 387 } 388 DoInsertAtI1 = false; 389 } 390 391 return true; 392 } 393 394 /// findPotentialNewifiableTFRs - Finds tranfers that feed stores that could be 395 /// newified. (A use of a 64 bit register define can not be newified) 396 void 397 HexagonCopyToCombine::findPotentialNewifiableTFRs(MachineBasicBlock &BB) { 398 DenseMap<unsigned, MachineInstr *> LastDef; 399 for (MachineInstr &MI : BB) { 400 if (MI.isDebugInstr()) 401 continue; 402 403 // Mark TFRs that feed a potential new value store as such. 404 if (TII->mayBeNewStore(MI)) { 405 // Look for uses of TFR instructions. 406 for (unsigned OpdIdx = 0, OpdE = MI.getNumOperands(); OpdIdx != OpdE; 407 ++OpdIdx) { 408 MachineOperand &Op = MI.getOperand(OpdIdx); 409 410 // Skip over anything except register uses. 411 if (!Op.isReg() || !Op.isUse() || !Op.getReg()) 412 continue; 413 414 // Look for the defining instruction. 415 Register Reg = Op.getReg(); 416 MachineInstr *DefInst = LastDef[Reg]; 417 if (!DefInst) 418 continue; 419 if (!isCombinableInstType(*DefInst, TII, ShouldCombineAggressively)) 420 continue; 421 422 // Only close newifiable stores should influence the decision. 423 // Ignore the debug instructions in between. 424 MachineBasicBlock::iterator It(DefInst); 425 unsigned NumInstsToDef = 0; 426 while (&*It != &MI) { 427 if (!It->isDebugInstr()) 428 ++NumInstsToDef; 429 ++It; 430 } 431 432 if (NumInstsToDef > MaxNumOfInstsBetweenNewValueStoreAndTFR) 433 continue; 434 435 PotentiallyNewifiableTFR.insert(DefInst); 436 } 437 // Skip to next instruction. 438 continue; 439 } 440 441 // Put instructions that last defined integer or double registers into the 442 // map. 443 for (MachineOperand &Op : MI.operands()) { 444 if (Op.isReg()) { 445 if (!Op.isDef() || !Op.getReg()) 446 continue; 447 Register Reg = Op.getReg(); 448 if (Hexagon::DoubleRegsRegClass.contains(Reg)) { 449 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) 450 LastDef[*SubRegs] = &MI; 451 } else if (Hexagon::IntRegsRegClass.contains(Reg)) 452 LastDef[Reg] = &MI; 453 } else if (Op.isRegMask()) { 454 for (unsigned Reg : Hexagon::IntRegsRegClass) 455 if (Op.clobbersPhysReg(Reg)) 456 LastDef[Reg] = &MI; 457 } 458 } 459 } 460 } 461 462 bool HexagonCopyToCombine::runOnMachineFunction(MachineFunction &MF) { 463 if (skipFunction(MF.getFunction())) 464 return false; 465 466 if (IsCombinesDisabled) return false; 467 468 bool HasChanged = false; 469 470 // Get target info. 471 ST = &MF.getSubtarget<HexagonSubtarget>(); 472 TRI = ST->getRegisterInfo(); 473 TII = ST->getInstrInfo(); 474 475 const Function &F = MF.getFunction(); 476 bool OptForSize = F.hasFnAttribute(Attribute::OptimizeForSize); 477 478 // Combine aggressively (for code size) 479 ShouldCombineAggressively = 480 MF.getTarget().getOptLevel() <= CodeGenOpt::Default; 481 482 // Disable CONST64 for tiny core since it takes a LD resource. 483 if (!OptForSize && ST->isTinyCore()) 484 IsConst64Disabled = true; 485 486 // Traverse basic blocks. 487 for (MachineBasicBlock &MBB : MF) { 488 PotentiallyNewifiableTFR.clear(); 489 findPotentialNewifiableTFRs(MBB); 490 491 // Traverse instructions in basic block. 492 for (MachineBasicBlock::iterator MI = MBB.begin(), End = MBB.end(); 493 MI != End;) { 494 MachineInstr &I1 = *MI++; 495 496 if (I1.isDebugInstr()) 497 continue; 498 499 // Don't combine a TFR whose user could be newified (instructions that 500 // define double registers can not be newified - Programmer's Ref Manual 501 // 5.4.2 New-value stores). 502 if (ShouldCombineAggressively && PotentiallyNewifiableTFR.count(&I1)) 503 continue; 504 505 // Ignore instructions that are not combinable. 506 if (!isCombinableInstType(I1, TII, ShouldCombineAggressively)) 507 continue; 508 509 // Find a second instruction that can be merged into a combine 510 // instruction. In addition, also find all the debug instructions that 511 // need to be moved along with it. 512 bool DoInsertAtI1 = false; 513 DbgMItoMove.clear(); 514 MachineInstr *I2 = findPairable(I1, DoInsertAtI1, OptForSize); 515 if (I2) { 516 HasChanged = true; 517 combine(I1, *I2, MI, DoInsertAtI1, OptForSize); 518 } 519 } 520 } 521 522 return HasChanged; 523 } 524 525 /// findPairable - Returns an instruction that can be merged with \p I1 into a 526 /// COMBINE instruction or 0 if no such instruction can be found. Returns true 527 /// in \p DoInsertAtI1 if the combine must be inserted at instruction \p I1 528 /// false if the combine must be inserted at the returned instruction. 529 MachineInstr *HexagonCopyToCombine::findPairable(MachineInstr &I1, 530 bool &DoInsertAtI1, 531 bool AllowC64) { 532 MachineBasicBlock::iterator I2 = std::next(MachineBasicBlock::iterator(I1)); 533 while (I2 != I1.getParent()->end() && I2->isDebugInstr()) 534 ++I2; 535 536 Register I1DestReg = I1.getOperand(0).getReg(); 537 538 for (MachineBasicBlock::iterator End = I1.getParent()->end(); I2 != End; 539 ++I2) { 540 // Bail out early if we see a second definition of I1DestReg. 541 if (I2->modifiesRegister(I1DestReg, TRI)) 542 break; 543 544 // Ignore non-combinable instructions. 545 if (!isCombinableInstType(*I2, TII, ShouldCombineAggressively)) 546 continue; 547 548 // Don't combine a TFR whose user could be newified. 549 if (ShouldCombineAggressively && PotentiallyNewifiableTFR.count(&*I2)) 550 continue; 551 552 Register I2DestReg = I2->getOperand(0).getReg(); 553 554 // Check that registers are adjacent and that the first destination register 555 // is even. 556 bool IsI1LowReg = (I2DestReg - I1DestReg) == 1; 557 bool IsI2LowReg = (I1DestReg - I2DestReg) == 1; 558 unsigned FirstRegIndex = IsI1LowReg ? I1DestReg : I2DestReg; 559 if ((!IsI1LowReg && !IsI2LowReg) || !isEvenReg(FirstRegIndex)) 560 continue; 561 562 // Check that the two instructions are combinable. 563 // The order matters because in a A2_tfrsi we might can encode a int8 as 564 // the hi reg operand but only a uint6 as the low reg operand. 565 if ((IsI2LowReg && !areCombinableOperations(TRI, I1, *I2, AllowC64)) || 566 (IsI1LowReg && !areCombinableOperations(TRI, *I2, I1, AllowC64))) 567 break; 568 569 if (isSafeToMoveTogether(I1, *I2, I1DestReg, I2DestReg, DoInsertAtI1)) 570 return &*I2; 571 572 // Not safe. Stop searching. 573 break; 574 } 575 return nullptr; 576 } 577 578 void HexagonCopyToCombine::combine(MachineInstr &I1, MachineInstr &I2, 579 MachineBasicBlock::iterator &MI, 580 bool DoInsertAtI1, bool OptForSize) { 581 // We are going to delete I2. If MI points to I2 advance it to the next 582 // instruction. 583 if (MI == I2.getIterator()) 584 ++MI; 585 586 // Figure out whether I1 or I2 goes into the lowreg part. 587 Register I1DestReg = I1.getOperand(0).getReg(); 588 Register I2DestReg = I2.getOperand(0).getReg(); 589 bool IsI1Loreg = (I2DestReg - I1DestReg) == 1; 590 unsigned LoRegDef = IsI1Loreg ? I1DestReg : I2DestReg; 591 unsigned SubLo; 592 593 const TargetRegisterClass *SuperRC = nullptr; 594 if (Hexagon::IntRegsRegClass.contains(LoRegDef)) { 595 SuperRC = &Hexagon::DoubleRegsRegClass; 596 SubLo = Hexagon::isub_lo; 597 } else if (Hexagon::HvxVRRegClass.contains(LoRegDef)) { 598 assert(ST->useHVXOps()); 599 SuperRC = &Hexagon::HvxWRRegClass; 600 SubLo = Hexagon::vsub_lo; 601 } else 602 llvm_unreachable("Unexpected register class"); 603 604 // Get the double word register. 605 unsigned DoubleRegDest = TRI->getMatchingSuperReg(LoRegDef, SubLo, SuperRC); 606 assert(DoubleRegDest != 0 && "Expect a valid register"); 607 608 // Setup source operands. 609 MachineOperand &LoOperand = IsI1Loreg ? I1.getOperand(1) : I2.getOperand(1); 610 MachineOperand &HiOperand = IsI1Loreg ? I2.getOperand(1) : I1.getOperand(1); 611 612 // Figure out which source is a register and which a constant. 613 bool IsHiReg = HiOperand.isReg(); 614 bool IsLoReg = LoOperand.isReg(); 615 616 // There is a combine of two constant extended values into CONST64. 617 bool IsC64 = OptForSize && LoOperand.isImm() && HiOperand.isImm() && 618 isGreaterThanNBitTFRI<16>(I1) && isGreaterThanNBitTFRI<16>(I2); 619 620 MachineBasicBlock::iterator InsertPt(DoInsertAtI1 ? I1 : I2); 621 // Emit combine. 622 if (IsHiReg && IsLoReg) 623 emitCombineRR(InsertPt, DoubleRegDest, HiOperand, LoOperand); 624 else if (IsHiReg) 625 emitCombineRI(InsertPt, DoubleRegDest, HiOperand, LoOperand); 626 else if (IsLoReg) 627 emitCombineIR(InsertPt, DoubleRegDest, HiOperand, LoOperand); 628 else if (IsC64 && !IsConst64Disabled) 629 emitConst64(InsertPt, DoubleRegDest, HiOperand, LoOperand); 630 else 631 emitCombineII(InsertPt, DoubleRegDest, HiOperand, LoOperand); 632 633 // Move debug instructions along with I1 if it's being 634 // moved towards I2. 635 if (!DoInsertAtI1 && DbgMItoMove.size() != 0) { 636 // Insert debug instructions at the new location before I2. 637 MachineBasicBlock *BB = InsertPt->getParent(); 638 for (auto NewMI : DbgMItoMove) { 639 // If iterator MI is pointing to DEBUG_VAL, make sure 640 // MI now points to next relevant instruction. 641 if (NewMI == MI) 642 ++MI; 643 BB->splice(InsertPt, BB, NewMI); 644 } 645 } 646 647 I1.eraseFromParent(); 648 I2.eraseFromParent(); 649 } 650 651 void HexagonCopyToCombine::emitConst64(MachineBasicBlock::iterator &InsertPt, 652 unsigned DoubleDestReg, 653 MachineOperand &HiOperand, 654 MachineOperand &LoOperand) { 655 LLVM_DEBUG(dbgs() << "Found a CONST64\n"); 656 657 DebugLoc DL = InsertPt->getDebugLoc(); 658 MachineBasicBlock *BB = InsertPt->getParent(); 659 assert(LoOperand.isImm() && HiOperand.isImm() && 660 "Both operands must be immediate"); 661 662 int64_t V = HiOperand.getImm(); 663 V = (V << 32) | (0x0ffffffffLL & LoOperand.getImm()); 664 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::CONST64), DoubleDestReg) 665 .addImm(V); 666 } 667 668 void HexagonCopyToCombine::emitCombineII(MachineBasicBlock::iterator &InsertPt, 669 unsigned DoubleDestReg, 670 MachineOperand &HiOperand, 671 MachineOperand &LoOperand) { 672 DebugLoc DL = InsertPt->getDebugLoc(); 673 MachineBasicBlock *BB = InsertPt->getParent(); 674 675 // Handle globals. 676 if (HiOperand.isGlobal()) { 677 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg) 678 .addGlobalAddress(HiOperand.getGlobal(), HiOperand.getOffset(), 679 HiOperand.getTargetFlags()) 680 .addImm(LoOperand.getImm()); 681 return; 682 } 683 if (LoOperand.isGlobal()) { 684 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineii), DoubleDestReg) 685 .addImm(HiOperand.getImm()) 686 .addGlobalAddress(LoOperand.getGlobal(), LoOperand.getOffset(), 687 LoOperand.getTargetFlags()); 688 return; 689 } 690 691 // Handle block addresses. 692 if (HiOperand.isBlockAddress()) { 693 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg) 694 .addBlockAddress(HiOperand.getBlockAddress(), HiOperand.getOffset(), 695 HiOperand.getTargetFlags()) 696 .addImm(LoOperand.getImm()); 697 return; 698 } 699 if (LoOperand.isBlockAddress()) { 700 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineii), DoubleDestReg) 701 .addImm(HiOperand.getImm()) 702 .addBlockAddress(LoOperand.getBlockAddress(), LoOperand.getOffset(), 703 LoOperand.getTargetFlags()); 704 return; 705 } 706 707 // Handle jump tables. 708 if (HiOperand.isJTI()) { 709 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg) 710 .addJumpTableIndex(HiOperand.getIndex(), HiOperand.getTargetFlags()) 711 .addImm(LoOperand.getImm()); 712 return; 713 } 714 if (LoOperand.isJTI()) { 715 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineii), DoubleDestReg) 716 .addImm(HiOperand.getImm()) 717 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags()); 718 return; 719 } 720 721 // Handle constant pools. 722 if (HiOperand.isCPI()) { 723 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg) 724 .addConstantPoolIndex(HiOperand.getIndex(), HiOperand.getOffset(), 725 HiOperand.getTargetFlags()) 726 .addImm(LoOperand.getImm()); 727 return; 728 } 729 if (LoOperand.isCPI()) { 730 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineii), DoubleDestReg) 731 .addImm(HiOperand.getImm()) 732 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(), 733 LoOperand.getTargetFlags()); 734 return; 735 } 736 737 // First preference should be given to Hexagon::A2_combineii instruction 738 // as it can include U6 (in Hexagon::A4_combineii) as well. 739 // In this instruction, HiOperand is const extended, if required. 740 if (isInt<8>(LoOperand.getImm())) { 741 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg) 742 .addImm(HiOperand.getImm()) 743 .addImm(LoOperand.getImm()); 744 return; 745 } 746 747 // In this instruction, LoOperand is const extended, if required. 748 if (isInt<8>(HiOperand.getImm())) { 749 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineii), DoubleDestReg) 750 .addImm(HiOperand.getImm()) 751 .addImm(LoOperand.getImm()); 752 return; 753 } 754 755 // Insert new combine instruction. 756 // DoubleRegDest = combine #HiImm, #LoImm 757 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg) 758 .addImm(HiOperand.getImm()) 759 .addImm(LoOperand.getImm()); 760 } 761 762 void HexagonCopyToCombine::emitCombineIR(MachineBasicBlock::iterator &InsertPt, 763 unsigned DoubleDestReg, 764 MachineOperand &HiOperand, 765 MachineOperand &LoOperand) { 766 Register LoReg = LoOperand.getReg(); 767 unsigned LoRegKillFlag = getKillRegState(LoOperand.isKill()); 768 769 DebugLoc DL = InsertPt->getDebugLoc(); 770 MachineBasicBlock *BB = InsertPt->getParent(); 771 772 // Handle globals. 773 if (HiOperand.isGlobal()) { 774 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineir), DoubleDestReg) 775 .addGlobalAddress(HiOperand.getGlobal(), HiOperand.getOffset(), 776 HiOperand.getTargetFlags()) 777 .addReg(LoReg, LoRegKillFlag); 778 return; 779 } 780 // Handle block addresses. 781 if (HiOperand.isBlockAddress()) { 782 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineir), DoubleDestReg) 783 .addBlockAddress(HiOperand.getBlockAddress(), HiOperand.getOffset(), 784 HiOperand.getTargetFlags()) 785 .addReg(LoReg, LoRegKillFlag); 786 return; 787 } 788 // Handle jump tables. 789 if (HiOperand.isJTI()) { 790 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineir), DoubleDestReg) 791 .addJumpTableIndex(HiOperand.getIndex(), HiOperand.getTargetFlags()) 792 .addReg(LoReg, LoRegKillFlag); 793 return; 794 } 795 // Handle constant pools. 796 if (HiOperand.isCPI()) { 797 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineir), DoubleDestReg) 798 .addConstantPoolIndex(HiOperand.getIndex(), HiOperand.getOffset(), 799 HiOperand.getTargetFlags()) 800 .addReg(LoReg, LoRegKillFlag); 801 return; 802 } 803 // Insert new combine instruction. 804 // DoubleRegDest = combine #HiImm, LoReg 805 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineir), DoubleDestReg) 806 .addImm(HiOperand.getImm()) 807 .addReg(LoReg, LoRegKillFlag); 808 } 809 810 void HexagonCopyToCombine::emitCombineRI(MachineBasicBlock::iterator &InsertPt, 811 unsigned DoubleDestReg, 812 MachineOperand &HiOperand, 813 MachineOperand &LoOperand) { 814 unsigned HiRegKillFlag = getKillRegState(HiOperand.isKill()); 815 Register HiReg = HiOperand.getReg(); 816 817 DebugLoc DL = InsertPt->getDebugLoc(); 818 MachineBasicBlock *BB = InsertPt->getParent(); 819 820 // Handle global. 821 if (LoOperand.isGlobal()) { 822 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineri), DoubleDestReg) 823 .addReg(HiReg, HiRegKillFlag) 824 .addGlobalAddress(LoOperand.getGlobal(), LoOperand.getOffset(), 825 LoOperand.getTargetFlags()); 826 return; 827 } 828 // Handle block addresses. 829 if (LoOperand.isBlockAddress()) { 830 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineri), DoubleDestReg) 831 .addReg(HiReg, HiRegKillFlag) 832 .addBlockAddress(LoOperand.getBlockAddress(), LoOperand.getOffset(), 833 LoOperand.getTargetFlags()); 834 return; 835 } 836 // Handle jump tables. 837 if (LoOperand.isJTI()) { 838 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineri), DoubleDestReg) 839 .addReg(HiOperand.getReg(), HiRegKillFlag) 840 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags()); 841 return; 842 } 843 // Handle constant pools. 844 if (LoOperand.isCPI()) { 845 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineri), DoubleDestReg) 846 .addReg(HiOperand.getReg(), HiRegKillFlag) 847 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(), 848 LoOperand.getTargetFlags()); 849 return; 850 } 851 852 // Insert new combine instruction. 853 // DoubleRegDest = combine HiReg, #LoImm 854 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineri), DoubleDestReg) 855 .addReg(HiReg, HiRegKillFlag) 856 .addImm(LoOperand.getImm()); 857 } 858 859 void HexagonCopyToCombine::emitCombineRR(MachineBasicBlock::iterator &InsertPt, 860 unsigned DoubleDestReg, 861 MachineOperand &HiOperand, 862 MachineOperand &LoOperand) { 863 unsigned LoRegKillFlag = getKillRegState(LoOperand.isKill()); 864 unsigned HiRegKillFlag = getKillRegState(HiOperand.isKill()); 865 Register LoReg = LoOperand.getReg(); 866 Register HiReg = HiOperand.getReg(); 867 868 DebugLoc DL = InsertPt->getDebugLoc(); 869 MachineBasicBlock *BB = InsertPt->getParent(); 870 871 // Insert new combine instruction. 872 // DoubleRegDest = combine HiReg, LoReg 873 unsigned NewOpc; 874 if (Hexagon::DoubleRegsRegClass.contains(DoubleDestReg)) { 875 NewOpc = Hexagon::A2_combinew; 876 } else if (Hexagon::HvxWRRegClass.contains(DoubleDestReg)) { 877 assert(ST->useHVXOps()); 878 NewOpc = Hexagon::V6_vcombine; 879 } else 880 llvm_unreachable("Unexpected register"); 881 882 BuildMI(*BB, InsertPt, DL, TII->get(NewOpc), DoubleDestReg) 883 .addReg(HiReg, HiRegKillFlag) 884 .addReg(LoReg, LoRegKillFlag); 885 } 886 887 FunctionPass *llvm::createHexagonCopyToCombine() { 888 return new HexagonCopyToCombine(); 889 } 890