Eugene Zelenko | 9434811 | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 1 | //===- CriticalAntiDepBreaker.cpp - Anti-dep breaker ----------------------===// |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the CriticalAntiDepBreaker class, which |
| 11 | // implements register anti-dependence breaking along a blocks |
| 12 | // critical path during post-RA scheduler. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 16 | #include "CriticalAntiDepBreaker.h" |
Eugene Zelenko | 9434811 | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/ArrayRef.h" |
| 18 | #include "llvm/ADT/BitVector.h" |
| 19 | #include "llvm/ADT/DenseMap.h" |
| 20 | #include "llvm/ADT/SmallVector.h" |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineBasicBlock.h" |
| 22 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Eugene Zelenko | 9434811 | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineFunction.h" |
| 24 | #include "llvm/CodeGen/MachineInstr.h" |
| 25 | #include "llvm/CodeGen/MachineOperand.h" |
| 26 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 27 | #include "llvm/CodeGen/RegisterClassInfo.h" |
| 28 | #include "llvm/CodeGen/ScheduleDAG.h" |
David Blaikie | 4831923 | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | e3a9b4c | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 31 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Eugene Zelenko | 9434811 | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 32 | #include "llvm/MC/MCInstrDesc.h" |
| 33 | #include "llvm/MC/MCRegisterInfo.h" |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Debug.h" |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 35 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 9434811 | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 36 | #include <cassert> |
| 37 | #include <map> |
| 38 | #include <utility> |
| 39 | #include <vector> |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 40 | |
| 41 | using namespace llvm; |
| 42 | |
Chandler Carruth | 8677f2f | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 43 | #define DEBUG_TYPE "post-RA-sched" |
| 44 | |
Eric Christopher | 9f85dcc | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 45 | CriticalAntiDepBreaker::CriticalAntiDepBreaker(MachineFunction &MFi, |
| 46 | const RegisterClassInfo &RCI) |
| 47 | : AntiDepBreaker(), MF(MFi), MRI(MF.getRegInfo()), |
Eric Christopher | 6035518 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 48 | TII(MF.getSubtarget().getInstrInfo()), |
| 49 | TRI(MF.getSubtarget().getRegisterInfo()), RegClassInfo(RCI), |
| 50 | Classes(TRI->getNumRegs(), nullptr), KillIndices(TRI->getNumRegs(), 0), |
| 51 | DefIndices(TRI->getNumRegs(), 0), KeepRegs(TRI->getNumRegs(), false) {} |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 52 | |
Eugene Zelenko | 9434811 | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 53 | CriticalAntiDepBreaker::~CriticalAntiDepBreaker() = default; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 54 | |
| 55 | void CriticalAntiDepBreaker::StartBlock(MachineBasicBlock *BB) { |
David Goodwin | 990d285 | 2009-12-09 17:18:22 +0000 | [diff] [blame] | 56 | const unsigned BBSize = BB->size(); |
Bill Wendling | 9c2a034 | 2010-07-15 19:58:14 +0000 | [diff] [blame] | 57 | for (unsigned i = 0, e = TRI->getNumRegs(); i != e; ++i) { |
| 58 | // Clear out the register class data. |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 59 | Classes[i] = nullptr; |
Bill Wendling | 9c2a034 | 2010-07-15 19:58:14 +0000 | [diff] [blame] | 60 | |
| 61 | // Initialize the indices to indicate that no registers are live. |
David Goodwin | 990d285 | 2009-12-09 17:18:22 +0000 | [diff] [blame] | 62 | KillIndices[i] = ~0u; |
| 63 | DefIndices[i] = BBSize; |
| 64 | } |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 65 | |
| 66 | // Clear "do not change" set. |
Benjamin Kramer | cff4ad7 | 2012-03-17 20:22:57 +0000 | [diff] [blame] | 67 | KeepRegs.reset(); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 68 | |
Matthias Braun | 63daa14 | 2015-09-25 21:25:19 +0000 | [diff] [blame] | 69 | bool IsReturnBlock = BB->isReturnBlock(); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 70 | |
Jakob Stoklund Olesen | b45e4de | 2013-02-05 18:21:52 +0000 | [diff] [blame] | 71 | // Examine the live-in regs of all successors. |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 72 | for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(), |
| 73 | SE = BB->succ_end(); SI != SE; ++SI) |
Matthias Braun | af5ff60 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 74 | for (const auto &LI : (*SI)->liveins()) { |
| 75 | for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) { |
Jakob Stoklund Olesen | f152fe8 | 2012-06-01 20:36:54 +0000 | [diff] [blame] | 76 | unsigned Reg = *AI; |
| 77 | Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1); |
| 78 | KillIndices[Reg] = BBSize; |
| 79 | DefIndices[Reg] = ~0u; |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 80 | } |
| 81 | } |
| 82 | |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 83 | // Mark live-out callee-saved registers. In a return block this is |
| 84 | // all callee-saved registers. In non-return this is any |
| 85 | // callee-saved register that is not saved in the prolog. |
Matthias Braun | f79c57a | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 86 | const MachineFrameInfo &MFI = MF.getFrameInfo(); |
| 87 | BitVector Pristine = MFI.getPristineRegs(MF); |
Oren Ben Simhon | 6095a79 | 2017-03-14 09:09:26 +0000 | [diff] [blame] | 88 | for (const MCPhysReg *I = MF.getRegInfo().getCalleeSavedRegs(); *I; |
| 89 | ++I) { |
Eric Christopher | 95604f9 | 2017-03-30 22:34:20 +0000 | [diff] [blame] | 90 | unsigned Reg = *I; |
Tim Shen | 400ba83 | 2017-05-30 22:26:52 +0000 | [diff] [blame] | 91 | if (!IsReturnBlock && !Pristine.test(Reg)) |
Eric Christopher | 95604f9 | 2017-03-30 22:34:20 +0000 | [diff] [blame] | 92 | continue; |
Jakob Stoklund Olesen | f152fe8 | 2012-06-01 20:36:54 +0000 | [diff] [blame] | 93 | for (MCRegAliasIterator AI(*I, TRI, true); AI.isValid(); ++AI) { |
| 94 | unsigned Reg = *AI; |
| 95 | Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1); |
| 96 | KillIndices[Reg] = BBSize; |
| 97 | DefIndices[Reg] = ~0u; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 98 | } |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | void CriticalAntiDepBreaker::FinishBlock() { |
| 103 | RegRefs.clear(); |
Benjamin Kramer | cff4ad7 | 2012-03-17 20:22:57 +0000 | [diff] [blame] | 104 | KeepRegs.reset(); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 105 | } |
| 106 | |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 107 | void CriticalAntiDepBreaker::Observe(MachineInstr &MI, unsigned Count, |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 108 | unsigned InsertPosIndex) { |
Sanjay Patel | 3deb3e3 | 2014-08-20 18:03:00 +0000 | [diff] [blame] | 109 | // Kill instructions can define registers but are really nops, and there might |
| 110 | // be a real definition earlier that needs to be paired with uses dominated by |
| 111 | // this kill. |
| 112 | |
| 113 | // FIXME: It may be possible to remove the isKill() restriction once PR18663 |
| 114 | // has been properly fixed. There can be value in processing kills as seen in |
| 115 | // the AggressiveAntiDepBreaker class. |
Shiva Chen | 24abe71 | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 116 | if (MI.isDebugInstr() || MI.isKill()) |
Dale Johannesen | b0812f1 | 2010-03-05 00:02:59 +0000 | [diff] [blame] | 117 | return; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 118 | assert(Count < InsertPosIndex && "Instruction index out of expected range!"); |
| 119 | |
Bob Wilson | f70007e | 2010-10-02 01:49:29 +0000 | [diff] [blame] | 120 | for (unsigned Reg = 0; Reg != TRI->getNumRegs(); ++Reg) { |
| 121 | if (KillIndices[Reg] != ~0u) { |
| 122 | // If Reg is currently live, then mark that it can't be renamed as |
| 123 | // we don't know the extent of its live-range anymore (now that it |
| 124 | // has been scheduled). |
| 125 | Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1); |
| 126 | KillIndices[Reg] = Count; |
| 127 | } else if (DefIndices[Reg] < InsertPosIndex && DefIndices[Reg] >= Count) { |
| 128 | // Any register which was defined within the previous scheduling region |
| 129 | // may have been rescheduled and its lifetime may overlap with registers |
| 130 | // in ways not reflected in our current liveness state. For each such |
| 131 | // register, adjust the liveness state to be conservatively correct. |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 132 | Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1); |
Bill Wendling | 9c2a034 | 2010-07-15 19:58:14 +0000 | [diff] [blame] | 133 | |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 134 | // Move the def index to the end of the previous region, to reflect |
| 135 | // that the def could theoretically have been scheduled at the end. |
| 136 | DefIndices[Reg] = InsertPosIndex; |
| 137 | } |
Bob Wilson | f70007e | 2010-10-02 01:49:29 +0000 | [diff] [blame] | 138 | } |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 139 | |
| 140 | PrescanInstruction(MI); |
| 141 | ScanInstruction(MI, Count); |
| 142 | } |
| 143 | |
| 144 | /// CriticalPathStep - Return the next SUnit after SU on the bottom-up |
| 145 | /// critical path. |
Dan Gohman | 66db3a0 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 146 | static const SDep *CriticalPathStep(const SUnit *SU) { |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 147 | const SDep *Next = nullptr; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 148 | unsigned NextDepth = 0; |
| 149 | // Find the predecessor edge with the greatest depth. |
Dan Gohman | 66db3a0 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 150 | for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end(); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 151 | P != PE; ++P) { |
Dan Gohman | 66db3a0 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 152 | const SUnit *PredSU = P->getSUnit(); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 153 | unsigned PredLatency = P->getLatency(); |
| 154 | unsigned PredTotalLatency = PredSU->getDepth() + PredLatency; |
| 155 | // In the case of a latency tie, prefer an anti-dependency edge over |
| 156 | // other types of edges. |
| 157 | if (NextDepth < PredTotalLatency || |
| 158 | (NextDepth == PredTotalLatency && P->getKind() == SDep::Anti)) { |
| 159 | NextDepth = PredTotalLatency; |
| 160 | Next = &*P; |
| 161 | } |
| 162 | } |
| 163 | return Next; |
| 164 | } |
| 165 | |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 166 | void CriticalAntiDepBreaker::PrescanInstruction(MachineInstr &MI) { |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 167 | // It's not safe to change register allocation for source operands of |
Sanjay Patel | 0029534 | 2014-06-24 21:11:51 +0000 | [diff] [blame] | 168 | // instructions that have special allocation requirements. Also assume all |
| 169 | // registers used in a call must not be changed (ABI). |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 170 | // FIXME: The issue with predicated instruction is more complex. We are being |
Bob Wilson | 59718a4 | 2010-09-10 22:42:21 +0000 | [diff] [blame] | 171 | // conservative here because the kill markers cannot be trusted after |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 172 | // if-conversion: |
Francis Visoiu Mistrih | 2cba0cc | 2018-01-09 17:31:07 +0000 | [diff] [blame] | 173 | // %r6 = LDR %sp, %reg0, 92, 14, %reg0; mem:LD4[FixedStack14] |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 174 | // ... |
Francis Visoiu Mistrih | 2cba0cc | 2018-01-09 17:31:07 +0000 | [diff] [blame] | 175 | // STR %r0, killed %r6, %reg0, 0, 0, %cpsr; mem:ST4[%395] |
| 176 | // %r6 = LDR %sp, %reg0, 100, 0, %cpsr; mem:LD4[FixedStack12] |
| 177 | // STR %r0, killed %r6, %reg0, 0, 14, %reg0; mem:ST4[%396](align=8) |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 178 | // |
| 179 | // The first R6 kill is not really a kill since it's killed by a predicated |
| 180 | // instruction which may not be executed. The second R6 def may or may not |
| 181 | // re-define R6 so it's not safe to change it since the last R6 use cannot be |
| 182 | // changed. |
Duncan P. N. Exon Smith | 5b9b80e | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 183 | bool Special = |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 184 | MI.isCall() || MI.hasExtraSrcRegAllocReq() || TII->isPredicated(MI); |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 185 | |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 186 | // Scan the register operands for this instruction and update |
| 187 | // Classes and RegRefs. |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 188 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 189 | MachineOperand &MO = MI.getOperand(i); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 190 | if (!MO.isReg()) continue; |
| 191 | unsigned Reg = MO.getReg(); |
| 192 | if (Reg == 0) continue; |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 193 | const TargetRegisterClass *NewRC = nullptr; |
Jim Grosbach | 01384ef | 2010-05-14 21:20:46 +0000 | [diff] [blame] | 194 | |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 195 | if (i < MI.getDesc().getNumOperands()) |
| 196 | NewRC = TII->getRegClass(MI.getDesc(), i, TRI, MF); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 197 | |
| 198 | // For now, only allow the register to be changed if its register |
| 199 | // class is consistent across all uses. |
| 200 | if (!Classes[Reg] && NewRC) |
| 201 | Classes[Reg] = NewRC; |
| 202 | else if (!NewRC || Classes[Reg] != NewRC) |
| 203 | Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1); |
| 204 | |
| 205 | // Now check for aliases. |
Jakob Stoklund Olesen | 396618b | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 206 | for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 207 | // If an alias of the reg is used during the live range, give up. |
| 208 | // Note that this allows us to skip checking if AntiDepReg |
| 209 | // overlaps with any of the aliases, among other things. |
Jakob Stoklund Olesen | 396618b | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 210 | unsigned AliasReg = *AI; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 211 | if (Classes[AliasReg]) { |
| 212 | Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1); |
| 213 | Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1); |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | // If we're still willing to consider this register, note the reference. |
| 218 | if (Classes[Reg] != reinterpret_cast<TargetRegisterClass *>(-1)) |
| 219 | RegRefs.insert(std::make_pair(Reg, &MO)); |
| 220 | |
Sanjay Patel | 1a699b6 | 2014-07-03 15:19:40 +0000 | [diff] [blame] | 221 | // If this reg is tied and live (Classes[Reg] is set to -1), we can't change |
| 222 | // it or any of its sub or super regs. We need to use KeepRegs to mark the |
| 223 | // reg because not all uses of the same reg within an instruction are |
| 224 | // necessarily tagged as tied. |
| 225 | // Example: an x86 "xor %eax, %eax" will have one source operand tied to the |
| 226 | // def register but not the second (see PR20020 for details). |
| 227 | // FIXME: can this check be relaxed to account for undef uses |
| 228 | // of a register? In the above 'xor' example, the uses of %eax are undef, so |
| 229 | // earlier instructions could still replace %eax even though the 'xor' |
| 230 | // itself can't be changed. |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 231 | if (MI.isRegTiedToUseOperand(i) && |
Sanjay Patel | 1a699b6 | 2014-07-03 15:19:40 +0000 | [diff] [blame] | 232 | Classes[Reg] == reinterpret_cast<TargetRegisterClass *>(-1)) { |
| 233 | for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true); |
| 234 | SubRegs.isValid(); ++SubRegs) { |
| 235 | KeepRegs.set(*SubRegs); |
| 236 | } |
| 237 | for (MCSuperRegIterator SuperRegs(Reg, TRI); |
| 238 | SuperRegs.isValid(); ++SuperRegs) { |
| 239 | KeepRegs.set(*SuperRegs); |
| 240 | } |
| 241 | } |
| 242 | |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 243 | if (MO.isUse() && Special) { |
Benjamin Kramer | cff4ad7 | 2012-03-17 20:22:57 +0000 | [diff] [blame] | 244 | if (!KeepRegs.test(Reg)) { |
Chad Rosier | 62c320a | 2013-05-22 23:17:36 +0000 | [diff] [blame] | 245 | for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true); |
| 246 | SubRegs.isValid(); ++SubRegs) |
Jakob Stoklund Olesen | 396618b | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 247 | KeepRegs.set(*SubRegs); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 248 | } |
| 249 | } |
| 250 | } |
| 251 | } |
| 252 | |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 253 | void CriticalAntiDepBreaker::ScanInstruction(MachineInstr &MI, unsigned Count) { |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 254 | // Update liveness. |
Benjamin Kramer | d9b0b02 | 2012-06-02 10:20:22 +0000 | [diff] [blame] | 255 | // Proceeding upwards, registers that are defed but not used in this |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 256 | // instruction are now dead. |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 257 | assert(!MI.isKill() && "Attempting to scan a kill instruction"); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 258 | |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 259 | if (!TII->isPredicated(MI)) { |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 260 | // Predicated defs are modeled as read + write, i.e. similar to two |
| 261 | // address updates. |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 262 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 263 | MachineOperand &MO = MI.getOperand(i); |
Jakob Stoklund Olesen | bbad2f1 | 2012-02-23 01:15:26 +0000 | [diff] [blame] | 264 | |
| 265 | if (MO.isRegMask()) |
| 266 | for (unsigned i = 0, e = TRI->getNumRegs(); i != e; ++i) |
| 267 | if (MO.clobbersPhysReg(i)) { |
| 268 | DefIndices[i] = Count; |
| 269 | KillIndices[i] = ~0u; |
Benjamin Kramer | cff4ad7 | 2012-03-17 20:22:57 +0000 | [diff] [blame] | 270 | KeepRegs.reset(i); |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 271 | Classes[i] = nullptr; |
Jakob Stoklund Olesen | bbad2f1 | 2012-02-23 01:15:26 +0000 | [diff] [blame] | 272 | RegRefs.erase(i); |
| 273 | } |
| 274 | |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 275 | if (!MO.isReg()) continue; |
| 276 | unsigned Reg = MO.getReg(); |
| 277 | if (Reg == 0) continue; |
| 278 | if (!MO.isDef()) continue; |
Sanjay Patel | 1a699b6 | 2014-07-03 15:19:40 +0000 | [diff] [blame] | 279 | |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 280 | // Ignore two-addr defs. |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 281 | if (MI.isRegTiedToUseOperand(i)) |
| 282 | continue; |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 283 | |
Mitch Bodart | f688cf7 | 2016-05-26 23:08:52 +0000 | [diff] [blame] | 284 | // If we've already marked this reg as unchangeable, don't remove |
| 285 | // it or any of its subregs from KeepRegs. |
| 286 | bool Keep = KeepRegs.test(Reg); |
| 287 | |
Sanjay Patel | 72a8b11 | 2014-08-06 15:58:15 +0000 | [diff] [blame] | 288 | // For the reg itself and all subregs: update the def to current; |
| 289 | // reset the kill state, any restrictions, and references. |
| 290 | for (MCSubRegIterator SRI(Reg, TRI, true); SRI.isValid(); ++SRI) { |
| 291 | unsigned SubregReg = *SRI; |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 292 | DefIndices[SubregReg] = Count; |
| 293 | KillIndices[SubregReg] = ~0u; |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 294 | Classes[SubregReg] = nullptr; |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 295 | RegRefs.erase(SubregReg); |
Mitch Bodart | f688cf7 | 2016-05-26 23:08:52 +0000 | [diff] [blame] | 296 | if (!Keep) |
| 297 | KeepRegs.reset(SubregReg); |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 298 | } |
| 299 | // Conservatively mark super-registers as unusable. |
Jakob Stoklund Olesen | 396618b | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 300 | for (MCSuperRegIterator SR(Reg, TRI); SR.isValid(); ++SR) |
| 301 | Classes[*SR] = reinterpret_cast<TargetRegisterClass *>(-1); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 302 | } |
| 303 | } |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 304 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 305 | MachineOperand &MO = MI.getOperand(i); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 306 | if (!MO.isReg()) continue; |
| 307 | unsigned Reg = MO.getReg(); |
| 308 | if (Reg == 0) continue; |
| 309 | if (!MO.isUse()) continue; |
| 310 | |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 311 | const TargetRegisterClass *NewRC = nullptr; |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 312 | if (i < MI.getDesc().getNumOperands()) |
| 313 | NewRC = TII->getRegClass(MI.getDesc(), i, TRI, MF); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 314 | |
| 315 | // For now, only allow the register to be changed if its register |
| 316 | // class is consistent across all uses. |
| 317 | if (!Classes[Reg] && NewRC) |
| 318 | Classes[Reg] = NewRC; |
| 319 | else if (!NewRC || Classes[Reg] != NewRC) |
| 320 | Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1); |
| 321 | |
| 322 | RegRefs.insert(std::make_pair(Reg, &MO)); |
| 323 | |
| 324 | // It wasn't previously live but now it is, this is a kill. |
Sanjay Patel | 72a8b11 | 2014-08-06 15:58:15 +0000 | [diff] [blame] | 325 | // Repeat for all aliases. |
| 326 | for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { |
Jakob Stoklund Olesen | 396618b | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 327 | unsigned AliasReg = *AI; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 328 | if (KillIndices[AliasReg] == ~0u) { |
| 329 | KillIndices[AliasReg] = Count; |
| 330 | DefIndices[AliasReg] = ~0u; |
| 331 | } |
| 332 | } |
| 333 | } |
| 334 | } |
| 335 | |
Andrew Trick | bc4bd92 | 2011-02-08 17:39:46 +0000 | [diff] [blame] | 336 | // Check all machine operands that reference the antidependent register and must |
| 337 | // be replaced by NewReg. Return true if any of their parent instructions may |
| 338 | // clobber the new register. |
| 339 | // |
| 340 | // Note: AntiDepReg may be referenced by a two-address instruction such that |
| 341 | // it's use operand is tied to a def operand. We guard against the case in which |
| 342 | // the two-address instruction also defines NewReg, as may happen with |
| 343 | // pre/postincrement loads. In this case, both the use and def operands are in |
| 344 | // RegRefs because the def is inserted by PrescanInstruction and not erased |
Sanjay Patel | 0029534 | 2014-06-24 21:11:51 +0000 | [diff] [blame] | 345 | // during ScanInstruction. So checking for an instruction with definitions of |
Andrew Trick | bc4bd92 | 2011-02-08 17:39:46 +0000 | [diff] [blame] | 346 | // both NewReg and AntiDepReg covers it. |
Andrew Trick | 4638852 | 2010-11-02 18:16:45 +0000 | [diff] [blame] | 347 | bool |
Andrew Trick | bc4bd92 | 2011-02-08 17:39:46 +0000 | [diff] [blame] | 348 | CriticalAntiDepBreaker::isNewRegClobberedByRefs(RegRefIter RegRefBegin, |
| 349 | RegRefIter RegRefEnd, |
Eugene Zelenko | 9434811 | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 350 | unsigned NewReg) { |
Andrew Trick | 4638852 | 2010-11-02 18:16:45 +0000 | [diff] [blame] | 351 | for (RegRefIter I = RegRefBegin; I != RegRefEnd; ++I ) { |
Andrew Trick | bc4bd92 | 2011-02-08 17:39:46 +0000 | [diff] [blame] | 352 | MachineOperand *RefOper = I->second; |
| 353 | |
| 354 | // Don't allow the instruction defining AntiDepReg to earlyclobber its |
| 355 | // operands, in case they may be assigned to NewReg. In this case antidep |
| 356 | // breaking must fail, but it's too rare to bother optimizing. |
| 357 | if (RefOper->isDef() && RefOper->isEarlyClobber()) |
Andrew Trick | 4638852 | 2010-11-02 18:16:45 +0000 | [diff] [blame] | 358 | return true; |
Andrew Trick | bc4bd92 | 2011-02-08 17:39:46 +0000 | [diff] [blame] | 359 | |
Sanjay Patel | 0029534 | 2014-06-24 21:11:51 +0000 | [diff] [blame] | 360 | // Handle cases in which this instruction defines NewReg. |
Andrew Trick | bc4bd92 | 2011-02-08 17:39:46 +0000 | [diff] [blame] | 361 | MachineInstr *MI = RefOper->getParent(); |
| 362 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 363 | const MachineOperand &CheckOper = MI->getOperand(i); |
| 364 | |
Jakob Stoklund Olesen | bbad2f1 | 2012-02-23 01:15:26 +0000 | [diff] [blame] | 365 | if (CheckOper.isRegMask() && CheckOper.clobbersPhysReg(NewReg)) |
| 366 | return true; |
| 367 | |
Andrew Trick | bc4bd92 | 2011-02-08 17:39:46 +0000 | [diff] [blame] | 368 | if (!CheckOper.isReg() || !CheckOper.isDef() || |
| 369 | CheckOper.getReg() != NewReg) |
| 370 | continue; |
| 371 | |
| 372 | // Don't allow the instruction to define NewReg and AntiDepReg. |
| 373 | // When AntiDepReg is renamed it will be an illegal op. |
| 374 | if (RefOper->isDef()) |
| 375 | return true; |
| 376 | |
| 377 | // Don't allow an instruction using AntiDepReg to be earlyclobbered by |
Sanjay Patel | 0029534 | 2014-06-24 21:11:51 +0000 | [diff] [blame] | 378 | // NewReg. |
Andrew Trick | bc4bd92 | 2011-02-08 17:39:46 +0000 | [diff] [blame] | 379 | if (CheckOper.isEarlyClobber()) |
| 380 | return true; |
| 381 | |
Sanjay Patel | 0029534 | 2014-06-24 21:11:51 +0000 | [diff] [blame] | 382 | // Don't allow inline asm to define NewReg at all. Who knows what it's |
Andrew Trick | bc4bd92 | 2011-02-08 17:39:46 +0000 | [diff] [blame] | 383 | // doing with it. |
| 384 | if (MI->isInlineAsm()) |
| 385 | return true; |
| 386 | } |
Andrew Trick | 4638852 | 2010-11-02 18:16:45 +0000 | [diff] [blame] | 387 | } |
| 388 | return false; |
| 389 | } |
| 390 | |
Bill Schmidt | 5ff776b | 2013-01-28 18:36:58 +0000 | [diff] [blame] | 391 | unsigned CriticalAntiDepBreaker:: |
| 392 | findSuitableFreeRegister(RegRefIter RegRefBegin, |
| 393 | RegRefIter RegRefEnd, |
| 394 | unsigned AntiDepReg, |
| 395 | unsigned LastNewReg, |
| 396 | const TargetRegisterClass *RC, |
Eugene Zelenko | 9434811 | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 397 | SmallVectorImpl<unsigned> &Forbid) { |
Jakob Stoklund Olesen | 39b5c0c | 2012-11-29 03:34:17 +0000 | [diff] [blame] | 398 | ArrayRef<MCPhysReg> Order = RegClassInfo.getOrder(RC); |
Jakob Stoklund Olesen | fa796dd | 2011-06-16 21:56:21 +0000 | [diff] [blame] | 399 | for (unsigned i = 0; i != Order.size(); ++i) { |
| 400 | unsigned NewReg = Order[i]; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 401 | // Don't replace a register with itself. |
| 402 | if (NewReg == AntiDepReg) continue; |
| 403 | // Don't replace a register with one that was recently used to repair |
| 404 | // an anti-dependence with this AntiDepReg, because that would |
| 405 | // re-introduce that anti-dependence. |
| 406 | if (NewReg == LastNewReg) continue; |
Andrew Trick | 4638852 | 2010-11-02 18:16:45 +0000 | [diff] [blame] | 407 | // If any instructions that define AntiDepReg also define the NewReg, it's |
| 408 | // not suitable. For example, Instruction with multiple definitions can |
| 409 | // result in this condition. |
Andrew Trick | bc4bd92 | 2011-02-08 17:39:46 +0000 | [diff] [blame] | 410 | if (isNewRegClobberedByRefs(RegRefBegin, RegRefEnd, NewReg)) continue; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 411 | // If NewReg is dead and NewReg's most recent def is not before |
| 412 | // AntiDepReg's kill, it's safe to replace AntiDepReg with NewReg. |
Jim Grosbach | 2973b57 | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 413 | assert(((KillIndices[AntiDepReg] == ~0u) != (DefIndices[AntiDepReg] == ~0u)) |
| 414 | && "Kill and Def maps aren't consistent for AntiDepReg!"); |
| 415 | assert(((KillIndices[NewReg] == ~0u) != (DefIndices[NewReg] == ~0u)) |
| 416 | && "Kill and Def maps aren't consistent for NewReg!"); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 417 | if (KillIndices[NewReg] != ~0u || |
| 418 | Classes[NewReg] == reinterpret_cast<TargetRegisterClass *>(-1) || |
| 419 | KillIndices[AntiDepReg] > DefIndices[NewReg]) |
| 420 | continue; |
Bill Schmidt | 5ff776b | 2013-01-28 18:36:58 +0000 | [diff] [blame] | 421 | // If NewReg overlaps any of the forbidden registers, we can't use it. |
| 422 | bool Forbidden = false; |
Craig Topper | f22fd3f | 2013-07-03 05:11:49 +0000 | [diff] [blame] | 423 | for (SmallVectorImpl<unsigned>::iterator it = Forbid.begin(), |
Bill Schmidt | 5ff776b | 2013-01-28 18:36:58 +0000 | [diff] [blame] | 424 | ite = Forbid.end(); it != ite; ++it) |
| 425 | if (TRI->regsOverlap(NewReg, *it)) { |
| 426 | Forbidden = true; |
| 427 | break; |
| 428 | } |
| 429 | if (Forbidden) continue; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 430 | return NewReg; |
| 431 | } |
| 432 | |
| 433 | // No registers are free and available! |
| 434 | return 0; |
| 435 | } |
| 436 | |
| 437 | unsigned CriticalAntiDepBreaker:: |
Eugene Zelenko | 9434811 | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 438 | BreakAntiDependencies(const std::vector<SUnit> &SUnits, |
Dan Gohman | 66db3a0 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 439 | MachineBasicBlock::iterator Begin, |
| 440 | MachineBasicBlock::iterator End, |
Devang Patel | e29e8e1 | 2011-06-02 21:26:52 +0000 | [diff] [blame] | 441 | unsigned InsertPosIndex, |
| 442 | DbgValueVector &DbgValues) { |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 443 | // The code below assumes that there is at least one instruction, |
| 444 | // so just duck out immediately if the block is empty. |
| 445 | if (SUnits.empty()) return 0; |
| 446 | |
Jim Grosbach | 533934e | 2010-06-01 23:48:44 +0000 | [diff] [blame] | 447 | // Keep a map of the MachineInstr*'s back to the SUnit representing them. |
| 448 | // This is used for updating debug information. |
Andrew Trick | b4566a9 | 2012-02-22 06:08:11 +0000 | [diff] [blame] | 449 | // |
| 450 | // FIXME: Replace this with the existing map in ScheduleDAGInstrs::MISUnitMap |
Eugene Zelenko | 9434811 | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 451 | DenseMap<MachineInstr *, const SUnit *> MISUnitMap; |
Jim Grosbach | 533934e | 2010-06-01 23:48:44 +0000 | [diff] [blame] | 452 | |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 453 | // Find the node at the bottom of the critical path. |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 454 | const SUnit *Max = nullptr; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 455 | for (unsigned i = 0, e = SUnits.size(); i != e; ++i) { |
Dan Gohman | 66db3a0 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 456 | const SUnit *SU = &SUnits[i]; |
Jim Grosbach | 533934e | 2010-06-01 23:48:44 +0000 | [diff] [blame] | 457 | MISUnitMap[SU->getInstr()] = SU; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 458 | if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency) |
| 459 | Max = SU; |
| 460 | } |
| 461 | |
| 462 | #ifndef NDEBUG |
| 463 | { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 464 | LLVM_DEBUG(dbgs() << "Critical path has total latency " |
| 465 | << (Max->getDepth() + Max->Latency) << "\n"); |
| 466 | LLVM_DEBUG(dbgs() << "Available regs:"); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 467 | for (unsigned Reg = 0; Reg < TRI->getNumRegs(); ++Reg) { |
| 468 | if (KillIndices[Reg] == ~0u) |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 469 | LLVM_DEBUG(dbgs() << " " << printReg(Reg, TRI)); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 470 | } |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 471 | LLVM_DEBUG(dbgs() << '\n'); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 472 | } |
| 473 | #endif |
| 474 | |
| 475 | // Track progress along the critical path through the SUnit graph as we walk |
| 476 | // the instructions. |
Dan Gohman | 66db3a0 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 477 | const SUnit *CriticalPathSU = Max; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 478 | MachineInstr *CriticalPathMI = CriticalPathSU->getInstr(); |
| 479 | |
| 480 | // Consider this pattern: |
| 481 | // A = ... |
| 482 | // ... = A |
| 483 | // A = ... |
| 484 | // ... = A |
| 485 | // A = ... |
| 486 | // ... = A |
| 487 | // A = ... |
| 488 | // ... = A |
| 489 | // There are three anti-dependencies here, and without special care, |
| 490 | // we'd break all of them using the same register: |
| 491 | // A = ... |
| 492 | // ... = A |
| 493 | // B = ... |
| 494 | // ... = B |
| 495 | // B = ... |
| 496 | // ... = B |
| 497 | // B = ... |
| 498 | // ... = B |
| 499 | // because at each anti-dependence, B is the first register that |
| 500 | // isn't A which is free. This re-introduces anti-dependencies |
| 501 | // at all but one of the original anti-dependencies that we were |
| 502 | // trying to break. To avoid this, keep track of the most recent |
| 503 | // register that each register was replaced with, avoid |
| 504 | // using it to repair an anti-dependence on the same register. |
| 505 | // This lets us produce this: |
| 506 | // A = ... |
| 507 | // ... = A |
| 508 | // B = ... |
| 509 | // ... = B |
| 510 | // C = ... |
| 511 | // ... = C |
| 512 | // B = ... |
| 513 | // ... = B |
| 514 | // This still has an anti-dependence on B, but at least it isn't on the |
| 515 | // original critical path. |
| 516 | // |
| 517 | // TODO: If we tracked more than one register here, we could potentially |
| 518 | // fix that remaining critical edge too. This is a little more involved, |
| 519 | // because unlike the most recent register, less recent registers should |
| 520 | // still be considered, though only if no other registers are available. |
Bill Wendling | 9c2a034 | 2010-07-15 19:58:14 +0000 | [diff] [blame] | 521 | std::vector<unsigned> LastNewReg(TRI->getNumRegs(), 0); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 522 | |
| 523 | // Attempt to break anti-dependence edges on the critical path. Walk the |
| 524 | // instructions from the bottom up, tracking information about liveness |
| 525 | // as we go to help determine which registers are available. |
| 526 | unsigned Broken = 0; |
| 527 | unsigned Count = InsertPosIndex - 1; |
Sanjay Patel | 0029534 | 2014-06-24 21:11:51 +0000 | [diff] [blame] | 528 | for (MachineBasicBlock::iterator I = End, E = Begin; I != E; --Count) { |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 529 | MachineInstr &MI = *--I; |
Sanjay Patel | 3deb3e3 | 2014-08-20 18:03:00 +0000 | [diff] [blame] | 530 | // Kill instructions can define registers but are really nops, and there |
| 531 | // might be a real definition earlier that needs to be paired with uses |
| 532 | // dominated by this kill. |
Fangrui Song | af7b183 | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 533 | |
Sanjay Patel | 3deb3e3 | 2014-08-20 18:03:00 +0000 | [diff] [blame] | 534 | // FIXME: It may be possible to remove the isKill() restriction once PR18663 |
| 535 | // has been properly fixed. There can be value in processing kills as seen |
| 536 | // in the AggressiveAntiDepBreaker class. |
Shiva Chen | 24abe71 | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 537 | if (MI.isDebugInstr() || MI.isKill()) |
Dale Johannesen | b0812f1 | 2010-03-05 00:02:59 +0000 | [diff] [blame] | 538 | continue; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 539 | |
| 540 | // Check if this instruction has a dependence on the critical path that |
| 541 | // is an anti-dependence that we may be able to break. If it is, set |
| 542 | // AntiDepReg to the non-zero register associated with the anti-dependence. |
| 543 | // |
| 544 | // We limit our attention to the critical path as a heuristic to avoid |
| 545 | // breaking anti-dependence edges that aren't going to significantly |
| 546 | // impact the overall schedule. There are a limited number of registers |
| 547 | // and we want to save them for the important edges. |
Jim Grosbach | 01384ef | 2010-05-14 21:20:46 +0000 | [diff] [blame] | 548 | // |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 549 | // TODO: Instructions with multiple defs could have multiple |
| 550 | // anti-dependencies. The current code here only knows how to break one |
| 551 | // edge per instruction. Note that we'd have to be able to break all of |
| 552 | // the anti-dependencies in an instruction in order to be effective. |
| 553 | unsigned AntiDepReg = 0; |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 554 | if (&MI == CriticalPathMI) { |
Dan Gohman | 66db3a0 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 555 | if (const SDep *Edge = CriticalPathStep(CriticalPathSU)) { |
| 556 | const SUnit *NextSU = Edge->getSUnit(); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 557 | |
| 558 | // Only consider anti-dependence edges. |
| 559 | if (Edge->getKind() == SDep::Anti) { |
| 560 | AntiDepReg = Edge->getReg(); |
| 561 | assert(AntiDepReg != 0 && "Anti-dependence on reg0?"); |
Jakob Stoklund Olesen | 14d1dd9 | 2012-10-15 22:41:03 +0000 | [diff] [blame] | 562 | if (!MRI.isAllocatable(AntiDepReg)) |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 563 | // Don't break anti-dependencies on non-allocatable registers. |
| 564 | AntiDepReg = 0; |
Benjamin Kramer | cff4ad7 | 2012-03-17 20:22:57 +0000 | [diff] [blame] | 565 | else if (KeepRegs.test(AntiDepReg)) |
Sanjay Patel | 0029534 | 2014-06-24 21:11:51 +0000 | [diff] [blame] | 566 | // Don't break anti-dependencies if a use down below requires |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 567 | // this exact register. |
| 568 | AntiDepReg = 0; |
| 569 | else { |
| 570 | // If the SUnit has other dependencies on the SUnit that it |
| 571 | // anti-depends on, don't bother breaking the anti-dependency |
| 572 | // since those edges would prevent such units from being |
| 573 | // scheduled past each other regardless. |
| 574 | // |
| 575 | // Also, if there are dependencies on other SUnits with the |
| 576 | // same register as the anti-dependency, don't attempt to |
| 577 | // break it. |
Dan Gohman | 66db3a0 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 578 | for (SUnit::const_pred_iterator P = CriticalPathSU->Preds.begin(), |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 579 | PE = CriticalPathSU->Preds.end(); P != PE; ++P) |
| 580 | if (P->getSUnit() == NextSU ? |
| 581 | (P->getKind() != SDep::Anti || P->getReg() != AntiDepReg) : |
| 582 | (P->getKind() == SDep::Data && P->getReg() == AntiDepReg)) { |
| 583 | AntiDepReg = 0; |
| 584 | break; |
| 585 | } |
| 586 | } |
| 587 | } |
| 588 | CriticalPathSU = NextSU; |
| 589 | CriticalPathMI = CriticalPathSU->getInstr(); |
| 590 | } else { |
| 591 | // We've reached the end of the critical path. |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 592 | CriticalPathSU = nullptr; |
| 593 | CriticalPathMI = nullptr; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 594 | } |
| 595 | } |
| 596 | |
| 597 | PrescanInstruction(MI); |
| 598 | |
Bill Schmidt | 5ff776b | 2013-01-28 18:36:58 +0000 | [diff] [blame] | 599 | SmallVector<unsigned, 2> ForbidRegs; |
| 600 | |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 601 | // If MI's defs have a special allocation requirement, don't allow |
| 602 | // any def registers to be changed. Also assume all registers |
| 603 | // defined in a call must not be changed (ABI). |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 604 | if (MI.isCall() || MI.hasExtraDefRegAllocReq() || TII->isPredicated(MI)) |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 605 | // If this instruction's defs have special allocation requirement, don't |
| 606 | // break this anti-dependency. |
| 607 | AntiDepReg = 0; |
| 608 | else if (AntiDepReg) { |
| 609 | // If this instruction has a use of AntiDepReg, breaking it |
Bill Schmidt | 5ff776b | 2013-01-28 18:36:58 +0000 | [diff] [blame] | 610 | // is invalid. If the instruction defines other registers, |
| 611 | // save a list of them so that we don't pick a new register |
| 612 | // that overlaps any of them. |
Duncan P. N. Exon Smith | a26cd9c | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 613 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 614 | MachineOperand &MO = MI.getOperand(i); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 615 | if (!MO.isReg()) continue; |
| 616 | unsigned Reg = MO.getReg(); |
| 617 | if (Reg == 0) continue; |
Evan Cheng | 46df4eb | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 618 | if (MO.isUse() && TRI->regsOverlap(AntiDepReg, Reg)) { |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 619 | AntiDepReg = 0; |
| 620 | break; |
| 621 | } |
Bill Schmidt | 5ff776b | 2013-01-28 18:36:58 +0000 | [diff] [blame] | 622 | if (MO.isDef() && Reg != AntiDepReg) |
| 623 | ForbidRegs.push_back(Reg); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 624 | } |
| 625 | } |
| 626 | |
| 627 | // Determine AntiDepReg's register class, if it is live and is |
| 628 | // consistently used within a single class. |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 629 | const TargetRegisterClass *RC = AntiDepReg != 0 ? Classes[AntiDepReg] |
| 630 | : nullptr; |
| 631 | assert((AntiDepReg == 0 || RC != nullptr) && |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 632 | "Register should be live if it's causing an anti-dependence!"); |
| 633 | if (RC == reinterpret_cast<TargetRegisterClass *>(-1)) |
| 634 | AntiDepReg = 0; |
| 635 | |
Alp Toker | ae43cab6 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 636 | // Look for a suitable register to use to break the anti-dependence. |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 637 | // |
| 638 | // TODO: Instead of picking the first free register, consider which might |
| 639 | // be the best. |
| 640 | if (AntiDepReg != 0) { |
Andrew Trick | 4638852 | 2010-11-02 18:16:45 +0000 | [diff] [blame] | 641 | std::pair<std::multimap<unsigned, MachineOperand *>::iterator, |
| 642 | std::multimap<unsigned, MachineOperand *>::iterator> |
| 643 | Range = RegRefs.equal_range(AntiDepReg); |
| 644 | if (unsigned NewReg = findSuitableFreeRegister(Range.first, Range.second, |
| 645 | AntiDepReg, |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 646 | LastNewReg[AntiDepReg], |
Bill Schmidt | 5ff776b | 2013-01-28 18:36:58 +0000 | [diff] [blame] | 647 | RC, ForbidRegs)) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 648 | LLVM_DEBUG(dbgs() << "Breaking anti-dependence edge on " |
| 649 | << printReg(AntiDepReg, TRI) << " with " |
| 650 | << RegRefs.count(AntiDepReg) << " references" |
| 651 | << " using " << printReg(NewReg, TRI) << "!\n"); |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 652 | |
| 653 | // Update the references to the old register to refer to the new |
| 654 | // register. |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 655 | for (std::multimap<unsigned, MachineOperand *>::iterator |
Jim Grosbach | 533934e | 2010-06-01 23:48:44 +0000 | [diff] [blame] | 656 | Q = Range.first, QE = Range.second; Q != QE; ++Q) { |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 657 | Q->second->setReg(NewReg); |
Jim Grosbach | 533934e | 2010-06-01 23:48:44 +0000 | [diff] [blame] | 658 | // If the SU for the instruction being updated has debug information |
| 659 | // related to the anti-dependency register, make sure to update that |
| 660 | // as well. |
| 661 | const SUnit *SU = MISUnitMap[Q->second->getParent()]; |
Jim Grosbach | 086723d | 2010-06-02 15:29:36 +0000 | [diff] [blame] | 662 | if (!SU) continue; |
Andrew Ng | d8be4bf | 2017-04-25 15:39:57 +0000 | [diff] [blame] | 663 | UpdateDbgValues(DbgValues, Q->second->getParent(), |
| 664 | AntiDepReg, NewReg); |
Jim Grosbach | 533934e | 2010-06-01 23:48:44 +0000 | [diff] [blame] | 665 | } |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 666 | |
| 667 | // We just went back in time and modified history; the |
Bob Wilson | f70007e | 2010-10-02 01:49:29 +0000 | [diff] [blame] | 668 | // liveness information for the anti-dependence reg is now |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 669 | // inconsistent. Set the state as if it were dead. |
| 670 | Classes[NewReg] = Classes[AntiDepReg]; |
| 671 | DefIndices[NewReg] = DefIndices[AntiDepReg]; |
| 672 | KillIndices[NewReg] = KillIndices[AntiDepReg]; |
| 673 | assert(((KillIndices[NewReg] == ~0u) != |
| 674 | (DefIndices[NewReg] == ~0u)) && |
| 675 | "Kill and Def maps aren't consistent for NewReg!"); |
| 676 | |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 677 | Classes[AntiDepReg] = nullptr; |
David Goodwin | 2e7be61 | 2009-10-26 16:59:04 +0000 | [diff] [blame] | 678 | DefIndices[AntiDepReg] = KillIndices[AntiDepReg]; |
| 679 | KillIndices[AntiDepReg] = ~0u; |
| 680 | assert(((KillIndices[AntiDepReg] == ~0u) != |
| 681 | (DefIndices[AntiDepReg] == ~0u)) && |
| 682 | "Kill and Def maps aren't consistent for AntiDepReg!"); |
| 683 | |
| 684 | RegRefs.erase(AntiDepReg); |
| 685 | LastNewReg[AntiDepReg] = NewReg; |
| 686 | ++Broken; |
| 687 | } |
| 688 | } |
| 689 | |
| 690 | ScanInstruction(MI, Count); |
| 691 | } |
| 692 | |
| 693 | return Broken; |
| 694 | } |