LLVM  8.0.1
AArch64CollectLOH.cpp
Go to the documentation of this file.
1 //===---------- AArch64CollectLOH.cpp - AArch64 collect LOH 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 collect the Linker Optimization Hint (LOH).
11 // This pass should be run at the very end of the compilation flow, just before
12 // assembly printer.
13 // To be useful for the linker, the LOH must be printed into the assembly file.
14 //
15 // A LOH describes a sequence of instructions that may be optimized by the
16 // linker.
17 // This same sequence cannot be optimized by the compiler because some of
18 // the information will be known at link time.
19 // For instance, consider the following sequence:
20 // L1: adrp xA, sym@PAGE
21 // L2: add xB, xA, sym@PAGEOFF
22 // L3: ldr xC, [xB, #imm]
23 // This sequence can be turned into:
24 // A literal load if sym@PAGE + sym@PAGEOFF + #imm - address(L3) is < 1MB:
25 // L3: ldr xC, sym+#imm
26 // It may also be turned into either the following more efficient
27 // code sequences:
28 // - If sym@PAGEOFF + #imm fits the encoding space of L3.
29 // L1: adrp xA, sym@PAGE
30 // L3: ldr xC, [xB, sym@PAGEOFF + #imm]
31 // - If sym@PAGE + sym@PAGEOFF - address(L1) < 1MB:
32 // L1: adr xA, sym
33 // L3: ldr xC, [xB, #imm]
34 //
35 // To be valid a LOH must meet all the requirements needed by all the related
36 // possible linker transformations.
37 // For instance, using the running example, the constraints to emit
38 // ".loh AdrpAddLdr" are:
39 // - L1, L2, and L3 instructions are of the expected type, i.e.,
40 // respectively ADRP, ADD (immediate), and LD.
41 // - The result of L1 is used only by L2.
42 // - The register argument (xA) used in the ADD instruction is defined
43 // only by L1.
44 // - The result of L2 is used only by L3.
45 // - The base address (xB) in L3 is defined only L2.
46 // - The ADRP in L1 and the ADD in L2 must reference the same symbol using
47 // @PAGE/@PAGEOFF with no additional constants
48 //
49 // Currently supported LOHs are:
50 // * So called non-ADRP-related:
51 // - .loh AdrpAddLdr L1, L2, L3:
52 // L1: adrp xA, sym@PAGE
53 // L2: add xB, xA, sym@PAGEOFF
54 // L3: ldr xC, [xB, #imm]
55 // - .loh AdrpLdrGotLdr L1, L2, L3:
56 // L1: adrp xA, sym@GOTPAGE
57 // L2: ldr xB, [xA, sym@GOTPAGEOFF]
58 // L3: ldr xC, [xB, #imm]
59 // - .loh AdrpLdr L1, L3:
60 // L1: adrp xA, sym@PAGE
61 // L3: ldr xC, [xA, sym@PAGEOFF]
62 // - .loh AdrpAddStr L1, L2, L3:
63 // L1: adrp xA, sym@PAGE
64 // L2: add xB, xA, sym@PAGEOFF
65 // L3: str xC, [xB, #imm]
66 // - .loh AdrpLdrGotStr L1, L2, L3:
67 // L1: adrp xA, sym@GOTPAGE
68 // L2: ldr xB, [xA, sym@GOTPAGEOFF]
69 // L3: str xC, [xB, #imm]
70 // - .loh AdrpAdd L1, L2:
71 // L1: adrp xA, sym@PAGE
72 // L2: add xB, xA, sym@PAGEOFF
73 // For all these LOHs, L1, L2, L3 form a simple chain:
74 // L1 result is used only by L2 and L2 result by L3.
75 // L3 LOH-related argument is defined only by L2 and L2 LOH-related argument
76 // by L1.
77 // All these LOHs aim at using more efficient load/store patterns by folding
78 // some instructions used to compute the address directly into the load/store.
79 //
80 // * So called ADRP-related:
81 // - .loh AdrpAdrp L2, L1:
82 // L2: ADRP xA, sym1@PAGE
83 // L1: ADRP xA, sym2@PAGE
84 // L2 dominates L1 and xA is not redifined between L2 and L1
85 // This LOH aims at getting rid of redundant ADRP instructions.
86 //
87 // The overall design for emitting the LOHs is:
88 // 1. AArch64CollectLOH (this pass) records the LOHs in the AArch64FunctionInfo.
89 // 2. AArch64AsmPrinter reads the LOHs from AArch64FunctionInfo and it:
90 // 1. Associates them a label.
91 // 2. Emits them in a MCStreamer (EmitLOHDirective).
92 // - The MCMachOStreamer records them into the MCAssembler.
93 // - The MCAsmStreamer prints them.
94 // - Other MCStreamers ignore them.
95 // 3. Closes the MCStreamer:
96 // - The MachObjectWriter gets them from the MCAssembler and writes
97 // them in the object file.
98 // - Other ObjectWriters ignore them.
99 //===----------------------------------------------------------------------===//
100 
101 #include "AArch64.h"
102 #include "AArch64InstrInfo.h"
104 #include "llvm/ADT/BitVector.h"
105 #include "llvm/ADT/DenseMap.h"
106 #include "llvm/ADT/MapVector.h"
107 #include "llvm/ADT/SmallVector.h"
108 #include "llvm/ADT/Statistic.h"
113 #include "llvm/Support/Debug.h"
117 using namespace llvm;
118 
119 #define DEBUG_TYPE "aarch64-collect-loh"
120 
121 STATISTIC(NumADRPSimpleCandidate,
122  "Number of simplifiable ADRP dominate by another");
123 STATISTIC(NumADDToSTR, "Number of simplifiable STR reachable by ADD");
124 STATISTIC(NumLDRToSTR, "Number of simplifiable STR reachable by LDR");
125 STATISTIC(NumADDToLDR, "Number of simplifiable LDR reachable by ADD");
126 STATISTIC(NumLDRToLDR, "Number of simplifiable LDR reachable by LDR");
127 STATISTIC(NumADRPToLDR, "Number of simplifiable LDR reachable by ADRP");
128 STATISTIC(NumADRSimpleCandidate, "Number of simplifiable ADRP + ADD");
129 
130 #define AARCH64_COLLECT_LOH_NAME "AArch64 Collect Linker Optimization Hint (LOH)"
131 
132 namespace {
133 
134 struct AArch64CollectLOH : public MachineFunctionPass {
135  static char ID;
136  AArch64CollectLOH() : MachineFunctionPass(ID) {}
137 
138  bool runOnMachineFunction(MachineFunction &MF) override;
139 
140  MachineFunctionProperties getRequiredProperties() const override {
143  }
144 
145  StringRef getPassName() const override { return AARCH64_COLLECT_LOH_NAME; }
146 
147  void getAnalysisUsage(AnalysisUsage &AU) const override {
149  AU.setPreservesAll();
150  }
151 };
152 
153 char AArch64CollectLOH::ID = 0;
154 
155 } // end anonymous namespace.
156 
157 INITIALIZE_PASS(AArch64CollectLOH, "aarch64-collect-loh",
158  AARCH64_COLLECT_LOH_NAME, false, false)
159 
160 static bool canAddBePartOfLOH(const MachineInstr &MI) {
161  // Check immediate to see if the immediate is an address.
162  switch (MI.getOperand(2).getType()) {
163  default:
164  return false;
169  return true;
170  }
171 }
172 
173 /// Answer the following question: Can Def be one of the definition
174 /// involved in a part of a LOH?
175 static bool canDefBePartOfLOH(const MachineInstr &MI) {
176  // Accept ADRP, ADDLow and LOADGot.
177  switch (MI.getOpcode()) {
178  default:
179  return false;
180  case AArch64::ADRP:
181  return true;
182  case AArch64::ADDXri:
183  return canAddBePartOfLOH(MI);
184  case AArch64::LDRXui:
185  // Check immediate to see if the immediate is an address.
186  switch (MI.getOperand(2).getType()) {
187  default:
188  return false;
191  }
192  }
193 }
194 
195 /// Check whether the given instruction can the end of a LOH chain involving a
196 /// store.
197 static bool isCandidateStore(const MachineInstr &MI, const MachineOperand &MO) {
198  switch (MI.getOpcode()) {
199  default:
200  return false;
201  case AArch64::STRBBui:
202  case AArch64::STRHHui:
203  case AArch64::STRBui:
204  case AArch64::STRHui:
205  case AArch64::STRWui:
206  case AArch64::STRXui:
207  case AArch64::STRSui:
208  case AArch64::STRDui:
209  case AArch64::STRQui:
210  // We can only optimize the index operand.
211  // In case we have str xA, [xA, #imm], this is two different uses
212  // of xA and we cannot fold, otherwise the xA stored may be wrong,
213  // even if #imm == 0.
214  return MI.getOperandNo(&MO) == 1 &&
215  MI.getOperand(0).getReg() != MI.getOperand(1).getReg();
216  }
217 }
218 
219 /// Check whether the given instruction can be the end of a LOH chain
220 /// involving a load.
221 static bool isCandidateLoad(const MachineInstr &MI) {
222  switch (MI.getOpcode()) {
223  default:
224  return false;
225  case AArch64::LDRSBWui:
226  case AArch64::LDRSBXui:
227  case AArch64::LDRSHWui:
228  case AArch64::LDRSHXui:
229  case AArch64::LDRSWui:
230  case AArch64::LDRBui:
231  case AArch64::LDRHui:
232  case AArch64::LDRWui:
233  case AArch64::LDRXui:
234  case AArch64::LDRSui:
235  case AArch64::LDRDui:
236  case AArch64::LDRQui:
237  return !(MI.getOperand(2).getTargetFlags() & AArch64II::MO_GOT);
238  }
239 }
240 
241 /// Check whether the given instruction can load a litteral.
243  switch (MI.getOpcode()) {
244  default:
245  return false;
246  case AArch64::LDRSWui:
247  case AArch64::LDRWui:
248  case AArch64::LDRXui:
249  case AArch64::LDRSui:
250  case AArch64::LDRDui:
251  case AArch64::LDRQui:
252  return true;
253  }
254 }
255 
256 /// Number of GPR registers traked by mapRegToGPRIndex()
257 static const unsigned N_GPR_REGS = 31;
258 /// Map register number to index from 0-30.
260  static_assert(AArch64::X28 - AArch64::X0 + 3 == N_GPR_REGS, "Number of GPRs");
261  static_assert(AArch64::W30 - AArch64::W0 + 1 == N_GPR_REGS, "Number of GPRs");
262  if (AArch64::X0 <= Reg && Reg <= AArch64::X28)
263  return Reg - AArch64::X0;
264  if (AArch64::W0 <= Reg && Reg <= AArch64::W30)
265  return Reg - AArch64::W0;
266  // TableGen gives "FP" and "LR" an index not adjacent to X28 so we have to
267  // handle them as special cases.
268  if (Reg == AArch64::FP)
269  return 29;
270  if (Reg == AArch64::LR)
271  return 30;
272  return -1;
273 }
274 
275 /// State tracked per register.
276 /// The main algorithm walks backwards over a basic block maintaining this
277 /// datastructure for each tracked general purpose register.
278 struct LOHInfo {
279  MCLOHType Type : 8; ///< "Best" type of LOH possible.
280  bool IsCandidate : 1; ///< Possible LOH candidate.
281  bool OneUser : 1; ///< Found exactly one user (yet).
282  bool MultiUsers : 1; ///< Found multiple users.
283  const MachineInstr *MI0; ///< First instruction involved in the LOH.
284  const MachineInstr *MI1; ///< Second instruction involved in the LOH
285  /// (if any).
286  const MachineInstr *LastADRP; ///< Last ADRP in same register.
287 };
288 
289 /// Update state \p Info given \p MI uses the tracked register.
290 static void handleUse(const MachineInstr &MI, const MachineOperand &MO,
291  LOHInfo &Info) {
292  // We have multiple uses if we already found one before.
293  if (Info.MultiUsers || Info.OneUser) {
294  Info.IsCandidate = false;
295  Info.MultiUsers = true;
296  return;
297  }
298  Info.OneUser = true;
299 
300  // Start new LOHInfo if applicable.
301  if (isCandidateLoad(MI)) {
302  Info.Type = MCLOH_AdrpLdr;
303  Info.IsCandidate = true;
304  Info.MI0 = &MI;
305  // Note that even this is AdrpLdr now, we can switch to a Ldr variant
306  // later.
307  } else if (isCandidateStore(MI, MO)) {
308  Info.Type = MCLOH_AdrpAddStr;
309  Info.IsCandidate = true;
310  Info.MI0 = &MI;
311  Info.MI1 = nullptr;
312  } else if (MI.getOpcode() == AArch64::ADDXri) {
313  Info.Type = MCLOH_AdrpAdd;
314  Info.IsCandidate = true;
315  Info.MI0 = &MI;
316  } else if (MI.getOpcode() == AArch64::LDRXui &&
318  Info.Type = MCLOH_AdrpLdrGot;
319  Info.IsCandidate = true;
320  Info.MI0 = &MI;
321  }
322 }
323 
324 /// Update state \p Info given the tracked register is clobbered.
325 static void handleClobber(LOHInfo &Info) {
326  Info.IsCandidate = false;
327  Info.OneUser = false;
328  Info.MultiUsers = false;
329  Info.LastADRP = nullptr;
330 }
331 
332 /// Update state \p Info given that \p MI is possibly the middle instruction
333 /// of an LOH involving 3 instructions.
334 static bool handleMiddleInst(const MachineInstr &MI, LOHInfo &DefInfo,
335  LOHInfo &OpInfo) {
336  if (!DefInfo.IsCandidate || (&DefInfo != &OpInfo && OpInfo.OneUser))
337  return false;
338  // Copy LOHInfo for dest register to LOHInfo for source register.
339  if (&DefInfo != &OpInfo) {
340  OpInfo = DefInfo;
341  // Invalidate \p DefInfo because we track it in \p OpInfo now.
342  handleClobber(DefInfo);
343  } else
344  DefInfo.LastADRP = nullptr;
345 
346  // Advance state machine.
347  assert(OpInfo.IsCandidate && "Expect valid state");
348  if (MI.getOpcode() == AArch64::ADDXri && canAddBePartOfLOH(MI)) {
349  if (OpInfo.Type == MCLOH_AdrpLdr) {
350  OpInfo.Type = MCLOH_AdrpAddLdr;
351  OpInfo.IsCandidate = true;
352  OpInfo.MI1 = &MI;
353  return true;
354  } else if (OpInfo.Type == MCLOH_AdrpAddStr && OpInfo.MI1 == nullptr) {
355  OpInfo.Type = MCLOH_AdrpAddStr;
356  OpInfo.IsCandidate = true;
357  OpInfo.MI1 = &MI;
358  return true;
359  }
360  } else {
361  assert(MI.getOpcode() == AArch64::LDRXui && "Expect LDRXui");
363  "Expected GOT relocation");
364  if (OpInfo.Type == MCLOH_AdrpAddStr && OpInfo.MI1 == nullptr) {
365  OpInfo.Type = MCLOH_AdrpLdrGotStr;
366  OpInfo.IsCandidate = true;
367  OpInfo.MI1 = &MI;
368  return true;
369  } else if (OpInfo.Type == MCLOH_AdrpLdr) {
370  OpInfo.Type = MCLOH_AdrpLdrGotLdr;
371  OpInfo.IsCandidate = true;
372  OpInfo.MI1 = &MI;
373  return true;
374  }
375  }
376  return false;
377 }
378 
379 /// Update state when seeing and ADRP instruction.
381  LOHInfo &Info) {
382  if (Info.LastADRP != nullptr) {
383  LLVM_DEBUG(dbgs() << "Adding MCLOH_AdrpAdrp:\n"
384  << '\t' << MI << '\t' << *Info.LastADRP);
385  AFI.addLOHDirective(MCLOH_AdrpAdrp, {&MI, Info.LastADRP});
386  ++NumADRPSimpleCandidate;
387  }
388 
389  // Produce LOH directive if possible.
390  if (Info.IsCandidate) {
391  switch (Info.Type) {
392  case MCLOH_AdrpAdd:
393  LLVM_DEBUG(dbgs() << "Adding MCLOH_AdrpAdd:\n"
394  << '\t' << MI << '\t' << *Info.MI0);
395  AFI.addLOHDirective(MCLOH_AdrpAdd, {&MI, Info.MI0});
396  ++NumADRSimpleCandidate;
397  break;
398  case MCLOH_AdrpLdr:
399  if (supportLoadFromLiteral(*Info.MI0)) {
400  LLVM_DEBUG(dbgs() << "Adding MCLOH_AdrpLdr:\n"
401  << '\t' << MI << '\t' << *Info.MI0);
402  AFI.addLOHDirective(MCLOH_AdrpLdr, {&MI, Info.MI0});
403  ++NumADRPToLDR;
404  }
405  break;
406  case MCLOH_AdrpAddLdr:
407  LLVM_DEBUG(dbgs() << "Adding MCLOH_AdrpAddLdr:\n"
408  << '\t' << MI << '\t' << *Info.MI1 << '\t'
409  << *Info.MI0);
410  AFI.addLOHDirective(MCLOH_AdrpAddLdr, {&MI, Info.MI1, Info.MI0});
411  ++NumADDToLDR;
412  break;
413  case MCLOH_AdrpAddStr:
414  if (Info.MI1 != nullptr) {
415  LLVM_DEBUG(dbgs() << "Adding MCLOH_AdrpAddStr:\n"
416  << '\t' << MI << '\t' << *Info.MI1 << '\t'
417  << *Info.MI0);
418  AFI.addLOHDirective(MCLOH_AdrpAddStr, {&MI, Info.MI1, Info.MI0});
419  ++NumADDToSTR;
420  }
421  break;
422  case MCLOH_AdrpLdrGotLdr:
423  LLVM_DEBUG(dbgs() << "Adding MCLOH_AdrpLdrGotLdr:\n"
424  << '\t' << MI << '\t' << *Info.MI1 << '\t'
425  << *Info.MI0);
426  AFI.addLOHDirective(MCLOH_AdrpLdrGotLdr, {&MI, Info.MI1, Info.MI0});
427  ++NumLDRToLDR;
428  break;
429  case MCLOH_AdrpLdrGotStr:
430  LLVM_DEBUG(dbgs() << "Adding MCLOH_AdrpLdrGotStr:\n"
431  << '\t' << MI << '\t' << *Info.MI1 << '\t'
432  << *Info.MI0);
433  AFI.addLOHDirective(MCLOH_AdrpLdrGotStr, {&MI, Info.MI1, Info.MI0});
434  ++NumLDRToSTR;
435  break;
436  case MCLOH_AdrpLdrGot:
437  LLVM_DEBUG(dbgs() << "Adding MCLOH_AdrpLdrGot:\n"
438  << '\t' << MI << '\t' << *Info.MI0);
439  AFI.addLOHDirective(MCLOH_AdrpLdrGot, {&MI, Info.MI0});
440  break;
441  case MCLOH_AdrpAdrp:
442  llvm_unreachable("MCLOH_AdrpAdrp not used in state machine");
443  }
444  }
445 
446  handleClobber(Info);
447  Info.LastADRP = &MI;
448 }
449 
450 static void handleRegMaskClobber(const uint32_t *RegMask, MCPhysReg Reg,
451  LOHInfo *LOHInfos) {
452  if (!MachineOperand::clobbersPhysReg(RegMask, Reg))
453  return;
454  int Idx = mapRegToGPRIndex(Reg);
455  if (Idx >= 0)
456  handleClobber(LOHInfos[Idx]);
457 }
458 
459 static void handleNormalInst(const MachineInstr &MI, LOHInfo *LOHInfos) {
460  // Handle defs and regmasks.
461  for (const MachineOperand &MO : MI.operands()) {
462  if (MO.isRegMask()) {
463  const uint32_t *RegMask = MO.getRegMask();
464  for (MCPhysReg Reg : AArch64::GPR32RegClass)
465  handleRegMaskClobber(RegMask, Reg, LOHInfos);
466  for (MCPhysReg Reg : AArch64::GPR64RegClass)
467  handleRegMaskClobber(RegMask, Reg, LOHInfos);
468  continue;
469  }
470  if (!MO.isReg() || !MO.isDef())
471  continue;
472  int Idx = mapRegToGPRIndex(MO.getReg());
473  if (Idx < 0)
474  continue;
475  handleClobber(LOHInfos[Idx]);
476  }
477  // Handle uses.
478  for (const MachineOperand &MO : MI.uses()) {
479  if (!MO.isReg() || !MO.readsReg())
480  continue;
481  int Idx = mapRegToGPRIndex(MO.getReg());
482  if (Idx < 0)
483  continue;
484  handleUse(MI, MO, LOHInfos[Idx]);
485  }
486 }
487 
488 bool AArch64CollectLOH::runOnMachineFunction(MachineFunction &MF) {
489  if (skipFunction(MF.getFunction()))
490  return false;
491 
492  LLVM_DEBUG(dbgs() << "********** AArch64 Collect LOH **********\n"
493  << "Looking in function " << MF.getName() << '\n');
494 
495  LOHInfo LOHInfos[N_GPR_REGS];
497  for (const MachineBasicBlock &MBB : MF) {
498  // Reset register tracking state.
499  memset(LOHInfos, 0, sizeof(LOHInfos));
500  // Live-out registers are used.
501  for (const MachineBasicBlock *Succ : MBB.successors()) {
502  for (const auto &LI : Succ->liveins()) {
503  int RegIdx = mapRegToGPRIndex(LI.PhysReg);
504  if (RegIdx >= 0)
505  LOHInfos[RegIdx].OneUser = true;
506  }
507  }
508 
509  // Walk the basic block backwards and update the per register state machine
510  // in the process.
511  for (const MachineInstr &MI : make_range(MBB.rbegin(), MBB.rend())) {
512  unsigned Opcode = MI.getOpcode();
513  switch (Opcode) {
514  case AArch64::ADDXri:
515  case AArch64::LDRXui:
516  if (canDefBePartOfLOH(MI)) {
517  const MachineOperand &Def = MI.getOperand(0);
518  const MachineOperand &Op = MI.getOperand(1);
519  assert(Def.isReg() && Def.isDef() && "Expected reg def");
520  assert(Op.isReg() && Op.isUse() && "Expected reg use");
521  int DefIdx = mapRegToGPRIndex(Def.getReg());
522  int OpIdx = mapRegToGPRIndex(Op.getReg());
523  if (DefIdx >= 0 && OpIdx >= 0 &&
524  handleMiddleInst(MI, LOHInfos[DefIdx], LOHInfos[OpIdx]))
525  continue;
526  }
527  break;
528  case AArch64::ADRP:
529  const MachineOperand &Op0 = MI.getOperand(0);
530  int Idx = mapRegToGPRIndex(Op0.getReg());
531  if (Idx >= 0) {
532  handleADRP(MI, AFI, LOHInfos[Idx]);
533  continue;
534  }
535  break;
536  }
537  handleNormalInst(MI, LOHInfos);
538  }
539  }
540 
541  // Return "no change": The pass only collects information.
542  return false;
543 }
544 
546  return new AArch64CollectLOH();
547 }
unsigned getTargetFlags() const
static void handleNormalInst(const MachineInstr &MI, LOHInfo *LOHInfos)
AArch64FunctionInfo - This class is derived from MachineFunctionInfo and contains private AArch64-spe...
This class represents lattice values for constants.
Definition: AllocatorList.h:24
iterator_range< mop_iterator > uses()
Returns a range that includes all operands that are register uses.
Definition: MachineInstr.h:492
unsigned getReg() const
getReg - Returns the register number.
unsigned getOperandNo(const_mop_iterator I) const
Returns the number of the operand iterator I points to.
Definition: MachineInstr.h:509
Address of indexed Jump Table for switch.
unsigned Reg
const MachineInstr * LastADRP
Last ADRP in same register.
Adrp _v -> Add _v -> Ldr.
STATISTIC(NumFunctions, "Total number of functions")
iterator_range< mop_iterator > operands()
Definition: MachineInstr.h:459
iterator_range< succ_iterator > successors()
FunctionPass * createAArch64CollectLOHPass()
Adrp _v -> Ldr _v -> Ldr.
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
static bool isCandidateLoad(const MachineInstr &MI)
Check whether the given instruction can be the end of a LOH chain involving a load.
static int mapRegToGPRIndex(MCPhysReg Reg)
Map register number to index from 0-30.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
Definition: MachineInstr.h:409
static const unsigned N_GPR_REGS
Number of GPR registers traked by mapRegToGPRIndex()
State tracked per register.
MO_GOT - This flag indicates that a symbol operand represents the address of the GOT entry for the sy...
INITIALIZE_PASS(AArch64CollectLOH, "aarch64-collect-loh", AARCH64_COLLECT_LOH_NAME, false, false) static bool canAddBePartOfLOH(const MachineInstr &MI)
static bool isCandidateStore(const MachineInstr &MI, const MachineOperand &MO)
Check whether the given instruction can the end of a LOH chain involving a store. ...
Analysis containing CSE Info
Definition: CSEInfo.cpp:21
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
static void handleRegMaskClobber(const uint32_t *RegMask, MCPhysReg Reg, LOHInfo *LOHInfos)
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
static bool handleMiddleInst(const MachineInstr &MI, LOHInfo &DefInfo, LOHInfo &OpInfo)
Update state Info given that MI is possibly the middle instruction of an LOH involving 3 instructions...
Address of a global value.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
bool MultiUsers
Found multiple users.
bool OneUser
Found exactly one user (yet).
Represent the analysis usage information of a pass.
MCLOHType
Linker Optimization Hint Type.
Address of a basic block.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:285
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
static void handleClobber(LOHInfo &Info)
Update state Info given the tracked register is clobbered.
Adrp _v -> Add _v -> Str.
MachineOperand class - Representation of each machine instruction operand.
const Function & getFunction() const
Return the LLVM function that this machine code represents.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:133
static bool clobbersPhysReg(const uint32_t *RegMask, unsigned PhysReg)
clobbersPhysReg - Returns true if this RegMask clobbers PhysReg.
void setPreservesAll()
Set by analyses that do not transform their input at all.
bool IsCandidate
Possible LOH candidate.
MachineFunctionProperties & set(Property P)
Representation of each machine instruction.
Definition: MachineInstr.h:64
static void handleUse(const MachineInstr &MI, const MachineOperand &MO, LOHInfo &Info)
Update state Info given MI uses the tracked register.
MCLOHType Type
"Best" type of LOH possible.
Adrp xY, _v1 -> Adrp xY, _v2.
Adrp _v -> Ldr _v -> Str.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
static bool canDefBePartOfLOH(const MachineInstr &MI)
Answer the following question: Can Def be one of the definition involved in a part of a LOH...
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
const MachineInstr * MI0
First instruction involved in the LOH.
void addLOHDirective(MCLOHType Kind, MILOHArgs Args)
Add a LOH directive of this Kind and this Args.
aarch64 promote const
static bool supportLoadFromLiteral(const MachineInstr &MI)
Check whether the given instruction can load a litteral.
IRTranslator LLVM IR MI
const MachineInstr * MI1
Second instruction involved in the LOH (if any).
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
static void handleADRP(const MachineInstr &MI, AArch64FunctionInfo &AFI, LOHInfo &Info)
Update state when seeing and ADRP instruction.
Address of indexed Constant in Constant Pool.
#define LLVM_DEBUG(X)
Definition: Debug.h:123
const MachineOperand & getOperand(unsigned i) const
Definition: MachineInstr.h:414
MachineOperandType getType() const
getType - Returns the MachineOperandType for this operand.
#define AARCH64_COLLECT_LOH_NAME
Properties which a MachineFunction may have at a given point in time.