LLVM 19.0.0git
MipsMulMulBugPass.cpp
Go to the documentation of this file.
1//===- MipsMulMulBugPass.cpp - Mips VR4300 mulmul bugfix pass -------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Early revisions of the VR4300 have a hardware bug where two consecutive
10// multiplications can produce an incorrect result in the second multiply.
11//
12// This pass scans for mul instructions in each basic block and inserts
13// a nop whenever the following conditions are met:
14//
15// - The current instruction is a single or double-precision floating-point
16// mul instruction.
17// - The next instruction is either a mul instruction (any kind)
18// or a branch instruction.
19//===----------------------------------------------------------------------===//
20
21#include "Mips.h"
22#include "MipsInstrInfo.h"
23#include "MipsSubtarget.h"
28#include "llvm/Support/Debug.h"
30
31#define DEBUG_TYPE "mips-vr4300-mulmul-fix"
32
33using namespace llvm;
34
35namespace {
36
37class MipsMulMulBugFix : public MachineFunctionPass {
38public:
39 MipsMulMulBugFix() : MachineFunctionPass(ID) {
41 }
42
43 StringRef getPassName() const override { return "Mips VR4300 mulmul bugfix"; }
44
47 MachineFunctionProperties::Property::NoVRegs);
48 }
49
50 bool runOnMachineFunction(MachineFunction &MF) override;
51
52 static char ID;
53
54private:
55 bool fixMulMulBB(MachineBasicBlock &MBB, const MipsInstrInfo &MipsII);
56};
57
58} // namespace
59
60INITIALIZE_PASS(MipsMulMulBugFix, "mips-vr4300-mulmul-fix",
61 "Mips VR4300 mulmul bugfix", false, false)
62
63char MipsMulMulBugFix::ID = 0;
64
65bool MipsMulMulBugFix::runOnMachineFunction(MachineFunction &MF) {
66 const MipsInstrInfo &MipsII =
67 *static_cast<const MipsInstrInfo *>(MF.getSubtarget().getInstrInfo());
68
69 bool Modified = false;
70
71 for (auto &MBB : MF)
72 Modified |= fixMulMulBB(MBB, MipsII);
73
74 return Modified;
75}
76
77static bool isFirstMul(const MachineInstr &MI) {
78 switch (MI.getOpcode()) {
79 case Mips::FMUL_S:
80 case Mips::FMUL_D:
81 case Mips::FMUL_D32:
82 case Mips::FMUL_D64:
83 return true;
84 default:
85 return false;
86 }
87}
88
89static bool isSecondMulOrBranch(const MachineInstr &MI) {
90 if (MI.isBranch() || MI.isIndirectBranch() || MI.isCall())
91 return true;
92
93 switch (MI.getOpcode()) {
94 case Mips::MUL:
95 case Mips::FMUL_S:
96 case Mips::FMUL_D:
97 case Mips::FMUL_D32:
98 case Mips::FMUL_D64:
99 case Mips::MULT:
100 case Mips::MULTu:
101 case Mips::DMULT:
102 case Mips::DMULTu:
103 return true;
104 default:
105 return false;
106 }
107}
108
109bool MipsMulMulBugFix::fixMulMulBB(MachineBasicBlock &MBB,
110 const MipsInstrInfo &MipsII) {
111 bool Modified = false;
112
114
115 // Iterate through the instructions in the basic block
117 E = MBB.instr_end();
118 MII != E; MII = NextMII) {
119
120 NextMII = next_nodbg(MII, E);
121
122 // Trigger when the current instruction is a mul and the next instruction
123 // is either a mul or a branch in case the branch target start with a mul
124 if (NextMII != E && isFirstMul(*MII) && isSecondMulOrBranch(*NextMII)) {
125 LLVM_DEBUG(dbgs() << "Found mulmul!\n");
126
127 const MCInstrDesc &NewMCID = MipsII.get(Mips::NOP);
128 BuildMI(MBB, NextMII, DebugLoc(), NewMCID);
129 Modified = true;
130 }
131 }
132
133 return Modified;
134}
135
136FunctionPass *llvm::createMipsMulMulBugPass() { return new MipsMulMulBugFix(); }
MachineBasicBlock & MBB
#define LLVM_DEBUG(X)
Definition: Debug.h:101
IRTranslator LLVM IR MI
static bool isSecondMulOrBranch(const MachineInstr &MI)
static bool isFirstMul(const MachineInstr &MI)
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:38
A debug info location.
Definition: DebugLoc.h:33
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
Describe properties that are true of each instruction in the target description file.
Definition: MCInstrDesc.h:198
instr_iterator instr_begin()
Instructions::iterator instr_iterator
instr_iterator instr_end()
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
virtual bool runOnMachineFunction(MachineFunction &MF)=0
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
virtual MachineFunctionProperties getRequiredProperties() const
Properties which a MachineFunction may have at a given point in time.
MachineFunctionProperties & set(Property P)
Representation of each machine instruction.
Definition: MachineInstr.h:69
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Definition: Pass.cpp:81
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
IterT next_nodbg(IterT It, IterT End, bool SkipPseudoOp=true)
Increment It, then continue incrementing it while it points to a debug instruction.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
void initializeMipsMulMulBugFixPass(PassRegistry &)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
FunctionPass * createMipsMulMulBugPass()