LLVM  8.0.1
AArch64A53Fix835769.cpp
Go to the documentation of this file.
1 //===-- AArch64A53Fix835769.cpp -------------------------------------------===//
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 // This pass changes code to work around Cortex-A53 erratum 835769.
10 // It works around it by inserting a nop instruction in code sequences that
11 // in some circumstances may trigger the erratum.
12 // It inserts a nop instruction between a sequence of the following 2 classes
13 // of instructions:
14 // instr 1: mem-instr (including loads, stores and prefetches).
15 // instr 2: non-SIMD integer multiply-accumulate writing 64-bit X registers.
16 //===----------------------------------------------------------------------===//
17 
18 #include "AArch64.h"
19 #include "llvm/ADT/Statistic.h"
26 #include "llvm/Support/Debug.h"
28 
29 using namespace llvm;
30 
31 #define DEBUG_TYPE "aarch64-fix-cortex-a53-835769"
32 
33 STATISTIC(NumNopsAdded, "Number of Nops added to work around erratum 835769");
34 
35 //===----------------------------------------------------------------------===//
36 // Helper functions
37 
38 // Is the instruction a match for the instruction that comes first in the
39 // sequence of instructions that can trigger the erratum?
41  // Must return true if this instruction is a load, a store or a prefetch.
42  switch (MI->getOpcode()) {
43  case AArch64::PRFMl:
44  case AArch64::PRFMroW:
45  case AArch64::PRFMroX:
46  case AArch64::PRFMui:
47  case AArch64::PRFUMi:
48  return true;
49  default:
50  return MI->mayLoadOrStore();
51  }
52 }
53 
54 // Is the instruction a match for the instruction that comes second in the
55 // sequence that can trigger the erratum?
57  // Must return true for non-SIMD integer multiply-accumulates, writing
58  // to a 64-bit register.
59  switch (MI->getOpcode()) {
60  // Erratum cannot be triggered when the destination register is 32 bits,
61  // therefore only include the following.
62  case AArch64::MSUBXrrr:
63  case AArch64::MADDXrrr:
64  case AArch64::SMADDLrrr:
65  case AArch64::SMSUBLrrr:
66  case AArch64::UMADDLrrr:
67  case AArch64::UMSUBLrrr:
68  // Erratum can only be triggered by multiply-adds, not by regular
69  // non-accumulating multiplies, i.e. when Ra=XZR='11111'
70  return MI->getOperand(3).getReg() != AArch64::XZR;
71  default:
72  return false;
73  }
74 }
75 
76 
77 //===----------------------------------------------------------------------===//
78 
79 namespace {
80 class AArch64A53Fix835769 : public MachineFunctionPass {
81  const TargetInstrInfo *TII;
82 
83 public:
84  static char ID;
85  explicit AArch64A53Fix835769() : MachineFunctionPass(ID) {
87  }
88 
89  bool runOnMachineFunction(MachineFunction &F) override;
90 
94  }
95 
96  StringRef getPassName() const override {
97  return "Workaround A53 erratum 835769 pass";
98  }
99 
100  void getAnalysisUsage(AnalysisUsage &AU) const override {
101  AU.setPreservesCFG();
103  }
104 
105 private:
107 };
108 char AArch64A53Fix835769::ID = 0;
109 
110 } // end anonymous namespace
111 
112 INITIALIZE_PASS(AArch64A53Fix835769, "aarch64-fix-cortex-a53-835769-pass",
113  "AArch64 fix for A53 erratum 835769", false, false)
114 
115 //===----------------------------------------------------------------------===//
116 
117 bool
118 AArch64A53Fix835769::runOnMachineFunction(MachineFunction &F) {
119  LLVM_DEBUG(dbgs() << "***** AArch64A53Fix835769 *****\n");
120  bool Changed = false;
121  TII = F.getSubtarget().getInstrInfo();
122 
123  for (auto &MBB : F) {
124  Changed |= runOnBasicBlock(MBB);
125  }
126  return Changed;
127 }
128 
129 // Return the block that was fallen through to get to MBB, if any,
130 // otherwise nullptr.
132  const TargetInstrInfo *TII) {
133  // Get the previous machine basic block in the function.
134  MachineFunction::iterator MBBI(MBB);
135 
136  // Can't go off top of function.
137  if (MBBI == MBB->getParent()->begin())
138  return nullptr;
139 
140  MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
142 
143  MachineBasicBlock *PrevBB = &*std::prev(MBBI);
144  for (MachineBasicBlock *S : MBB->predecessors())
145  if (S == PrevBB && !TII->analyzeBranch(*PrevBB, TBB, FBB, Cond) && !TBB &&
146  !FBB)
147  return S;
148 
149  return nullptr;
150 }
151 
152 // Iterate through fallen through blocks trying to find a previous non-pseudo if
153 // there is one, otherwise return nullptr. Only look for instructions in
154 // previous blocks, not the current block, since we only use this to look at
155 // previous blocks.
157  const TargetInstrInfo *TII) {
158  MachineBasicBlock *FMBB = &MBB;
159 
160  // If there is no non-pseudo in the current block, loop back around and try
161  // the previous block (if there is one).
162  while ((FMBB = getBBFallenThrough(FMBB, TII))) {
163  for (MachineInstr &I : make_range(FMBB->rbegin(), FMBB->rend()))
164  if (!I.isPseudo())
165  return &I;
166  }
167 
168  // There was no previous non-pseudo in the fallen through blocks
169  return nullptr;
170 }
171 
173  const TargetInstrInfo *TII) {
174  // If we are the first instruction of the block, put the NOP at the end of
175  // the previous fallthrough block
176  if (MI == &MBB.front()) {
177  MachineInstr *I = getLastNonPseudo(MBB, TII);
178  assert(I && "Expected instruction");
179  DebugLoc DL = I->getDebugLoc();
180  BuildMI(I->getParent(), DL, TII->get(AArch64::HINT)).addImm(0);
181  }
182  else {
183  DebugLoc DL = MI->getDebugLoc();
184  BuildMI(MBB, MI, DL, TII->get(AArch64::HINT)).addImm(0);
185  }
186 
187  ++NumNopsAdded;
188 }
189 
190 bool
192  bool Changed = false;
193  LLVM_DEBUG(dbgs() << "Running on MBB: " << MBB
194  << " - scanning instructions...\n");
195 
196  // First, scan the basic block, looking for a sequence of 2 instructions
197  // that match the conditions under which the erratum may trigger.
198 
199  // List of terminating instructions in matching sequences
200  std::vector<MachineInstr*> Sequences;
201  unsigned Idx = 0;
202  MachineInstr *PrevInstr = nullptr;
203 
204  // Try and find the last non-pseudo instruction in any fallen through blocks,
205  // if there isn't one, then we use nullptr to represent that.
206  PrevInstr = getLastNonPseudo(MBB, TII);
207 
208  for (auto &MI : MBB) {
209  MachineInstr *CurrInstr = &MI;
210  LLVM_DEBUG(dbgs() << " Examining: " << MI);
211  if (PrevInstr) {
212  LLVM_DEBUG(dbgs() << " PrevInstr: " << *PrevInstr
213  << " CurrInstr: " << *CurrInstr
214  << " isFirstInstructionInSequence(PrevInstr): "
215  << isFirstInstructionInSequence(PrevInstr) << "\n"
216  << " isSecondInstructionInSequence(CurrInstr): "
217  << isSecondInstructionInSequence(CurrInstr) << "\n");
218  if (isFirstInstructionInSequence(PrevInstr) &&
219  isSecondInstructionInSequence(CurrInstr)) {
220  LLVM_DEBUG(dbgs() << " ** pattern found at Idx " << Idx << "!\n");
221  Sequences.push_back(CurrInstr);
222  }
223  }
224  if (!CurrInstr->isPseudo())
225  PrevInstr = CurrInstr;
226  ++Idx;
227  }
228 
229  LLVM_DEBUG(dbgs() << "Scan complete, " << Sequences.size()
230  << " occurrences of pattern found.\n");
231 
232  // Then update the basic block, inserting nops between the detected sequences.
233  for (auto &MI : Sequences) {
234  Changed = true;
236  }
237 
238  return Changed;
239 }
240 
241 // Factory function used by AArch64TargetMachine to add the pass to
242 // the passmanager.
244  return new AArch64A53Fix835769();
245 }
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
void initializeAArch64A53Fix835769Pass(PassRegistry &)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
static MachineBasicBlock * getBBFallenThrough(MachineBasicBlock *MBB, const TargetInstrInfo *TII)
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
Definition: MachineInstr.h:383
unsigned getReg() const
getReg - Returns the register number.
static MachineInstr * getLastNonPseudo(MachineBasicBlock &MBB, const TargetInstrInfo *TII)
bool mayLoadOrStore(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly read or modify memory.
Definition: MachineInstr.h:830
STATISTIC(NumFunctions, "Total number of functions")
A debug info location.
Definition: DebugLoc.h:34
F(f)
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Definition: Pass.cpp:75
static bool isSecondInstructionInSequence(MachineInstr *MI)
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
const HexagonInstrInfo * TII
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
Definition: MachineInstr.h:409
virtual MachineFunctionProperties getRequiredProperties() const
reverse_iterator rend()
reverse_iterator rbegin()
TargetInstrInfo - Interface to description of machine instruction set.
MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
bool isPseudo(QueryType Type=IgnoreBundle) const
Return true if this is a pseudo instruction that doesn&#39;t correspond to a real machine instruction...
Definition: MachineInstr.h:619
Represent the analysis usage information of a pass.
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:285
iterator_range< pred_iterator > predecessors()
virtual bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify=false) const
Analyze the branching code at the end of MBB, returning true if it cannot be understood (e...
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
Iterator for intrusive lists based on ilist_node.
virtual bool runOnMachineFunction(MachineFunction &MF)=0
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
This is a &#39;vector&#39; (really, a variable-sized array), optimized for the case when the array is small...
Definition: SmallVector.h:847
void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition: Pass.cpp:286
FunctionPass * createAArch64A53Fix835769()
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:133
static bool runOnBasicBlock(MachineBasicBlock *MBB, std::vector< StringRef > &bbNames, std::vector< unsigned > &renamedInOtherBB, unsigned &basicBlockNum, unsigned &VRegGapIndex, NamedVRegCursor &NVC)
const MachineBasicBlock * getParent() const
Definition: MachineInstr.h:254
MachineFunctionProperties & set(Property P)
Representation of each machine instruction.
Definition: MachineInstr.h:64
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
const MCInstrDesc & get(unsigned Opcode) const
Return the machine instruction descriptor that corresponds to the specified instruction opcode...
Definition: MCInstrInfo.h:45
#define I(x, y, z)
Definition: MD5.cpp:58
INITIALIZE_PASS(AArch64A53Fix835769, "aarch64-fix-cortex-a53-835769-pass", "AArch64 fix for A53 erratum 835769", false, false) bool AArch64A53Fix835769
static bool isFirstInstructionInSequence(MachineInstr *MI)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
IRTranslator LLVM IR MI
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
#define LLVM_DEBUG(X)
Definition: Debug.h:123
const MachineOperand & getOperand(unsigned i) const
Definition: MachineInstr.h:414
Properties which a MachineFunction may have at a given point in time.
static void insertNopBeforeInstruction(MachineBasicBlock &MBB, MachineInstr *MI, const TargetInstrInfo *TII)