blob: 9243eb91cc1ac708adc3c24619e7a4ac6adb7484 [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"
Eugene Zelenko11f69072017-01-25 00:29:26 +000021#include "llvm/ADT/StringRef.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000022#include "llvm/ADT/iterator_range.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000023#include "llvm/CodeGen/MachineBasicBlock.h"
Eugene Zelenko11f69072017-01-25 00:29:26 +000024#include "llvm/CodeGen/MachineFunction.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000025#include "llvm/CodeGen/MachineFunctionPass.h"
26#include "llvm/CodeGen/MachineInstr.h"
27#include "llvm/CodeGen/MachineInstrBuilder.h"
Eugene Zelenko11f69072017-01-25 00:29:26 +000028#include "llvm/CodeGen/MachineOperand.h"
29#include "llvm/IR/DebugLoc.h"
30#include "llvm/MC/MCRegisterInfo.h"
31#include "llvm/Pass.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000032#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/Debug.h"
34#include "llvm/Support/ErrorHandling.h"
35#include "llvm/Support/raw_ostream.h"
Benjamin Kramer1f8930e2014-07-25 11:42:14 +000036#include "llvm/Target/TargetRegisterInfo.h"
Eugene Zelenko11f69072017-01-25 00:29:26 +000037#include <cassert>
38#include <cstdint>
39#include <iterator>
40#include <limits>
41
Tim Northover3b0846e2014-05-24 12:50:23 +000042using namespace llvm;
43
44#define DEBUG_TYPE "aarch64-ldst-opt"
45
Tim Northover3b0846e2014-05-24 12:50:23 +000046STATISTIC(NumPairCreated, "Number of load/store pair instructions generated");
47STATISTIC(NumPostFolded, "Number of post-index updates folded");
48STATISTIC(NumPreFolded, "Number of pre-index updates folded");
49STATISTIC(NumUnscaledPairCreated,
50 "Number of load/store from unscaled generated");
Jun Bum Lim80ec0d32015-11-20 21:14:07 +000051STATISTIC(NumZeroStoresPromoted, "Number of narrow zero stores promoted");
Jun Bum Lim6755c3b2015-12-22 16:36:16 +000052STATISTIC(NumLoadsFromStoresPromoted, "Number of loads from stores promoted");
Tim Northover3b0846e2014-05-24 12:50:23 +000053
Chad Rosier35706ad2016-02-04 21:26:02 +000054// The LdStLimit limits how far we search for load/store pairs.
55static cl::opt<unsigned> LdStLimit("aarch64-load-store-scan-limit",
Tilmann Scheller5d8d72c2014-06-04 12:40:35 +000056 cl::init(20), cl::Hidden);
Tim Northover3b0846e2014-05-24 12:50:23 +000057
Chad Rosier35706ad2016-02-04 21:26:02 +000058// The UpdateLimit limits how far we search for update instructions when we form
59// pre-/post-index instructions.
60static cl::opt<unsigned> UpdateLimit("aarch64-update-scan-limit", cl::init(100),
61 cl::Hidden);
62
Chad Rosier96530b32015-08-05 13:44:51 +000063#define AARCH64_LOAD_STORE_OPT_NAME "AArch64 load / store optimization pass"
64
Tim Northover3b0846e2014-05-24 12:50:23 +000065namespace {
Chad Rosier96a18a92015-07-21 17:42:04 +000066
67typedef struct LdStPairFlags {
68 // If a matching instruction is found, MergeForward is set to true if the
69 // merge is to remove the first instruction and replace the second with
70 // a pair-wise insn, and false if the reverse is true.
Eugene Zelenko11f69072017-01-25 00:29:26 +000071 bool MergeForward = false;
Chad Rosier96a18a92015-07-21 17:42:04 +000072
73 // SExtIdx gives the index of the result of the load pair that must be
74 // extended. The value of SExtIdx assumes that the paired load produces the
75 // value in this order: (I, returned iterator), i.e., -1 means no value has
76 // to be extended, 0 means I, and 1 means the returned iterator.
Eugene Zelenko11f69072017-01-25 00:29:26 +000077 int SExtIdx = -1;
Chad Rosier96a18a92015-07-21 17:42:04 +000078
Eugene Zelenko11f69072017-01-25 00:29:26 +000079 LdStPairFlags() = default;
Chad Rosier96a18a92015-07-21 17:42:04 +000080
81 void setMergeForward(bool V = true) { MergeForward = V; }
82 bool getMergeForward() const { return MergeForward; }
83
84 void setSExtIdx(int V) { SExtIdx = V; }
85 int getSExtIdx() const { return SExtIdx; }
86
87} LdStPairFlags;
88
Tim Northover3b0846e2014-05-24 12:50:23 +000089struct AArch64LoadStoreOpt : public MachineFunctionPass {
90 static char ID;
Eugene Zelenko11f69072017-01-25 00:29:26 +000091
Jun Bum Lim22fe15e2015-11-06 16:27:47 +000092 AArch64LoadStoreOpt() : MachineFunctionPass(ID) {
Chad Rosier96530b32015-08-05 13:44:51 +000093 initializeAArch64LoadStoreOptPass(*PassRegistry::getPassRegistry());
94 }
Tim Northover3b0846e2014-05-24 12:50:23 +000095
Chad Rosiera69dcb62017-03-17 14:19:55 +000096 AliasAnalysis *AA;
Tim Northover3b0846e2014-05-24 12:50:23 +000097 const AArch64InstrInfo *TII;
98 const TargetRegisterInfo *TRI;
Oliver Stannardd414c992015-11-10 11:04:18 +000099 const AArch64Subtarget *Subtarget;
Tim Northover3b0846e2014-05-24 12:50:23 +0000100
Chad Rosierbba881e2016-02-02 15:02:30 +0000101 // Track which registers have been modified and used.
102 BitVector ModifiedRegs, UsedRegs;
103
Chad Rosiera69dcb62017-03-17 14:19:55 +0000104 virtual void getAnalysisUsage(AnalysisUsage &AU) const override {
105 AU.addRequired<AAResultsWrapperPass>();
106 MachineFunctionPass::getAnalysisUsage(AU);
107 }
108
Tim Northover3b0846e2014-05-24 12:50:23 +0000109 // Scan the instructions looking for a load/store that can be combined
110 // with the current instruction into a load/store pair.
111 // Return the matching instruction if one is found, else MBB->end().
Tim Northover3b0846e2014-05-24 12:50:23 +0000112 MachineBasicBlock::iterator findMatchingInsn(MachineBasicBlock::iterator I,
Chad Rosier96a18a92015-07-21 17:42:04 +0000113 LdStPairFlags &Flags,
Jun Bum Limcf974432016-03-31 14:47:24 +0000114 unsigned Limit,
115 bool FindNarrowMerge);
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000116
117 // Scan the instructions looking for a store that writes to the address from
118 // which the current load instruction reads. Return true if one is found.
119 bool findMatchingStore(MachineBasicBlock::iterator I, unsigned Limit,
120 MachineBasicBlock::iterator &StoreI);
121
Chad Rosierd6daac42016-11-07 15:27:22 +0000122 // Merge the two instructions indicated into a wider narrow store instruction.
Chad Rosierb5933d72016-02-09 19:02:12 +0000123 MachineBasicBlock::iterator
Chad Rosierd6daac42016-11-07 15:27:22 +0000124 mergeNarrowZeroStores(MachineBasicBlock::iterator I,
125 MachineBasicBlock::iterator MergeMI,
126 const LdStPairFlags &Flags);
Chad Rosierb5933d72016-02-09 19:02:12 +0000127
Tim Northover3b0846e2014-05-24 12:50:23 +0000128 // Merge the two instructions indicated into a single pair-wise instruction.
Tim Northover3b0846e2014-05-24 12:50:23 +0000129 MachineBasicBlock::iterator
130 mergePairedInsns(MachineBasicBlock::iterator I,
Chad Rosier96a18a92015-07-21 17:42:04 +0000131 MachineBasicBlock::iterator Paired,
Chad Rosierfe5399f2015-07-21 17:47:56 +0000132 const LdStPairFlags &Flags);
Tim Northover3b0846e2014-05-24 12:50:23 +0000133
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000134 // Promote the load that reads directly from the address stored to.
135 MachineBasicBlock::iterator
136 promoteLoadFromStore(MachineBasicBlock::iterator LoadI,
137 MachineBasicBlock::iterator StoreI);
138
Tim Northover3b0846e2014-05-24 12:50:23 +0000139 // Scan the instruction list to find a base register update that can
140 // be combined with the current instruction (a load or store) using
141 // pre or post indexed addressing with writeback. Scan forwards.
142 MachineBasicBlock::iterator
Chad Rosier234bf6f2016-01-18 21:56:40 +0000143 findMatchingUpdateInsnForward(MachineBasicBlock::iterator I,
Chad Rosier35706ad2016-02-04 21:26:02 +0000144 int UnscaledOffset, unsigned Limit);
Tim Northover3b0846e2014-05-24 12:50:23 +0000145
146 // Scan the instruction list to find a base register update that can
147 // be combined with the current instruction (a load or store) using
148 // pre or post indexed addressing with writeback. Scan backwards.
149 MachineBasicBlock::iterator
Chad Rosier35706ad2016-02-04 21:26:02 +0000150 findMatchingUpdateInsnBackward(MachineBasicBlock::iterator I, unsigned Limit);
Tim Northover3b0846e2014-05-24 12:50:23 +0000151
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000152 // Find an instruction that updates the base register of the ld/st
153 // instruction.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000154 bool isMatchingUpdateInsn(MachineInstr &MemMI, MachineInstr &MI,
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000155 unsigned BaseReg, int Offset);
156
Chad Rosier2dfd3542015-09-23 13:51:44 +0000157 // Merge a pre- or post-index base register update into a ld/st instruction.
Tim Northover3b0846e2014-05-24 12:50:23 +0000158 MachineBasicBlock::iterator
Chad Rosier2dfd3542015-09-23 13:51:44 +0000159 mergeUpdateInsn(MachineBasicBlock::iterator I,
160 MachineBasicBlock::iterator Update, bool IsPreIdx);
Tim Northover3b0846e2014-05-24 12:50:23 +0000161
Chad Rosierd6daac42016-11-07 15:27:22 +0000162 // Find and merge zero store instructions.
163 bool tryToMergeZeroStInst(MachineBasicBlock::iterator &MBBI);
Jun Bum Limc9879ec2015-10-27 19:16:03 +0000164
Chad Rosier24c46ad2016-02-09 18:10:20 +0000165 // Find and pair ldr/str instructions.
166 bool tryToPairLdStInst(MachineBasicBlock::iterator &MBBI);
167
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000168 // Find and promote load instructions which read directly from store.
169 bool tryToPromoteLoadFromStore(MachineBasicBlock::iterator &MBBI);
170
Chad Rosierd6daac42016-11-07 15:27:22 +0000171 bool optimizeBlock(MachineBasicBlock &MBB, bool EnableNarrowZeroStOpt);
Tim Northover3b0846e2014-05-24 12:50:23 +0000172
173 bool runOnMachineFunction(MachineFunction &Fn) override;
174
Derek Schuff1dbf7a52016-04-04 17:09:25 +0000175 MachineFunctionProperties getRequiredProperties() const override {
176 return MachineFunctionProperties().set(
Matthias Braun1eb47362016-08-25 01:27:13 +0000177 MachineFunctionProperties::Property::NoVRegs);
Derek Schuff1dbf7a52016-04-04 17:09:25 +0000178 }
179
Mehdi Amini117296c2016-10-01 02:56:57 +0000180 StringRef getPassName() const override { return AARCH64_LOAD_STORE_OPT_NAME; }
Tim Northover3b0846e2014-05-24 12:50:23 +0000181};
Eugene Zelenko11f69072017-01-25 00:29:26 +0000182
Tim Northover3b0846e2014-05-24 12:50:23 +0000183char AArch64LoadStoreOpt::ID = 0;
Eugene Zelenko11f69072017-01-25 00:29:26 +0000184
185} // end anonymous namespace
Tim Northover3b0846e2014-05-24 12:50:23 +0000186
Chad Rosier96530b32015-08-05 13:44:51 +0000187INITIALIZE_PASS(AArch64LoadStoreOpt, "aarch64-ldst-opt",
188 AARCH64_LOAD_STORE_OPT_NAME, false, false)
189
Jun Bum Lim80ec0d32015-11-20 21:14:07 +0000190static bool isNarrowStore(unsigned Opc) {
191 switch (Opc) {
192 default:
193 return false;
194 case AArch64::STRBBui:
195 case AArch64::STURBBi:
196 case AArch64::STRHHui:
197 case AArch64::STURHHi:
198 return true;
199 }
200}
201
Chad Rosier32d4d372015-09-29 16:07:32 +0000202// Scaling factor for unscaled load or store.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000203static int getMemScale(MachineInstr &MI) {
204 switch (MI.getOpcode()) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000205 default:
Chad Rosierdabe2532015-09-29 18:26:15 +0000206 llvm_unreachable("Opcode has unknown scale!");
207 case AArch64::LDRBBui:
Jun Bum Lim4c35cca2015-11-19 17:21:41 +0000208 case AArch64::LDURBBi:
209 case AArch64::LDRSBWui:
210 case AArch64::LDURSBWi:
Chad Rosierdabe2532015-09-29 18:26:15 +0000211 case AArch64::STRBBui:
Jun Bum Lim80ec0d32015-11-20 21:14:07 +0000212 case AArch64::STURBBi:
Chad Rosierdabe2532015-09-29 18:26:15 +0000213 return 1;
214 case AArch64::LDRHHui:
Jun Bum Limc9879ec2015-10-27 19:16:03 +0000215 case AArch64::LDURHHi:
Jun Bum Lim4c35cca2015-11-19 17:21:41 +0000216 case AArch64::LDRSHWui:
217 case AArch64::LDURSHWi:
Chad Rosierdabe2532015-09-29 18:26:15 +0000218 case AArch64::STRHHui:
Jun Bum Lim80ec0d32015-11-20 21:14:07 +0000219 case AArch64::STURHHi:
Chad Rosierdabe2532015-09-29 18:26:15 +0000220 return 2;
Chad Rosiera4d32172015-09-29 14:57:10 +0000221 case AArch64::LDRSui:
222 case AArch64::LDURSi:
223 case AArch64::LDRSWui:
224 case AArch64::LDURSWi:
225 case AArch64::LDRWui:
226 case AArch64::LDURWi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000227 case AArch64::STRSui:
228 case AArch64::STURSi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000229 case AArch64::STRWui:
230 case AArch64::STURWi:
Chad Rosier32d4d372015-09-29 16:07:32 +0000231 case AArch64::LDPSi:
Chad Rosier43150122015-09-29 20:39:55 +0000232 case AArch64::LDPSWi:
Chad Rosier32d4d372015-09-29 16:07:32 +0000233 case AArch64::LDPWi:
234 case AArch64::STPSi:
235 case AArch64::STPWi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000236 return 4;
Chad Rosiera4d32172015-09-29 14:57:10 +0000237 case AArch64::LDRDui:
238 case AArch64::LDURDi:
239 case AArch64::LDRXui:
240 case AArch64::LDURXi:
241 case AArch64::STRDui:
242 case AArch64::STURDi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000243 case AArch64::STRXui:
244 case AArch64::STURXi:
Chad Rosier32d4d372015-09-29 16:07:32 +0000245 case AArch64::LDPDi:
246 case AArch64::LDPXi:
247 case AArch64::STPDi:
248 case AArch64::STPXi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000249 return 8;
Tim Northover3b0846e2014-05-24 12:50:23 +0000250 case AArch64::LDRQui:
251 case AArch64::LDURQi:
Chad Rosiera4d32172015-09-29 14:57:10 +0000252 case AArch64::STRQui:
253 case AArch64::STURQi:
Chad Rosier32d4d372015-09-29 16:07:32 +0000254 case AArch64::LDPQi:
255 case AArch64::STPQi:
Tim Northover3b0846e2014-05-24 12:50:23 +0000256 return 16;
Tim Northover3b0846e2014-05-24 12:50:23 +0000257 }
258}
259
Quentin Colombet66b61632015-03-06 22:42:10 +0000260static unsigned getMatchingNonSExtOpcode(unsigned Opc,
261 bool *IsValidLdStrOpc = nullptr) {
262 if (IsValidLdStrOpc)
263 *IsValidLdStrOpc = true;
264 switch (Opc) {
265 default:
266 if (IsValidLdStrOpc)
267 *IsValidLdStrOpc = false;
Eugene Zelenko11f69072017-01-25 00:29:26 +0000268 return std::numeric_limits<unsigned>::max();
Quentin Colombet66b61632015-03-06 22:42:10 +0000269 case AArch64::STRDui:
270 case AArch64::STURDi:
271 case AArch64::STRQui:
272 case AArch64::STURQi:
Jun Bum Lim80ec0d32015-11-20 21:14:07 +0000273 case AArch64::STRBBui:
274 case AArch64::STURBBi:
275 case AArch64::STRHHui:
276 case AArch64::STURHHi:
Quentin Colombet66b61632015-03-06 22:42:10 +0000277 case AArch64::STRWui:
278 case AArch64::STURWi:
279 case AArch64::STRXui:
280 case AArch64::STURXi:
281 case AArch64::LDRDui:
282 case AArch64::LDURDi:
283 case AArch64::LDRQui:
284 case AArch64::LDURQi:
285 case AArch64::LDRWui:
286 case AArch64::LDURWi:
287 case AArch64::LDRXui:
288 case AArch64::LDURXi:
289 case AArch64::STRSui:
290 case AArch64::STURSi:
291 case AArch64::LDRSui:
292 case AArch64::LDURSi:
293 return Opc;
294 case AArch64::LDRSWui:
295 return AArch64::LDRWui;
296 case AArch64::LDURSWi:
297 return AArch64::LDURWi;
298 }
299}
300
Jun Bum Lim1de2d442016-02-05 20:02:03 +0000301static unsigned getMatchingWideOpcode(unsigned Opc) {
302 switch (Opc) {
303 default:
304 llvm_unreachable("Opcode has no wide equivalent!");
305 case AArch64::STRBBui:
306 return AArch64::STRHHui;
307 case AArch64::STRHHui:
308 return AArch64::STRWui;
309 case AArch64::STURBBi:
310 return AArch64::STURHHi;
311 case AArch64::STURHHi:
312 return AArch64::STURWi;
Jun Bum Lim397eb7b2016-02-12 15:25:39 +0000313 case AArch64::STURWi:
314 return AArch64::STURXi;
315 case AArch64::STRWui:
316 return AArch64::STRXui;
Jun Bum Lim1de2d442016-02-05 20:02:03 +0000317 }
318}
319
Tim Northover3b0846e2014-05-24 12:50:23 +0000320static unsigned getMatchingPairOpcode(unsigned Opc) {
321 switch (Opc) {
322 default:
323 llvm_unreachable("Opcode has no pairwise equivalent!");
324 case AArch64::STRSui:
325 case AArch64::STURSi:
326 return AArch64::STPSi;
327 case AArch64::STRDui:
328 case AArch64::STURDi:
329 return AArch64::STPDi;
330 case AArch64::STRQui:
331 case AArch64::STURQi:
332 return AArch64::STPQi;
333 case AArch64::STRWui:
334 case AArch64::STURWi:
335 return AArch64::STPWi;
336 case AArch64::STRXui:
337 case AArch64::STURXi:
338 return AArch64::STPXi;
339 case AArch64::LDRSui:
340 case AArch64::LDURSi:
341 return AArch64::LDPSi;
342 case AArch64::LDRDui:
343 case AArch64::LDURDi:
344 return AArch64::LDPDi;
345 case AArch64::LDRQui:
346 case AArch64::LDURQi:
347 return AArch64::LDPQi;
348 case AArch64::LDRWui:
349 case AArch64::LDURWi:
350 return AArch64::LDPWi;
351 case AArch64::LDRXui:
352 case AArch64::LDURXi:
353 return AArch64::LDPXi;
Quentin Colombet29f55332015-01-24 01:25:54 +0000354 case AArch64::LDRSWui:
355 case AArch64::LDURSWi:
356 return AArch64::LDPSWi;
Tim Northover3b0846e2014-05-24 12:50:23 +0000357 }
358}
359
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000360static unsigned isMatchingStore(MachineInstr &LoadInst,
361 MachineInstr &StoreInst) {
362 unsigned LdOpc = LoadInst.getOpcode();
363 unsigned StOpc = StoreInst.getOpcode();
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000364 switch (LdOpc) {
365 default:
366 llvm_unreachable("Unsupported load instruction!");
367 case AArch64::LDRBBui:
368 return StOpc == AArch64::STRBBui || StOpc == AArch64::STRHHui ||
369 StOpc == AArch64::STRWui || StOpc == AArch64::STRXui;
370 case AArch64::LDURBBi:
371 return StOpc == AArch64::STURBBi || StOpc == AArch64::STURHHi ||
372 StOpc == AArch64::STURWi || StOpc == AArch64::STURXi;
373 case AArch64::LDRHHui:
374 return StOpc == AArch64::STRHHui || StOpc == AArch64::STRWui ||
375 StOpc == AArch64::STRXui;
376 case AArch64::LDURHHi:
377 return StOpc == AArch64::STURHHi || StOpc == AArch64::STURWi ||
378 StOpc == AArch64::STURXi;
379 case AArch64::LDRWui:
380 return StOpc == AArch64::STRWui || StOpc == AArch64::STRXui;
381 case AArch64::LDURWi:
382 return StOpc == AArch64::STURWi || StOpc == AArch64::STURXi;
383 case AArch64::LDRXui:
384 return StOpc == AArch64::STRXui;
385 case AArch64::LDURXi:
386 return StOpc == AArch64::STURXi;
387 }
388}
389
Tim Northover3b0846e2014-05-24 12:50:23 +0000390static unsigned getPreIndexedOpcode(unsigned Opc) {
391 switch (Opc) {
392 default:
393 llvm_unreachable("Opcode has no pre-indexed equivalent!");
Tilmann Scheller5d8d72c2014-06-04 12:40:35 +0000394 case AArch64::STRSui:
395 return AArch64::STRSpre;
396 case AArch64::STRDui:
397 return AArch64::STRDpre;
398 case AArch64::STRQui:
399 return AArch64::STRQpre;
Chad Rosierdabe2532015-09-29 18:26:15 +0000400 case AArch64::STRBBui:
401 return AArch64::STRBBpre;
402 case AArch64::STRHHui:
403 return AArch64::STRHHpre;
Tilmann Scheller5d8d72c2014-06-04 12:40:35 +0000404 case AArch64::STRWui:
405 return AArch64::STRWpre;
406 case AArch64::STRXui:
407 return AArch64::STRXpre;
408 case AArch64::LDRSui:
409 return AArch64::LDRSpre;
410 case AArch64::LDRDui:
411 return AArch64::LDRDpre;
412 case AArch64::LDRQui:
413 return AArch64::LDRQpre;
Chad Rosierdabe2532015-09-29 18:26:15 +0000414 case AArch64::LDRBBui:
415 return AArch64::LDRBBpre;
416 case AArch64::LDRHHui:
417 return AArch64::LDRHHpre;
Tilmann Scheller5d8d72c2014-06-04 12:40:35 +0000418 case AArch64::LDRWui:
419 return AArch64::LDRWpre;
420 case AArch64::LDRXui:
421 return AArch64::LDRXpre;
Quentin Colombet29f55332015-01-24 01:25:54 +0000422 case AArch64::LDRSWui:
423 return AArch64::LDRSWpre;
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000424 case AArch64::LDPSi:
425 return AArch64::LDPSpre;
Chad Rosier43150122015-09-29 20:39:55 +0000426 case AArch64::LDPSWi:
427 return AArch64::LDPSWpre;
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000428 case AArch64::LDPDi:
429 return AArch64::LDPDpre;
430 case AArch64::LDPQi:
431 return AArch64::LDPQpre;
432 case AArch64::LDPWi:
433 return AArch64::LDPWpre;
434 case AArch64::LDPXi:
435 return AArch64::LDPXpre;
436 case AArch64::STPSi:
437 return AArch64::STPSpre;
438 case AArch64::STPDi:
439 return AArch64::STPDpre;
440 case AArch64::STPQi:
441 return AArch64::STPQpre;
442 case AArch64::STPWi:
443 return AArch64::STPWpre;
444 case AArch64::STPXi:
445 return AArch64::STPXpre;
Tim Northover3b0846e2014-05-24 12:50:23 +0000446 }
447}
448
449static unsigned getPostIndexedOpcode(unsigned Opc) {
450 switch (Opc) {
451 default:
452 llvm_unreachable("Opcode has no post-indexed wise equivalent!");
453 case AArch64::STRSui:
454 return AArch64::STRSpost;
455 case AArch64::STRDui:
456 return AArch64::STRDpost;
457 case AArch64::STRQui:
458 return AArch64::STRQpost;
Chad Rosierdabe2532015-09-29 18:26:15 +0000459 case AArch64::STRBBui:
460 return AArch64::STRBBpost;
461 case AArch64::STRHHui:
462 return AArch64::STRHHpost;
Tim Northover3b0846e2014-05-24 12:50:23 +0000463 case AArch64::STRWui:
464 return AArch64::STRWpost;
465 case AArch64::STRXui:
466 return AArch64::STRXpost;
467 case AArch64::LDRSui:
468 return AArch64::LDRSpost;
469 case AArch64::LDRDui:
470 return AArch64::LDRDpost;
471 case AArch64::LDRQui:
472 return AArch64::LDRQpost;
Chad Rosierdabe2532015-09-29 18:26:15 +0000473 case AArch64::LDRBBui:
474 return AArch64::LDRBBpost;
475 case AArch64::LDRHHui:
476 return AArch64::LDRHHpost;
Tim Northover3b0846e2014-05-24 12:50:23 +0000477 case AArch64::LDRWui:
478 return AArch64::LDRWpost;
479 case AArch64::LDRXui:
480 return AArch64::LDRXpost;
Quentin Colombet29f55332015-01-24 01:25:54 +0000481 case AArch64::LDRSWui:
482 return AArch64::LDRSWpost;
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000483 case AArch64::LDPSi:
484 return AArch64::LDPSpost;
Chad Rosier43150122015-09-29 20:39:55 +0000485 case AArch64::LDPSWi:
486 return AArch64::LDPSWpost;
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000487 case AArch64::LDPDi:
488 return AArch64::LDPDpost;
489 case AArch64::LDPQi:
490 return AArch64::LDPQpost;
491 case AArch64::LDPWi:
492 return AArch64::LDPWpost;
493 case AArch64::LDPXi:
494 return AArch64::LDPXpost;
495 case AArch64::STPSi:
496 return AArch64::STPSpost;
497 case AArch64::STPDi:
498 return AArch64::STPDpost;
499 case AArch64::STPQi:
500 return AArch64::STPQpost;
501 case AArch64::STPWi:
502 return AArch64::STPWpost;
503 case AArch64::STPXi:
504 return AArch64::STPXpost;
Tim Northover3b0846e2014-05-24 12:50:23 +0000505 }
506}
507
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000508static bool isPairedLdSt(const MachineInstr &MI) {
509 switch (MI.getOpcode()) {
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000510 default:
511 return false;
512 case AArch64::LDPSi:
Chad Rosier43150122015-09-29 20:39:55 +0000513 case AArch64::LDPSWi:
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000514 case AArch64::LDPDi:
515 case AArch64::LDPQi:
516 case AArch64::LDPWi:
517 case AArch64::LDPXi:
518 case AArch64::STPSi:
519 case AArch64::STPDi:
520 case AArch64::STPQi:
521 case AArch64::STPWi:
522 case AArch64::STPXi:
523 return true;
524 }
525}
526
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000527static const MachineOperand &getLdStRegOp(const MachineInstr &MI,
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000528 unsigned PairedRegOp = 0) {
529 assert(PairedRegOp < 2 && "Unexpected register operand idx.");
530 unsigned Idx = isPairedLdSt(MI) ? PairedRegOp : 0;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000531 return MI.getOperand(Idx);
Chad Rosierf77e9092015-08-06 15:50:12 +0000532}
533
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000534static const MachineOperand &getLdStBaseOp(const MachineInstr &MI) {
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000535 unsigned Idx = isPairedLdSt(MI) ? 2 : 1;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000536 return MI.getOperand(Idx);
Chad Rosierf77e9092015-08-06 15:50:12 +0000537}
538
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000539static const MachineOperand &getLdStOffsetOp(const MachineInstr &MI) {
Chad Rosier1bbd7fb2015-09-25 17:48:17 +0000540 unsigned Idx = isPairedLdSt(MI) ? 3 : 2;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000541 return MI.getOperand(Idx);
Chad Rosierf77e9092015-08-06 15:50:12 +0000542}
543
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000544static bool isLdOffsetInRangeOfSt(MachineInstr &LoadInst,
545 MachineInstr &StoreInst,
Chad Rosiere4e15ba2016-03-09 17:29:48 +0000546 const AArch64InstrInfo *TII) {
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000547 assert(isMatchingStore(LoadInst, StoreInst) && "Expect only matched ld/st.");
548 int LoadSize = getMemScale(LoadInst);
549 int StoreSize = getMemScale(StoreInst);
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000550 int UnscaledStOffset = TII->isUnscaledLdSt(StoreInst)
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000551 ? getLdStOffsetOp(StoreInst).getImm()
552 : getLdStOffsetOp(StoreInst).getImm() * StoreSize;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000553 int UnscaledLdOffset = TII->isUnscaledLdSt(LoadInst)
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000554 ? getLdStOffsetOp(LoadInst).getImm()
555 : getLdStOffsetOp(LoadInst).getImm() * LoadSize;
556 return (UnscaledStOffset <= UnscaledLdOffset) &&
557 (UnscaledLdOffset + LoadSize <= (UnscaledStOffset + StoreSize));
558}
559
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000560static bool isPromotableZeroStoreInst(MachineInstr &MI) {
Chad Rosierd6daac42016-11-07 15:27:22 +0000561 unsigned Opc = MI.getOpcode();
562 return (Opc == AArch64::STRWui || Opc == AArch64::STURWi ||
563 isNarrowStore(Opc)) &&
Jun Bum Lim397eb7b2016-02-12 15:25:39 +0000564 getLdStRegOp(MI).getReg() == AArch64::WZR;
565}
566
Tim Northover3b0846e2014-05-24 12:50:23 +0000567MachineBasicBlock::iterator
Chad Rosierd6daac42016-11-07 15:27:22 +0000568AArch64LoadStoreOpt::mergeNarrowZeroStores(MachineBasicBlock::iterator I,
569 MachineBasicBlock::iterator MergeMI,
570 const LdStPairFlags &Flags) {
571 assert(isPromotableZeroStoreInst(*I) && isPromotableZeroStoreInst(*MergeMI) &&
572 "Expected promotable zero stores.");
573
Tim Northover3b0846e2014-05-24 12:50:23 +0000574 MachineBasicBlock::iterator NextI = I;
575 ++NextI;
576 // If NextI is the second of the two instructions to be merged, we need
577 // to skip one further. Either way we merge will invalidate the iterator,
578 // and we don't need to scan the new instruction, as it's a pairwise
579 // instruction, which we're not considering for further action anyway.
Chad Rosierd7363db2016-02-09 19:09:22 +0000580 if (NextI == MergeMI)
Tim Northover3b0846e2014-05-24 12:50:23 +0000581 ++NextI;
582
Chad Rosierb5933d72016-02-09 19:02:12 +0000583 unsigned Opc = I->getOpcode();
Chad Rosiere4e15ba2016-03-09 17:29:48 +0000584 bool IsScaled = !TII->isUnscaledLdSt(Opc);
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000585 int OffsetStride = IsScaled ? 1 : getMemScale(*I);
Tim Northover3b0846e2014-05-24 12:50:23 +0000586
Chad Rosier96a18a92015-07-21 17:42:04 +0000587 bool MergeForward = Flags.getMergeForward();
Tim Northover3b0846e2014-05-24 12:50:23 +0000588 // Insert our new paired instruction after whichever of the paired
Tilmann Scheller4aad3bd2014-06-04 12:36:28 +0000589 // instructions MergeForward indicates.
Chad Rosierd7363db2016-02-09 19:09:22 +0000590 MachineBasicBlock::iterator InsertionPoint = MergeForward ? MergeMI : I;
Tilmann Scheller4aad3bd2014-06-04 12:36:28 +0000591 // Also based on MergeForward is from where we copy the base register operand
Tim Northover3b0846e2014-05-24 12:50:23 +0000592 // so we get the flags compatible with the input code.
Chad Rosierf77e9092015-08-06 15:50:12 +0000593 const MachineOperand &BaseRegOp =
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000594 MergeForward ? getLdStBaseOp(*MergeMI) : getLdStBaseOp(*I);
Tim Northover3b0846e2014-05-24 12:50:23 +0000595
596 // Which register is Rt and which is Rt2 depends on the offset order.
Davide Italiano5df60662016-11-07 19:11:25 +0000597 MachineInstr *RtMI;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000598 if (getLdStOffsetOp(*I).getImm() ==
Davide Italiano5df60662016-11-07 19:11:25 +0000599 getLdStOffsetOp(*MergeMI).getImm() + OffsetStride)
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000600 RtMI = &*MergeMI;
Davide Italiano5df60662016-11-07 19:11:25 +0000601 else
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000602 RtMI = &*I;
Jun Bum Limc9879ec2015-10-27 19:16:03 +0000603
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000604 int OffsetImm = getLdStOffsetOp(*RtMI).getImm();
Chad Rosier11eedc92016-02-09 19:17:18 +0000605 // Change the scaled offset from small to large type.
606 if (IsScaled) {
607 assert(((OffsetImm & 1) == 0) && "Unexpected offset to merge");
608 OffsetImm /= 2;
609 }
610
Chad Rosierd6daac42016-11-07 15:27:22 +0000611 // Construct the new instruction.
Chad Rosierc46ef882016-02-09 19:33:42 +0000612 DebugLoc DL = I->getDebugLoc();
613 MachineBasicBlock *MBB = I->getParent();
Jun Bum Lim80ec0d32015-11-20 21:14:07 +0000614 MachineInstrBuilder MIB;
Chad Rosierc46ef882016-02-09 19:33:42 +0000615 MIB = BuildMI(*MBB, InsertionPoint, DL, TII->get(getMatchingWideOpcode(Opc)))
Jun Bum Lim397eb7b2016-02-12 15:25:39 +0000616 .addReg(isNarrowStore(Opc) ? AArch64::WZR : AArch64::XZR)
Diana Picus116bbab2017-01-13 09:58:52 +0000617 .add(BaseRegOp)
Chad Rosierb5933d72016-02-09 19:02:12 +0000618 .addImm(OffsetImm)
Chad Rosierd7363db2016-02-09 19:09:22 +0000619 .setMemRefs(I->mergeMemRefsWith(*MergeMI));
Tim Northover3b0846e2014-05-24 12:50:23 +0000620 (void)MIB;
621
Chad Rosierd6daac42016-11-07 15:27:22 +0000622 DEBUG(dbgs() << "Creating wider store. Replacing instructions:\n ");
Chad Rosierb5933d72016-02-09 19:02:12 +0000623 DEBUG(I->print(dbgs()));
624 DEBUG(dbgs() << " ");
Chad Rosierd7363db2016-02-09 19:09:22 +0000625 DEBUG(MergeMI->print(dbgs()));
Chad Rosierb5933d72016-02-09 19:02:12 +0000626 DEBUG(dbgs() << " with instruction:\n ");
627 DEBUG(((MachineInstr *)MIB)->print(dbgs()));
628 DEBUG(dbgs() << "\n");
629
630 // Erase the old instructions.
631 I->eraseFromParent();
Chad Rosierd7363db2016-02-09 19:09:22 +0000632 MergeMI->eraseFromParent();
Chad Rosierb5933d72016-02-09 19:02:12 +0000633 return NextI;
634}
635
636MachineBasicBlock::iterator
637AArch64LoadStoreOpt::mergePairedInsns(MachineBasicBlock::iterator I,
638 MachineBasicBlock::iterator Paired,
639 const LdStPairFlags &Flags) {
640 MachineBasicBlock::iterator NextI = I;
641 ++NextI;
642 // If NextI is the second of the two instructions to be merged, we need
643 // to skip one further. Either way we merge will invalidate the iterator,
644 // and we don't need to scan the new instruction, as it's a pairwise
645 // instruction, which we're not considering for further action anyway.
646 if (NextI == Paired)
647 ++NextI;
648
649 int SExtIdx = Flags.getSExtIdx();
650 unsigned Opc =
651 SExtIdx == -1 ? I->getOpcode() : getMatchingNonSExtOpcode(I->getOpcode());
Chad Rosiere4e15ba2016-03-09 17:29:48 +0000652 bool IsUnscaled = TII->isUnscaledLdSt(Opc);
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000653 int OffsetStride = IsUnscaled ? getMemScale(*I) : 1;
Chad Rosierb5933d72016-02-09 19:02:12 +0000654
655 bool MergeForward = Flags.getMergeForward();
656 // Insert our new paired instruction after whichever of the paired
657 // instructions MergeForward indicates.
658 MachineBasicBlock::iterator InsertionPoint = MergeForward ? Paired : I;
659 // Also based on MergeForward is from where we copy the base register operand
660 // so we get the flags compatible with the input code.
661 const MachineOperand &BaseRegOp =
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000662 MergeForward ? getLdStBaseOp(*Paired) : getLdStBaseOp(*I);
Chad Rosierb5933d72016-02-09 19:02:12 +0000663
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000664 int Offset = getLdStOffsetOp(*I).getImm();
665 int PairedOffset = getLdStOffsetOp(*Paired).getImm();
Chad Rosiere4e15ba2016-03-09 17:29:48 +0000666 bool PairedIsUnscaled = TII->isUnscaledLdSt(Paired->getOpcode());
Chad Rosier00f9d232016-02-11 14:25:08 +0000667 if (IsUnscaled != PairedIsUnscaled) {
668 // We're trying to pair instructions that differ in how they are scaled. If
669 // I is scaled then scale the offset of Paired accordingly. Otherwise, do
670 // the opposite (i.e., make Paired's offset unscaled).
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000671 int MemSize = getMemScale(*Paired);
Chad Rosier00f9d232016-02-11 14:25:08 +0000672 if (PairedIsUnscaled) {
673 // If the unscaled offset isn't a multiple of the MemSize, we can't
674 // pair the operations together.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000675 assert(!(PairedOffset % getMemScale(*Paired)) &&
Chad Rosier00f9d232016-02-11 14:25:08 +0000676 "Offset should be a multiple of the stride!");
677 PairedOffset /= MemSize;
678 } else {
679 PairedOffset *= MemSize;
680 }
681 }
682
Chad Rosierb5933d72016-02-09 19:02:12 +0000683 // Which register is Rt and which is Rt2 depends on the offset order.
684 MachineInstr *RtMI, *Rt2MI;
Chad Rosier00f9d232016-02-11 14:25:08 +0000685 if (Offset == PairedOffset + OffsetStride) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000686 RtMI = &*Paired;
687 Rt2MI = &*I;
Chad Rosierb5933d72016-02-09 19:02:12 +0000688 // Here we swapped the assumption made for SExtIdx.
689 // I.e., we turn ldp I, Paired into ldp Paired, I.
690 // Update the index accordingly.
691 if (SExtIdx != -1)
692 SExtIdx = (SExtIdx + 1) % 2;
693 } else {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000694 RtMI = &*I;
695 Rt2MI = &*Paired;
Chad Rosierb5933d72016-02-09 19:02:12 +0000696 }
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000697 int OffsetImm = getLdStOffsetOp(*RtMI).getImm();
Chad Rosier00f9d232016-02-11 14:25:08 +0000698 // Scale the immediate offset, if necessary.
Chad Rosiere4e15ba2016-03-09 17:29:48 +0000699 if (TII->isUnscaledLdSt(RtMI->getOpcode())) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000700 assert(!(OffsetImm % getMemScale(*RtMI)) &&
Chad Rosier00f9d232016-02-11 14:25:08 +0000701 "Unscaled offset cannot be scaled.");
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000702 OffsetImm /= getMemScale(*RtMI);
Chad Rosier87e33412016-02-09 20:18:07 +0000703 }
Chad Rosierb5933d72016-02-09 19:02:12 +0000704
705 // Construct the new instruction.
706 MachineInstrBuilder MIB;
Chad Rosierc46ef882016-02-09 19:33:42 +0000707 DebugLoc DL = I->getDebugLoc();
708 MachineBasicBlock *MBB = I->getParent();
Matthias Braun2e8c11e2017-01-20 18:04:27 +0000709 MachineOperand RegOp0 = getLdStRegOp(*RtMI);
710 MachineOperand RegOp1 = getLdStRegOp(*Rt2MI);
711 // Kill flags may become invalid when moving stores for pairing.
712 if (RegOp0.isUse()) {
713 if (!MergeForward) {
714 // Clear kill flags on store if moving upwards. Example:
715 // STRWui %w0, ...
716 // USE %w1
717 // STRWui kill %w1 ; need to clear kill flag when moving STRWui upwards
718 RegOp0.setIsKill(false);
719 RegOp1.setIsKill(false);
720 } else {
721 // Clear kill flags of the first stores register. Example:
722 // STRWui %w1, ...
723 // USE kill %w1 ; need to clear kill flag when moving STRWui downwards
724 // STRW %w0
725 unsigned Reg = getLdStRegOp(*I).getReg();
726 for (MachineInstr &MI : make_range(std::next(I), Paired))
727 MI.clearRegisterKills(Reg, TRI);
728 }
729 }
Chad Rosierc46ef882016-02-09 19:33:42 +0000730 MIB = BuildMI(*MBB, InsertionPoint, DL, TII->get(getMatchingPairOpcode(Opc)))
Matthias Braun2e8c11e2017-01-20 18:04:27 +0000731 .add(RegOp0)
732 .add(RegOp1)
Diana Picus116bbab2017-01-13 09:58:52 +0000733 .add(BaseRegOp)
Chad Rosiere40b9512016-03-08 17:16:38 +0000734 .addImm(OffsetImm)
735 .setMemRefs(I->mergeMemRefsWith(*Paired));
Chad Rosierb5933d72016-02-09 19:02:12 +0000736
737 (void)MIB;
Tim Northover3b0846e2014-05-24 12:50:23 +0000738
739 DEBUG(dbgs() << "Creating pair load/store. Replacing instructions:\n ");
740 DEBUG(I->print(dbgs()));
741 DEBUG(dbgs() << " ");
742 DEBUG(Paired->print(dbgs()));
743 DEBUG(dbgs() << " with instruction:\n ");
Quentin Colombet66b61632015-03-06 22:42:10 +0000744 if (SExtIdx != -1) {
745 // Generate the sign extension for the proper result of the ldp.
746 // I.e., with X1, that would be:
747 // %W1<def> = KILL %W1, %X1<imp-def>
748 // %X1<def> = SBFMXri %X1<kill>, 0, 31
749 MachineOperand &DstMO = MIB->getOperand(SExtIdx);
750 // Right now, DstMO has the extended register, since it comes from an
751 // extended opcode.
752 unsigned DstRegX = DstMO.getReg();
753 // Get the W variant of that register.
754 unsigned DstRegW = TRI->getSubReg(DstRegX, AArch64::sub_32);
755 // Update the result of LDP to use the W instead of the X variant.
756 DstMO.setReg(DstRegW);
757 DEBUG(((MachineInstr *)MIB)->print(dbgs()));
758 DEBUG(dbgs() << "\n");
759 // Make the machine verifier happy by providing a definition for
760 // the X register.
761 // Insert this definition right after the generated LDP, i.e., before
762 // InsertionPoint.
763 MachineInstrBuilder MIBKill =
Chad Rosierc46ef882016-02-09 19:33:42 +0000764 BuildMI(*MBB, InsertionPoint, DL, TII->get(TargetOpcode::KILL), DstRegW)
Quentin Colombet66b61632015-03-06 22:42:10 +0000765 .addReg(DstRegW)
766 .addReg(DstRegX, RegState::Define);
767 MIBKill->getOperand(2).setImplicit();
768 // Create the sign extension.
769 MachineInstrBuilder MIBSXTW =
Chad Rosierc46ef882016-02-09 19:33:42 +0000770 BuildMI(*MBB, InsertionPoint, DL, TII->get(AArch64::SBFMXri), DstRegX)
Quentin Colombet66b61632015-03-06 22:42:10 +0000771 .addReg(DstRegX)
772 .addImm(0)
773 .addImm(31);
774 (void)MIBSXTW;
775 DEBUG(dbgs() << " Extend operand:\n ");
776 DEBUG(((MachineInstr *)MIBSXTW)->print(dbgs()));
Quentin Colombet66b61632015-03-06 22:42:10 +0000777 } else {
778 DEBUG(((MachineInstr *)MIB)->print(dbgs()));
Quentin Colombet66b61632015-03-06 22:42:10 +0000779 }
Chad Rosier1c44c5982016-02-09 20:27:45 +0000780 DEBUG(dbgs() << "\n");
Tim Northover3b0846e2014-05-24 12:50:23 +0000781
782 // Erase the old instructions.
783 I->eraseFromParent();
784 Paired->eraseFromParent();
785
786 return NextI;
787}
788
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000789MachineBasicBlock::iterator
790AArch64LoadStoreOpt::promoteLoadFromStore(MachineBasicBlock::iterator LoadI,
791 MachineBasicBlock::iterator StoreI) {
792 MachineBasicBlock::iterator NextI = LoadI;
793 ++NextI;
794
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000795 int LoadSize = getMemScale(*LoadI);
796 int StoreSize = getMemScale(*StoreI);
797 unsigned LdRt = getLdStRegOp(*LoadI).getReg();
798 unsigned StRt = getLdStRegOp(*StoreI).getReg();
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000799 bool IsStoreXReg = TRI->getRegClass(AArch64::GPR64RegClassID)->contains(StRt);
800
801 assert((IsStoreXReg ||
802 TRI->getRegClass(AArch64::GPR32RegClassID)->contains(StRt)) &&
803 "Unexpected RegClass");
804
805 MachineInstr *BitExtMI;
806 if (LoadSize == StoreSize && (LoadSize == 4 || LoadSize == 8)) {
807 // Remove the load, if the destination register of the loads is the same
808 // register for stored value.
809 if (StRt == LdRt && LoadSize == 8) {
Matthias Braun76bb4132016-12-16 23:55:43 +0000810 StoreI->clearRegisterKills(StRt, TRI);
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000811 DEBUG(dbgs() << "Remove load instruction:\n ");
812 DEBUG(LoadI->print(dbgs()));
813 DEBUG(dbgs() << "\n");
814 LoadI->eraseFromParent();
815 return NextI;
816 }
817 // Replace the load with a mov if the load and store are in the same size.
818 BitExtMI =
819 BuildMI(*LoadI->getParent(), LoadI, LoadI->getDebugLoc(),
820 TII->get(IsStoreXReg ? AArch64::ORRXrs : AArch64::ORRWrs), LdRt)
821 .addReg(IsStoreXReg ? AArch64::XZR : AArch64::WZR)
822 .addReg(StRt)
823 .addImm(AArch64_AM::getShifterImm(AArch64_AM::LSL, 0));
824 } else {
825 // FIXME: Currently we disable this transformation in big-endian targets as
826 // performance and correctness are verified only in little-endian.
827 if (!Subtarget->isLittleEndian())
828 return NextI;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000829 bool IsUnscaled = TII->isUnscaledLdSt(*LoadI);
830 assert(IsUnscaled == TII->isUnscaledLdSt(*StoreI) &&
Chad Rosiere4e15ba2016-03-09 17:29:48 +0000831 "Unsupported ld/st match");
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000832 assert(LoadSize <= StoreSize && "Invalid load size");
833 int UnscaledLdOffset = IsUnscaled
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000834 ? getLdStOffsetOp(*LoadI).getImm()
835 : getLdStOffsetOp(*LoadI).getImm() * LoadSize;
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000836 int UnscaledStOffset = IsUnscaled
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000837 ? getLdStOffsetOp(*StoreI).getImm()
838 : getLdStOffsetOp(*StoreI).getImm() * StoreSize;
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000839 int Width = LoadSize * 8;
840 int Immr = 8 * (UnscaledLdOffset - UnscaledStOffset);
841 int Imms = Immr + Width - 1;
842 unsigned DestReg = IsStoreXReg
843 ? TRI->getMatchingSuperReg(LdRt, AArch64::sub_32,
844 &AArch64::GPR64RegClass)
845 : LdRt;
846
847 assert((UnscaledLdOffset >= UnscaledStOffset &&
848 (UnscaledLdOffset + LoadSize) <= UnscaledStOffset + StoreSize) &&
849 "Invalid offset");
850
851 Immr = 8 * (UnscaledLdOffset - UnscaledStOffset);
852 Imms = Immr + Width - 1;
853 if (UnscaledLdOffset == UnscaledStOffset) {
854 uint32_t AndMaskEncoded = ((IsStoreXReg ? 1 : 0) << 12) // N
855 | ((Immr) << 6) // immr
856 | ((Imms) << 0) // imms
857 ;
858
859 BitExtMI =
860 BuildMI(*LoadI->getParent(), LoadI, LoadI->getDebugLoc(),
861 TII->get(IsStoreXReg ? AArch64::ANDXri : AArch64::ANDWri),
862 DestReg)
863 .addReg(StRt)
864 .addImm(AndMaskEncoded);
865 } else {
866 BitExtMI =
867 BuildMI(*LoadI->getParent(), LoadI, LoadI->getDebugLoc(),
868 TII->get(IsStoreXReg ? AArch64::UBFMXri : AArch64::UBFMWri),
869 DestReg)
870 .addReg(StRt)
871 .addImm(Immr)
872 .addImm(Imms);
873 }
874 }
Matthias Braun76bb4132016-12-16 23:55:43 +0000875
Matthias Braund9a59a82017-02-17 23:15:03 +0000876 // Clear kill flags between store and load.
877 for (MachineInstr &MI : make_range(StoreI->getIterator(),
878 BitExtMI->getIterator()))
879 MI.clearRegisterKills(StRt, TRI);
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000880
881 DEBUG(dbgs() << "Promoting load by replacing :\n ");
882 DEBUG(StoreI->print(dbgs()));
883 DEBUG(dbgs() << " ");
884 DEBUG(LoadI->print(dbgs()));
885 DEBUG(dbgs() << " with instructions:\n ");
886 DEBUG(StoreI->print(dbgs()));
887 DEBUG(dbgs() << " ");
888 DEBUG((BitExtMI)->print(dbgs()));
889 DEBUG(dbgs() << "\n");
890
891 // Erase the old instructions.
892 LoadI->eraseFromParent();
893 return NextI;
894}
895
Tim Northover3b0846e2014-05-24 12:50:23 +0000896/// trackRegDefsUses - Remember what registers the specified instruction uses
897/// and modifies.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000898static void trackRegDefsUses(const MachineInstr &MI, BitVector &ModifiedRegs,
Tim Northover3b0846e2014-05-24 12:50:23 +0000899 BitVector &UsedRegs,
900 const TargetRegisterInfo *TRI) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000901 for (const MachineOperand &MO : MI.operands()) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000902 if (MO.isRegMask())
903 ModifiedRegs.setBitsNotInMask(MO.getRegMask());
904
905 if (!MO.isReg())
906 continue;
907 unsigned Reg = MO.getReg();
Geoff Berry173b14d2016-02-09 20:47:21 +0000908 if (!Reg)
909 continue;
Tim Northover3b0846e2014-05-24 12:50:23 +0000910 if (MO.isDef()) {
Geoff Berrye0bf52f2016-11-21 22:51:10 +0000911 // WZR/XZR are not modified even when used as a destination register.
912 if (Reg != AArch64::WZR && Reg != AArch64::XZR)
913 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
914 ModifiedRegs.set(*AI);
Tim Northover3b0846e2014-05-24 12:50:23 +0000915 } else {
916 assert(MO.isUse() && "Reg operand not a def and not a use?!?");
917 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
918 UsedRegs.set(*AI);
919 }
920 }
921}
922
923static bool inBoundsForPair(bool IsUnscaled, int Offset, int OffsetStride) {
Chad Rosier3dd0e942015-08-18 16:20:03 +0000924 // Convert the byte-offset used by unscaled into an "element" offset used
925 // by the scaled pair load/store instructions.
Chad Rosier00f9d232016-02-11 14:25:08 +0000926 if (IsUnscaled) {
927 // If the byte-offset isn't a multiple of the stride, there's no point
928 // trying to match it.
929 if (Offset % OffsetStride)
930 return false;
Chad Rosier3dd0e942015-08-18 16:20:03 +0000931 Offset /= OffsetStride;
Chad Rosier00f9d232016-02-11 14:25:08 +0000932 }
Chad Rosier3dd0e942015-08-18 16:20:03 +0000933 return Offset <= 63 && Offset >= -64;
Tim Northover3b0846e2014-05-24 12:50:23 +0000934}
935
936// Do alignment, specialized to power of 2 and for signed ints,
937// avoiding having to do a C-style cast from uint_64t to int when
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000938// using alignTo from include/llvm/Support/MathExtras.h.
Tim Northover3b0846e2014-05-24 12:50:23 +0000939// FIXME: Move this function to include/MathExtras.h?
940static int alignTo(int Num, int PowOf2) {
941 return (Num + PowOf2 - 1) & ~(PowOf2 - 1);
942}
943
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000944static bool mayAlias(MachineInstr &MIa, MachineInstr &MIb,
Chad Rosiera69dcb62017-03-17 14:19:55 +0000945 AliasAnalysis *AA) {
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000946 // One of the instructions must modify memory.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000947 if (!MIa.mayStore() && !MIb.mayStore())
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000948 return false;
949
950 // Both instructions must be memory operations.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000951 if (!MIa.mayLoadOrStore() && !MIb.mayLoadOrStore())
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000952 return false;
953
Chad Rosiera69dcb62017-03-17 14:19:55 +0000954 return MIa.mayAlias(AA, MIb, /*UseTBAA*/false);
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000955}
956
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000957static bool mayAlias(MachineInstr &MIa,
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000958 SmallVectorImpl<MachineInstr *> &MemInsns,
Chad Rosiera69dcb62017-03-17 14:19:55 +0000959 AliasAnalysis *AA) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000960 for (MachineInstr *MIb : MemInsns)
Chad Rosiera69dcb62017-03-17 14:19:55 +0000961 if (mayAlias(MIa, *MIb, AA))
Chad Rosierce8e5ab2015-05-21 21:36:46 +0000962 return true;
963
964 return false;
965}
966
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000967bool AArch64LoadStoreOpt::findMatchingStore(
968 MachineBasicBlock::iterator I, unsigned Limit,
969 MachineBasicBlock::iterator &StoreI) {
Jun Bum Lim633b2d82016-02-11 16:18:24 +0000970 MachineBasicBlock::iterator B = I->getParent()->begin();
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000971 MachineBasicBlock::iterator MBBI = I;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000972 MachineInstr &LoadMI = *I;
Chad Rosier5c6a66c2016-02-09 15:59:57 +0000973 unsigned BaseReg = getLdStBaseOp(LoadMI).getReg();
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000974
Jun Bum Lim633b2d82016-02-11 16:18:24 +0000975 // If the load is the first instruction in the block, there's obviously
976 // not any matching store.
977 if (MBBI == B)
978 return false;
979
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000980 // Track which registers have been modified and used between the first insn
981 // and the second insn.
Chad Rosierbba881e2016-02-02 15:02:30 +0000982 ModifiedRegs.reset();
983 UsedRegs.reset();
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000984
Jun Bum Lim633b2d82016-02-11 16:18:24 +0000985 unsigned Count = 0;
986 do {
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000987 --MBBI;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000988 MachineInstr &MI = *MBBI;
Jun Bum Lim633b2d82016-02-11 16:18:24 +0000989
Geoff Berry4ff2e362016-07-21 15:20:25 +0000990 // Don't count transient instructions towards the search limit since there
991 // may be different numbers of them if e.g. debug information is present.
992 if (!MI.isTransient())
Jun Bum Lim633b2d82016-02-11 16:18:24 +0000993 ++Count;
Jun Bum Lim6755c3b2015-12-22 16:36:16 +0000994
995 // If the load instruction reads directly from the address to which the
996 // store instruction writes and the stored value is not modified, we can
997 // promote the load. Since we do not handle stores with pre-/post-index,
998 // it's unnecessary to check if BaseReg is modified by the store itself.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +0000999 if (MI.mayStore() && isMatchingStore(LoadMI, MI) &&
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001000 BaseReg == getLdStBaseOp(MI).getReg() &&
Chad Rosiere4e15ba2016-03-09 17:29:48 +00001001 isLdOffsetInRangeOfSt(LoadMI, MI, TII) &&
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001002 !ModifiedRegs[getLdStRegOp(MI).getReg()]) {
1003 StoreI = MBBI;
1004 return true;
1005 }
1006
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001007 if (MI.isCall())
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001008 return false;
1009
1010 // Update modified / uses register lists.
1011 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
1012
1013 // Otherwise, if the base register is modified, we have no match, so
1014 // return early.
1015 if (ModifiedRegs[BaseReg])
1016 return false;
1017
1018 // If we encounter a store aliased with the load, return early.
Chad Rosiera69dcb62017-03-17 14:19:55 +00001019 if (MI.mayStore() && mayAlias(LoadMI, MI, AA))
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001020 return false;
Jun Bum Lim633b2d82016-02-11 16:18:24 +00001021 } while (MBBI != B && Count < Limit);
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001022 return false;
1023}
1024
Chad Rosierc5083c22016-06-10 20:47:14 +00001025// Returns true if FirstMI and MI are candidates for merging or pairing.
1026// Otherwise, returns false.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001027static bool areCandidatesToMergeOrPair(MachineInstr &FirstMI, MachineInstr &MI,
Chad Rosierc5083c22016-06-10 20:47:14 +00001028 LdStPairFlags &Flags,
1029 const AArch64InstrInfo *TII) {
1030 // If this is volatile or if pairing is suppressed, not a candidate.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001031 if (MI.hasOrderedMemoryRef() || TII->isLdStPairSuppressed(MI))
Chad Rosierc5083c22016-06-10 20:47:14 +00001032 return false;
1033
1034 // We should have already checked FirstMI for pair suppression and volatility.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001035 assert(!FirstMI.hasOrderedMemoryRef() &&
1036 !TII->isLdStPairSuppressed(FirstMI) &&
Chad Rosierc5083c22016-06-10 20:47:14 +00001037 "FirstMI shouldn't get here if either of these checks are true.");
1038
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001039 unsigned OpcA = FirstMI.getOpcode();
1040 unsigned OpcB = MI.getOpcode();
Chad Rosierc5083c22016-06-10 20:47:14 +00001041
Chad Rosierc3f6cb92016-02-10 19:45:48 +00001042 // Opcodes match: nothing more to check.
1043 if (OpcA == OpcB)
1044 return true;
1045
1046 // Try to match a sign-extended load/store with a zero-extended load/store.
1047 bool IsValidLdStrOpc, PairIsValidLdStrOpc;
1048 unsigned NonSExtOpc = getMatchingNonSExtOpcode(OpcA, &IsValidLdStrOpc);
1049 assert(IsValidLdStrOpc &&
1050 "Given Opc should be a Load or Store with an immediate");
1051 // OpcA will be the first instruction in the pair.
1052 if (NonSExtOpc == getMatchingNonSExtOpcode(OpcB, &PairIsValidLdStrOpc)) {
1053 Flags.setSExtIdx(NonSExtOpc == (unsigned)OpcA ? 1 : 0);
1054 return true;
1055 }
Chad Rosier00f9d232016-02-11 14:25:08 +00001056
Chad Rosierd6daac42016-11-07 15:27:22 +00001057 // If the second instruction isn't even a mergable/pairable load/store, bail
1058 // out.
Chad Rosier00f9d232016-02-11 14:25:08 +00001059 if (!PairIsValidLdStrOpc)
1060 return false;
1061
Chad Rosierd6daac42016-11-07 15:27:22 +00001062 // FIXME: We don't support merging narrow stores with mixed scaled/unscaled
1063 // offsets.
1064 if (isNarrowStore(OpcA) || isNarrowStore(OpcB))
Chad Rosier00f9d232016-02-11 14:25:08 +00001065 return false;
1066
1067 // Try to match an unscaled load/store with a scaled load/store.
Chad Rosiere4e15ba2016-03-09 17:29:48 +00001068 return TII->isUnscaledLdSt(OpcA) != TII->isUnscaledLdSt(OpcB) &&
Chad Rosier00f9d232016-02-11 14:25:08 +00001069 getMatchingPairOpcode(OpcA) == getMatchingPairOpcode(OpcB);
1070
1071 // FIXME: Can we also match a mixed sext/zext unscaled/scaled pair?
Chad Rosierc3f6cb92016-02-10 19:45:48 +00001072}
1073
Chad Rosier9f4ec2e2016-02-10 18:49:28 +00001074/// Scan the instructions looking for a load/store that can be combined with the
1075/// current instruction into a wider equivalent or a load/store pair.
Tim Northover3b0846e2014-05-24 12:50:23 +00001076MachineBasicBlock::iterator
1077AArch64LoadStoreOpt::findMatchingInsn(MachineBasicBlock::iterator I,
Jun Bum Limcf974432016-03-31 14:47:24 +00001078 LdStPairFlags &Flags, unsigned Limit,
1079 bool FindNarrowMerge) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001080 MachineBasicBlock::iterator E = I->getParent()->end();
1081 MachineBasicBlock::iterator MBBI = I;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001082 MachineInstr &FirstMI = *I;
Tim Northover3b0846e2014-05-24 12:50:23 +00001083 ++MBBI;
1084
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001085 bool MayLoad = FirstMI.mayLoad();
1086 bool IsUnscaled = TII->isUnscaledLdSt(FirstMI);
Chad Rosierf77e9092015-08-06 15:50:12 +00001087 unsigned Reg = getLdStRegOp(FirstMI).getReg();
1088 unsigned BaseReg = getLdStBaseOp(FirstMI).getReg();
1089 int Offset = getLdStOffsetOp(FirstMI).getImm();
Chad Rosierf11d0402015-10-01 18:17:12 +00001090 int OffsetStride = IsUnscaled ? getMemScale(FirstMI) : 1;
Jun Bum Lim397eb7b2016-02-12 15:25:39 +00001091 bool IsPromotableZeroStore = isPromotableZeroStoreInst(FirstMI);
Tim Northover3b0846e2014-05-24 12:50:23 +00001092
1093 // Track which registers have been modified and used between the first insn
1094 // (inclusive) and the second insn.
Chad Rosierbba881e2016-02-02 15:02:30 +00001095 ModifiedRegs.reset();
1096 UsedRegs.reset();
Chad Rosierce8e5ab2015-05-21 21:36:46 +00001097
1098 // Remember any instructions that read/write memory between FirstMI and MI.
1099 SmallVector<MachineInstr *, 4> MemInsns;
1100
Tim Northover3b0846e2014-05-24 12:50:23 +00001101 for (unsigned Count = 0; MBBI != E && Count < Limit; ++MBBI) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001102 MachineInstr &MI = *MBBI;
Tim Northover3b0846e2014-05-24 12:50:23 +00001103
Geoff Berry4ff2e362016-07-21 15:20:25 +00001104 // Don't count transient instructions towards the search limit since there
1105 // may be different numbers of them if e.g. debug information is present.
1106 if (!MI.isTransient())
1107 ++Count;
Tim Northover3b0846e2014-05-24 12:50:23 +00001108
Chad Rosier18896c02016-02-04 16:01:40 +00001109 Flags.setSExtIdx(-1);
Chad Rosierc5083c22016-06-10 20:47:14 +00001110 if (areCandidatesToMergeOrPair(FirstMI, MI, Flags, TII) &&
Chad Rosierc3f6cb92016-02-10 19:45:48 +00001111 getLdStOffsetOp(MI).isImm()) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001112 assert(MI.mayLoadOrStore() && "Expected memory operation.");
Tim Northover3b0846e2014-05-24 12:50:23 +00001113 // If we've found another instruction with the same opcode, check to see
1114 // if the base and offset are compatible with our starting instruction.
1115 // These instructions all have scaled immediate operands, so we just
1116 // check for +1/-1. Make sure to check the new instruction offset is
1117 // actually an immediate and not a symbolic reference destined for
1118 // a relocation.
Chad Rosierf77e9092015-08-06 15:50:12 +00001119 unsigned MIBaseReg = getLdStBaseOp(MI).getReg();
1120 int MIOffset = getLdStOffsetOp(MI).getImm();
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001121 bool MIIsUnscaled = TII->isUnscaledLdSt(MI);
Chad Rosier00f9d232016-02-11 14:25:08 +00001122 if (IsUnscaled != MIIsUnscaled) {
1123 // We're trying to pair instructions that differ in how they are scaled.
1124 // If FirstMI is scaled then scale the offset of MI accordingly.
1125 // Otherwise, do the opposite (i.e., make MI's offset unscaled).
1126 int MemSize = getMemScale(MI);
1127 if (MIIsUnscaled) {
1128 // If the unscaled offset isn't a multiple of the MemSize, we can't
1129 // pair the operations together: bail and keep looking.
Eli Friedmanf184e4b2016-08-12 20:39:51 +00001130 if (MIOffset % MemSize) {
1131 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
1132 MemInsns.push_back(&MI);
Chad Rosier00f9d232016-02-11 14:25:08 +00001133 continue;
Eli Friedmanf184e4b2016-08-12 20:39:51 +00001134 }
Chad Rosier00f9d232016-02-11 14:25:08 +00001135 MIOffset /= MemSize;
1136 } else {
1137 MIOffset *= MemSize;
1138 }
1139 }
1140
Tim Northover3b0846e2014-05-24 12:50:23 +00001141 if (BaseReg == MIBaseReg && ((Offset == MIOffset + OffsetStride) ||
1142 (Offset + OffsetStride == MIOffset))) {
1143 int MinOffset = Offset < MIOffset ? Offset : MIOffset;
Jun Bum Limcf974432016-03-31 14:47:24 +00001144 if (FindNarrowMerge) {
Jun Bum Lim80ec0d32015-11-20 21:14:07 +00001145 // If the alignment requirements of the scaled wide load/store
Jun Bum Limcf974432016-03-31 14:47:24 +00001146 // instruction can't express the offset of the scaled narrow input,
1147 // bail and keep looking. For promotable zero stores, allow only when
1148 // the stored value is the same (i.e., WZR).
1149 if ((!IsUnscaled && alignTo(MinOffset, 2) != MinOffset) ||
1150 (IsPromotableZeroStore && Reg != getLdStRegOp(MI).getReg())) {
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001151 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001152 MemInsns.push_back(&MI);
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001153 continue;
1154 }
1155 } else {
Chad Rosierd1f6c842016-06-10 20:49:18 +00001156 // Pairwise instructions have a 7-bit signed offset field. Single
1157 // insns have a 12-bit unsigned offset field. If the resultant
1158 // immediate offset of merging these instructions is out of range for
1159 // a pairwise instruction, bail and keep looking.
Jun Bum Limcf974432016-03-31 14:47:24 +00001160 if (!inBoundsForPair(IsUnscaled, MinOffset, OffsetStride)) {
1161 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001162 MemInsns.push_back(&MI);
Jun Bum Limcf974432016-03-31 14:47:24 +00001163 continue;
1164 }
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001165 // If the alignment requirements of the paired (scaled) instruction
1166 // can't express the offset of the unscaled input, bail and keep
1167 // looking.
1168 if (IsUnscaled && (alignTo(MinOffset, OffsetStride) != MinOffset)) {
1169 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001170 MemInsns.push_back(&MI);
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001171 continue;
1172 }
Tim Northover3b0846e2014-05-24 12:50:23 +00001173 }
1174 // If the destination register of the loads is the same register, bail
1175 // and keep looking. A load-pair instruction with both destination
1176 // registers the same is UNPREDICTABLE and will result in an exception.
Jun Bum Limcf974432016-03-31 14:47:24 +00001177 if (MayLoad && Reg == getLdStRegOp(MI).getReg()) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001178 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001179 MemInsns.push_back(&MI);
Tim Northover3b0846e2014-05-24 12:50:23 +00001180 continue;
1181 }
1182
1183 // If the Rt of the second instruction was not modified or used between
Chad Rosierce8e5ab2015-05-21 21:36:46 +00001184 // the two instructions and none of the instructions between the second
1185 // and first alias with the second, we can combine the second into the
1186 // first.
Chad Rosierf77e9092015-08-06 15:50:12 +00001187 if (!ModifiedRegs[getLdStRegOp(MI).getReg()] &&
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001188 !(MI.mayLoad() && UsedRegs[getLdStRegOp(MI).getReg()]) &&
Chad Rosiera69dcb62017-03-17 14:19:55 +00001189 !mayAlias(MI, MemInsns, AA)) {
Chad Rosier96a18a92015-07-21 17:42:04 +00001190 Flags.setMergeForward(false);
Tim Northover3b0846e2014-05-24 12:50:23 +00001191 return MBBI;
1192 }
1193
1194 // Likewise, if the Rt of the first instruction is not modified or used
Chad Rosierce8e5ab2015-05-21 21:36:46 +00001195 // between the two instructions and none of the instructions between the
1196 // first and the second alias with the first, we can combine the first
1197 // into the second.
Chad Rosierf77e9092015-08-06 15:50:12 +00001198 if (!ModifiedRegs[getLdStRegOp(FirstMI).getReg()] &&
Chad Rosier5f668e12015-09-03 14:19:43 +00001199 !(MayLoad && UsedRegs[getLdStRegOp(FirstMI).getReg()]) &&
Chad Rosiera69dcb62017-03-17 14:19:55 +00001200 !mayAlias(FirstMI, MemInsns, AA)) {
Chad Rosier96a18a92015-07-21 17:42:04 +00001201 Flags.setMergeForward(true);
Tim Northover3b0846e2014-05-24 12:50:23 +00001202 return MBBI;
1203 }
1204 // Unable to combine these instructions due to interference in between.
1205 // Keep looking.
1206 }
1207 }
1208
Chad Rosierce8e5ab2015-05-21 21:36:46 +00001209 // If the instruction wasn't a matching load or store. Stop searching if we
1210 // encounter a call instruction that might modify memory.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001211 if (MI.isCall())
Tim Northover3b0846e2014-05-24 12:50:23 +00001212 return E;
1213
1214 // Update modified / uses register lists.
1215 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
1216
1217 // Otherwise, if the base register is modified, we have no match, so
1218 // return early.
1219 if (ModifiedRegs[BaseReg])
1220 return E;
Chad Rosierce8e5ab2015-05-21 21:36:46 +00001221
1222 // Update list of instructions that read/write memory.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001223 if (MI.mayLoadOrStore())
1224 MemInsns.push_back(&MI);
Tim Northover3b0846e2014-05-24 12:50:23 +00001225 }
1226 return E;
1227}
1228
1229MachineBasicBlock::iterator
Chad Rosier2dfd3542015-09-23 13:51:44 +00001230AArch64LoadStoreOpt::mergeUpdateInsn(MachineBasicBlock::iterator I,
1231 MachineBasicBlock::iterator Update,
1232 bool IsPreIdx) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001233 assert((Update->getOpcode() == AArch64::ADDXri ||
1234 Update->getOpcode() == AArch64::SUBXri) &&
1235 "Unexpected base register update instruction to merge!");
1236 MachineBasicBlock::iterator NextI = I;
1237 // Return the instruction following the merged instruction, which is
1238 // the instruction following our unmerged load. Unless that's the add/sub
1239 // instruction we're merging, in which case it's the one after that.
1240 if (++NextI == Update)
1241 ++NextI;
1242
1243 int Value = Update->getOperand(2).getImm();
1244 assert(AArch64_AM::getShiftValue(Update->getOperand(3).getImm()) == 0 &&
Chad Rosier2dfd3542015-09-23 13:51:44 +00001245 "Can't merge 1 << 12 offset into pre-/post-indexed load / store");
Tim Northover3b0846e2014-05-24 12:50:23 +00001246 if (Update->getOpcode() == AArch64::SUBXri)
1247 Value = -Value;
1248
Chad Rosier2dfd3542015-09-23 13:51:44 +00001249 unsigned NewOpc = IsPreIdx ? getPreIndexedOpcode(I->getOpcode())
1250 : getPostIndexedOpcode(I->getOpcode());
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001251 MachineInstrBuilder MIB;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001252 if (!isPairedLdSt(*I)) {
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001253 // Non-paired instruction.
1254 MIB = BuildMI(*I->getParent(), I, I->getDebugLoc(), TII->get(NewOpc))
Diana Picus116bbab2017-01-13 09:58:52 +00001255 .add(getLdStRegOp(*Update))
1256 .add(getLdStRegOp(*I))
1257 .add(getLdStBaseOp(*I))
Chad Rosier3ada75f2016-01-28 15:38:24 +00001258 .addImm(Value)
1259 .setMemRefs(I->memoperands_begin(), I->memoperands_end());
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001260 } else {
1261 // Paired instruction.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001262 int Scale = getMemScale(*I);
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001263 MIB = BuildMI(*I->getParent(), I, I->getDebugLoc(), TII->get(NewOpc))
Diana Picus116bbab2017-01-13 09:58:52 +00001264 .add(getLdStRegOp(*Update))
1265 .add(getLdStRegOp(*I, 0))
1266 .add(getLdStRegOp(*I, 1))
1267 .add(getLdStBaseOp(*I))
Chad Rosier3ada75f2016-01-28 15:38:24 +00001268 .addImm(Value / Scale)
1269 .setMemRefs(I->memoperands_begin(), I->memoperands_end());
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001270 }
Tim Northover3b0846e2014-05-24 12:50:23 +00001271 (void)MIB;
1272
Chad Rosier2dfd3542015-09-23 13:51:44 +00001273 if (IsPreIdx)
1274 DEBUG(dbgs() << "Creating pre-indexed load/store.");
1275 else
1276 DEBUG(dbgs() << "Creating post-indexed load/store.");
Tim Northover3b0846e2014-05-24 12:50:23 +00001277 DEBUG(dbgs() << " Replacing instructions:\n ");
1278 DEBUG(I->print(dbgs()));
1279 DEBUG(dbgs() << " ");
1280 DEBUG(Update->print(dbgs()));
1281 DEBUG(dbgs() << " with instruction:\n ");
1282 DEBUG(((MachineInstr *)MIB)->print(dbgs()));
1283 DEBUG(dbgs() << "\n");
1284
1285 // Erase the old instructions for the block.
1286 I->eraseFromParent();
1287 Update->eraseFromParent();
1288
1289 return NextI;
1290}
1291
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001292bool AArch64LoadStoreOpt::isMatchingUpdateInsn(MachineInstr &MemMI,
1293 MachineInstr &MI,
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001294 unsigned BaseReg, int Offset) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001295 switch (MI.getOpcode()) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001296 default:
1297 break;
1298 case AArch64::SUBXri:
Tim Northover3b0846e2014-05-24 12:50:23 +00001299 case AArch64::ADDXri:
1300 // Make sure it's a vanilla immediate operand, not a relocation or
1301 // anything else we can't handle.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001302 if (!MI.getOperand(2).isImm())
Tim Northover3b0846e2014-05-24 12:50:23 +00001303 break;
1304 // Watch out for 1 << 12 shifted value.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001305 if (AArch64_AM::getShiftValue(MI.getOperand(3).getImm()))
Tim Northover3b0846e2014-05-24 12:50:23 +00001306 break;
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001307
1308 // The update instruction source and destination register must be the
1309 // same as the load/store base register.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001310 if (MI.getOperand(0).getReg() != BaseReg ||
1311 MI.getOperand(1).getReg() != BaseReg)
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001312 break;
1313
1314 bool IsPairedInsn = isPairedLdSt(MemMI);
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001315 int UpdateOffset = MI.getOperand(2).getImm();
Eli Friedman8585e9d2016-08-12 20:28:02 +00001316 if (MI.getOpcode() == AArch64::SUBXri)
1317 UpdateOffset = -UpdateOffset;
1318
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001319 // For non-paired load/store instructions, the immediate must fit in a
1320 // signed 9-bit integer.
1321 if (!IsPairedInsn && (UpdateOffset > 255 || UpdateOffset < -256))
1322 break;
1323
1324 // For paired load/store instructions, the immediate must be a multiple of
1325 // the scaling factor. The scaled offset must also fit into a signed 7-bit
1326 // integer.
1327 if (IsPairedInsn) {
Chad Rosier32d4d372015-09-29 16:07:32 +00001328 int Scale = getMemScale(MemMI);
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001329 if (UpdateOffset % Scale != 0)
1330 break;
1331
1332 int ScaledOffset = UpdateOffset / Scale;
Eli Friedman8585e9d2016-08-12 20:28:02 +00001333 if (ScaledOffset > 63 || ScaledOffset < -64)
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001334 break;
Tim Northover3b0846e2014-05-24 12:50:23 +00001335 }
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001336
1337 // If we have a non-zero Offset, we check that it matches the amount
1338 // we're adding to the register.
Eli Friedman8585e9d2016-08-12 20:28:02 +00001339 if (!Offset || Offset == UpdateOffset)
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001340 return true;
Tim Northover3b0846e2014-05-24 12:50:23 +00001341 break;
1342 }
1343 return false;
1344}
1345
1346MachineBasicBlock::iterator AArch64LoadStoreOpt::findMatchingUpdateInsnForward(
Chad Rosier35706ad2016-02-04 21:26:02 +00001347 MachineBasicBlock::iterator I, int UnscaledOffset, unsigned Limit) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001348 MachineBasicBlock::iterator E = I->getParent()->end();
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001349 MachineInstr &MemMI = *I;
Tim Northover3b0846e2014-05-24 12:50:23 +00001350 MachineBasicBlock::iterator MBBI = I;
Tim Northover3b0846e2014-05-24 12:50:23 +00001351
Chad Rosierf77e9092015-08-06 15:50:12 +00001352 unsigned BaseReg = getLdStBaseOp(MemMI).getReg();
Chad Rosier0b15e7c2015-10-01 13:33:31 +00001353 int MIUnscaledOffset = getLdStOffsetOp(MemMI).getImm() * getMemScale(MemMI);
Tim Northover3b0846e2014-05-24 12:50:23 +00001354
Chad Rosierb7c5b912015-10-01 13:43:05 +00001355 // Scan forward looking for post-index opportunities. Updating instructions
1356 // can't be formed if the memory instruction doesn't have the offset we're
1357 // looking for.
1358 if (MIUnscaledOffset != UnscaledOffset)
1359 return E;
1360
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001361 // If the base register overlaps a destination register, we can't
Tim Northover3b0846e2014-05-24 12:50:23 +00001362 // merge the update.
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001363 bool IsPairedInsn = isPairedLdSt(MemMI);
1364 for (unsigned i = 0, e = IsPairedInsn ? 2 : 1; i != e; ++i) {
1365 unsigned DestReg = getLdStRegOp(MemMI, i).getReg();
1366 if (DestReg == BaseReg || TRI->isSubRegister(BaseReg, DestReg))
1367 return E;
1368 }
Tim Northover3b0846e2014-05-24 12:50:23 +00001369
Tim Northover3b0846e2014-05-24 12:50:23 +00001370 // Track which registers have been modified and used between the first insn
1371 // (inclusive) and the second insn.
Chad Rosierbba881e2016-02-02 15:02:30 +00001372 ModifiedRegs.reset();
1373 UsedRegs.reset();
Tim Northover3b0846e2014-05-24 12:50:23 +00001374 ++MBBI;
Chad Rosier35706ad2016-02-04 21:26:02 +00001375 for (unsigned Count = 0; MBBI != E && Count < Limit; ++MBBI) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001376 MachineInstr &MI = *MBBI;
Tim Northover3b0846e2014-05-24 12:50:23 +00001377
Geoff Berry4ff2e362016-07-21 15:20:25 +00001378 // Don't count transient instructions towards the search limit since there
1379 // may be different numbers of them if e.g. debug information is present.
1380 if (!MI.isTransient())
1381 ++Count;
Chad Rosier35706ad2016-02-04 21:26:02 +00001382
Tim Northover3b0846e2014-05-24 12:50:23 +00001383 // If we found a match, return it.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001384 if (isMatchingUpdateInsn(*I, MI, BaseReg, UnscaledOffset))
Tim Northover3b0846e2014-05-24 12:50:23 +00001385 return MBBI;
1386
1387 // Update the status of what the instruction clobbered and used.
1388 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
1389
1390 // Otherwise, if the base register is used or modified, we have no match, so
1391 // return early.
1392 if (ModifiedRegs[BaseReg] || UsedRegs[BaseReg])
1393 return E;
1394 }
1395 return E;
1396}
1397
1398MachineBasicBlock::iterator AArch64LoadStoreOpt::findMatchingUpdateInsnBackward(
Chad Rosier35706ad2016-02-04 21:26:02 +00001399 MachineBasicBlock::iterator I, unsigned Limit) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001400 MachineBasicBlock::iterator B = I->getParent()->begin();
1401 MachineBasicBlock::iterator E = I->getParent()->end();
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001402 MachineInstr &MemMI = *I;
Tim Northover3b0846e2014-05-24 12:50:23 +00001403 MachineBasicBlock::iterator MBBI = I;
Tim Northover3b0846e2014-05-24 12:50:23 +00001404
Chad Rosierf77e9092015-08-06 15:50:12 +00001405 unsigned BaseReg = getLdStBaseOp(MemMI).getReg();
1406 int Offset = getLdStOffsetOp(MemMI).getImm();
Tim Northover3b0846e2014-05-24 12:50:23 +00001407
1408 // If the load/store is the first instruction in the block, there's obviously
1409 // not any matching update. Ditto if the memory offset isn't zero.
1410 if (MBBI == B || Offset != 0)
1411 return E;
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001412 // If the base register overlaps a destination register, we can't
Tim Northover3b0846e2014-05-24 12:50:23 +00001413 // merge the update.
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001414 bool IsPairedInsn = isPairedLdSt(MemMI);
1415 for (unsigned i = 0, e = IsPairedInsn ? 2 : 1; i != e; ++i) {
1416 unsigned DestReg = getLdStRegOp(MemMI, i).getReg();
1417 if (DestReg == BaseReg || TRI->isSubRegister(BaseReg, DestReg))
1418 return E;
1419 }
Tim Northover3b0846e2014-05-24 12:50:23 +00001420
1421 // Track which registers have been modified and used between the first insn
1422 // (inclusive) and the second insn.
Chad Rosierbba881e2016-02-02 15:02:30 +00001423 ModifiedRegs.reset();
1424 UsedRegs.reset();
Geoff Berry173b14d2016-02-09 20:47:21 +00001425 unsigned Count = 0;
1426 do {
1427 --MBBI;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001428 MachineInstr &MI = *MBBI;
Tim Northover3b0846e2014-05-24 12:50:23 +00001429
Geoff Berry4ff2e362016-07-21 15:20:25 +00001430 // Don't count transient instructions towards the search limit since there
1431 // may be different numbers of them if e.g. debug information is present.
1432 if (!MI.isTransient())
Geoff Berry173b14d2016-02-09 20:47:21 +00001433 ++Count;
Chad Rosier35706ad2016-02-04 21:26:02 +00001434
Tim Northover3b0846e2014-05-24 12:50:23 +00001435 // If we found a match, return it.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001436 if (isMatchingUpdateInsn(*I, MI, BaseReg, Offset))
Tim Northover3b0846e2014-05-24 12:50:23 +00001437 return MBBI;
1438
1439 // Update the status of what the instruction clobbered and used.
1440 trackRegDefsUses(MI, ModifiedRegs, UsedRegs, TRI);
1441
1442 // Otherwise, if the base register is used or modified, we have no match, so
1443 // return early.
1444 if (ModifiedRegs[BaseReg] || UsedRegs[BaseReg])
1445 return E;
Geoff Berry173b14d2016-02-09 20:47:21 +00001446 } while (MBBI != B && Count < Limit);
Tim Northover3b0846e2014-05-24 12:50:23 +00001447 return E;
1448}
1449
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001450bool AArch64LoadStoreOpt::tryToPromoteLoadFromStore(
1451 MachineBasicBlock::iterator &MBBI) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001452 MachineInstr &MI = *MBBI;
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001453 // If this is a volatile load, don't mess with it.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001454 if (MI.hasOrderedMemoryRef())
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001455 return false;
1456
1457 // Make sure this is a reg+imm.
1458 // FIXME: It is possible to extend it to handle reg+reg cases.
1459 if (!getLdStOffsetOp(MI).isImm())
1460 return false;
1461
Chad Rosier35706ad2016-02-04 21:26:02 +00001462 // Look backward up to LdStLimit instructions.
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001463 MachineBasicBlock::iterator StoreI;
Chad Rosier35706ad2016-02-04 21:26:02 +00001464 if (findMatchingStore(MBBI, LdStLimit, StoreI)) {
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001465 ++NumLoadsFromStoresPromoted;
1466 // Promote the load. Keeping the iterator straight is a
1467 // pain, so we let the merge routine tell us what the next instruction
1468 // is after it's done mucking about.
1469 MBBI = promoteLoadFromStore(MBBI, StoreI);
1470 return true;
1471 }
1472 return false;
1473}
1474
Chad Rosierd6daac42016-11-07 15:27:22 +00001475// Merge adjacent zero stores into a wider store.
1476bool AArch64LoadStoreOpt::tryToMergeZeroStInst(
Chad Rosier24c46ad2016-02-09 18:10:20 +00001477 MachineBasicBlock::iterator &MBBI) {
Chad Rosierd6daac42016-11-07 15:27:22 +00001478 assert(isPromotableZeroStoreInst(*MBBI) && "Expected narrow store.");
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001479 MachineInstr &MI = *MBBI;
1480 MachineBasicBlock::iterator E = MI.getParent()->end();
Chad Rosier24c46ad2016-02-09 18:10:20 +00001481
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001482 if (!TII->isCandidateToMergeOrPair(MI))
Chad Rosier24c46ad2016-02-09 18:10:20 +00001483 return false;
1484
1485 // Look ahead up to LdStLimit instructions for a mergable instruction.
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001486 LdStPairFlags Flags;
Jun Bum Lim397eb7b2016-02-12 15:25:39 +00001487 MachineBasicBlock::iterator MergeMI =
Jun Bum Limcf974432016-03-31 14:47:24 +00001488 findMatchingInsn(MBBI, Flags, LdStLimit, /* FindNarrowMerge = */ true);
Chad Rosierd7363db2016-02-09 19:09:22 +00001489 if (MergeMI != E) {
Chad Rosierd6daac42016-11-07 15:27:22 +00001490 ++NumZeroStoresPromoted;
1491
Chad Rosier24c46ad2016-02-09 18:10:20 +00001492 // Keeping the iterator straight is a pain, so we let the merge routine tell
1493 // us what the next instruction is after it's done mucking about.
Chad Rosierd6daac42016-11-07 15:27:22 +00001494 MBBI = mergeNarrowZeroStores(MBBI, MergeMI, Flags);
Chad Rosier24c46ad2016-02-09 18:10:20 +00001495 return true;
1496 }
1497 return false;
1498}
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001499
Chad Rosier24c46ad2016-02-09 18:10:20 +00001500// Find loads and stores that can be merged into a single load or store pair
1501// instruction.
1502bool AArch64LoadStoreOpt::tryToPairLdStInst(MachineBasicBlock::iterator &MBBI) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001503 MachineInstr &MI = *MBBI;
1504 MachineBasicBlock::iterator E = MI.getParent()->end();
Chad Rosier24c46ad2016-02-09 18:10:20 +00001505
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001506 if (!TII->isCandidateToMergeOrPair(MI))
Chad Rosier24c46ad2016-02-09 18:10:20 +00001507 return false;
1508
Chad Rosierfc3bf1f2016-02-10 15:52:46 +00001509 // Early exit if the offset is not possible to match. (6 bits of positive
1510 // range, plus allow an extra one in case we find a later insn that matches
1511 // with Offset-1)
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001512 bool IsUnscaled = TII->isUnscaledLdSt(MI);
Chad Rosierfc3bf1f2016-02-10 15:52:46 +00001513 int Offset = getLdStOffsetOp(MI).getImm();
1514 int OffsetStride = IsUnscaled ? getMemScale(MI) : 1;
Nirav Dave0f9d1112017-01-04 21:21:46 +00001515 // Allow one more for offset.
1516 if (Offset > 0)
1517 Offset -= OffsetStride;
Chad Rosierfc3bf1f2016-02-10 15:52:46 +00001518 if (!inBoundsForPair(IsUnscaled, Offset, OffsetStride))
1519 return false;
1520
Chad Rosier24c46ad2016-02-09 18:10:20 +00001521 // Look ahead up to LdStLimit instructions for a pairable instruction.
1522 LdStPairFlags Flags;
Jun Bum Limcf974432016-03-31 14:47:24 +00001523 MachineBasicBlock::iterator Paired =
1524 findMatchingInsn(MBBI, Flags, LdStLimit, /* FindNarrowMerge = */ false);
Chad Rosier24c46ad2016-02-09 18:10:20 +00001525 if (Paired != E) {
1526 ++NumPairCreated;
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001527 if (TII->isUnscaledLdSt(MI))
Chad Rosier24c46ad2016-02-09 18:10:20 +00001528 ++NumUnscaledPairCreated;
1529 // Keeping the iterator straight is a pain, so we let the merge routine tell
1530 // us what the next instruction is after it's done mucking about.
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001531 MBBI = mergePairedInsns(MBBI, Paired, Flags);
1532 return true;
1533 }
1534 return false;
1535}
1536
Jun Bum Lim22fe15e2015-11-06 16:27:47 +00001537bool AArch64LoadStoreOpt::optimizeBlock(MachineBasicBlock &MBB,
Chad Rosierd6daac42016-11-07 15:27:22 +00001538 bool EnableNarrowZeroStOpt) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001539 bool Modified = false;
Chad Rosierdbdb1d62016-02-01 21:38:31 +00001540 // Four tranformations to do here:
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001541 // 1) Find loads that directly read from stores and promote them by
1542 // replacing with mov instructions. If the store is wider than the load,
1543 // the load will be replaced with a bitfield extract.
1544 // e.g.,
1545 // str w1, [x0, #4]
1546 // ldrh w2, [x0, #6]
1547 // ; becomes
1548 // str w1, [x0, #4]
NAKAMURA Takumife1202c2016-06-20 00:37:41 +00001549 // lsr w2, w1, #16
Tim Northover3b0846e2014-05-24 12:50:23 +00001550 for (MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end();
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001551 MBBI != E;) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001552 MachineInstr &MI = *MBBI;
1553 switch (MI.getOpcode()) {
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001554 default:
1555 // Just move on to the next instruction.
1556 ++MBBI;
1557 break;
1558 // Scaled instructions.
1559 case AArch64::LDRBBui:
1560 case AArch64::LDRHHui:
1561 case AArch64::LDRWui:
1562 case AArch64::LDRXui:
1563 // Unscaled instructions.
1564 case AArch64::LDURBBi:
1565 case AArch64::LDURHHi:
1566 case AArch64::LDURWi:
Eugene Zelenko11f69072017-01-25 00:29:26 +00001567 case AArch64::LDURXi:
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001568 if (tryToPromoteLoadFromStore(MBBI)) {
1569 Modified = true;
1570 break;
1571 }
1572 ++MBBI;
1573 break;
1574 }
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001575 }
Chad Rosierd6daac42016-11-07 15:27:22 +00001576 // 2) Merge adjacent zero stores into a wider store.
Jun Bum Lim1de2d442016-02-05 20:02:03 +00001577 // e.g.,
1578 // strh wzr, [x0]
1579 // strh wzr, [x0, #2]
1580 // ; becomes
1581 // str wzr, [x0]
Chad Rosierd6daac42016-11-07 15:27:22 +00001582 // e.g.,
1583 // str wzr, [x0]
1584 // str wzr, [x0, #4]
1585 // ; becomes
1586 // str xzr, [x0]
Jun Bum Lim6755c3b2015-12-22 16:36:16 +00001587 for (MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end();
Chad Rosierd6daac42016-11-07 15:27:22 +00001588 EnableNarrowZeroStOpt && MBBI != E;) {
1589 if (isPromotableZeroStoreInst(*MBBI)) {
1590 if (tryToMergeZeroStInst(MBBI)) {
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001591 Modified = true;
Jun Bum Lim33be4992016-05-06 15:08:57 +00001592 } else
1593 ++MBBI;
1594 } else
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001595 ++MBBI;
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001596 }
Jun Bum Lim33be4992016-05-06 15:08:57 +00001597
Chad Rosierdbdb1d62016-02-01 21:38:31 +00001598 // 3) Find loads and stores that can be merged into a single load or store
1599 // pair instruction.
1600 // e.g.,
1601 // ldr x0, [x2]
1602 // ldr x1, [x2, #8]
1603 // ; becomes
1604 // ldp x0, x1, [x2]
Jun Bum Limc9879ec2015-10-27 19:16:03 +00001605 for (MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end();
Tim Northover3b0846e2014-05-24 12:50:23 +00001606 MBBI != E;) {
Geoff Berry22dfbc52016-08-12 15:26:00 +00001607 if (TII->isPairableLdStInst(*MBBI) && tryToPairLdStInst(MBBI))
1608 Modified = true;
1609 else
Tim Northover3b0846e2014-05-24 12:50:23 +00001610 ++MBBI;
Tim Northover3b0846e2014-05-24 12:50:23 +00001611 }
Chad Rosierdbdb1d62016-02-01 21:38:31 +00001612 // 4) Find base register updates that can be merged into the load or store
1613 // as a base-reg writeback.
1614 // e.g.,
1615 // ldr x0, [x2]
1616 // add x2, x2, #4
1617 // ; becomes
1618 // ldr x0, [x2], #4
Tim Northover3b0846e2014-05-24 12:50:23 +00001619 for (MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end();
1620 MBBI != E;) {
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001621 MachineInstr &MI = *MBBI;
Tim Northover3b0846e2014-05-24 12:50:23 +00001622 // Do update merging. It's simpler to keep this separate from the above
Chad Rosierdbdb1d62016-02-01 21:38:31 +00001623 // switchs, though not strictly necessary.
Duncan P. N. Exon Smithab53fd92016-07-08 20:29:42 +00001624 unsigned Opc = MI.getOpcode();
Tim Northover3b0846e2014-05-24 12:50:23 +00001625 switch (Opc) {
1626 default:
1627 // Just move on to the next instruction.
1628 ++MBBI;
1629 break;
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001630 // Scaled instructions.
Tim Northover3b0846e2014-05-24 12:50:23 +00001631 case AArch64::STRSui:
1632 case AArch64::STRDui:
1633 case AArch64::STRQui:
1634 case AArch64::STRXui:
1635 case AArch64::STRWui:
Chad Rosierdabe2532015-09-29 18:26:15 +00001636 case AArch64::STRHHui:
1637 case AArch64::STRBBui:
Tim Northover3b0846e2014-05-24 12:50:23 +00001638 case AArch64::LDRSui:
1639 case AArch64::LDRDui:
1640 case AArch64::LDRQui:
1641 case AArch64::LDRXui:
1642 case AArch64::LDRWui:
Chad Rosierdabe2532015-09-29 18:26:15 +00001643 case AArch64::LDRHHui:
1644 case AArch64::LDRBBui:
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001645 // Unscaled instructions.
Tim Northover3b0846e2014-05-24 12:50:23 +00001646 case AArch64::STURSi:
1647 case AArch64::STURDi:
1648 case AArch64::STURQi:
1649 case AArch64::STURWi:
1650 case AArch64::STURXi:
1651 case AArch64::LDURSi:
1652 case AArch64::LDURDi:
1653 case AArch64::LDURQi:
1654 case AArch64::LDURWi:
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001655 case AArch64::LDURXi:
1656 // Paired instructions.
1657 case AArch64::LDPSi:
Chad Rosier43150122015-09-29 20:39:55 +00001658 case AArch64::LDPSWi:
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001659 case AArch64::LDPDi:
1660 case AArch64::LDPQi:
1661 case AArch64::LDPWi:
1662 case AArch64::LDPXi:
1663 case AArch64::STPSi:
1664 case AArch64::STPDi:
1665 case AArch64::STPQi:
1666 case AArch64::STPWi:
1667 case AArch64::STPXi: {
Tim Northover3b0846e2014-05-24 12:50:23 +00001668 // Make sure this is a reg+imm (as opposed to an address reloc).
Chad Rosierf77e9092015-08-06 15:50:12 +00001669 if (!getLdStOffsetOp(MI).isImm()) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001670 ++MBBI;
1671 break;
1672 }
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001673 // Look forward to try to form a post-index instruction. For example,
1674 // ldr x0, [x20]
1675 // add x20, x20, #32
1676 // merged into:
1677 // ldr x0, [x20], #32
Tim Northover3b0846e2014-05-24 12:50:23 +00001678 MachineBasicBlock::iterator Update =
Chad Rosier35706ad2016-02-04 21:26:02 +00001679 findMatchingUpdateInsnForward(MBBI, 0, UpdateLimit);
Tim Northover3b0846e2014-05-24 12:50:23 +00001680 if (Update != E) {
1681 // Merge the update into the ld/st.
Chad Rosier2dfd3542015-09-23 13:51:44 +00001682 MBBI = mergeUpdateInsn(MBBI, Update, /*IsPreIdx=*/false);
Tim Northover3b0846e2014-05-24 12:50:23 +00001683 Modified = true;
1684 ++NumPostFolded;
1685 break;
1686 }
1687 // Don't know how to handle pre/post-index versions, so move to the next
1688 // instruction.
Chad Rosiere4e15ba2016-03-09 17:29:48 +00001689 if (TII->isUnscaledLdSt(Opc)) {
Tim Northover3b0846e2014-05-24 12:50:23 +00001690 ++MBBI;
1691 break;
1692 }
1693
1694 // Look back to try to find a pre-index instruction. For example,
1695 // add x0, x0, #8
1696 // ldr x1, [x0]
1697 // merged into:
1698 // ldr x1, [x0, #8]!
Chad Rosier35706ad2016-02-04 21:26:02 +00001699 Update = findMatchingUpdateInsnBackward(MBBI, UpdateLimit);
Tim Northover3b0846e2014-05-24 12:50:23 +00001700 if (Update != E) {
1701 // Merge the update into the ld/st.
Chad Rosier2dfd3542015-09-23 13:51:44 +00001702 MBBI = mergeUpdateInsn(MBBI, Update, /*IsPreIdx=*/true);
Tim Northover3b0846e2014-05-24 12:50:23 +00001703 Modified = true;
1704 ++NumPreFolded;
1705 break;
1706 }
Chad Rosier7a83d772015-10-01 13:09:44 +00001707 // The immediate in the load/store is scaled by the size of the memory
1708 // operation. The immediate in the add we're looking for,
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001709 // however, is not, so adjust here.
Chad Rosier0b15e7c2015-10-01 13:33:31 +00001710 int UnscaledOffset = getLdStOffsetOp(MI).getImm() * getMemScale(MI);
Chad Rosier1bbd7fb2015-09-25 17:48:17 +00001711
Tim Northover3b0846e2014-05-24 12:50:23 +00001712 // Look forward to try to find a post-index instruction. For example,
1713 // ldr x1, [x0, #64]
1714 // add x0, x0, #64
1715 // merged into:
1716 // ldr x1, [x0, #64]!
Chad Rosier35706ad2016-02-04 21:26:02 +00001717 Update = findMatchingUpdateInsnForward(MBBI, UnscaledOffset, UpdateLimit);
Tim Northover3b0846e2014-05-24 12:50:23 +00001718 if (Update != E) {
1719 // Merge the update into the ld/st.
Chad Rosier2dfd3542015-09-23 13:51:44 +00001720 MBBI = mergeUpdateInsn(MBBI, Update, /*IsPreIdx=*/true);
Tim Northover3b0846e2014-05-24 12:50:23 +00001721 Modified = true;
1722 ++NumPreFolded;
1723 break;
1724 }
1725
1726 // Nothing found. Just move to the next instruction.
1727 ++MBBI;
1728 break;
1729 }
Tim Northover3b0846e2014-05-24 12:50:23 +00001730 }
1731 }
1732
1733 return Modified;
1734}
1735
1736bool AArch64LoadStoreOpt::runOnMachineFunction(MachineFunction &Fn) {
Andrew Kaylor1ac98bb2016-04-25 21:58:52 +00001737 if (skipFunction(*Fn.getFunction()))
1738 return false;
1739
Oliver Stannardd414c992015-11-10 11:04:18 +00001740 Subtarget = &static_cast<const AArch64Subtarget &>(Fn.getSubtarget());
1741 TII = static_cast<const AArch64InstrInfo *>(Subtarget->getInstrInfo());
1742 TRI = Subtarget->getRegisterInfo();
Chad Rosiera69dcb62017-03-17 14:19:55 +00001743 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Tim Northover3b0846e2014-05-24 12:50:23 +00001744
Chad Rosierbba881e2016-02-02 15:02:30 +00001745 // Resize the modified and used register bitfield trackers. We do this once
1746 // per function and then clear the bitfield each time we optimize a load or
1747 // store.
1748 ModifiedRegs.resize(TRI->getNumRegs());
1749 UsedRegs.resize(TRI->getNumRegs());
1750
Tim Northover3b0846e2014-05-24 12:50:23 +00001751 bool Modified = false;
Chad Rosier10c7aaa2016-11-11 14:10:12 +00001752 bool enableNarrowZeroStOpt = !Subtarget->requiresStrictAlign();
Tim Northover3b0846e2014-05-24 12:50:23 +00001753 for (auto &MBB : Fn)
Chad Rosierd6daac42016-11-07 15:27:22 +00001754 Modified |= optimizeBlock(MBB, enableNarrowZeroStOpt);
Tim Northover3b0846e2014-05-24 12:50:23 +00001755
1756 return Modified;
1757}
1758
Chad Rosier8ade0342016-11-11 19:52:45 +00001759// FIXME: Do we need/want a pre-alloc pass like ARM has to try to keep loads and
1760// stores near one another? Note: The pre-RA instruction scheduler already has
1761// hooks to try and schedule pairable loads/stores together to improve pairing
1762// opportunities. Thus, pre-RA pairing pass may not be worth the effort.
Tim Northover3b0846e2014-05-24 12:50:23 +00001763
Chad Rosier3f8b09d2016-02-09 19:42:19 +00001764// FIXME: When pairing store instructions it's very possible for this pass to
1765// hoist a store with a KILL marker above another use (without a KILL marker).
1766// The resulting IR is invalid, but nothing uses the KILL markers after this
1767// pass, so it's never caused a problem in practice.
1768
Chad Rosier43f5c842015-08-05 12:40:13 +00001769/// createAArch64LoadStoreOptimizationPass - returns an instance of the
1770/// load / store optimization pass.
Tim Northover3b0846e2014-05-24 12:50:23 +00001771FunctionPass *llvm::createAArch64LoadStoreOptimizationPass() {
1772 return new AArch64LoadStoreOpt();
1773}