Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 1 | //===- AggressiveAntiDepBreaker.cpp - Anti-dep breaker --------------------===// |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +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 AggressiveAntiDepBreaker class, which |
| 11 | // implements register anti-dependence breaking during post-RA |
| 12 | // scheduling. It attempts to break all anti-dependencies within a |
| 13 | // block. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 17 | #include "AggressiveAntiDepBreaker.h" |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/ArrayRef.h" |
| 19 | #include "llvm/ADT/BitVector.h" |
| 20 | #include "llvm/ADT/SmallSet.h" |
| 21 | #include "llvm/ADT/iterator_range.h" |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineBasicBlock.h" |
| 23 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineFunction.h" |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineInstr.h" |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineOperand.h" |
| 27 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 28 | #include "llvm/CodeGen/MachineValueType.h" |
Andrew Trick | 05ff466 | 2012-06-06 20:29:31 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/RegisterClassInfo.h" |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/ScheduleDAG.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 33 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 34 | #include "llvm/MC/MCInstrDesc.h" |
| 35 | #include "llvm/MC/MCRegisterInfo.h" |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 36 | #include "llvm/Support/CommandLine.h" |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 37 | #include "llvm/Support/Debug.h" |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 38 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 39 | #include <cassert> |
| 40 | #include <map> |
| 41 | #include <set> |
| 42 | #include <utility> |
| 43 | #include <vector> |
| 44 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 45 | using namespace llvm; |
| 46 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 47 | #define DEBUG_TYPE "post-RA-sched" |
| 48 | |
David Goodwin | dd1c619 | 2009-11-19 23:12:37 +0000 | [diff] [blame] | 49 | // If DebugDiv > 0 then only break antidep with (ID % DebugDiv) == DebugMod |
| 50 | static cl::opt<int> |
| 51 | DebugDiv("agg-antidep-debugdiv", |
Bob Wilson | 67dd3a4 | 2010-04-09 21:38:26 +0000 | [diff] [blame] | 52 | cl::desc("Debug control for aggressive anti-dep breaker"), |
| 53 | cl::init(0), cl::Hidden); |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 54 | |
David Goodwin | dd1c619 | 2009-11-19 23:12:37 +0000 | [diff] [blame] | 55 | static cl::opt<int> |
| 56 | DebugMod("agg-antidep-debugmod", |
Bob Wilson | 67dd3a4 | 2010-04-09 21:38:26 +0000 | [diff] [blame] | 57 | cl::desc("Debug control for aggressive anti-dep breaker"), |
| 58 | cl::init(0), cl::Hidden); |
David Goodwin | dd1c619 | 2009-11-19 23:12:37 +0000 | [diff] [blame] | 59 | |
David Goodwin | a45fe67 | 2009-12-09 17:18:22 +0000 | [diff] [blame] | 60 | AggressiveAntiDepState::AggressiveAntiDepState(const unsigned TargetRegs, |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 61 | MachineBasicBlock *BB) |
| 62 | : NumTargetRegs(TargetRegs), GroupNodes(TargetRegs, 0), |
| 63 | GroupNodeIndices(TargetRegs, 0), KillIndices(TargetRegs, 0), |
| 64 | DefIndices(TargetRegs, 0) { |
David Goodwin | a45fe67 | 2009-12-09 17:18:22 +0000 | [diff] [blame] | 65 | const unsigned BBSize = BB->size(); |
| 66 | for (unsigned i = 0; i < NumTargetRegs; ++i) { |
| 67 | // Initialize all registers to be in their own group. Initially we |
| 68 | // assign the register to the same-indexed GroupNode. |
| 69 | GroupNodeIndices[i] = i; |
| 70 | // Initialize the indices to indicate that no registers are live. |
| 71 | KillIndices[i] = ~0u; |
| 72 | DefIndices[i] = BBSize; |
| 73 | } |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Bill Wendling | 5a8d15c | 2010-07-15 19:41:20 +0000 | [diff] [blame] | 76 | unsigned AggressiveAntiDepState::GetGroup(unsigned Reg) { |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 77 | unsigned Node = GroupNodeIndices[Reg]; |
| 78 | while (GroupNodes[Node] != Node) |
| 79 | Node = GroupNodes[Node]; |
| 80 | |
| 81 | return Node; |
| 82 | } |
| 83 | |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 84 | void AggressiveAntiDepState::GetGroupRegs( |
| 85 | unsigned Group, |
| 86 | std::vector<unsigned> &Regs, |
| 87 | std::multimap<unsigned, AggressiveAntiDepState::RegisterReference> *RegRefs) |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 88 | { |
David Goodwin | a45fe67 | 2009-12-09 17:18:22 +0000 | [diff] [blame] | 89 | for (unsigned Reg = 0; Reg != NumTargetRegs; ++Reg) { |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 90 | if ((GetGroup(Reg) == Group) && (RegRefs->count(Reg) > 0)) |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 91 | Regs.push_back(Reg); |
| 92 | } |
| 93 | } |
| 94 | |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 95 | unsigned AggressiveAntiDepState::UnionGroups(unsigned Reg1, unsigned Reg2) { |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 96 | assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!"); |
| 97 | assert(GroupNodeIndices[0] == 0 && "Reg 0 not in Group 0!"); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 98 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 99 | // find group for each register |
| 100 | unsigned Group1 = GetGroup(Reg1); |
| 101 | unsigned Group2 = GetGroup(Reg2); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 102 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 103 | // if either group is 0, then that must become the parent |
| 104 | unsigned Parent = (Group1 == 0) ? Group1 : Group2; |
| 105 | unsigned Other = (Parent == Group1) ? Group2 : Group1; |
| 106 | GroupNodes.at(Other) = Parent; |
| 107 | return Parent; |
| 108 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 109 | |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 110 | unsigned AggressiveAntiDepState::LeaveGroup(unsigned Reg) { |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 111 | // Create a new GroupNode for Reg. Reg's existing GroupNode must |
| 112 | // stay as is because there could be other GroupNodes referring to |
| 113 | // it. |
| 114 | unsigned idx = GroupNodes.size(); |
| 115 | GroupNodes.push_back(idx); |
| 116 | GroupNodeIndices[Reg] = idx; |
| 117 | return idx; |
| 118 | } |
| 119 | |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 120 | bool AggressiveAntiDepState::IsLive(unsigned Reg) { |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 121 | // KillIndex must be defined and DefIndex not defined for a register |
| 122 | // to be live. |
| 123 | return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u)); |
| 124 | } |
| 125 | |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 126 | AggressiveAntiDepBreaker::AggressiveAntiDepBreaker( |
| 127 | MachineFunction &MFi, const RegisterClassInfo &RCI, |
| 128 | TargetSubtargetInfo::RegClassVector &CriticalPathRCs) |
| 129 | : AntiDepBreaker(), MF(MFi), MRI(MF.getRegInfo()), |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 130 | TII(MF.getSubtarget().getInstrInfo()), |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 131 | TRI(MF.getSubtarget().getRegisterInfo()), RegClassInfo(RCI) { |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 132 | /* Collect a bitset of all registers that are only broken if they |
| 133 | are on the critical path. */ |
| 134 | for (unsigned i = 0, e = CriticalPathRCs.size(); i < e; ++i) { |
| 135 | BitVector CPSet = TRI->getAllocatableSet(MF, CriticalPathRCs[i]); |
| 136 | if (CriticalPathSet.none()) |
| 137 | CriticalPathSet = CPSet; |
| 138 | else |
| 139 | CriticalPathSet |= CPSet; |
| 140 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 141 | |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 142 | DEBUG(dbgs() << "AntiDep Critical-Path Registers:"); |
Francis Visoiu Mistrih | b52e036 | 2017-05-17 01:07:53 +0000 | [diff] [blame] | 143 | DEBUG(for (unsigned r : CriticalPathSet.set_bits()) |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 144 | dbgs() << " " << printReg(r, TRI)); |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 145 | DEBUG(dbgs() << '\n'); |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | AggressiveAntiDepBreaker::~AggressiveAntiDepBreaker() { |
| 149 | delete State; |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | void AggressiveAntiDepBreaker::StartBlock(MachineBasicBlock *BB) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 153 | assert(!State); |
David Goodwin | a45fe67 | 2009-12-09 17:18:22 +0000 | [diff] [blame] | 154 | State = new AggressiveAntiDepState(TRI->getNumRegs(), BB); |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 155 | |
Matthias Braun | c2d4bef | 2015-09-25 21:25:19 +0000 | [diff] [blame] | 156 | bool IsReturnBlock = BB->isReturnBlock(); |
Bill Wendling | 030b028 | 2010-07-15 18:43:09 +0000 | [diff] [blame] | 157 | std::vector<unsigned> &KillIndices = State->GetKillIndices(); |
| 158 | std::vector<unsigned> &DefIndices = State->GetDefIndices(); |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 159 | |
Jakob Stoklund Olesen | c338679 | 2013-02-05 18:21:52 +0000 | [diff] [blame] | 160 | // Examine the live-in regs of all successors. |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 161 | for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(), |
| 162 | SE = BB->succ_end(); SI != SE; ++SI) |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 163 | for (const auto &LI : (*SI)->liveins()) { |
| 164 | for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) { |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 165 | unsigned Reg = *AI; |
Jakob Stoklund Olesen | be1c8d3 | 2010-12-14 23:23:15 +0000 | [diff] [blame] | 166 | State->UnionGroups(Reg, 0); |
| 167 | KillIndices[Reg] = BB->size(); |
| 168 | DefIndices[Reg] = ~0u; |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 169 | } |
| 170 | } |
| 171 | |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 172 | // Mark live-out callee-saved registers. In a return block this is |
| 173 | // all callee-saved registers. In non-return this is any |
| 174 | // callee-saved register that is not saved in the prolog. |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 175 | const MachineFrameInfo &MFI = MF.getFrameInfo(); |
| 176 | BitVector Pristine = MFI.getPristineRegs(MF); |
Oren Ben Simhon | fe34c5e | 2017-03-14 09:09:26 +0000 | [diff] [blame] | 177 | for (const MCPhysReg *I = MF.getRegInfo().getCalleeSavedRegs(); *I; |
| 178 | ++I) { |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 179 | unsigned Reg = *I; |
Tim Shen | 0bd0aa8 | 2017-05-30 22:26:52 +0000 | [diff] [blame] | 180 | if (!IsReturnBlock && !Pristine.test(Reg)) |
Eric Christopher | b9c56d1 | 2017-03-30 22:34:20 +0000 | [diff] [blame] | 181 | continue; |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 182 | for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { |
| 183 | unsigned AliasReg = *AI; |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 184 | State->UnionGroups(AliasReg, 0); |
| 185 | KillIndices[AliasReg] = BB->size(); |
| 186 | DefIndices[AliasReg] = ~0u; |
| 187 | } |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | void AggressiveAntiDepBreaker::FinishBlock() { |
| 192 | delete State; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 193 | State = nullptr; |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 194 | } |
| 195 | |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 196 | void AggressiveAntiDepBreaker::Observe(MachineInstr &MI, unsigned Count, |
Bob Wilson | 67dd3a4 | 2010-04-09 21:38:26 +0000 | [diff] [blame] | 197 | unsigned InsertPosIndex) { |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 198 | assert(Count < InsertPosIndex && "Instruction index out of expected range!"); |
| 199 | |
David Goodwin | faa7660 | 2009-10-29 23:30:59 +0000 | [diff] [blame] | 200 | std::set<unsigned> PassthruRegs; |
| 201 | GetPassthruRegs(MI, PassthruRegs); |
| 202 | PrescanInstruction(MI, Count, PassthruRegs); |
| 203 | ScanInstruction(MI, Count); |
| 204 | |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 205 | DEBUG(dbgs() << "Observe: "); |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 206 | DEBUG(MI.dump()); |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 207 | DEBUG(dbgs() << "\tRegs:"); |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 208 | |
Bill Wendling | 030b028 | 2010-07-15 18:43:09 +0000 | [diff] [blame] | 209 | std::vector<unsigned> &DefIndices = State->GetDefIndices(); |
David Goodwin | a45fe67 | 2009-12-09 17:18:22 +0000 | [diff] [blame] | 210 | for (unsigned Reg = 0; Reg != TRI->getNumRegs(); ++Reg) { |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 211 | // If Reg is current live, then mark that it can't be renamed as |
| 212 | // we don't know the extent of its live-range anymore (now that it |
| 213 | // has been scheduled). If it is not live but was defined in the |
| 214 | // previous schedule region, then set its def index to the most |
| 215 | // conservative location (i.e. the beginning of the previous |
| 216 | // schedule region). |
| 217 | if (State->IsLive(Reg)) { |
| 218 | DEBUG(if (State->GetGroup(Reg) != 0) |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 219 | dbgs() << " " << printReg(Reg, TRI) << "=g" << |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 220 | State->GetGroup(Reg) << "->g0(region live-out)"); |
| 221 | State->UnionGroups(Reg, 0); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 222 | } else if ((DefIndices[Reg] < InsertPosIndex) |
| 223 | && (DefIndices[Reg] >= Count)) { |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 224 | DefIndices[Reg] = Count; |
| 225 | } |
| 226 | } |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 227 | DEBUG(dbgs() << '\n'); |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 230 | bool AggressiveAntiDepBreaker::IsImplicitDefUse(MachineInstr &MI, |
| 231 | MachineOperand &MO) { |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 232 | if (!MO.isReg() || !MO.isImplicit()) |
| 233 | return false; |
| 234 | |
| 235 | unsigned Reg = MO.getReg(); |
| 236 | if (Reg == 0) |
| 237 | return false; |
| 238 | |
Chad Rosier | 47eba05 | 2015-10-09 19:48:48 +0000 | [diff] [blame] | 239 | MachineOperand *Op = nullptr; |
| 240 | if (MO.isDef()) |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 241 | Op = MI.findRegisterUseOperand(Reg, true); |
Chad Rosier | 47eba05 | 2015-10-09 19:48:48 +0000 | [diff] [blame] | 242 | else |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 243 | Op = MI.findRegisterDefOperand(Reg); |
Chad Rosier | 47eba05 | 2015-10-09 19:48:48 +0000 | [diff] [blame] | 244 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 245 | return(Op && Op->isImplicit()); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 246 | } |
| 247 | |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 248 | void AggressiveAntiDepBreaker::GetPassthruRegs( |
| 249 | MachineInstr &MI, std::set<unsigned> &PassthruRegs) { |
| 250 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 251 | MachineOperand &MO = MI.getOperand(i); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 252 | if (!MO.isReg()) continue; |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 253 | if ((MO.isDef() && MI.isRegTiedToUseOperand(i)) || |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 254 | IsImplicitDefUse(MI, MO)) { |
| 255 | const unsigned Reg = MO.getReg(); |
Chad Rosier | abdb1d6 | 2013-05-22 23:17:36 +0000 | [diff] [blame] | 256 | for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true); |
| 257 | SubRegs.isValid(); ++SubRegs) |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 258 | PassthruRegs.insert(*SubRegs); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 259 | } |
| 260 | } |
| 261 | } |
| 262 | |
David Goodwin | 80a03cc | 2009-11-20 19:32:48 +0000 | [diff] [blame] | 263 | /// AntiDepEdges - Return in Edges the anti- and output- dependencies |
| 264 | /// in SU that we want to consider for breaking. |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 265 | static void AntiDepEdges(const SUnit *SU, std::vector<const SDep *> &Edges) { |
David Goodwin | 80a03cc | 2009-11-20 19:32:48 +0000 | [diff] [blame] | 266 | SmallSet<unsigned, 4> RegSet; |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 267 | for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end(); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 268 | P != PE; ++P) { |
David Goodwin | da83f7d | 2009-11-12 19:08:21 +0000 | [diff] [blame] | 269 | if ((P->getKind() == SDep::Anti) || (P->getKind() == SDep::Output)) { |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 270 | if (RegSet.insert(P->getReg()).second) |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 271 | Edges.push_back(&*P); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 272 | } |
| 273 | } |
| 274 | } |
| 275 | |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 276 | /// CriticalPathStep - Return the next SUnit after SU on the bottom-up |
| 277 | /// critical path. |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 278 | static const SUnit *CriticalPathStep(const SUnit *SU) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 279 | const SDep *Next = nullptr; |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 280 | unsigned NextDepth = 0; |
| 281 | // Find the predecessor edge with the greatest depth. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 282 | if (SU) { |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 283 | for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end(); |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 284 | P != PE; ++P) { |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 285 | const SUnit *PredSU = P->getSUnit(); |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 286 | unsigned PredLatency = P->getLatency(); |
| 287 | unsigned PredTotalLatency = PredSU->getDepth() + PredLatency; |
| 288 | // In the case of a latency tie, prefer an anti-dependency edge over |
| 289 | // other types of edges. |
| 290 | if (NextDepth < PredTotalLatency || |
| 291 | (NextDepth == PredTotalLatency && P->getKind() == SDep::Anti)) { |
| 292 | NextDepth = PredTotalLatency; |
| 293 | Next = &*P; |
| 294 | } |
| 295 | } |
| 296 | } |
| 297 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 298 | return (Next) ? Next->getSUnit() : nullptr; |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 299 | } |
| 300 | |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 301 | void AggressiveAntiDepBreaker::HandleLastUse(unsigned Reg, unsigned KillIdx, |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 302 | const char *tag, |
| 303 | const char *header, |
David Goodwin | dd1c619 | 2009-11-19 23:12:37 +0000 | [diff] [blame] | 304 | const char *footer) { |
Bill Wendling | 030b028 | 2010-07-15 18:43:09 +0000 | [diff] [blame] | 305 | std::vector<unsigned> &KillIndices = State->GetKillIndices(); |
| 306 | std::vector<unsigned> &DefIndices = State->GetDefIndices(); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 307 | std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 308 | RegRefs = State->GetRegRefs(); |
| 309 | |
Hal Finkel | 34c94d5 | 2015-01-28 14:44:14 +0000 | [diff] [blame] | 310 | // FIXME: We must leave subregisters of live super registers as live, so that |
| 311 | // we don't clear out the register tracking information for subregisters of |
| 312 | // super registers we're still tracking (and with which we're unioning |
| 313 | // subregister definitions). |
| 314 | for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) |
| 315 | if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI)) { |
| 316 | DEBUG(if (!header && footer) dbgs() << footer); |
| 317 | return; |
| 318 | } |
| 319 | |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 320 | if (!State->IsLive(Reg)) { |
| 321 | KillIndices[Reg] = KillIdx; |
| 322 | DefIndices[Reg] = ~0u; |
| 323 | RegRefs.erase(Reg); |
| 324 | State->LeaveGroup(Reg); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 325 | DEBUG(if (header) { |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 326 | dbgs() << header << printReg(Reg, TRI); header = nullptr; }); |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 327 | DEBUG(dbgs() << "->g" << State->GetGroup(Reg) << tag); |
Chuang-Yu Cheng | 35c6181 | 2016-04-01 02:05:29 +0000 | [diff] [blame] | 328 | // Repeat for subregisters. Note that we only do this if the superregister |
| 329 | // was not live because otherwise, regardless whether we have an explicit |
| 330 | // use of the subregister, the subregister's contents are needed for the |
| 331 | // uses of the superregister. |
| 332 | for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) { |
| 333 | unsigned SubregReg = *SubRegs; |
| 334 | if (!State->IsLive(SubregReg)) { |
| 335 | KillIndices[SubregReg] = KillIdx; |
| 336 | DefIndices[SubregReg] = ~0u; |
| 337 | RegRefs.erase(SubregReg); |
| 338 | State->LeaveGroup(SubregReg); |
| 339 | DEBUG(if (header) { |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 340 | dbgs() << header << printReg(Reg, TRI); header = nullptr; }); |
| 341 | DEBUG(dbgs() << " " << printReg(SubregReg, TRI) << "->g" << |
Chuang-Yu Cheng | 35c6181 | 2016-04-01 02:05:29 +0000 | [diff] [blame] | 342 | State->GetGroup(SubregReg) << tag); |
| 343 | } |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 344 | } |
| 345 | } |
David Goodwin | dd1c619 | 2009-11-19 23:12:37 +0000 | [diff] [blame] | 346 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 347 | DEBUG(if (!header && footer) dbgs() << footer); |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 348 | } |
| 349 | |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 350 | void AggressiveAntiDepBreaker::PrescanInstruction( |
| 351 | MachineInstr &MI, unsigned Count, std::set<unsigned> &PassthruRegs) { |
Bill Wendling | 030b028 | 2010-07-15 18:43:09 +0000 | [diff] [blame] | 352 | std::vector<unsigned> &DefIndices = State->GetDefIndices(); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 353 | std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 354 | RegRefs = State->GetRegRefs(); |
| 355 | |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 356 | // Handle dead defs by simulating a last-use of the register just |
Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 357 | // after the def. A dead def can occur because the def is truly |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 358 | // dead, or because only a subregister is live at the def. If we |
| 359 | // don't do this the dead def will be incorrectly merged into the |
| 360 | // previous def. |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 361 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 362 | MachineOperand &MO = MI.getOperand(i); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 363 | if (!MO.isReg() || !MO.isDef()) continue; |
| 364 | unsigned Reg = MO.getReg(); |
| 365 | if (Reg == 0) continue; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 366 | |
David Goodwin | dd1c619 | 2009-11-19 23:12:37 +0000 | [diff] [blame] | 367 | HandleLastUse(Reg, Count + 1, "", "\tDead Def: ", "\n"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 368 | } |
| 369 | |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 370 | DEBUG(dbgs() << "\tDef Groups:"); |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 371 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 372 | MachineOperand &MO = MI.getOperand(i); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 373 | if (!MO.isReg() || !MO.isDef()) continue; |
| 374 | unsigned Reg = MO.getReg(); |
| 375 | if (Reg == 0) continue; |
| 376 | |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 377 | DEBUG(dbgs() << " " << printReg(Reg, TRI) << "=g" << State->GetGroup(Reg)); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 378 | |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 379 | // If MI's defs have a special allocation requirement, don't allow |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 380 | // any def registers to be changed. Also assume all registers |
Kyle Butt | cf6a8bf | 2015-12-02 18:58:51 +0000 | [diff] [blame] | 381 | // defined in a call must not be changed (ABI). Inline assembly may |
| 382 | // reference either system calls or the register directly. Skip it until we |
| 383 | // can tell user specified registers from compiler-specified. |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 384 | if (MI.isCall() || MI.hasExtraDefRegAllocReq() || TII->isPredicated(MI) || |
| 385 | MI.isInlineAsm()) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 386 | DEBUG(if (State->GetGroup(Reg) != 0) dbgs() << "->g0(alloc-req)"); |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 387 | State->UnionGroups(Reg, 0); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | // Any aliased that are live at this point are completely or |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 391 | // partially defined here, so group those aliases with Reg. |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 392 | for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { |
| 393 | unsigned AliasReg = *AI; |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 394 | if (State->IsLive(AliasReg)) { |
| 395 | State->UnionGroups(Reg, AliasReg); |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 396 | DEBUG(dbgs() << "->g" << State->GetGroup(Reg) << "(via " |
| 397 | << printReg(AliasReg, TRI) << ")"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 398 | } |
| 399 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 400 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 401 | // Note register reference... |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 402 | const TargetRegisterClass *RC = nullptr; |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 403 | if (i < MI.getDesc().getNumOperands()) |
| 404 | RC = TII->getRegClass(MI.getDesc(), i, TRI, MF); |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 405 | AggressiveAntiDepState::RegisterReference RR = { &MO, RC }; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 406 | RegRefs.insert(std::make_pair(Reg, RR)); |
| 407 | } |
| 408 | |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 409 | DEBUG(dbgs() << '\n'); |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 410 | |
| 411 | // Scan the register defs for this instruction and update |
| 412 | // live-ranges. |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 413 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 414 | MachineOperand &MO = MI.getOperand(i); |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 415 | if (!MO.isReg() || !MO.isDef()) continue; |
| 416 | unsigned Reg = MO.getReg(); |
| 417 | if (Reg == 0) continue; |
David Goodwin | dd1c619 | 2009-11-19 23:12:37 +0000 | [diff] [blame] | 418 | // Ignore KILLs and passthru registers for liveness... |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 419 | if (MI.isKill() || (PassthruRegs.count(Reg) != 0)) |
David Goodwin | dd1c619 | 2009-11-19 23:12:37 +0000 | [diff] [blame] | 420 | continue; |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 421 | |
David Goodwin | dd1c619 | 2009-11-19 23:12:37 +0000 | [diff] [blame] | 422 | // Update def for Reg and aliases. |
Hal Finkel | 121caf6 | 2014-02-26 20:20:30 +0000 | [diff] [blame] | 423 | for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { |
| 424 | // We need to be careful here not to define already-live super registers. |
| 425 | // If the super register is already live, then this definition is not |
| 426 | // a definition of the whole super register (just a partial insertion |
| 427 | // into it). Earlier subregister definitions (which we've not yet visited |
| 428 | // because we're iterating bottom-up) need to be linked to the same group |
| 429 | // as this definition. |
| 430 | if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI)) |
| 431 | continue; |
| 432 | |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 433 | DefIndices[*AI] = Count; |
Hal Finkel | 121caf6 | 2014-02-26 20:20:30 +0000 | [diff] [blame] | 434 | } |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 435 | } |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 436 | } |
| 437 | |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 438 | void AggressiveAntiDepBreaker::ScanInstruction(MachineInstr &MI, |
Bob Wilson | 67dd3a4 | 2010-04-09 21:38:26 +0000 | [diff] [blame] | 439 | unsigned Count) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 440 | DEBUG(dbgs() << "\tUse Groups:"); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 441 | std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 442 | RegRefs = State->GetRegRefs(); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 443 | |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 444 | // If MI's uses have special allocation requirement, don't allow |
| 445 | // any use registers to be changed. Also assume all registers |
| 446 | // used in a call must not be changed (ABI). |
Kyle Butt | cf6a8bf | 2015-12-02 18:58:51 +0000 | [diff] [blame] | 447 | // Inline Assembly register uses also cannot be safely changed. |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 448 | // FIXME: The issue with predicated instruction is more complex. We are being |
| 449 | // conservatively here because the kill markers cannot be trusted after |
| 450 | // if-conversion: |
Francis Visoiu Mistrih | 7d9bef8 | 2018-01-09 17:31:07 +0000 | [diff] [blame] | 451 | // %r6 = LDR %sp, %reg0, 92, 14, %reg0; mem:LD4[FixedStack14] |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 452 | // ... |
Francis Visoiu Mistrih | 7d9bef8 | 2018-01-09 17:31:07 +0000 | [diff] [blame] | 453 | // STR %r0, killed %r6, %reg0, 0, 0, %cpsr; mem:ST4[%395] |
| 454 | // %r6 = LDR %sp, %reg0, 100, 0, %cpsr; mem:LD4[FixedStack12] |
| 455 | // STR %r0, killed %r6, %reg0, 0, 14, %reg0; mem:ST4[%396](align=8) |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 456 | // |
| 457 | // The first R6 kill is not really a kill since it's killed by a predicated |
| 458 | // instruction which may not be executed. The second R6 def may or may not |
| 459 | // re-define R6 so it's not safe to change it since the last R6 use cannot be |
| 460 | // changed. |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 461 | bool Special = MI.isCall() || MI.hasExtraSrcRegAllocReq() || |
| 462 | TII->isPredicated(MI) || MI.isInlineAsm(); |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 463 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 464 | // Scan the register uses for this instruction and update |
| 465 | // live-ranges, groups and RegRefs. |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 466 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 467 | MachineOperand &MO = MI.getOperand(i); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 468 | if (!MO.isReg() || !MO.isUse()) continue; |
| 469 | unsigned Reg = MO.getReg(); |
| 470 | if (Reg == 0) continue; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 471 | |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 472 | DEBUG(dbgs() << " " << printReg(Reg, TRI) << "=g" << State->GetGroup(Reg)); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 473 | |
| 474 | // It wasn't previously live but now it is, this is a kill. Forget |
| 475 | // the previous live-range information and start a new live-range |
| 476 | // for the register. |
David Goodwin | 9f1b2d4 | 2009-10-29 19:17:04 +0000 | [diff] [blame] | 477 | HandleLastUse(Reg, Count, "(last-use)"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 478 | |
Evan Cheng | f128bdc | 2010-06-16 07:35:02 +0000 | [diff] [blame] | 479 | if (Special) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 480 | DEBUG(if (State->GetGroup(Reg) != 0) dbgs() << "->g0(alloc-req)"); |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 481 | State->UnionGroups(Reg, 0); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | // Note register reference... |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 485 | const TargetRegisterClass *RC = nullptr; |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 486 | if (i < MI.getDesc().getNumOperands()) |
| 487 | RC = TII->getRegClass(MI.getDesc(), i, TRI, MF); |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 488 | AggressiveAntiDepState::RegisterReference RR = { &MO, RC }; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 489 | RegRefs.insert(std::make_pair(Reg, RR)); |
| 490 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 491 | |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 492 | DEBUG(dbgs() << '\n'); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 493 | |
| 494 | // Form a group of all defs and uses of a KILL instruction to ensure |
| 495 | // that all registers are renamed as a group. |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 496 | if (MI.isKill()) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 497 | DEBUG(dbgs() << "\tKill Group:"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 498 | |
| 499 | unsigned FirstReg = 0; |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 500 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 501 | MachineOperand &MO = MI.getOperand(i); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 502 | if (!MO.isReg()) continue; |
| 503 | unsigned Reg = MO.getReg(); |
| 504 | if (Reg == 0) continue; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 505 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 506 | if (FirstReg != 0) { |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 507 | DEBUG(dbgs() << "=" << printReg(Reg, TRI)); |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 508 | State->UnionGroups(FirstReg, Reg); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 509 | } else { |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 510 | DEBUG(dbgs() << " " << printReg(Reg, TRI)); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 511 | FirstReg = Reg; |
| 512 | } |
| 513 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 514 | |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 515 | DEBUG(dbgs() << "->g" << State->GetGroup(FirstReg) << '\n'); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 516 | } |
| 517 | } |
| 518 | |
| 519 | BitVector AggressiveAntiDepBreaker::GetRenameRegisters(unsigned Reg) { |
| 520 | BitVector BV(TRI->getNumRegs(), false); |
| 521 | bool first = true; |
| 522 | |
| 523 | // Check all references that need rewriting for Reg. For each, use |
| 524 | // the corresponding register class to narrow the set of registers |
| 525 | // that are appropriate for renaming. |
Benjamin Kramer | c9436ad | 2015-07-18 20:05:10 +0000 | [diff] [blame] | 526 | for (const auto &Q : make_range(State->GetRegRefs().equal_range(Reg))) { |
| 527 | const TargetRegisterClass *RC = Q.second.RC; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 528 | if (!RC) continue; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 529 | |
| 530 | BitVector RCBV = TRI->getAllocatableSet(MF, RC); |
| 531 | if (first) { |
| 532 | BV |= RCBV; |
| 533 | first = false; |
| 534 | } else { |
| 535 | BV &= RCBV; |
| 536 | } |
| 537 | |
Craig Topper | cf0444b | 2014-11-17 05:50:14 +0000 | [diff] [blame] | 538 | DEBUG(dbgs() << " " << TRI->getRegClassName(RC)); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 539 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 540 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 541 | return BV; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 542 | } |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 543 | |
| 544 | bool AggressiveAntiDepBreaker::FindSuitableFreeRegisters( |
David Goodwin | 7d8878a | 2009-11-05 01:19:35 +0000 | [diff] [blame] | 545 | unsigned AntiDepGroupIndex, |
| 546 | RenameOrderType& RenameOrder, |
| 547 | std::map<unsigned, unsigned> &RenameMap) { |
Bill Wendling | 030b028 | 2010-07-15 18:43:09 +0000 | [diff] [blame] | 548 | std::vector<unsigned> &KillIndices = State->GetKillIndices(); |
| 549 | std::vector<unsigned> &DefIndices = State->GetDefIndices(); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 550 | std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 551 | RegRefs = State->GetRegRefs(); |
| 552 | |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 553 | // Collect all referenced registers in the same group as |
| 554 | // AntiDepReg. These all need to be renamed together if we are to |
| 555 | // break the anti-dependence. |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 556 | std::vector<unsigned> Regs; |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 557 | State->GetGroupRegs(AntiDepGroupIndex, Regs, &RegRefs); |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 558 | assert(!Regs.empty() && "Empty register group!"); |
| 559 | if (Regs.empty()) |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 560 | return false; |
| 561 | |
| 562 | // Find the "superest" register in the group. At the same time, |
| 563 | // collect the BitVector of registers that can be used to rename |
| 564 | // each register. |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 565 | DEBUG(dbgs() << "\tRename Candidates for Group g" << AntiDepGroupIndex |
| 566 | << ":\n"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 567 | std::map<unsigned, BitVector> RenameRegisterMap; |
| 568 | unsigned SuperReg = 0; |
| 569 | for (unsigned i = 0, e = Regs.size(); i != e; ++i) { |
| 570 | unsigned Reg = Regs[i]; |
| 571 | if ((SuperReg == 0) || TRI->isSuperRegister(SuperReg, Reg)) |
| 572 | SuperReg = Reg; |
| 573 | |
| 574 | // If Reg has any references, then collect possible rename regs |
| 575 | if (RegRefs.count(Reg) > 0) { |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 576 | DEBUG(dbgs() << "\t\t" << printReg(Reg, TRI) << ":"); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 577 | |
Benjamin Kramer | 7f75e94 | 2016-02-13 16:39:39 +0000 | [diff] [blame] | 578 | BitVector &BV = RenameRegisterMap[Reg]; |
| 579 | assert(BV.empty()); |
| 580 | BV = GetRenameRegisters(Reg); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 581 | |
Benjamin Kramer | 7f75e94 | 2016-02-13 16:39:39 +0000 | [diff] [blame] | 582 | DEBUG({ |
| 583 | dbgs() << " ::"; |
Francis Visoiu Mistrih | b52e036 | 2017-05-17 01:07:53 +0000 | [diff] [blame] | 584 | for (unsigned r : BV.set_bits()) |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 585 | dbgs() << " " << printReg(r, TRI); |
Benjamin Kramer | 7f75e94 | 2016-02-13 16:39:39 +0000 | [diff] [blame] | 586 | dbgs() << "\n"; |
| 587 | }); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 588 | } |
| 589 | } |
| 590 | |
| 591 | // All group registers should be a subreg of SuperReg. |
| 592 | for (unsigned i = 0, e = Regs.size(); i != e; ++i) { |
| 593 | unsigned Reg = Regs[i]; |
| 594 | if (Reg == SuperReg) continue; |
| 595 | bool IsSub = TRI->isSubRegister(SuperReg, Reg); |
Will Schmidt | 44ff8f0 | 2014-07-31 19:50:53 +0000 | [diff] [blame] | 596 | // FIXME: remove this once PR18663 has been properly fixed. For now, |
| 597 | // return a conservative answer: |
| 598 | // assert(IsSub && "Expecting group subregister"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 599 | if (!IsSub) |
| 600 | return false; |
| 601 | } |
| 602 | |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 603 | #ifndef NDEBUG |
| 604 | // If DebugDiv > 0 then only rename (renamecnt % DebugDiv) == DebugMod |
| 605 | if (DebugDiv > 0) { |
| 606 | static int renamecnt = 0; |
| 607 | if (renamecnt++ % DebugDiv != DebugMod) |
| 608 | return false; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 609 | |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 610 | dbgs() << "*** Performing rename " << printReg(SuperReg, TRI) |
| 611 | << " for debug ***\n"; |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 612 | } |
| 613 | #endif |
| 614 | |
David Goodwin | 7d8878a | 2009-11-05 01:19:35 +0000 | [diff] [blame] | 615 | // Check each possible rename register for SuperReg in round-robin |
| 616 | // order. If that register is available, and the corresponding |
| 617 | // registers are available for the other group subregisters, then we |
| 618 | // can use those registers to rename. |
Rafael Espindola | 871c724 | 2010-07-12 02:55:34 +0000 | [diff] [blame] | 619 | |
| 620 | // FIXME: Using getMinimalPhysRegClass is very conservative. We should |
| 621 | // check every use of the register and find the largest register class |
| 622 | // that can be used in all of them. |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 623 | const TargetRegisterClass *SuperRC = |
Rafael Espindola | 871c724 | 2010-07-12 02:55:34 +0000 | [diff] [blame] | 624 | TRI->getMinimalPhysRegClass(SuperReg, MVT::Other); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 625 | |
Jakob Stoklund Olesen | bdb55e0 | 2012-11-29 03:34:17 +0000 | [diff] [blame] | 626 | ArrayRef<MCPhysReg> Order = RegClassInfo.getOrder(SuperRC); |
Jakob Stoklund Olesen | 4f5f84c | 2011-06-16 21:56:21 +0000 | [diff] [blame] | 627 | if (Order.empty()) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 628 | DEBUG(dbgs() << "\tEmpty Super Regclass!!\n"); |
David Goodwin | 7d8878a | 2009-11-05 01:19:35 +0000 | [diff] [blame] | 629 | return false; |
| 630 | } |
| 631 | |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 632 | DEBUG(dbgs() << "\tFind Registers:"); |
David Goodwin | dd1c619 | 2009-11-19 23:12:37 +0000 | [diff] [blame] | 633 | |
Benjamin Kramer | 2c99e41 | 2014-10-10 15:32:50 +0000 | [diff] [blame] | 634 | RenameOrder.insert(RenameOrderType::value_type(SuperRC, Order.size())); |
David Goodwin | 7d8878a | 2009-11-05 01:19:35 +0000 | [diff] [blame] | 635 | |
Jakob Stoklund Olesen | 4f5f84c | 2011-06-16 21:56:21 +0000 | [diff] [blame] | 636 | unsigned OrigR = RenameOrder[SuperRC]; |
| 637 | unsigned EndR = ((OrigR == Order.size()) ? 0 : OrigR); |
| 638 | unsigned R = OrigR; |
David Goodwin | 7d8878a | 2009-11-05 01:19:35 +0000 | [diff] [blame] | 639 | do { |
Jakob Stoklund Olesen | 4f5f84c | 2011-06-16 21:56:21 +0000 | [diff] [blame] | 640 | if (R == 0) R = Order.size(); |
David Goodwin | 7d8878a | 2009-11-05 01:19:35 +0000 | [diff] [blame] | 641 | --R; |
Jakob Stoklund Olesen | 4f5f84c | 2011-06-16 21:56:21 +0000 | [diff] [blame] | 642 | const unsigned NewSuperReg = Order[R]; |
Jim Grosbach | 944aece | 2010-09-02 17:12:55 +0000 | [diff] [blame] | 643 | // Don't consider non-allocatable registers |
Jakob Stoklund Olesen | f67bf3e | 2012-10-15 22:41:03 +0000 | [diff] [blame] | 644 | if (!MRI.isAllocatable(NewSuperReg)) continue; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 645 | // Don't replace a register with itself. |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 646 | if (NewSuperReg == SuperReg) continue; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 647 | |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 648 | DEBUG(dbgs() << " [" << printReg(NewSuperReg, TRI) << ':'); |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 649 | RenameMap.clear(); |
| 650 | |
| 651 | // For each referenced group register (which must be a SuperReg or |
| 652 | // a subregister of SuperReg), find the corresponding subregister |
| 653 | // of NewSuperReg and make sure it is free to be renamed. |
| 654 | for (unsigned i = 0, e = Regs.size(); i != e; ++i) { |
| 655 | unsigned Reg = Regs[i]; |
| 656 | unsigned NewReg = 0; |
| 657 | if (Reg == SuperReg) { |
| 658 | NewReg = NewSuperReg; |
| 659 | } else { |
| 660 | unsigned NewSubRegIdx = TRI->getSubRegIndex(SuperReg, Reg); |
| 661 | if (NewSubRegIdx != 0) |
| 662 | NewReg = TRI->getSubReg(NewSuperReg, NewSubRegIdx); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 663 | } |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 664 | |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 665 | DEBUG(dbgs() << " " << printReg(NewReg, TRI)); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 666 | |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 667 | // Check if Reg can be renamed to NewReg. |
Benjamin Kramer | 7f75e94 | 2016-02-13 16:39:39 +0000 | [diff] [blame] | 668 | if (!RenameRegisterMap[Reg].test(NewReg)) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 669 | DEBUG(dbgs() << "(no rename)"); |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 670 | goto next_super_reg; |
| 671 | } |
| 672 | |
| 673 | // If NewReg is dead and NewReg's most recent def is not before |
| 674 | // Regs's kill, it's safe to replace Reg with NewReg. We |
| 675 | // must also check all aliases of NewReg, because we can't define a |
| 676 | // register when any sub or super is already live. |
| 677 | if (State->IsLive(NewReg) || (KillIndices[Reg] > DefIndices[NewReg])) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 678 | DEBUG(dbgs() << "(live)"); |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 679 | goto next_super_reg; |
| 680 | } else { |
| 681 | bool found = false; |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 682 | for (MCRegAliasIterator AI(NewReg, TRI, false); AI.isValid(); ++AI) { |
| 683 | unsigned AliasReg = *AI; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 684 | if (State->IsLive(AliasReg) || |
| 685 | (KillIndices[Reg] > DefIndices[AliasReg])) { |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 686 | DEBUG(dbgs() << "(alias " << printReg(AliasReg, TRI) << " live)"); |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 687 | found = true; |
| 688 | break; |
| 689 | } |
| 690 | } |
| 691 | if (found) |
| 692 | goto next_super_reg; |
| 693 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 694 | |
Hal Finkel | c8cf2b8 | 2014-12-09 01:00:59 +0000 | [diff] [blame] | 695 | // We cannot rename 'Reg' to 'NewReg' if one of the uses of 'Reg' also |
| 696 | // defines 'NewReg' via an early-clobber operand. |
Benjamin Kramer | c9436ad | 2015-07-18 20:05:10 +0000 | [diff] [blame] | 697 | for (const auto &Q : make_range(RegRefs.equal_range(Reg))) { |
| 698 | MachineInstr *UseMI = Q.second.Operand->getParent(); |
Hal Finkel | c8cf2b8 | 2014-12-09 01:00:59 +0000 | [diff] [blame] | 699 | int Idx = UseMI->findRegisterDefOperandIdx(NewReg, false, true, TRI); |
| 700 | if (Idx == -1) |
| 701 | continue; |
| 702 | |
| 703 | if (UseMI->getOperand(Idx).isEarlyClobber()) { |
| 704 | DEBUG(dbgs() << "(ec)"); |
| 705 | goto next_super_reg; |
| 706 | } |
| 707 | } |
| 708 | |
Hal Finkel | e0a28e5 | 2015-08-31 07:51:36 +0000 | [diff] [blame] | 709 | // Also, we cannot rename 'Reg' to 'NewReg' if the instruction defining |
| 710 | // 'Reg' is an early-clobber define and that instruction also uses |
| 711 | // 'NewReg'. |
| 712 | for (const auto &Q : make_range(RegRefs.equal_range(Reg))) { |
| 713 | if (!Q.second.Operand->isDef() || !Q.second.Operand->isEarlyClobber()) |
| 714 | continue; |
| 715 | |
| 716 | MachineInstr *DefMI = Q.second.Operand->getParent(); |
| 717 | if (DefMI->readsRegister(NewReg, TRI)) { |
| 718 | DEBUG(dbgs() << "(ec)"); |
| 719 | goto next_super_reg; |
| 720 | } |
| 721 | } |
| 722 | |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 723 | // Record that 'Reg' can be renamed to 'NewReg'. |
| 724 | RenameMap.insert(std::pair<unsigned, unsigned>(Reg, NewReg)); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 725 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 726 | |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 727 | // If we fall-out here, then every register in the group can be |
| 728 | // renamed, as recorded in RenameMap. |
| 729 | RenameOrder.erase(SuperRC); |
| 730 | RenameOrder.insert(RenameOrderType::value_type(SuperRC, R)); |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 731 | DEBUG(dbgs() << "]\n"); |
David Goodwin | 5305dc0 | 2009-11-20 23:33:54 +0000 | [diff] [blame] | 732 | return true; |
| 733 | |
| 734 | next_super_reg: |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 735 | DEBUG(dbgs() << ']'); |
David Goodwin | 7d8878a | 2009-11-05 01:19:35 +0000 | [diff] [blame] | 736 | } while (R != EndR); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 737 | |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 738 | DEBUG(dbgs() << '\n'); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 739 | |
| 740 | // No registers are free and available! |
| 741 | return false; |
| 742 | } |
| 743 | |
| 744 | /// BreakAntiDependencies - Identifiy anti-dependencies within the |
| 745 | /// ScheduleDAG and break them by renaming registers. |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 746 | unsigned AggressiveAntiDepBreaker::BreakAntiDependencies( |
Eugene Zelenko | 4f81cdd | 2017-09-29 21:55:49 +0000 | [diff] [blame] | 747 | const std::vector<SUnit> &SUnits, |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 748 | MachineBasicBlock::iterator Begin, |
| 749 | MachineBasicBlock::iterator End, |
Devang Patel | f02a376 | 2011-06-02 21:26:52 +0000 | [diff] [blame] | 750 | unsigned InsertPosIndex, |
| 751 | DbgValueVector &DbgValues) { |
Bill Wendling | 030b028 | 2010-07-15 18:43:09 +0000 | [diff] [blame] | 752 | std::vector<unsigned> &KillIndices = State->GetKillIndices(); |
| 753 | std::vector<unsigned> &DefIndices = State->GetDefIndices(); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 754 | std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 755 | RegRefs = State->GetRegRefs(); |
| 756 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 757 | // The code below assumes that there is at least one instruction, |
| 758 | // so just duck out immediately if the block is empty. |
David Goodwin | 8501dbbe | 2009-11-03 20:57:50 +0000 | [diff] [blame] | 759 | if (SUnits.empty()) return 0; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 760 | |
David Goodwin | 7d8878a | 2009-11-05 01:19:35 +0000 | [diff] [blame] | 761 | // For each regclass the next register to use for renaming. |
| 762 | RenameOrderType RenameOrder; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 763 | |
| 764 | // ...need a map from MI to SUnit. |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 765 | std::map<MachineInstr *, const SUnit *> MISUnitMap; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 766 | for (unsigned i = 0, e = SUnits.size(); i != e; ++i) { |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 767 | const SUnit *SU = &SUnits[i]; |
| 768 | MISUnitMap.insert(std::pair<MachineInstr *, const SUnit *>(SU->getInstr(), |
| 769 | SU)); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 770 | } |
| 771 | |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 772 | // Track progress along the critical path through the SUnit graph as |
| 773 | // we walk the instructions. This is needed for regclasses that only |
| 774 | // break critical-path anti-dependencies. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 775 | const SUnit *CriticalPathSU = nullptr; |
| 776 | MachineInstr *CriticalPathMI = nullptr; |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 777 | if (CriticalPathSet.any()) { |
| 778 | for (unsigned i = 0, e = SUnits.size(); i != e; ++i) { |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 779 | const SUnit *SU = &SUnits[i]; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 780 | if (!CriticalPathSU || |
| 781 | ((SU->getDepth() + SU->Latency) > |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 782 | (CriticalPathSU->getDepth() + CriticalPathSU->Latency))) { |
| 783 | CriticalPathSU = SU; |
| 784 | } |
| 785 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 786 | |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 787 | CriticalPathMI = CriticalPathSU->getInstr(); |
| 788 | } |
| 789 | |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 790 | #ifndef NDEBUG |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 791 | DEBUG(dbgs() << "\n===== Aggressive anti-dependency breaking\n"); |
| 792 | DEBUG(dbgs() << "Available regs:"); |
David Goodwin | 80a03cc | 2009-11-20 19:32:48 +0000 | [diff] [blame] | 793 | for (unsigned Reg = 0; Reg < TRI->getNumRegs(); ++Reg) { |
| 794 | if (!State->IsLive(Reg)) |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 795 | DEBUG(dbgs() << " " << printReg(Reg, TRI)); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 796 | } |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 797 | DEBUG(dbgs() << '\n'); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 798 | #endif |
| 799 | |
Krzysztof Parzyszek | 143f684 | 2016-05-26 18:22:53 +0000 | [diff] [blame] | 800 | BitVector RegAliases(TRI->getNumRegs()); |
| 801 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 802 | // Attempt to break anti-dependence edges. Walk the instructions |
| 803 | // from the bottom up, tracking information about liveness as we go |
| 804 | // to help determine which registers are available. |
| 805 | unsigned Broken = 0; |
| 806 | unsigned Count = InsertPosIndex - 1; |
| 807 | for (MachineBasicBlock::iterator I = End, E = Begin; |
| 808 | I != E; --Count) { |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 809 | MachineInstr &MI = *--I; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 810 | |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 811 | if (MI.isDebugValue()) |
Hal Finkel | 8606e3c | 2012-01-16 22:53:41 +0000 | [diff] [blame] | 812 | continue; |
| 813 | |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 814 | DEBUG(dbgs() << "Anti: "); |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 815 | DEBUG(MI.dump()); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 816 | |
| 817 | std::set<unsigned> PassthruRegs; |
| 818 | GetPassthruRegs(MI, PassthruRegs); |
| 819 | |
| 820 | // Process the defs in MI... |
| 821 | PrescanInstruction(MI, Count, PassthruRegs); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 822 | |
David Goodwin | 80a03cc | 2009-11-20 19:32:48 +0000 | [diff] [blame] | 823 | // The dependence edges that represent anti- and output- |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 824 | // dependencies that are candidates for breaking. |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 825 | std::vector<const SDep *> Edges; |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 826 | const SUnit *PathSU = MISUnitMap[&MI]; |
David Goodwin | 80a03cc | 2009-11-20 19:32:48 +0000 | [diff] [blame] | 827 | AntiDepEdges(PathSU, Edges); |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 828 | |
| 829 | // If MI is not on the critical path, then we don't rename |
| 830 | // registers in the CriticalPathSet. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 831 | BitVector *ExcludeRegs = nullptr; |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 832 | if (&MI == CriticalPathMI) { |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 833 | CriticalPathSU = CriticalPathStep(CriticalPathSU); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 834 | CriticalPathMI = (CriticalPathSU) ? CriticalPathSU->getInstr() : nullptr; |
Hal Finkel | 6f1ff8e | 2013-09-12 04:22:31 +0000 | [diff] [blame] | 835 | } else if (CriticalPathSet.any()) { |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 836 | ExcludeRegs = &CriticalPathSet; |
| 837 | } |
| 838 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 839 | // Ignore KILL instructions (they form a group in ScanInstruction |
| 840 | // but don't cause any anti-dependence breaking themselves) |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 841 | if (!MI.isKill()) { |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 842 | // Attempt to break each anti-dependency... |
| 843 | for (unsigned i = 0, e = Edges.size(); i != e; ++i) { |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 844 | const SDep *Edge = Edges[i]; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 845 | SUnit *NextSU = Edge->getSUnit(); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 846 | |
David Goodwin | da83f7d | 2009-11-12 19:08:21 +0000 | [diff] [blame] | 847 | if ((Edge->getKind() != SDep::Anti) && |
| 848 | (Edge->getKind() != SDep::Output)) continue; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 849 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 850 | unsigned AntiDepReg = Edge->getReg(); |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 851 | DEBUG(dbgs() << "\tAntidep reg: " << printReg(AntiDepReg, TRI)); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 852 | assert(AntiDepReg != 0 && "Anti-dependence on reg0?"); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 853 | |
Jakob Stoklund Olesen | f67bf3e | 2012-10-15 22:41:03 +0000 | [diff] [blame] | 854 | if (!MRI.isAllocatable(AntiDepReg)) { |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 855 | // Don't break anti-dependencies on non-allocatable registers. |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 856 | DEBUG(dbgs() << " (non-allocatable)\n"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 857 | continue; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 858 | } else if (ExcludeRegs && ExcludeRegs->test(AntiDepReg)) { |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 859 | // Don't break anti-dependencies for critical path registers |
| 860 | // if not on the critical path |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 861 | DEBUG(dbgs() << " (not critical-path)\n"); |
David Goodwin | b9fe5d5 | 2009-11-13 19:52:48 +0000 | [diff] [blame] | 862 | continue; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 863 | } else if (PassthruRegs.count(AntiDepReg) != 0) { |
| 864 | // If the anti-dep register liveness "passes-thru", then |
| 865 | // don't try to change it. It will be changed along with |
| 866 | // the use if required to break an earlier antidep. |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 867 | DEBUG(dbgs() << " (passthru)\n"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 868 | continue; |
| 869 | } else { |
| 870 | // No anti-dep breaking for implicit deps |
Duncan P. N. Exon Smith | 5e6e8c7 | 2016-02-27 19:33:37 +0000 | [diff] [blame] | 871 | MachineOperand *AntiDepOp = MI.findRegisterDefOperand(AntiDepReg); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 872 | assert(AntiDepOp && "Can't find index for defined register operand"); |
| 873 | if (!AntiDepOp || AntiDepOp->isImplicit()) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 874 | DEBUG(dbgs() << " (implicit)\n"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 875 | continue; |
| 876 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 877 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 878 | // If the SUnit has other dependencies on the SUnit that |
| 879 | // it anti-depends on, don't bother breaking the |
| 880 | // anti-dependency since those edges would prevent such |
| 881 | // units from being scheduled past each other |
| 882 | // regardless. |
David Goodwin | 80a03cc | 2009-11-20 19:32:48 +0000 | [diff] [blame] | 883 | // |
| 884 | // Also, if there are dependencies on other SUnits with the |
| 885 | // same register as the anti-dependency, don't attempt to |
| 886 | // break it. |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 887 | for (SUnit::const_pred_iterator P = PathSU->Preds.begin(), |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 888 | PE = PathSU->Preds.end(); P != PE; ++P) { |
David Goodwin | 80a03cc | 2009-11-20 19:32:48 +0000 | [diff] [blame] | 889 | if (P->getSUnit() == NextSU ? |
| 890 | (P->getKind() != SDep::Anti || P->getReg() != AntiDepReg) : |
| 891 | (P->getKind() == SDep::Data && P->getReg() == AntiDepReg)) { |
| 892 | AntiDepReg = 0; |
| 893 | break; |
| 894 | } |
| 895 | } |
Dan Gohman | 35bc4d4 | 2010-04-19 23:11:58 +0000 | [diff] [blame] | 896 | for (SUnit::const_pred_iterator P = PathSU->Preds.begin(), |
David Goodwin | 80a03cc | 2009-11-20 19:32:48 +0000 | [diff] [blame] | 897 | PE = PathSU->Preds.end(); P != PE; ++P) { |
| 898 | if ((P->getSUnit() == NextSU) && (P->getKind() != SDep::Anti) && |
| 899 | (P->getKind() != SDep::Output)) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 900 | DEBUG(dbgs() << " (real dependency)\n"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 901 | AntiDepReg = 0; |
| 902 | break; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 903 | } else if ((P->getSUnit() != NextSU) && |
| 904 | (P->getKind() == SDep::Data) && |
David Goodwin | 80a03cc | 2009-11-20 19:32:48 +0000 | [diff] [blame] | 905 | (P->getReg() == AntiDepReg)) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 906 | DEBUG(dbgs() << " (other dependency)\n"); |
David Goodwin | 80a03cc | 2009-11-20 19:32:48 +0000 | [diff] [blame] | 907 | AntiDepReg = 0; |
| 908 | break; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 909 | } |
| 910 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 911 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 912 | if (AntiDepReg == 0) continue; |
Krzysztof Parzyszek | 143f684 | 2016-05-26 18:22:53 +0000 | [diff] [blame] | 913 | |
| 914 | // If the definition of the anti-dependency register does not start |
| 915 | // a new live range, bail out. This can happen if the anti-dep |
| 916 | // register is a sub-register of another register whose live range |
| 917 | // spans over PathSU. In such case, PathSU defines only a part of |
| 918 | // the larger register. |
| 919 | RegAliases.reset(); |
| 920 | for (MCRegAliasIterator AI(AntiDepReg, TRI, true); AI.isValid(); ++AI) |
| 921 | RegAliases.set(*AI); |
| 922 | for (SDep S : PathSU->Succs) { |
| 923 | SDep::Kind K = S.getKind(); |
| 924 | if (K != SDep::Data && K != SDep::Output && K != SDep::Anti) |
| 925 | continue; |
| 926 | unsigned R = S.getReg(); |
| 927 | if (!RegAliases[R]) |
| 928 | continue; |
| 929 | if (R == AntiDepReg || TRI->isSubRegister(AntiDepReg, R)) |
| 930 | continue; |
| 931 | AntiDepReg = 0; |
| 932 | break; |
| 933 | } |
| 934 | |
| 935 | if (AntiDepReg == 0) continue; |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 936 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 937 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 938 | assert(AntiDepReg != 0); |
| 939 | if (AntiDepReg == 0) continue; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 940 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 941 | // Determine AntiDepReg's register group. |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 942 | const unsigned GroupIndex = State->GetGroup(AntiDepReg); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 943 | if (GroupIndex == 0) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 944 | DEBUG(dbgs() << " (zero group)\n"); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 945 | continue; |
| 946 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 947 | |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 948 | DEBUG(dbgs() << '\n'); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 949 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 950 | // Look for a suitable register to use to break the anti-dependence. |
| 951 | std::map<unsigned, unsigned> RenameMap; |
David Goodwin | 7d8878a | 2009-11-05 01:19:35 +0000 | [diff] [blame] | 952 | if (FindSuitableFreeRegisters(GroupIndex, RenameOrder, RenameMap)) { |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 953 | DEBUG(dbgs() << "\tBreaking anti-dependence edge on " |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 954 | << printReg(AntiDepReg, TRI) << ":"); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 955 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 956 | // Handle each group register... |
| 957 | for (std::map<unsigned, unsigned>::iterator |
| 958 | S = RenameMap.begin(), E = RenameMap.end(); S != E; ++S) { |
| 959 | unsigned CurrReg = S->first; |
| 960 | unsigned NewReg = S->second; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 961 | |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 962 | DEBUG(dbgs() << " " << printReg(CurrReg, TRI) << "->" |
| 963 | << printReg(NewReg, TRI) << "(" |
| 964 | << RegRefs.count(CurrReg) << " refs)"); |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 965 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 966 | // Update the references to the old register CurrReg to |
| 967 | // refer to the new register NewReg. |
Benjamin Kramer | c9436ad | 2015-07-18 20:05:10 +0000 | [diff] [blame] | 968 | for (const auto &Q : make_range(RegRefs.equal_range(CurrReg))) { |
| 969 | Q.second.Operand->setReg(NewReg); |
Jim Grosbach | 12ac8f0 | 2010-06-01 23:48:44 +0000 | [diff] [blame] | 970 | // If the SU for the instruction being updated has debug |
| 971 | // information related to the anti-dependency register, make |
| 972 | // sure to update that as well. |
Benjamin Kramer | c9436ad | 2015-07-18 20:05:10 +0000 | [diff] [blame] | 973 | const SUnit *SU = MISUnitMap[Q.second.Operand->getParent()]; |
Jim Grosbach | 8485483 | 2010-06-02 15:29:36 +0000 | [diff] [blame] | 974 | if (!SU) continue; |
Andrew Ng | 10ebfe0 | 2017-04-25 15:39:57 +0000 | [diff] [blame] | 975 | UpdateDbgValues(DbgValues, Q.second.Operand->getParent(), |
| 976 | AntiDepReg, NewReg); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 977 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 978 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 979 | // We just went back in time and modified history; the |
| 980 | // liveness information for CurrReg is now inconsistent. Set |
| 981 | // the state as if it were dead. |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 982 | State->UnionGroups(NewReg, 0); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 983 | RegRefs.erase(NewReg); |
| 984 | DefIndices[NewReg] = DefIndices[CurrReg]; |
| 985 | KillIndices[NewReg] = KillIndices[CurrReg]; |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 986 | |
David Goodwin | e056d10 | 2009-10-26 22:31:16 +0000 | [diff] [blame] | 987 | State->UnionGroups(CurrReg, 0); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 988 | RegRefs.erase(CurrReg); |
| 989 | DefIndices[CurrReg] = KillIndices[CurrReg]; |
| 990 | KillIndices[CurrReg] = ~0u; |
| 991 | assert(((KillIndices[CurrReg] == ~0u) != |
| 992 | (DefIndices[CurrReg] == ~0u)) && |
| 993 | "Kill and Def maps aren't consistent for AntiDepReg!"); |
| 994 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 995 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 996 | ++Broken; |
David Greene | 75a2efb | 2009-12-24 00:14:25 +0000 | [diff] [blame] | 997 | DEBUG(dbgs() << '\n'); |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 998 | } |
| 999 | } |
| 1000 | } |
| 1001 | |
| 1002 | ScanInstruction(MI, Count); |
| 1003 | } |
Jim Grosbach | eb431da | 2010-01-06 16:48:02 +0000 | [diff] [blame] | 1004 | |
David Goodwin | de11f36 | 2009-10-26 19:32:42 +0000 | [diff] [blame] | 1005 | return Broken; |
| 1006 | } |