blob: b84eb36dc229c092bd55a53a5389bd6540e05189 [file] [log] [blame]
Tim Northover3b0846e2014-05-24 12:50:23 +00001//=- AArch64LoadStoreOptimizer.cpp - AArch64 load/store opt. pass -*- C++ -*-=//
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 contains a pass that performs load / store related peephole
11// optimizations. This pass should be run after register allocation.
12//
13//===----------------------------------------------------------------------===//
14
15#include "AArch64InstrInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000016#include "AArch64Subtarget.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000017#include "MCTargetDesc/AArch64AddressingModes.h"
18#include "llvm/ADT/BitVector.h"
Chad Rosierce8e5ab2015-05-21 21:36:46 +000019#include "llvm/ADT/SmallVector.h"
Benjamin Kramer1f8930e2014-07-25 11:42:14 +000020#include "llvm/ADT/Statistic.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000021#include "llvm/CodeGen/MachineBasicBlock.h"
22#include "llvm/CodeGen/MachineFunctionPass.h"
23#include "llvm/CodeGen/MachineInstr.h"
24#include "llvm/CodeGen/MachineInstrBuilder.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000025#include "llvm/Support/CommandLine.h"
26#include "llvm/Support/Debug.h"
27#include "llvm/Support/ErrorHandling.h"
28#include "llvm/Support/raw_ostream.h"
Benjamin Kramer1f8930e2014-07-25 11:42:14 +000029#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetMachine.h"
31#include "llvm/Target/TargetRegisterInfo.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000032using namespace llvm;
33
34#define DEBUG_TYPE "aarch64-ldst-opt"
35
36/// AArch64AllocLoadStoreOpt - Post-register allocation pass to combine
37/// load / store instructions to form ldp / stp instructions.
38
39STATISTIC(NumPairCreated, "Number of load/store pair instructions generated");
40STATISTIC(NumPostFolded, "Number of post-index updates folded");
41STATISTIC(NumPreFolded, "Number of pre-index updates folded");
42STATISTIC(NumUnscaledPairCreated,
43 "Number of load/store from unscaled generated");
44
Tilmann Scheller5d8d72c2014-06-04 12:40:35 +000045static cl::opt<unsigned> ScanLimit("aarch64-load-store-scan-limit",
46 cl::init(20), cl::Hidden);
Tim Northover3b0846e2014-05-24 12:50:23 +000047
48// Place holder while testing unscaled load/store combining
Tilmann Scheller5d8d72c2014-06-04 12:40:35 +000049static cl::opt<bool> EnableAArch64UnscaledMemOp(
50 "aarch64-unscaled-mem-op", cl::Hidden,
51 cl::desc("Allow AArch64 unscaled load/store combining"), cl::init(true));
Tim Northover3b0846e2014-05-24 12:50:23 +000052
Chad Rosier96530b32015-08-05 13:44:51 +000053namespace llvm {
54void initializeAArch64LoadStoreOptPass(PassRegistry &);
55}
56
57#define AARCH64_LOAD_STORE_OPT_NAME "AArch64 load / store optimization pass"
58
Tim Northover3b0846e2014-05-24 12:50:23 +000059namespace {
Chad Rosier96a18a92015-07-21 17:42:04 +000060
61typedef struct LdStPairFlags {
62 // If a matching instruction is found, MergeForward is set to true if the
63 // merge is to remove the first instruction and replace the second with
64 // a pair-wise insn, and false if the reverse is true.
65 bool MergeForward;
66
67 // SExtIdx gives the index of the result of the load pair that must be
68 // extended. The value of SExtIdx assumes that the paired load produces the
69 // value in this order: (I, returned iterator), i.e., -1 means no value has
70 // to be extended, 0 means I, and 1 means the returned iterator.
71 int SExtIdx;
72
73 LdStPairFlags() : MergeForward(false), SExtIdx(-1) {}
74
75 void setMergeForward(bool V = true) { MergeForward = V; }
76 bool getMergeForward() const { return MergeForward; }
77
78 void setSExtIdx(int V) { SExtIdx = V; }
79 int getSExtIdx() const { return SExtIdx; }
80
81} LdStPairFlags;
82
Tim Northover3b0846e2014-05-24 12:50:23 +000083struct AArch64LoadStoreOpt : public MachineFunctionPass {
84 static char ID;
Chad Rosier96530b32015-08-05 13:44:51 +000085 AArch64LoadStoreOpt() : MachineFunctionPass(ID) {
86 initializeAArch64LoadStoreOptPass(*PassRegistry::getPassRegistry());
87 }
Tim Northover3b0846e2014-05-24 12:50:23 +000088
89 const AArch64InstrInfo *TII;
90 const TargetRegisterInfo *TRI;
91
92 // Scan the instructions looking for a load/store that can be combined
93 // with the current instruction into a load/store pair.
94 // Return the matching instruction if one is found, else MBB->end().
Tim Northover3b0846e2014-05-24 12:50:23 +000095 MachineBasicBlock::iterator findMatchingInsn(MachineBasicBlock::iterator I,
Chad Rosier96a18a92015-07-21 17:42:04 +000096 LdStPairFlags &Flags,
Tim Northover3b0846e2014-05-24 12:50:23 +000097 unsigned Limit);
98 // Merge the two instructions indicated into a single pair-wise instruction.
Tilmann Scheller4aad3bd2014-06-04 12:36:28 +000099 // If MergeForward is true, erase the first instruction and fold its
Tim Northover3b0846e2014-05-24 12:50:23 +0000100 // operation into the second. If false, the reverse. Return the instruction
101 // following the first instruction (which may change during processing).
102 MachineBasicBlock::iterator
103 mergePairedInsns(MachineBasicBlock::iterator I,
Chad Rosier96a18a92015-07-21 17:42:04 +0000104 MachineBasicBlock::iterator Paired,
Chad Rosierfe5399f2015-07-21 17:47:56 +0000105 const LdStPairFlags &Flags);
Tim Northover3b0846e2014-05-24 12:50:23 +0000106
107 // Scan the instruction list to find a base register update that can
108 // be combined with the current instruction (a load or store) using
109 // pre or post indexed addressing with writeback. Scan forwards.
110 MachineBasicBlock::iterator
111 findMatchingUpdateInsnForward(MachineBasicBlock::iterator I, unsigned Limit,
112 int Value);
113
114 // Scan the instruction list to find a base register update that can
115 // be combined with the current instruction (a load or store) using
116 // pre or post indexed addressing with writeback. Scan backwards.
117 MachineBasicBlock::iterator
118 findMatchingUpdateInsnBackward(MachineBasicBlock::iterator I, unsigned Limit);
119
120 // Merge a pre-index base register update into a ld/st instruction.
121 MachineBasicBlock::iterator
122 mergePreIdxUpdateInsn(MachineBasicBlock::iterator I,
123 MachineBasicBlock::iterator Update);
124
125 // Merge a post-index base register update into a ld/st instruction.
126 MachineBasicBlock::iterator
127 mergePostIdxUpdateInsn(MachineBasicBlock::iterator I,
128 MachineBasicBlock::iterator Update);
129
130 bool optimizeBlock(MachineBasicBlock &MBB);
131
132 bool runOnMachineFunction(MachineFunction &Fn) override;
133
134 const char *getPassName() const override {
Chad Rosier96530b32015-08-05 13:44:51 +0000135 return AARCH64_LOAD_STORE_OPT_NAME;
Tim Northover3b0846e2014-05-24 12:50:23 +0000136 }
Tim Northover3b0846e2014-05-24 12:50:23 +0000137};
138char AArch64LoadStoreOpt::ID = 0;
Jim Grosbach1eee3df2014-08-11 22:42:31 +0000139} // namespace
Tim Northover3b0846e2014-05-24 12:50:23 +0000140
Chad Rosier96530b32015-08-05 13:44:51 +0000141INITIALIZE_PASS(AArch64LoadStoreOpt, "aarch64-ldst-opt",
142 AARCH64_LOAD_STORE_OPT_NAME, false, false)
143
Chad Rosier22eb7102015-08-06 17:37:18 +0000144static bool isUnscaledLdSt(unsigned Opc) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000145 switch (Opc) {
146 default:
147 return false;
148 case AArch64::STURSi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000149 case AArch64::STURDi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000150 case AArch64::STURQi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000151 case AArch64::STURWi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000152 case AArch64::STURXi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000153 case AArch64::LDURSi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000154 case AArch64::LDURDi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000155 case AArch64::LDURQi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000156 case AArch64::LDURWi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000157 case AArch64::LDURXi:
Quentin Colombet29f55332015-01-24 01:25:54 +0000158 case AArch64::LDURSWi:
159 return true;
Tim Northover3b0846e2014-05-24 12:50:23 +0000160 }
161}
162
Chad Rosier22eb7102015-08-06 17:37:18 +0000163static bool isUnscaledLdSt(MachineInstr *MI) {
164 return isUnscaledLdSt(MI->getOpcode());
165}
166
Tim Northover3b0846e2014-05-24 12:50:23 +0000167// Size in bytes of the data moved by an unscaled load or store
Chad Rosier22eb7102015-08-06 17:37:18 +0000168static int getMemSize(MachineInstr *MI) {
169 switch (MI->getOpcode()) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000170 default:
Tilmann Schellera17a4322014-06-03 16:33:13 +0000171 llvm_unreachable("Opcode has unknown size!");
Tim Northover3b0846e2014-05-24 12:50:23 +0000172 case AArch64::STRSui:
173 case AArch64::STURSi:
174 return 4;
175 case AArch64::STRDui:
176 case AArch64::STURDi:
177 return 8;
178 case AArch64::STRQui:
179 case AArch64::STURQi:
180 return 16;
181 case AArch64::STRWui:
182 case AArch64::STURWi:
183 return 4;
184 case AArch64::STRXui:
185 case AArch64::STURXi:
186 return 8;
187 case AArch64::LDRSui:
188 case AArch64::LDURSi:
189 return 4;
190 case AArch64::LDRDui:
191 case AArch64::LDURDi:
192 return 8;
193 case AArch64::LDRQui:
194 case AArch64::LDURQi:
195 return 16;
196 case AArch64::LDRWui:
197 case AArch64::LDURWi:
198 return 4;
199 case AArch64::LDRXui:
200 case AArch64::LDURXi:
201 return 8;
Quentin Colombet29f55332015-01-24 01:25:54 +0000202 case AArch64::LDRSWui:
203 case AArch64::LDURSWi:
204 return 4;
Tim Northover3b0846e2014-05-24 12:50:23 +0000205 }
206}
207
Quentin Colombet66b61632015-03-06 22:42:10 +0000208static unsigned getMatchingNonSExtOpcode(unsigned Opc,
209 bool *IsValidLdStrOpc = nullptr) {
210 if (IsValidLdStrOpc)
211 *IsValidLdStrOpc = true;
212 switch (Opc) {
213 default:
214 if (IsValidLdStrOpc)
215 *IsValidLdStrOpc = false;
216 return UINT_MAX;
217 case AArch64::STRDui:
218 case AArch64::STURDi:
219 case AArch64::STRQui:
220 case AArch64::STURQi:
221 case AArch64::STRWui:
222 case AArch64::STURWi:
223 case AArch64::STRXui:
224 case AArch64::STURXi:
225 case AArch64::LDRDui:
226 case AArch64::LDURDi:
227 case AArch64::LDRQui:
228 case AArch64::LDURQi:
229 case AArch64::LDRWui:
230 case AArch64::LDURWi:
231 case AArch64::LDRXui:
232 case AArch64::LDURXi:
233 case AArch64::STRSui:
234 case AArch64::STURSi:
235 case AArch64::LDRSui:
236 case AArch64::LDURSi:
237 return Opc;
238 case AArch64::LDRSWui:
239 return AArch64::LDRWui;
240 case AArch64::LDURSWi:
241 return AArch64::LDURWi;
242 }
243}
244
Tim Northover3b0846e2014-05-24 12:50:23 +0000245static unsigned getMatchingPairOpcode(unsigned Opc) {
246 switch (Opc) {
247 default:
248 llvm_unreachable("Opcode has no pairwise equivalent!");
249 case AArch64::STRSui:
250 case AArch64::STURSi:
251 return AArch64::STPSi;
252 case AArch64::STRDui:
253 case AArch64::STURDi:
254 return AArch64::STPDi;
255 case AArch64::STRQui:
256 case AArch64::STURQi:
257 return AArch64::STPQi;
258 case AArch64::STRWui:
259 case AArch64::STURWi:
260 return AArch64::STPWi;
261 case AArch64::STRXui:
262 case AArch64::STURXi:
263 return AArch64::STPXi;
264 case AArch64::LDRSui:
265 case AArch64::LDURSi:
266 return AArch64::LDPSi;
267 case AArch64::LDRDui:
268 case AArch64::LDURDi:
269 return AArch64::LDPDi;
270 case AArch64::LDRQui:
271 case AArch64::LDURQi:
272 return AArch64::LDPQi;
273 case AArch64::LDRWui:
274 case AArch64::LDURWi:
275 return AArch64::LDPWi;
276 case AArch64::LDRXui:
277 case AArch64::LDURXi:
278 return AArch64::LDPXi;
Quentin Colombet29f55332015-01-24 01:25:54 +0000279 case AArch64::LDRSWui:
280 case AArch64::LDURSWi:
281 return AArch64::LDPSWi;
Tim Northover3b0846e2014-05-24 12:50:23 +0000282 }
283}
284
285static unsigned getPreIndexedOpcode(unsigned Opc) {
286 switch (Opc) {
287 default:
288 llvm_unreachable("Opcode has no pre-indexed equivalent!");
Tilmann Scheller5d8d72c2014-06-04 12:40:35 +0000289 case AArch64::STRSui:
290 return AArch64::STRSpre;
291 case AArch64::STRDui:
292 return AArch64::STRDpre;
293 case AArch64::STRQui:
294 return AArch64::STRQpre;
295 case AArch64::STRWui:
296 return AArch64::STRWpre;
297 case AArch64::STRXui:
298 return AArch64::STRXpre;
299 case AArch64::LDRSui:
300 return AArch64::LDRSpre;
301 case AArch64::LDRDui:
302 return AArch64::LDRDpre;
303 case AArch64::LDRQui:
304 return AArch64::LDRQpre;
305 case AArch64::LDRWui:
306 return AArch64::LDRWpre;
307 case AArch64::LDRXui:
308 return AArch64::LDRXpre;
Quentin Colombet29f55332015-01-24 01:25:54 +0000309 case AArch64::LDRSWui:
310 return AArch64::LDRSWpre;
Tim Northover3b0846e2014-05-24 12:50:23 +0000311 }
312}
313
314static unsigned getPostIndexedOpcode(unsigned Opc) {
315 switch (Opc) {
316 default:
317 llvm_unreachable("Opcode has no post-indexed wise equivalent!");
318 case AArch64::STRSui:
319 return AArch64::STRSpost;
320 case AArch64::STRDui:
321 return AArch64::STRDpost;
322 case AArch64::STRQui:
323 return AArch64::STRQpost;
324 case AArch64::STRWui:
325 return AArch64::STRWpost;
326 case AArch64::STRXui:
327 return AArch64::STRXpost;
328 case AArch64::LDRSui:
329 return AArch64::LDRSpost;
330 case AArch64::LDRDui:
331 return AArch64::LDRDpost;
332 case AArch64::LDRQui:
333 return AArch64::LDRQpost;
334 case AArch64::LDRWui:
335 return AArch64::LDRWpost;
336 case AArch64::LDRXui:
337 return AArch64::LDRXpost;
Quentin Colombet29f55332015-01-24 01:25:54 +0000338 case AArch64::LDRSWui:
339 return AArch64::LDRSWpost;
Tim Northover3b0846e2014-05-24 12:50:23 +0000340 }
341}
342
Chad Rosierf77e9092015-08-06 15:50:12 +0000343static const MachineOperand &getLdStRegOp(const MachineInstr *MI) {
344 return MI->getOperand(0);
345}
346
347static const MachineOperand &getLdStBaseOp(const MachineInstr *MI) {
348 return MI->getOperand(1);
349}
350
351static const MachineOperand &getLdStOffsetOp(const MachineInstr *MI) {
352 return MI->getOperand(2);
353}
354
Tim Northover3b0846e2014-05-24 12:50:23 +0000355MachineBasicBlock::iterator
356AArch64LoadStoreOpt::mergePairedInsns(MachineBasicBlock::iterator I,
357 MachineBasicBlock::iterator Paired,
Chad Rosier96a18a92015-07-21 17:42:04 +0000358 const LdStPairFlags &Flags) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000359 MachineBasicBlock::iterator NextI = I;
360 ++NextI;
361 // If NextI is the second of the two instructions to be merged, we need
362 // to skip one further. Either way we merge will invalidate the iterator,
363 // and we don't need to scan the new instruction, as it's a pairwise
364 // instruction, which we're not considering for further action anyway.
365 if (NextI == Paired)
366 ++NextI;
367
Chad Rosier96a18a92015-07-21 17:42:04 +0000368 int SExtIdx = Flags.getSExtIdx();
Quentin Colombet66b61632015-03-06 22:42:10 +0000369 unsigned Opc =
370 SExtIdx == -1 ? I->getOpcode() : getMatchingNonSExtOpcode(I->getOpcode());
Chad Rosier22eb7102015-08-06 17:37:18 +0000371 bool IsUnscaled = isUnscaledLdSt(Opc);
Tim Northover3b0846e2014-05-24 12:50:23 +0000372 int OffsetStride =
373 IsUnscaled && EnableAArch64UnscaledMemOp ? getMemSize(I) : 1;
374
Chad Rosier96a18a92015-07-21 17:42:04 +0000375 bool MergeForward = Flags.getMergeForward();
Quentin Colombet66b61632015-03-06 22:42:10 +0000376 unsigned NewOpc = getMatchingPairOpcode(Opc);
Tim Northover3b0846e2014-05-24 12:50:23 +0000377 // Insert our new paired instruction after whichever of the paired
Tilmann Scheller4aad3bd2014-06-04 12:36:28 +0000378 // instructions MergeForward indicates.
379 MachineBasicBlock::iterator InsertionPoint = MergeForward ? Paired : I;
380 // Also based on MergeForward is from where we copy the base register operand
Tim Northover3b0846e2014-05-24 12:50:23 +0000381 // so we get the flags compatible with the input code.
Chad Rosierf77e9092015-08-06 15:50:12 +0000382 const MachineOperand &BaseRegOp =
383 MergeForward ? getLdStBaseOp(Paired) : getLdStBaseOp(I);
Tim Northover3b0846e2014-05-24 12:50:23 +0000384
385 // Which register is Rt and which is Rt2 depends on the offset order.
386 MachineInstr *RtMI, *Rt2MI;
Chad Rosierf77e9092015-08-06 15:50:12 +0000387 if (getLdStOffsetOp(I).getImm() ==
388 getLdStOffsetOp(Paired).getImm() + OffsetStride) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000389 RtMI = Paired;
390 Rt2MI = I;
Quentin Colombet66b61632015-03-06 22:42:10 +0000391 // Here we swapped the assumption made for SExtIdx.
392 // I.e., we turn ldp I, Paired into ldp Paired, I.
393 // Update the index accordingly.
394 if (SExtIdx != -1)
395 SExtIdx = (SExtIdx + 1) % 2;
Tim Northover3b0846e2014-05-24 12:50:23 +0000396 } else {
397 RtMI = I;
398 Rt2MI = Paired;
399 }
400 // Handle Unscaled
Chad Rosierf77e9092015-08-06 15:50:12 +0000401 int OffsetImm = getLdStOffsetOp(RtMI).getImm();
Tim Northover3b0846e2014-05-24 12:50:23 +0000402 if (IsUnscaled && EnableAArch64UnscaledMemOp)
403 OffsetImm /= OffsetStride;
404
405 // Construct the new instruction.
406 MachineInstrBuilder MIB = BuildMI(*I->getParent(), InsertionPoint,
407 I->getDebugLoc(), TII->get(NewOpc))
Chad Rosierf77e9092015-08-06 15:50:12 +0000408 .addOperand(getLdStRegOp(RtMI))
409 .addOperand(getLdStRegOp(Rt2MI))
Tim Northover3b0846e2014-05-24 12:50:23 +0000410 .addOperand(BaseRegOp)
411 .addImm(OffsetImm);
412 (void)MIB;
413
414 // FIXME: Do we need/want to copy the mem operands from the source
415 // instructions? Probably. What uses them after this?
416
417 DEBUG(dbgs() << "Creating pair load/store. Replacing instructions:\n ");
418 DEBUG(I->print(dbgs()));
419 DEBUG(dbgs() << " ");
420 DEBUG(Paired->print(dbgs()));
421 DEBUG(dbgs() << " with instruction:\n ");
Quentin Colombet66b61632015-03-06 22:42:10 +0000422
423 if (SExtIdx != -1) {
424 // Generate the sign extension for the proper result of the ldp.
425 // I.e., with X1, that would be:
426 // %W1<def> = KILL %W1, %X1<imp-def>
427 // %X1<def> = SBFMXri %X1<kill>, 0, 31
428 MachineOperand &DstMO = MIB->getOperand(SExtIdx);
429 // Right now, DstMO has the extended register, since it comes from an
430 // extended opcode.
431 unsigned DstRegX = DstMO.getReg();
432 // Get the W variant of that register.
433 unsigned DstRegW = TRI->getSubReg(DstRegX, AArch64::sub_32);
434 // Update the result of LDP to use the W instead of the X variant.
435 DstMO.setReg(DstRegW);
436 DEBUG(((MachineInstr *)MIB)->print(dbgs()));
437 DEBUG(dbgs() << "\n");
438 // Make the machine verifier happy by providing a definition for
439 // the X register.
440 // Insert this definition right after the generated LDP, i.e., before
441 // InsertionPoint.
442 MachineInstrBuilder MIBKill =
443 BuildMI(*I->getParent(), InsertionPoint, I->getDebugLoc(),
444 TII->get(TargetOpcode::KILL), DstRegW)
445 .addReg(DstRegW)
446 .addReg(DstRegX, RegState::Define);
447 MIBKill->getOperand(2).setImplicit();
448 // Create the sign extension.
449 MachineInstrBuilder MIBSXTW =
450 BuildMI(*I->getParent(), InsertionPoint, I->getDebugLoc(),
451 TII->get(AArch64::SBFMXri), DstRegX)
452 .addReg(DstRegX)
453 .addImm(0)
454 .addImm(31);
455 (void)MIBSXTW;
456 DEBUG(dbgs() << " Extend operand:\n ");
457 DEBUG(((MachineInstr *)MIBSXTW)->print(dbgs()));
458 DEBUG(dbgs() << "\n");
459 } else {
460 DEBUG(((MachineInstr *)MIB)->print(dbgs()));
461 DEBUG(dbgs() << "\n");
462 }
Tim Northover3b0846e2014-05-24 12:50:23 +0000463
464 // Erase the old instructions.
465 I->eraseFromParent();
466 Paired->eraseFromParent();
467
468 return NextI;
469}
470
471/// trackRegDefsUses - Remember what registers the specified instruction uses
472/// and modifies.
Pete Cooper7be8f8f2015-08-03 19:04:32 +0000473static void trackRegDefsUses(const MachineInstr *MI, BitVector &ModifiedRegs,
Tim Northover3b0846e2014-05-24 12:50:23 +0000474 BitVector &UsedRegs,
475 const TargetRegisterInfo *TRI) {
Pete Cooper7be8f8f2015-08-03 19:04:32 +0000476 for (const MachineOperand &MO : MI->operands()) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000477 if (MO.isRegMask())
478 ModifiedRegs.setBitsNotInMask(MO.getRegMask());
479
480 if (!MO.isReg())
481 continue;
482 unsigned Reg = MO.getReg();
483 if (MO.isDef()) {
484 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
485 ModifiedRegs.set(*AI);
486 } else {
487 assert(MO.isUse() && "Reg operand not a def and not a use?!?");
488 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
489 UsedRegs.set(*AI);
490 }
491 }
492}
493
494static bool inBoundsForPair(bool IsUnscaled, int Offset, int OffsetStride) {
495 if (!IsUnscaled && (Offset > 63 || Offset < -64))
496 return false;
497 if (IsUnscaled) {
498 // Convert the byte-offset used by unscaled into an "element" offset used
499 // by the scaled pair load/store instructions.
Tilmann Scheller4aad3bd2014-06-04 12:36:28 +0000500 int ElemOffset = Offset / OffsetStride;
501 if (ElemOffset > 63 || ElemOffset < -64)
Tim Northover3b0846e2014-05-24 12:50:23 +0000502 return false;
503 }
504 return true;
505}
506
507// Do alignment, specialized to power of 2 and for signed ints,
508// avoiding having to do a C-style cast from uint_64t to int when
509// using RoundUpToAlignment from include/llvm/Support/MathExtras.h.
510// FIXME: Move this function to include/MathExtras.h?
511static int alignTo(int Num, int PowOf2) {
512 return (Num + PowOf2 - 1) & ~(PowOf2 - 1);
513}
514
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000515static bool mayAlias(MachineInstr *MIa, MachineInstr *MIb,
516 const AArch64InstrInfo *TII) {
517 // One of the instructions must modify memory.
518 if (!MIa->mayStore() && !MIb->mayStore())
519 return false;
520
521 // Both instructions must be memory operations.
522 if (!MIa->mayLoadOrStore() && !MIb->mayLoadOrStore())
523 return false;
524
525 return !TII->areMemAccessesTriviallyDisjoint(MIa, MIb);
526}
527
528static bool mayAlias(MachineInstr *MIa,
529 SmallVectorImpl<MachineInstr *> &MemInsns,
530 const AArch64InstrInfo *TII) {
531 for (auto &MIb : MemInsns)
532 if (mayAlias(MIa, MIb, TII))
533 return true;
534
535 return false;
536}
537
Tim Northover3b0846e2014-05-24 12:50:23 +0000538/// findMatchingInsn - Scan the instructions looking for a load/store that can
539/// be combined with the current instruction into a load/store pair.
540MachineBasicBlock::iterator
541AArch64LoadStoreOpt::findMatchingInsn(MachineBasicBlock::iterator I,
Chad Rosier96a18a92015-07-21 17:42:04 +0000542 LdStPairFlags &Flags,
Quentin Colombet66b61632015-03-06 22:42:10 +0000543 unsigned Limit) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000544 MachineBasicBlock::iterator E = I->getParent()->end();
545 MachineBasicBlock::iterator MBBI = I;
546 MachineInstr *FirstMI = I;
547 ++MBBI;
548
Matthias Braunfa3872e2015-05-18 20:27:55 +0000549 unsigned Opc = FirstMI->getOpcode();
Tilmann Scheller4aad3bd2014-06-04 12:36:28 +0000550 bool MayLoad = FirstMI->mayLoad();
Chad Rosier22eb7102015-08-06 17:37:18 +0000551 bool IsUnscaled = isUnscaledLdSt(FirstMI);
Chad Rosierf77e9092015-08-06 15:50:12 +0000552 unsigned Reg = getLdStRegOp(FirstMI).getReg();
553 unsigned BaseReg = getLdStBaseOp(FirstMI).getReg();
554 int Offset = getLdStOffsetOp(FirstMI).getImm();
Tim Northover3b0846e2014-05-24 12:50:23 +0000555
556 // Early exit if the first instruction modifies the base register.
557 // e.g., ldr x0, [x0]
Tim Northover3b0846e2014-05-24 12:50:23 +0000558 if (FirstMI->modifiesRegister(BaseReg, TRI))
559 return E;
Chad Rosiercaed6db2015-08-10 17:17:19 +0000560
561 // Early exit if the offset if not possible to match. (6 bits of positive
562 // range, plus allow an extra one in case we find a later insn that matches
563 // with Offset-1)
Tim Northover3b0846e2014-05-24 12:50:23 +0000564 int OffsetStride =
565 IsUnscaled && EnableAArch64UnscaledMemOp ? getMemSize(FirstMI) : 1;
566 if (!inBoundsForPair(IsUnscaled, Offset, OffsetStride))
567 return E;
568
569 // Track which registers have been modified and used between the first insn
570 // (inclusive) and the second insn.
571 BitVector ModifiedRegs, UsedRegs;
572 ModifiedRegs.resize(TRI->getNumRegs());
573 UsedRegs.resize(TRI->getNumRegs());
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000574
575 // Remember any instructions that read/write memory between FirstMI and MI.
576 SmallVector<MachineInstr *, 4> MemInsns;
577
Tim Northover3b0846e2014-05-24 12:50:23 +0000578 for (unsigned Count = 0; MBBI != E && Count < Limit; ++MBBI) {
579 MachineInstr *MI = MBBI;
580 // Skip DBG_VALUE instructions. Otherwise debug info can affect the
581 // optimization by changing how far we scan.
582 if (MI->isDebugValue())
583 continue;
584
585 // Now that we know this is a real instruction, count it.
586 ++Count;
587
Quentin Colombet66b61632015-03-06 22:42:10 +0000588 bool CanMergeOpc = Opc == MI->getOpcode();
Chad Rosier96a18a92015-07-21 17:42:04 +0000589 Flags.setSExtIdx(-1);
Quentin Colombet66b61632015-03-06 22:42:10 +0000590 if (!CanMergeOpc) {
591 bool IsValidLdStrOpc;
592 unsigned NonSExtOpc = getMatchingNonSExtOpcode(Opc, &IsValidLdStrOpc);
Quentin Colombet7d8c74f2015-08-07 22:40:51 +0000593 assert(IsValidLdStrOpc &&
594 "Given Opc should be a Load or Store with an immediate");
Quentin Colombet66b61632015-03-06 22:42:10 +0000595 // Opc will be the first instruction in the pair.
Chad Rosier96a18a92015-07-21 17:42:04 +0000596 Flags.setSExtIdx(NonSExtOpc == (unsigned)Opc ? 1 : 0);
Quentin Colombet66b61632015-03-06 22:42:10 +0000597 CanMergeOpc = NonSExtOpc == getMatchingNonSExtOpcode(MI->getOpcode());
598 }
599
Chad Rosierf77e9092015-08-06 15:50:12 +0000600 if (CanMergeOpc && getLdStOffsetOp(MI).isImm()) {
Chad Rosierc56a9132015-08-10 18:42:45 +0000601 assert(MI->mayLoadOrStore() && "Expected memory operation.");
Tim Northover3b0846e2014-05-24 12:50:23 +0000602 // If we've found another instruction with the same opcode, check to see
603 // if the base and offset are compatible with our starting instruction.
604 // These instructions all have scaled immediate operands, so we just
605 // check for +1/-1. Make sure to check the new instruction offset is
606 // actually an immediate and not a symbolic reference destined for
607 // a relocation.
608 //
609 // Pairwise instructions have a 7-bit signed offset field. Single insns
610 // have a 12-bit unsigned offset field. To be a valid combine, the
611 // final offset must be in range.
Chad Rosierf77e9092015-08-06 15:50:12 +0000612 unsigned MIBaseReg = getLdStBaseOp(MI).getReg();
613 int MIOffset = getLdStOffsetOp(MI).getImm();
Tim Northover3b0846e2014-05-24 12:50:23 +0000614 if (BaseReg == MIBaseReg && ((Offset == MIOffset + OffsetStride) ||
615 (Offset + OffsetStride == MIOffset))) {
616 int MinOffset = Offset < MIOffset ? Offset : MIOffset;
617 // If this is a volatile load/store that otherwise matched, stop looking
618 // as something is going on that we don't have enough information to
619 // safely transform. Similarly, stop if we see a hint to avoid pairs.
620 if (MI->hasOrderedMemoryRef() || TII->isLdStPairSuppressed(MI))
621 return E;
622 // If the resultant immediate offset of merging these instructions
623 // is out of range for a pairwise instruction, bail and keep looking.
Chad Rosier22eb7102015-08-06 17:37:18 +0000624 bool MIIsUnscaled = isUnscaledLdSt(MI);
Tim Northover3b0846e2014-05-24 12:50:23 +0000625 if (!inBoundsForPair(MIIsUnscaled, MinOffset, OffsetStride)) {
626 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
Chad Rosierc56a9132015-08-10 18:42:45 +0000627 MemInsns.push_back(MI);
Tim Northover3b0846e2014-05-24 12:50:23 +0000628 continue;
629 }
630 // If the alignment requirements of the paired (scaled) instruction
631 // can't express the offset of the unscaled input, bail and keep
632 // looking.
633 if (IsUnscaled && EnableAArch64UnscaledMemOp &&
634 (alignTo(MinOffset, OffsetStride) != MinOffset)) {
635 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
Chad Rosierc56a9132015-08-10 18:42:45 +0000636 MemInsns.push_back(MI);
Tim Northover3b0846e2014-05-24 12:50:23 +0000637 continue;
638 }
639 // If the destination register of the loads is the same register, bail
640 // and keep looking. A load-pair instruction with both destination
641 // registers the same is UNPREDICTABLE and will result in an exception.
Chad Rosierf77e9092015-08-06 15:50:12 +0000642 if (MayLoad && Reg == getLdStRegOp(MI).getReg()) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000643 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
Chad Rosierc56a9132015-08-10 18:42:45 +0000644 MemInsns.push_back(MI);
Tim Northover3b0846e2014-05-24 12:50:23 +0000645 continue;
646 }
647
648 // If the Rt of the second instruction was not modified or used between
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000649 // the two instructions and none of the instructions between the second
650 // and first alias with the second, we can combine the second into the
651 // first.
Chad Rosierf77e9092015-08-06 15:50:12 +0000652 if (!ModifiedRegs[getLdStRegOp(MI).getReg()] &&
653 !(MI->mayLoad() && UsedRegs[getLdStRegOp(MI).getReg()]) &&
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000654 !mayAlias(MI, MemInsns, TII)) {
Chad Rosier96a18a92015-07-21 17:42:04 +0000655 Flags.setMergeForward(false);
Tim Northover3b0846e2014-05-24 12:50:23 +0000656 return MBBI;
657 }
658
659 // Likewise, if the Rt of the first instruction is not modified or used
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000660 // between the two instructions and none of the instructions between the
661 // first and the second alias with the first, we can combine the first
662 // into the second.
Chad Rosierf77e9092015-08-06 15:50:12 +0000663 if (!ModifiedRegs[getLdStRegOp(FirstMI).getReg()] &&
664 !(FirstMI->mayLoad() && UsedRegs[getLdStRegOp(FirstMI).getReg()]) &&
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000665 !mayAlias(FirstMI, MemInsns, TII)) {
Chad Rosier96a18a92015-07-21 17:42:04 +0000666 Flags.setMergeForward(true);
Tim Northover3b0846e2014-05-24 12:50:23 +0000667 return MBBI;
668 }
669 // Unable to combine these instructions due to interference in between.
670 // Keep looking.
671 }
672 }
673
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000674 // If the instruction wasn't a matching load or store. Stop searching if we
675 // encounter a call instruction that might modify memory.
676 if (MI->isCall())
Tim Northover3b0846e2014-05-24 12:50:23 +0000677 return E;
678
679 // Update modified / uses register lists.
680 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
681
682 // Otherwise, if the base register is modified, we have no match, so
683 // return early.
684 if (ModifiedRegs[BaseReg])
685 return E;
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000686
687 // Update list of instructions that read/write memory.
688 if (MI->mayLoadOrStore())
689 MemInsns.push_back(MI);
Tim Northover3b0846e2014-05-24 12:50:23 +0000690 }
691 return E;
692}
693
694MachineBasicBlock::iterator
695AArch64LoadStoreOpt::mergePreIdxUpdateInsn(MachineBasicBlock::iterator I,
696 MachineBasicBlock::iterator Update) {
697 assert((Update->getOpcode() == AArch64::ADDXri ||
698 Update->getOpcode() == AArch64::SUBXri) &&
699 "Unexpected base register update instruction to merge!");
700 MachineBasicBlock::iterator NextI = I;
701 // Return the instruction following the merged instruction, which is
702 // the instruction following our unmerged load. Unless that's the add/sub
703 // instruction we're merging, in which case it's the one after that.
704 if (++NextI == Update)
705 ++NextI;
706
707 int Value = Update->getOperand(2).getImm();
708 assert(AArch64_AM::getShiftValue(Update->getOperand(3).getImm()) == 0 &&
709 "Can't merge 1 << 12 offset into pre-indexed load / store");
710 if (Update->getOpcode() == AArch64::SUBXri)
711 Value = -Value;
712
713 unsigned NewOpc = getPreIndexedOpcode(I->getOpcode());
714 MachineInstrBuilder MIB =
715 BuildMI(*I->getParent(), I, I->getDebugLoc(), TII->get(NewOpc))
Chad Rosierf77e9092015-08-06 15:50:12 +0000716 .addOperand(getLdStRegOp(Update))
717 .addOperand(getLdStRegOp(I))
718 .addOperand(getLdStBaseOp(I))
Tim Northover3b0846e2014-05-24 12:50:23 +0000719 .addImm(Value);
720 (void)MIB;
721
722 DEBUG(dbgs() << "Creating pre-indexed load/store.");
723 DEBUG(dbgs() << " Replacing instructions:\n ");
724 DEBUG(I->print(dbgs()));
725 DEBUG(dbgs() << " ");
726 DEBUG(Update->print(dbgs()));
727 DEBUG(dbgs() << " with instruction:\n ");
728 DEBUG(((MachineInstr *)MIB)->print(dbgs()));
729 DEBUG(dbgs() << "\n");
730
731 // Erase the old instructions for the block.
732 I->eraseFromParent();
733 Update->eraseFromParent();
734
735 return NextI;
736}
737
738MachineBasicBlock::iterator AArch64LoadStoreOpt::mergePostIdxUpdateInsn(
739 MachineBasicBlock::iterator I, MachineBasicBlock::iterator Update) {
740 assert((Update->getOpcode() == AArch64::ADDXri ||
741 Update->getOpcode() == AArch64::SUBXri) &&
742 "Unexpected base register update instruction to merge!");
743 MachineBasicBlock::iterator NextI = I;
744 // Return the instruction following the merged instruction, which is
745 // the instruction following our unmerged load. Unless that's the add/sub
746 // instruction we're merging, in which case it's the one after that.
747 if (++NextI == Update)
748 ++NextI;
749
750 int Value = Update->getOperand(2).getImm();
751 assert(AArch64_AM::getShiftValue(Update->getOperand(3).getImm()) == 0 &&
752 "Can't merge 1 << 12 offset into post-indexed load / store");
753 if (Update->getOpcode() == AArch64::SUBXri)
754 Value = -Value;
755
756 unsigned NewOpc = getPostIndexedOpcode(I->getOpcode());
757 MachineInstrBuilder MIB =
758 BuildMI(*I->getParent(), I, I->getDebugLoc(), TII->get(NewOpc))
Chad Rosierf77e9092015-08-06 15:50:12 +0000759 .addOperand(getLdStRegOp(Update))
760 .addOperand(getLdStRegOp(I))
761 .addOperand(getLdStBaseOp(I))
Tim Northover3b0846e2014-05-24 12:50:23 +0000762 .addImm(Value);
763 (void)MIB;
764
765 DEBUG(dbgs() << "Creating post-indexed load/store.");
766 DEBUG(dbgs() << " Replacing instructions:\n ");
767 DEBUG(I->print(dbgs()));
768 DEBUG(dbgs() << " ");
769 DEBUG(Update->print(dbgs()));
770 DEBUG(dbgs() << " with instruction:\n ");
771 DEBUG(((MachineInstr *)MIB)->print(dbgs()));
772 DEBUG(dbgs() << "\n");
773
774 // Erase the old instructions for the block.
775 I->eraseFromParent();
776 Update->eraseFromParent();
777
778 return NextI;
779}
780
781static bool isMatchingUpdateInsn(MachineInstr *MI, unsigned BaseReg,
782 int Offset) {
783 switch (MI->getOpcode()) {
784 default:
785 break;
786 case AArch64::SUBXri:
787 // Negate the offset for a SUB instruction.
788 Offset *= -1;
789 // FALLTHROUGH
790 case AArch64::ADDXri:
791 // Make sure it's a vanilla immediate operand, not a relocation or
792 // anything else we can't handle.
793 if (!MI->getOperand(2).isImm())
794 break;
795 // Watch out for 1 << 12 shifted value.
796 if (AArch64_AM::getShiftValue(MI->getOperand(3).getImm()))
797 break;
798 // If the instruction has the base register as source and dest and the
799 // immediate will fit in a signed 9-bit integer, then we have a match.
Chad Rosierf77e9092015-08-06 15:50:12 +0000800 if (getLdStRegOp(MI).getReg() == BaseReg &&
801 getLdStBaseOp(MI).getReg() == BaseReg &&
802 getLdStOffsetOp(MI).getImm() <= 255 &&
803 getLdStOffsetOp(MI).getImm() >= -256) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000804 // If we have a non-zero Offset, we check that it matches the amount
805 // we're adding to the register.
806 if (!Offset || Offset == MI->getOperand(2).getImm())
807 return true;
808 }
809 break;
810 }
811 return false;
812}
813
814MachineBasicBlock::iterator AArch64LoadStoreOpt::findMatchingUpdateInsnForward(
815 MachineBasicBlock::iterator I, unsigned Limit, int Value) {
816 MachineBasicBlock::iterator E = I->getParent()->end();
817 MachineInstr *MemMI = I;
818 MachineBasicBlock::iterator MBBI = I;
819 const MachineFunction &MF = *MemMI->getParent()->getParent();
820
Chad Rosierf77e9092015-08-06 15:50:12 +0000821 unsigned DestReg = getLdStRegOp(MemMI).getReg();
822 unsigned BaseReg = getLdStBaseOp(MemMI).getReg();
823 int Offset = getLdStOffsetOp(MemMI).getImm() *
Tim Northover3b0846e2014-05-24 12:50:23 +0000824 TII->getRegClass(MemMI->getDesc(), 0, TRI, MF)->getSize();
825
826 // If the base register overlaps the destination register, we can't
827 // merge the update.
828 if (DestReg == BaseReg || TRI->isSubRegister(BaseReg, DestReg))
829 return E;
830
831 // Scan forward looking for post-index opportunities.
832 // Updating instructions can't be formed if the memory insn already
833 // has an offset other than the value we're looking for.
834 if (Offset != Value)
835 return E;
836
837 // Track which registers have been modified and used between the first insn
838 // (inclusive) and the second insn.
839 BitVector ModifiedRegs, UsedRegs;
840 ModifiedRegs.resize(TRI->getNumRegs());
841 UsedRegs.resize(TRI->getNumRegs());
842 ++MBBI;
843 for (unsigned Count = 0; MBBI != E; ++MBBI) {
844 MachineInstr *MI = MBBI;
845 // Skip DBG_VALUE instructions. Otherwise debug info can affect the
846 // optimization by changing how far we scan.
847 if (MI->isDebugValue())
848 continue;
849
850 // Now that we know this is a real instruction, count it.
851 ++Count;
852
853 // If we found a match, return it.
854 if (isMatchingUpdateInsn(MI, BaseReg, Value))
855 return MBBI;
856
857 // Update the status of what the instruction clobbered and used.
858 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
859
860 // Otherwise, if the base register is used or modified, we have no match, so
861 // return early.
862 if (ModifiedRegs[BaseReg] || UsedRegs[BaseReg])
863 return E;
864 }
865 return E;
866}
867
868MachineBasicBlock::iterator AArch64LoadStoreOpt::findMatchingUpdateInsnBackward(
869 MachineBasicBlock::iterator I, unsigned Limit) {
870 MachineBasicBlock::iterator B = I->getParent()->begin();
871 MachineBasicBlock::iterator E = I->getParent()->end();
872 MachineInstr *MemMI = I;
873 MachineBasicBlock::iterator MBBI = I;
874 const MachineFunction &MF = *MemMI->getParent()->getParent();
875
Chad Rosierf77e9092015-08-06 15:50:12 +0000876 unsigned DestReg = getLdStRegOp(MemMI).getReg();
877 unsigned BaseReg = getLdStBaseOp(MemMI).getReg();
878 int Offset = getLdStOffsetOp(MemMI).getImm();
Tim Northover3b0846e2014-05-24 12:50:23 +0000879 unsigned RegSize = TII->getRegClass(MemMI->getDesc(), 0, TRI, MF)->getSize();
880
881 // If the load/store is the first instruction in the block, there's obviously
882 // not any matching update. Ditto if the memory offset isn't zero.
883 if (MBBI == B || Offset != 0)
884 return E;
885 // If the base register overlaps the destination register, we can't
886 // merge the update.
887 if (DestReg == BaseReg || TRI->isSubRegister(BaseReg, DestReg))
888 return E;
889
890 // Track which registers have been modified and used between the first insn
891 // (inclusive) and the second insn.
892 BitVector ModifiedRegs, UsedRegs;
893 ModifiedRegs.resize(TRI->getNumRegs());
894 UsedRegs.resize(TRI->getNumRegs());
895 --MBBI;
896 for (unsigned Count = 0; MBBI != B; --MBBI) {
897 MachineInstr *MI = MBBI;
898 // Skip DBG_VALUE instructions. Otherwise debug info can affect the
899 // optimization by changing how far we scan.
900 if (MI->isDebugValue())
901 continue;
902
903 // Now that we know this is a real instruction, count it.
904 ++Count;
905
906 // If we found a match, return it.
907 if (isMatchingUpdateInsn(MI, BaseReg, RegSize))
908 return MBBI;
909
910 // Update the status of what the instruction clobbered and used.
911 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
912
913 // Otherwise, if the base register is used or modified, we have no match, so
914 // return early.
915 if (ModifiedRegs[BaseReg] || UsedRegs[BaseReg])
916 return E;
917 }
918 return E;
919}
920
921bool AArch64LoadStoreOpt::optimizeBlock(MachineBasicBlock &MBB) {
922 bool Modified = false;
923 // Two tranformations to do here:
924 // 1) Find loads and stores that can be merged into a single load or store
925 // pair instruction.
926 // e.g.,
927 // ldr x0, [x2]
928 // ldr x1, [x2, #8]
929 // ; becomes
930 // ldp x0, x1, [x2]
931 // 2) Find base register updates that can be merged into the load or store
932 // as a base-reg writeback.
933 // e.g.,
934 // ldr x0, [x2]
935 // add x2, x2, #4
936 // ; becomes
937 // ldr x0, [x2], #4
938
939 for (MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end();
940 MBBI != E;) {
941 MachineInstr *MI = MBBI;
942 switch (MI->getOpcode()) {
943 default:
944 // Just move on to the next instruction.
945 ++MBBI;
946 break;
947 case AArch64::STRSui:
948 case AArch64::STRDui:
949 case AArch64::STRQui:
950 case AArch64::STRXui:
951 case AArch64::STRWui:
952 case AArch64::LDRSui:
953 case AArch64::LDRDui:
954 case AArch64::LDRQui:
955 case AArch64::LDRXui:
956 case AArch64::LDRWui:
Quentin Colombet29f55332015-01-24 01:25:54 +0000957 case AArch64::LDRSWui:
Tim Northover3b0846e2014-05-24 12:50:23 +0000958 // do the unscaled versions as well
959 case AArch64::STURSi:
960 case AArch64::STURDi:
961 case AArch64::STURQi:
962 case AArch64::STURWi:
963 case AArch64::STURXi:
964 case AArch64::LDURSi:
965 case AArch64::LDURDi:
966 case AArch64::LDURQi:
967 case AArch64::LDURWi:
Quentin Colombet29f55332015-01-24 01:25:54 +0000968 case AArch64::LDURXi:
969 case AArch64::LDURSWi: {
Tim Northover3b0846e2014-05-24 12:50:23 +0000970 // If this is a volatile load/store, don't mess with it.
971 if (MI->hasOrderedMemoryRef()) {
972 ++MBBI;
973 break;
974 }
975 // Make sure this is a reg+imm (as opposed to an address reloc).
Chad Rosierf77e9092015-08-06 15:50:12 +0000976 if (!getLdStOffsetOp(MI).isImm()) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000977 ++MBBI;
978 break;
979 }
980 // Check if this load/store has a hint to avoid pair formation.
981 // MachineMemOperands hints are set by the AArch64StorePairSuppress pass.
982 if (TII->isLdStPairSuppressed(MI)) {
983 ++MBBI;
984 break;
985 }
986 // Look ahead up to ScanLimit instructions for a pairable instruction.
Chad Rosier96a18a92015-07-21 17:42:04 +0000987 LdStPairFlags Flags;
Tim Northover3b0846e2014-05-24 12:50:23 +0000988 MachineBasicBlock::iterator Paired =
Chad Rosier96a18a92015-07-21 17:42:04 +0000989 findMatchingInsn(MBBI, Flags, ScanLimit);
Tim Northover3b0846e2014-05-24 12:50:23 +0000990 if (Paired != E) {
991 // Merge the loads into a pair. Keeping the iterator straight is a
992 // pain, so we let the merge routine tell us what the next instruction
993 // is after it's done mucking about.
Chad Rosier96a18a92015-07-21 17:42:04 +0000994 MBBI = mergePairedInsns(MBBI, Paired, Flags);
Tim Northover3b0846e2014-05-24 12:50:23 +0000995
996 Modified = true;
997 ++NumPairCreated;
Chad Rosier22eb7102015-08-06 17:37:18 +0000998 if (isUnscaledLdSt(MI))
Tim Northover3b0846e2014-05-24 12:50:23 +0000999 ++NumUnscaledPairCreated;
1000 break;
1001 }
1002 ++MBBI;
1003 break;
1004 }
1005 // FIXME: Do the other instructions.
1006 }
1007 }
1008
1009 for (MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end();
1010 MBBI != E;) {
1011 MachineInstr *MI = MBBI;
1012 // Do update merging. It's simpler to keep this separate from the above
1013 // switch, though not strictly necessary.
Matthias Braunfa3872e2015-05-18 20:27:55 +00001014 unsigned Opc = MI->getOpcode();
Tim Northover3b0846e2014-05-24 12:50:23 +00001015 switch (Opc) {
1016 default:
1017 // Just move on to the next instruction.
1018 ++MBBI;
1019 break;
1020 case AArch64::STRSui:
1021 case AArch64::STRDui:
1022 case AArch64::STRQui:
1023 case AArch64::STRXui:
1024 case AArch64::STRWui:
1025 case AArch64::LDRSui:
1026 case AArch64::LDRDui:
1027 case AArch64::LDRQui:
1028 case AArch64::LDRXui:
1029 case AArch64::LDRWui:
1030 // do the unscaled versions as well
1031 case AArch64::STURSi:
1032 case AArch64::STURDi:
1033 case AArch64::STURQi:
1034 case AArch64::STURWi:
1035 case AArch64::STURXi:
1036 case AArch64::LDURSi:
1037 case AArch64::LDURDi:
1038 case AArch64::LDURQi:
1039 case AArch64::LDURWi:
1040 case AArch64::LDURXi: {
1041 // Make sure this is a reg+imm (as opposed to an address reloc).
Chad Rosierf77e9092015-08-06 15:50:12 +00001042 if (!getLdStOffsetOp(MI).isImm()) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001043 ++MBBI;
1044 break;
1045 }
1046 // Look ahead up to ScanLimit instructions for a mergable instruction.
1047 MachineBasicBlock::iterator Update =
1048 findMatchingUpdateInsnForward(MBBI, ScanLimit, 0);
1049 if (Update != E) {
1050 // Merge the update into the ld/st.
1051 MBBI = mergePostIdxUpdateInsn(MBBI, Update);
1052 Modified = true;
1053 ++NumPostFolded;
1054 break;
1055 }
1056 // Don't know how to handle pre/post-index versions, so move to the next
1057 // instruction.
Chad Rosier22eb7102015-08-06 17:37:18 +00001058 if (isUnscaledLdSt(Opc)) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001059 ++MBBI;
1060 break;
1061 }
1062
1063 // Look back to try to find a pre-index instruction. For example,
1064 // add x0, x0, #8
1065 // ldr x1, [x0]
1066 // merged into:
1067 // ldr x1, [x0, #8]!
1068 Update = findMatchingUpdateInsnBackward(MBBI, ScanLimit);
1069 if (Update != E) {
1070 // Merge the update into the ld/st.
1071 MBBI = mergePreIdxUpdateInsn(MBBI, Update);
1072 Modified = true;
1073 ++NumPreFolded;
1074 break;
1075 }
1076
1077 // Look forward to try to find a post-index instruction. For example,
1078 // ldr x1, [x0, #64]
1079 // add x0, x0, #64
1080 // merged into:
1081 // ldr x1, [x0, #64]!
1082
1083 // The immediate in the load/store is scaled by the size of the register
1084 // being loaded. The immediate in the add we're looking for,
1085 // however, is not, so adjust here.
1086 int Value = MI->getOperand(2).getImm() *
1087 TII->getRegClass(MI->getDesc(), 0, TRI, *(MBB.getParent()))
1088 ->getSize();
1089 Update = findMatchingUpdateInsnForward(MBBI, ScanLimit, Value);
1090 if (Update != E) {
1091 // Merge the update into the ld/st.
1092 MBBI = mergePreIdxUpdateInsn(MBBI, Update);
1093 Modified = true;
1094 ++NumPreFolded;
1095 break;
1096 }
1097
1098 // Nothing found. Just move to the next instruction.
1099 ++MBBI;
1100 break;
1101 }
1102 // FIXME: Do the other instructions.
1103 }
1104 }
1105
1106 return Modified;
1107}
1108
1109bool AArch64LoadStoreOpt::runOnMachineFunction(MachineFunction &Fn) {
Eric Christopher6c901622015-01-28 03:51:33 +00001110 TII = static_cast<const AArch64InstrInfo *>(Fn.getSubtarget().getInstrInfo());
1111 TRI = Fn.getSubtarget().getRegisterInfo();
Tim Northover3b0846e2014-05-24 12:50:23 +00001112
1113 bool Modified = false;
1114 for (auto &MBB : Fn)
1115 Modified |= optimizeBlock(MBB);
1116
1117 return Modified;
1118}
1119
1120// FIXME: Do we need/want a pre-alloc pass like ARM has to try to keep
1121// loads and stores near one another?
1122
Chad Rosier43f5c842015-08-05 12:40:13 +00001123/// createAArch64LoadStoreOptimizationPass - returns an instance of the
1124/// load / store optimization pass.
Tim Northover3b0846e2014-05-24 12:50:23 +00001125FunctionPass *llvm::createAArch64LoadStoreOptimizationPass() {
1126 return new AArch64LoadStoreOpt();
1127}