LLVM  8.0.1
ARMOptimizeBarriersPass.cpp
Go to the documentation of this file.
1 //===-- ARMOptimizeBarriersPass - two DMBs without a memory access in between,
2 //removed one -===//
3 //
4 // The LLVM Compiler Infrastructure
5 //
6 // This file is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
8 //
9 //===------------------------------------------------------------------------------------------===//
10 
11 #include "ARM.h"
12 #include "ARMInstrInfo.h"
13 #include "ARMMachineFunctionInfo.h"
14 #include "llvm/ADT/Statistic.h"
16 using namespace llvm;
17 
18 #define DEBUG_TYPE "double barriers"
19 
20 STATISTIC(NumDMBsRemoved, "Number of DMBs removed");
21 
22 namespace {
23 class ARMOptimizeBarriersPass : public MachineFunctionPass {
24 public:
25  static char ID;
26  ARMOptimizeBarriersPass() : MachineFunctionPass(ID) {}
27 
28  bool runOnMachineFunction(MachineFunction &Fn) override;
29 
30  MachineFunctionProperties getRequiredProperties() const override {
33  }
34 
35  StringRef getPassName() const override { return "optimise barriers pass"; }
36 };
38 }
39 
40 // Returns whether the instruction can safely move past a DMB instruction
41 // The current implementation allows this iif MI does not have any possible
42 // memory access
43 static bool CanMovePastDMB(const MachineInstr *MI) {
44  return !(MI->mayLoad() ||
45  MI->mayStore() ||
47  MI->isCall() ||
48  MI->isReturn());
49 }
50 
51 bool ARMOptimizeBarriersPass::runOnMachineFunction(MachineFunction &MF) {
52  if (skipFunction(MF.getFunction()))
53  return false;
54 
55  // Vector to store the DMBs we will remove after the first iteration
56  std::vector<MachineInstr *> ToRemove;
57  // DMBType is the Imm value of the first operand. It determines whether it's a
58  // DMB ish, dmb sy, dmb osh, etc
59  int64_t DMBType = -1;
60 
61  // Find a dmb. If we can move it until the next dmb, tag the second one for
62  // removal
63  for (auto &MBB : MF) {
64  // Will be true when we have seen a DMB, and not seen any instruction since
65  // that cannot move past a DMB
66  bool IsRemovableNextDMB = false;
67  for (auto &MI : MBB) {
68  if (MI.getOpcode() == ARM::DMB) {
69  if (IsRemovableNextDMB) {
70  // If the Imm of this DMB is the same as that of the last DMB, we can
71  // tag this second DMB for removal
72  if (MI.getOperand(0).getImm() == DMBType) {
73  ToRemove.push_back(&MI);
74  } else {
75  // If it has a different DMBType, we cannot remove it, but will scan
76  // for the next DMB, recording this DMB's type as last seen DMB type
77  DMBType = MI.getOperand(0).getImm();
78  }
79  } else {
80  // After we see a DMB, a next one is removable
81  IsRemovableNextDMB = true;
82  DMBType = MI.getOperand(0).getImm();
83  }
84  } else if (!CanMovePastDMB(&MI)) {
85  // If we find an instruction unable to pass past a DMB, a next DMB is
86  // not removable
87  IsRemovableNextDMB = false;
88  }
89  }
90  }
91  bool Changed = false;
92  // Remove the tagged DMB
93  for (auto MI : ToRemove) {
94  MI->eraseFromParent();
95  ++NumDMBsRemoved;
96  Changed = true;
97  }
98 
99  return Changed;
100 }
101 
102 /// createARMOptimizeBarriersPass - Returns an instance of the remove double
103 /// barriers
104 /// pass.
106  return new ARMOptimizeBarriersPass();
107 }
bool isCall(QueryType Type=AnyInBundle) const
Definition: MachineInstr.h:633
This class represents lattice values for constants.
Definition: AllocatorList.h:24
FunctionPass * createARMOptimizeBarriersPass()
createARMOptimizeBarriersPass - Returns an instance of the remove double barriers pass...
STATISTIC(NumFunctions, "Total number of functions")
static bool CanMovePastDMB(const MachineInstr *MI)
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
bool isReturn(QueryType Type=AnyInBundle) const
Definition: MachineInstr.h:623
bool mayStore(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly modify memory.
Definition: MachineInstr.h:820
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:285
const Function & getFunction() const
Return the LLVM function that this machine code represents.
MachineFunctionProperties & set(Property P)
Representation of each machine instruction.
Definition: MachineInstr.h:64
bool mayLoad(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly read memory.
Definition: MachineInstr.h:807
bool hasUnmodeledSideEffects() const
Return true if this instruction has side effects that are not modeled by mayLoad / mayStore...
IRTranslator LLVM IR MI
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
Properties which a MachineFunction may have at a given point in time.