blob: 3d1ab4e3fc2b67db2dea21447c7db0c9d743982a [file] [log] [blame]
James Molloy3feea9c2014-08-08 12:33:21 +00001//===-- AArch64A57FPLoadBalancing.cpp - Balance FP ops statically on A57---===//
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// For best-case performance on Cortex-A57, we should try to use a balanced
10// mix of odd and even D-registers when performing a critical sequence of
11// independent, non-quadword FP/ASIMD floating-point multiply or
12// multiply-accumulate operations.
13//
14// This pass attempts to detect situations where the register allocation may
15// adversely affect this load balancing and to change the registers used so as
16// to better utilize the CPU.
17//
18// Ideally we'd just take each multiply or multiply-accumulate in turn and
19// allocate it alternating even or odd registers. However, multiply-accumulates
20// are most efficiently performed in the same functional unit as their
21// accumulation operand. Therefore this pass tries to find maximal sequences
22// ("Chains") of multiply-accumulates linked via their accumulation operand,
23// and assign them all the same "color" (oddness/evenness).
24//
25// This optimization affects S-register and D-register floating point
26// multiplies and FMADD/FMAs, as well as vector (floating point only) muls and
27// FMADD/FMA. Q register instructions (and 128-bit vector instructions) are
28// not affected.
29//===----------------------------------------------------------------------===//
30
31#include "AArch64.h"
32#include "AArch64InstrInfo.h"
33#include "AArch64Subtarget.h"
34#include "llvm/ADT/BitVector.h"
35#include "llvm/ADT/EquivalenceClasses.h"
36#include "llvm/CodeGen/MachineFunction.h"
37#include "llvm/CodeGen/MachineFunctionPass.h"
38#include "llvm/CodeGen/MachineInstr.h"
39#include "llvm/CodeGen/MachineInstrBuilder.h"
40#include "llvm/CodeGen/MachineRegisterInfo.h"
James Molloy3feea9c2014-08-08 12:33:21 +000041#include "llvm/CodeGen/RegisterClassInfo.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000042#include "llvm/CodeGen/RegisterScavenging.h"
James Molloy3feea9c2014-08-08 12:33:21 +000043#include "llvm/Support/CommandLine.h"
44#include "llvm/Support/Debug.h"
45#include "llvm/Support/raw_ostream.h"
46#include <list>
47using namespace llvm;
48
49#define DEBUG_TYPE "aarch64-a57-fp-load-balancing"
50
51// Enforce the algorithm to use the scavenged register even when the original
52// destination register is the correct color. Used for testing.
53static cl::opt<bool>
54TransformAll("aarch64-a57-fp-load-balancing-force-all",
55 cl::desc("Always modify dest registers regardless of color"),
56 cl::init(false), cl::Hidden);
57
58// Never use the balance information obtained from chains - return a specific
59// color always. Used for testing.
60static cl::opt<unsigned>
61OverrideBalance("aarch64-a57-fp-load-balancing-override",
62 cl::desc("Ignore balance information, always return "
63 "(1: Even, 2: Odd)."),
64 cl::init(0), cl::Hidden);
65
66//===----------------------------------------------------------------------===//
67// Helper functions
68
69// Is the instruction a type of multiply on 64-bit (or 32-bit) FPRs?
70static bool isMul(MachineInstr *MI) {
71 switch (MI->getOpcode()) {
72 case AArch64::FMULSrr:
73 case AArch64::FNMULSrr:
74 case AArch64::FMULDrr:
75 case AArch64::FNMULDrr:
James Molloy3feea9c2014-08-08 12:33:21 +000076 return true;
77 default:
78 return false;
79 }
80}
81
82// Is the instruction a type of FP multiply-accumulate on 64-bit (or 32-bit) FPRs?
83static bool isMla(MachineInstr *MI) {
84 switch (MI->getOpcode()) {
85 case AArch64::FMSUBSrrr:
86 case AArch64::FMADDSrrr:
87 case AArch64::FNMSUBSrrr:
88 case AArch64::FNMADDSrrr:
89 case AArch64::FMSUBDrrr:
90 case AArch64::FMADDDrrr:
91 case AArch64::FNMSUBDrrr:
92 case AArch64::FNMADDDrrr:
James Molloy3feea9c2014-08-08 12:33:21 +000093 return true;
94 default:
95 return false;
96 }
97}
98
Chad Rosier11d943d2015-01-29 22:57:37 +000099namespace llvm {
100static void initializeAArch64A57FPLoadBalancingPass(PassRegistry &);
101}
102
James Molloy3feea9c2014-08-08 12:33:21 +0000103//===----------------------------------------------------------------------===//
104
105namespace {
106/// A "color", which is either even or odd. Yes, these aren't really colors
107/// but the algorithm is conceptually doing two-color graph coloring.
108enum class Color { Even, Odd };
NAKAMURA Takumi08e30fd2014-08-08 17:00:59 +0000109#ifndef NDEBUG
James Molloy3feea9c2014-08-08 12:33:21 +0000110static const char *ColorNames[2] = { "Even", "Odd" };
NAKAMURA Takumi08e30fd2014-08-08 17:00:59 +0000111#endif
James Molloy3feea9c2014-08-08 12:33:21 +0000112
113class Chain;
114
115class AArch64A57FPLoadBalancing : public MachineFunctionPass {
James Molloy3feea9c2014-08-08 12:33:21 +0000116 MachineRegisterInfo *MRI;
117 const TargetRegisterInfo *TRI;
118 RegisterClassInfo RCI;
119
120public:
121 static char ID;
Chad Rosier11d943d2015-01-29 22:57:37 +0000122 explicit AArch64A57FPLoadBalancing() : MachineFunctionPass(ID) {
123 initializeAArch64A57FPLoadBalancingPass(*PassRegistry::getPassRegistry());
124 }
James Molloy3feea9c2014-08-08 12:33:21 +0000125
126 bool runOnMachineFunction(MachineFunction &F) override;
127
128 const char *getPassName() const override {
129 return "A57 FP Anti-dependency breaker";
130 }
131
132 void getAnalysisUsage(AnalysisUsage &AU) const override {
133 AU.setPreservesCFG();
134 MachineFunctionPass::getAnalysisUsage(AU);
135 }
136
137private:
138 bool runOnBasicBlock(MachineBasicBlock &MBB);
139 bool colorChainSet(std::vector<Chain*> GV, MachineBasicBlock &MBB,
140 int &Balance);
141 bool colorChain(Chain *G, Color C, MachineBasicBlock &MBB);
142 int scavengeRegister(Chain *G, Color C, MachineBasicBlock &MBB);
143 void scanInstruction(MachineInstr *MI, unsigned Idx,
James Molloyf0de7e52014-09-12 14:35:17 +0000144 std::map<unsigned, Chain*> &Active,
Benjamin Kramer76e37aa2015-03-13 16:59:29 +0000145 std::vector<std::unique_ptr<Chain>> &AllChains);
James Molloy3feea9c2014-08-08 12:33:21 +0000146 void maybeKillChain(MachineOperand &MO, unsigned Idx,
147 std::map<unsigned, Chain*> &RegChains);
148 Color getColor(unsigned Register);
149 Chain *getAndEraseNext(Color PreferredColor, std::vector<Chain*> &L);
150};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000151}
Chad Rosier11d943d2015-01-29 22:57:37 +0000152
James Molloy3feea9c2014-08-08 12:33:21 +0000153char AArch64A57FPLoadBalancing::ID = 0;
154
Chad Rosier11d943d2015-01-29 22:57:37 +0000155INITIALIZE_PASS_BEGIN(AArch64A57FPLoadBalancing, DEBUG_TYPE,
156 "AArch64 A57 FP Load-Balancing", false, false)
157INITIALIZE_PASS_END(AArch64A57FPLoadBalancing, DEBUG_TYPE,
158 "AArch64 A57 FP Load-Balancing", false, false)
159
160namespace {
Junmo Park3ec882f2016-01-06 03:41:30 +0000161/// A Chain is a sequence of instructions that are linked together by
James Molloy3feea9c2014-08-08 12:33:21 +0000162/// an accumulation operand. For example:
163///
164/// fmul d0<def>, ?
165/// fmla d1<def>, ?, ?, d0<kill>
166/// fmla d2<def>, ?, ?, d1<kill>
167///
168/// There may be other instructions interleaved in the sequence that
169/// do not belong to the chain. These other instructions must not use
170/// the "chain" register at any point.
171///
172/// We currently only support chains where the "chain" operand is killed
173/// at each link in the chain for simplicity.
174/// A chain has three important instructions - Start, Last and Kill.
175/// * The start instruction is the first instruction in the chain.
176/// * Last is the final instruction in the chain.
177/// * Kill may or may not be defined. If defined, Kill is the instruction
178/// where the outgoing value of the Last instruction is killed.
179/// This information is important as if we know the outgoing value is
180/// killed with no intervening uses, we can safely change its register.
181///
182/// Without a kill instruction, we must assume the outgoing value escapes
183/// beyond our model and either must not change its register or must
184/// create a fixup FMOV to keep the old register value consistent.
185///
186class Chain {
187public:
188 /// The important (marker) instructions.
189 MachineInstr *StartInst, *LastInst, *KillInst;
190 /// The index, from the start of the basic block, that each marker
191 /// appears. These are stored so we can do quick interval tests.
192 unsigned StartInstIdx, LastInstIdx, KillInstIdx;
193 /// All instructions in the chain.
194 std::set<MachineInstr*> Insts;
195 /// True if KillInst cannot be modified. If this is true,
196 /// we cannot change LastInst's outgoing register.
197 /// This will be true for tied values and regmasks.
198 bool KillIsImmutable;
199 /// The "color" of LastInst. This will be the preferred chain color,
200 /// as changing intermediate nodes is easy but changing the last
201 /// instruction can be more tricky.
202 Color LastColor;
203
Arnaud A. de Grandmaison6afbf2a2014-08-29 09:54:11 +0000204 Chain(MachineInstr *MI, unsigned Idx, Color C)
205 : StartInst(MI), LastInst(MI), KillInst(nullptr),
206 StartInstIdx(Idx), LastInstIdx(Idx), KillInstIdx(0),
207 LastColor(C) {
James Molloy3feea9c2014-08-08 12:33:21 +0000208 Insts.insert(MI);
209 }
210
211 /// Add a new instruction into the chain. The instruction's dest operand
212 /// has the given color.
213 void add(MachineInstr *MI, unsigned Idx, Color C) {
214 LastInst = MI;
215 LastInstIdx = Idx;
216 LastColor = C;
Arnaud A. de Grandmaison6afbf2a2014-08-29 09:54:11 +0000217 assert((KillInstIdx == 0 || LastInstIdx < KillInstIdx) &&
218 "Chain: broken invariant. A Chain can only be killed after its last "
219 "def");
James Molloy3feea9c2014-08-08 12:33:21 +0000220
221 Insts.insert(MI);
222 }
223
224 /// Return true if MI is a member of the chain.
225 bool contains(MachineInstr *MI) { return Insts.count(MI) > 0; }
226
227 /// Return the number of instructions in the chain.
228 unsigned size() const {
229 return Insts.size();
230 }
231
232 /// Inform the chain that its last active register (the dest register of
233 /// LastInst) is killed by MI with no intervening uses or defs.
234 void setKill(MachineInstr *MI, unsigned Idx, bool Immutable) {
235 KillInst = MI;
236 KillInstIdx = Idx;
237 KillIsImmutable = Immutable;
Arnaud A. de Grandmaison6afbf2a2014-08-29 09:54:11 +0000238 assert((KillInstIdx == 0 || LastInstIdx < KillInstIdx) &&
239 "Chain: broken invariant. A Chain can only be killed after its last "
240 "def");
James Molloy3feea9c2014-08-08 12:33:21 +0000241 }
242
243 /// Return the first instruction in the chain.
244 MachineInstr *getStart() const { return StartInst; }
245 /// Return the last instruction in the chain.
246 MachineInstr *getLast() const { return LastInst; }
247 /// Return the "kill" instruction (as set with setKill()) or NULL.
248 MachineInstr *getKill() const { return KillInst; }
249 /// Return an instruction that can be used as an iterator for the end
250 /// of the chain. This is the maximum of KillInst (if set) and LastInst.
James Molloy36b8a882014-08-26 13:41:31 +0000251 MachineBasicBlock::iterator getEnd() const {
James Molloy3feea9c2014-08-08 12:33:21 +0000252 return ++MachineBasicBlock::iterator(KillInst ? KillInst : LastInst);
253 }
254
255 /// Can the Kill instruction (assuming one exists) be modified?
256 bool isKillImmutable() const { return KillIsImmutable; }
257
258 /// Return the preferred color of this chain.
259 Color getPreferredColor() {
260 if (OverrideBalance != 0)
261 return OverrideBalance == 1 ? Color::Even : Color::Odd;
262 return LastColor;
263 }
264
265 /// Return true if this chain (StartInst..KillInst) overlaps with Other.
James Molloyf0de7e52014-09-12 14:35:17 +0000266 bool rangeOverlapsWith(const Chain &Other) const {
James Molloy3feea9c2014-08-08 12:33:21 +0000267 unsigned End = KillInst ? KillInstIdx : LastInstIdx;
James Molloyf0de7e52014-09-12 14:35:17 +0000268 unsigned OtherEnd = Other.KillInst ?
269 Other.KillInstIdx : Other.LastInstIdx;
James Molloy3feea9c2014-08-08 12:33:21 +0000270
James Molloyf0de7e52014-09-12 14:35:17 +0000271 return StartInstIdx <= OtherEnd && Other.StartInstIdx <= End;
James Molloy3feea9c2014-08-08 12:33:21 +0000272 }
273
274 /// Return true if this chain starts before Other.
Chad Rosierb23c4dd2015-01-30 19:55:40 +0000275 bool startsBefore(const Chain *Other) const {
James Molloy3feea9c2014-08-08 12:33:21 +0000276 return StartInstIdx < Other->StartInstIdx;
277 }
278
279 /// Return true if the group will require a fixup MOV at the end.
280 bool requiresFixup() const {
281 return (getKill() && isKillImmutable()) || !getKill();
282 }
283
284 /// Return a simple string representation of the chain.
285 std::string str() const {
286 std::string S;
287 raw_string_ostream OS(S);
Junmo Park3ec882f2016-01-06 03:41:30 +0000288
James Molloy3feea9c2014-08-08 12:33:21 +0000289 OS << "{";
Eric Christopher1cdefae2015-02-27 00:11:34 +0000290 StartInst->print(OS, /* SkipOpers= */true);
James Molloy3feea9c2014-08-08 12:33:21 +0000291 OS << " -> ";
Eric Christopher1cdefae2015-02-27 00:11:34 +0000292 LastInst->print(OS, /* SkipOpers= */true);
James Molloy3feea9c2014-08-08 12:33:21 +0000293 if (KillInst) {
294 OS << " (kill @ ";
Eric Christopher1cdefae2015-02-27 00:11:34 +0000295 KillInst->print(OS, /* SkipOpers= */true);
James Molloy3feea9c2014-08-08 12:33:21 +0000296 OS << ")";
297 }
298 OS << "}";
299
300 return OS.str();
301 }
302
303};
304
305} // end anonymous namespace
306
307//===----------------------------------------------------------------------===//
308
309bool AArch64A57FPLoadBalancing::runOnMachineFunction(MachineFunction &F) {
Eric Christopher6f1e5682015-03-03 23:22:40 +0000310 // Don't do anything if this isn't an A53 or A57.
311 if (!(F.getSubtarget<AArch64Subtarget>().isCortexA53() ||
312 F.getSubtarget<AArch64Subtarget>().isCortexA57()))
313 return false;
314
James Molloy3feea9c2014-08-08 12:33:21 +0000315 bool Changed = false;
316 DEBUG(dbgs() << "***** AArch64A57FPLoadBalancing *****\n");
317
James Molloy3feea9c2014-08-08 12:33:21 +0000318 MRI = &F.getRegInfo();
319 TRI = F.getRegInfo().getTargetRegisterInfo();
James Molloy3feea9c2014-08-08 12:33:21 +0000320 RCI.runOnMachineFunction(F);
321
322 for (auto &MBB : F) {
323 Changed |= runOnBasicBlock(MBB);
324 }
325
326 return Changed;
327}
328
329bool AArch64A57FPLoadBalancing::runOnBasicBlock(MachineBasicBlock &MBB) {
330 bool Changed = false;
331 DEBUG(dbgs() << "Running on MBB: " << MBB << " - scanning instructions...\n");
332
333 // First, scan the basic block producing a set of chains.
334
335 // The currently "active" chains - chains that can be added to and haven't
336 // been killed yet. This is keyed by register - all chains can only have one
337 // "link" register between each inst in the chain.
338 std::map<unsigned, Chain*> ActiveChains;
Benjamin Kramer76e37aa2015-03-13 16:59:29 +0000339 std::vector<std::unique_ptr<Chain>> AllChains;
James Molloy3feea9c2014-08-08 12:33:21 +0000340 unsigned Idx = 0;
341 for (auto &MI : MBB)
342 scanInstruction(&MI, Idx++, ActiveChains, AllChains);
343
344 DEBUG(dbgs() << "Scan complete, "<< AllChains.size() << " chains created.\n");
345
346 // Group the chains into disjoint sets based on their liveness range. This is
347 // a poor-man's version of graph coloring. Ideally we'd create an interference
348 // graph and perform full-on graph coloring on that, but;
349 // (a) That's rather heavyweight for only two colors.
350 // (b) We expect multiple disjoint interference regions - in practice the live
351 // range of chains is quite small and they are clustered between loads
352 // and stores.
353 EquivalenceClasses<Chain*> EC;
James Molloyf0de7e52014-09-12 14:35:17 +0000354 for (auto &I : AllChains)
355 EC.insert(I.get());
James Molloy3feea9c2014-08-08 12:33:21 +0000356
James Molloyf0de7e52014-09-12 14:35:17 +0000357 for (auto &I : AllChains)
358 for (auto &J : AllChains)
359 if (I != J && I->rangeOverlapsWith(*J))
360 EC.unionSets(I.get(), J.get());
James Molloy3feea9c2014-08-08 12:33:21 +0000361 DEBUG(dbgs() << "Created " << EC.getNumClasses() << " disjoint sets.\n");
362
363 // Now we assume that every member of an equivalence class interferes
364 // with every other member of that class, and with no members of other classes.
365
366 // Convert the EquivalenceClasses to a simpler set of sets.
367 std::vector<std::vector<Chain*> > V;
368 for (auto I = EC.begin(), E = EC.end(); I != E; ++I) {
369 std::vector<Chain*> Cs(EC.member_begin(I), EC.member_end());
370 if (Cs.empty()) continue;
Benjamin Kramere12a6ba2014-10-03 18:33:16 +0000371 V.push_back(std::move(Cs));
James Molloy3feea9c2014-08-08 12:33:21 +0000372 }
373
374 // Now we have a set of sets, order them by start address so
375 // we can iterate over them sequentially.
376 std::sort(V.begin(), V.end(),
377 [](const std::vector<Chain*> &A,
378 const std::vector<Chain*> &B) {
379 return A.front()->startsBefore(B.front());
380 });
381
382 // As we only have two colors, we can track the global (BB-level) balance of
383 // odds versus evens. We aim to keep this near zero to keep both execution
384 // units fed.
385 // Positive means we're even-heavy, negative we're odd-heavy.
386 //
387 // FIXME: If chains have interdependencies, for example:
388 // mul r0, r1, r2
389 // mul r3, r0, r1
390 // We do not model this and may color each one differently, assuming we'll
391 // get ILP when we obviously can't. This hasn't been seen to be a problem
392 // in practice so far, so we simplify the algorithm by ignoring it.
393 int Parity = 0;
394
395 for (auto &I : V)
Benjamin Kramere12a6ba2014-10-03 18:33:16 +0000396 Changed |= colorChainSet(std::move(I), MBB, Parity);
James Molloy3feea9c2014-08-08 12:33:21 +0000397
James Molloy3feea9c2014-08-08 12:33:21 +0000398 return Changed;
399}
400
401Chain *AArch64A57FPLoadBalancing::getAndEraseNext(Color PreferredColor,
402 std::vector<Chain*> &L) {
403 if (L.empty())
404 return nullptr;
405
406 // We try and get the best candidate from L to color next, given that our
407 // preferred color is "PreferredColor". L is ordered from larger to smaller
408 // chains. It is beneficial to color the large chains before the small chains,
409 // but if we can't find a chain of the maximum length with the preferred color,
410 // we fuzz the size and look for slightly smaller chains before giving up and
411 // returning a chain that must be recolored.
412
413 // FIXME: Does this need to be configurable?
414 const unsigned SizeFuzz = 1;
415 unsigned MinSize = L.front()->size() - SizeFuzz;
416 for (auto I = L.begin(), E = L.end(); I != E; ++I) {
417 if ((*I)->size() <= MinSize) {
418 // We've gone past the size limit. Return the previous item.
419 Chain *Ch = *--I;
420 L.erase(I);
421 return Ch;
422 }
423
424 if ((*I)->getPreferredColor() == PreferredColor) {
425 Chain *Ch = *I;
426 L.erase(I);
427 return Ch;
428 }
429 }
Junmo Park3ec882f2016-01-06 03:41:30 +0000430
James Molloy3feea9c2014-08-08 12:33:21 +0000431 // Bailout case - just return the first item.
432 Chain *Ch = L.front();
433 L.erase(L.begin());
434 return Ch;
435}
436
437bool AArch64A57FPLoadBalancing::colorChainSet(std::vector<Chain*> GV,
438 MachineBasicBlock &MBB,
439 int &Parity) {
440 bool Changed = false;
441 DEBUG(dbgs() << "colorChainSet(): #sets=" << GV.size() << "\n");
442
443 // Sort by descending size order so that we allocate the most important
444 // sets first.
445 // Tie-break equivalent sizes by sorting chains requiring fixups before
446 // those without fixups. The logic here is that we should look at the
447 // chains that we cannot change before we look at those we can,
448 // so the parity counter is updated and we know what color we should
449 // change them to!
Chad Rosierb23c4dd2015-01-30 19:55:40 +0000450 // Final tie-break with instruction order so pass output is stable (i.e. not
451 // dependent on malloc'd pointer values).
James Molloy3feea9c2014-08-08 12:33:21 +0000452 std::sort(GV.begin(), GV.end(), [](const Chain *G1, const Chain *G2) {
453 if (G1->size() != G2->size())
454 return G1->size() > G2->size();
Chad Rosierb23c4dd2015-01-30 19:55:40 +0000455 if (G1->requiresFixup() != G2->requiresFixup())
456 return G1->requiresFixup() > G2->requiresFixup();
457 // Make sure startsBefore() produces a stable final order.
458 assert((G1 == G2 || (G1->startsBefore(G2) ^ G2->startsBefore(G1))) &&
459 "Starts before not total order!");
460 return G1->startsBefore(G2);
James Molloy3feea9c2014-08-08 12:33:21 +0000461 });
462
463 Color PreferredColor = Parity < 0 ? Color::Even : Color::Odd;
464 while (Chain *G = getAndEraseNext(PreferredColor, GV)) {
465 // Start off by assuming we'll color to our own preferred color.
466 Color C = PreferredColor;
467 if (Parity == 0)
468 // But if we really don't care, use the chain's preferred color.
469 C = G->getPreferredColor();
470
471 DEBUG(dbgs() << " - Parity=" << Parity << ", Color="
472 << ColorNames[(int)C] << "\n");
473
474 // If we'll need a fixup FMOV, don't bother. Testing has shown that this
475 // happens infrequently and when it does it has at least a 50% chance of
476 // slowing code down instead of speeding it up.
477 if (G->requiresFixup() && C != G->getPreferredColor()) {
478 C = G->getPreferredColor();
479 DEBUG(dbgs() << " - " << G->str() << " - not worthwhile changing; "
480 "color remains " << ColorNames[(int)C] << "\n");
481 }
482
483 Changed |= colorChain(G, C, MBB);
484
485 Parity += (C == Color::Even) ? G->size() : -G->size();
486 PreferredColor = Parity < 0 ? Color::Even : Color::Odd;
487 }
488
489 return Changed;
490}
491
492int AArch64A57FPLoadBalancing::scavengeRegister(Chain *G, Color C,
493 MachineBasicBlock &MBB) {
494 RegScavenger RS;
495 RS.enterBasicBlock(&MBB);
496 RS.forward(MachineBasicBlock::iterator(G->getStart()));
497
Junmo Park3ec882f2016-01-06 03:41:30 +0000498 // Can we find an appropriate register that is available throughout the life
James Molloy3feea9c2014-08-08 12:33:21 +0000499 // of the chain?
500 unsigned RegClassID = G->getStart()->getDesc().OpInfo[0].RegClass;
501 BitVector AvailableRegs = RS.getRegsAvailable(TRI->getRegClass(RegClassID));
502 for (MachineBasicBlock::iterator I = G->getStart(), E = G->getEnd();
503 I != E; ++I) {
504 RS.forward(I);
505 AvailableRegs &= RS.getRegsAvailable(TRI->getRegClass(RegClassID));
506
Chad Rosierba0e0662014-11-24 18:57:58 +0000507 // Remove any registers clobbered by a regmask or any def register that is
508 // immediately dead.
James Molloy3feea9c2014-08-08 12:33:21 +0000509 for (auto J : I->operands()) {
510 if (J.isRegMask())
511 AvailableRegs.clearBitsNotInMask(J.getRegMask());
Chad Rosierba0e0662014-11-24 18:57:58 +0000512
Chad Rosier85a34632015-07-06 14:46:34 +0000513 if (J.isReg() && J.isDef()) {
514 MCRegAliasIterator AI(J.getReg(), TRI, /*IncludeSelf=*/true);
515 if (J.isDead())
516 for (; AI.isValid(); ++AI)
517 AvailableRegs.reset(*AI);
518#ifndef NDEBUG
519 else
520 for (; AI.isValid(); ++AI)
521 assert(!AvailableRegs[*AI] &&
522 "Non-dead def should have been removed by now!");
523#endif
Chad Rosierba0e0662014-11-24 18:57:58 +0000524 }
James Molloy3feea9c2014-08-08 12:33:21 +0000525 }
526 }
527
528 // Make sure we allocate in-order, to get the cheapest registers first.
529 auto Ord = RCI.getOrder(TRI->getRegClass(RegClassID));
530 for (auto Reg : Ord) {
531 if (!AvailableRegs[Reg])
532 continue;
533 if ((C == Color::Even && (Reg % 2) == 0) ||
534 (C == Color::Odd && (Reg % 2) == 1))
535 return Reg;
536 }
537
538 return -1;
539}
540
541bool AArch64A57FPLoadBalancing::colorChain(Chain *G, Color C,
542 MachineBasicBlock &MBB) {
543 bool Changed = false;
544 DEBUG(dbgs() << " - colorChain(" << G->str() << ", "
545 << ColorNames[(int)C] << ")\n");
546
547 // Try and obtain a free register of the right class. Without a register
548 // to play with we cannot continue.
549 int Reg = scavengeRegister(G, C, MBB);
550 if (Reg == -1) {
551 DEBUG(dbgs() << "Scavenging (thus coloring) failed!\n");
552 return false;
553 }
554 DEBUG(dbgs() << " - Scavenged register: " << TRI->getName(Reg) << "\n");
555
556 std::map<unsigned, unsigned> Substs;
557 for (MachineBasicBlock::iterator I = G->getStart(), E = G->getEnd();
558 I != E; ++I) {
559 if (!G->contains(I) &&
560 (&*I != G->getKill() || G->isKillImmutable()))
561 continue;
562
563 // I is a member of G, or I is a mutable instruction that kills G.
564
565 std::vector<unsigned> ToErase;
566 for (auto &U : I->operands()) {
567 if (U.isReg() && U.isUse() && Substs.find(U.getReg()) != Substs.end()) {
568 unsigned OrigReg = U.getReg();
569 U.setReg(Substs[OrigReg]);
570 if (U.isKill())
571 // Don't erase straight away, because there may be other operands
572 // that also reference this substitution!
573 ToErase.push_back(OrigReg);
574 } else if (U.isRegMask()) {
575 for (auto J : Substs) {
576 if (U.clobbersPhysReg(J.first))
577 ToErase.push_back(J.first);
578 }
579 }
580 }
581 // Now it's safe to remove the substs identified earlier.
582 for (auto J : ToErase)
583 Substs.erase(J);
584
585 // Only change the def if this isn't the last instruction.
586 if (&*I != G->getKill()) {
587 MachineOperand &MO = I->getOperand(0);
588
589 bool Change = TransformAll || getColor(MO.getReg()) != C;
590 if (G->requiresFixup() && &*I == G->getLast())
591 Change = false;
592
593 if (Change) {
594 Substs[MO.getReg()] = Reg;
595 MO.setReg(Reg);
James Molloy3feea9c2014-08-08 12:33:21 +0000596
597 Changed = true;
598 }
599 }
600 }
601 assert(Substs.size() == 0 && "No substitutions should be left active!");
602
603 if (G->getKill()) {
604 DEBUG(dbgs() << " - Kill instruction seen.\n");
605 } else {
606 // We didn't have a kill instruction, but we didn't seem to need to change
607 // the destination register anyway.
608 DEBUG(dbgs() << " - Destination register not changed.\n");
609 }
610 return Changed;
611}
612
Benjamin Kramer76e37aa2015-03-13 16:59:29 +0000613void AArch64A57FPLoadBalancing::scanInstruction(
614 MachineInstr *MI, unsigned Idx, std::map<unsigned, Chain *> &ActiveChains,
615 std::vector<std::unique_ptr<Chain>> &AllChains) {
James Molloy3feea9c2014-08-08 12:33:21 +0000616 // Inspect "MI", updating ActiveChains and AllChains.
617
618 if (isMul(MI)) {
619
James Molloy05ce9992014-09-14 18:24:26 +0000620 for (auto &I : MI->uses())
621 maybeKillChain(I, Idx, ActiveChains);
622 for (auto &I : MI->defs())
James Molloy3feea9c2014-08-08 12:33:21 +0000623 maybeKillChain(I, Idx, ActiveChains);
624
625 // Create a new chain. Multiplies don't require forwarding so can go on any
626 // unit.
627 unsigned DestReg = MI->getOperand(0).getReg();
628
629 DEBUG(dbgs() << "New chain started for register "
630 << TRI->getName(DestReg) << " at " << *MI);
631
James Molloyf0de7e52014-09-12 14:35:17 +0000632 auto G = llvm::make_unique<Chain>(MI, Idx, getColor(DestReg));
633 ActiveChains[DestReg] = G.get();
Benjamin Kramer76e37aa2015-03-13 16:59:29 +0000634 AllChains.push_back(std::move(G));
James Molloy3feea9c2014-08-08 12:33:21 +0000635
636 } else if (isMla(MI)) {
637
638 // It is beneficial to keep MLAs on the same functional unit as their
639 // accumulator operand.
640 unsigned DestReg = MI->getOperand(0).getReg();
641 unsigned AccumReg = MI->getOperand(3).getReg();
642
643 maybeKillChain(MI->getOperand(1), Idx, ActiveChains);
644 maybeKillChain(MI->getOperand(2), Idx, ActiveChains);
645 if (DestReg != AccumReg)
646 maybeKillChain(MI->getOperand(0), Idx, ActiveChains);
647
648 if (ActiveChains.find(AccumReg) != ActiveChains.end()) {
649 DEBUG(dbgs() << "Chain found for accumulator register "
650 << TRI->getName(AccumReg) << " in MI " << *MI);
651
652 // For simplicity we only chain together sequences of MULs/MLAs where the
653 // accumulator register is killed on each instruction. This means we don't
654 // need to track other uses of the registers we want to rewrite.
655 //
656 // FIXME: We could extend to handle the non-kill cases for more coverage.
657 if (MI->getOperand(3).isKill()) {
658 // Add to chain.
659 DEBUG(dbgs() << "Instruction was successfully added to chain.\n");
660 ActiveChains[AccumReg]->add(MI, Idx, getColor(DestReg));
661 // Handle cases where the destination is not the same as the accumulator.
Arnaud A. de Grandmaison6afbf2a2014-08-29 09:54:11 +0000662 if (DestReg != AccumReg) {
663 ActiveChains[DestReg] = ActiveChains[AccumReg];
664 ActiveChains.erase(AccumReg);
665 }
James Molloy3feea9c2014-08-08 12:33:21 +0000666 return;
667 }
668
669 DEBUG(dbgs() << "Cannot add to chain because accumulator operand wasn't "
670 << "marked <kill>!\n");
671 maybeKillChain(MI->getOperand(3), Idx, ActiveChains);
672 }
673
674 DEBUG(dbgs() << "Creating new chain for dest register "
675 << TRI->getName(DestReg) << "\n");
James Molloyf0de7e52014-09-12 14:35:17 +0000676 auto G = llvm::make_unique<Chain>(MI, Idx, getColor(DestReg));
677 ActiveChains[DestReg] = G.get();
Benjamin Kramer76e37aa2015-03-13 16:59:29 +0000678 AllChains.push_back(std::move(G));
James Molloy3feea9c2014-08-08 12:33:21 +0000679
680 } else {
681
682 // Non-MUL or MLA instruction. Invalidate any chain in the uses or defs
683 // lists.
James Molloy05ce9992014-09-14 18:24:26 +0000684 for (auto &I : MI->uses())
685 maybeKillChain(I, Idx, ActiveChains);
686 for (auto &I : MI->defs())
James Molloy3feea9c2014-08-08 12:33:21 +0000687 maybeKillChain(I, Idx, ActiveChains);
688
689 }
690}
691
692void AArch64A57FPLoadBalancing::
693maybeKillChain(MachineOperand &MO, unsigned Idx,
694 std::map<unsigned, Chain*> &ActiveChains) {
695 // Given an operand and the set of active chains (keyed by register),
696 // determine if a chain should be ended and remove from ActiveChains.
697 MachineInstr *MI = MO.getParent();
698
699 if (MO.isReg()) {
700
701 // If this is a KILL of a current chain, record it.
702 if (MO.isKill() && ActiveChains.find(MO.getReg()) != ActiveChains.end()) {
703 DEBUG(dbgs() << "Kill seen for chain " << TRI->getName(MO.getReg())
704 << "\n");
705 ActiveChains[MO.getReg()]->setKill(MI, Idx, /*Immutable=*/MO.isTied());
706 }
707 ActiveChains.erase(MO.getReg());
708
709 } else if (MO.isRegMask()) {
710
711 for (auto I = ActiveChains.begin(), E = ActiveChains.end();
Tim Northovere42fac52014-08-08 17:31:52 +0000712 I != E;) {
James Molloy3feea9c2014-08-08 12:33:21 +0000713 if (MO.clobbersPhysReg(I->first)) {
714 DEBUG(dbgs() << "Kill (regmask) seen for chain "
715 << TRI->getName(I->first) << "\n");
716 I->second->setKill(MI, Idx, /*Immutable=*/true);
Tim Northovere42fac52014-08-08 17:31:52 +0000717 ActiveChains.erase(I++);
718 } else
719 ++I;
James Molloy3feea9c2014-08-08 12:33:21 +0000720 }
721
722 }
723}
724
725Color AArch64A57FPLoadBalancing::getColor(unsigned Reg) {
726 if ((TRI->getEncodingValue(Reg) % 2) == 0)
727 return Color::Even;
728 else
729 return Color::Odd;
730}
731
732// Factory function used by AArch64TargetMachine to add the pass to the passmanager.
733FunctionPass *llvm::createAArch64A57FPLoadBalancing() {
734 return new AArch64A57FPLoadBalancing();
735}