Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / lib / CodeGen / MIRCanonicalizerPass.cpp
blob21b849244d9be24efd52a15d85595771713f97a8
1 //===-------------- MIRCanonicalizer.cpp - MIR Canonicalizer --------------===//
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 // The purpose of this pass is to employ a canonical code transformation so
10 // that code compiled with slightly different IR passes can be diffed more
11 // effectively than otherwise. This is done by renaming vregs in a given
12 // LiveRange in a canonical way. This pass also does a pseudo-scheduling to
13 // move defs closer to their use inorder to reduce diffs caused by slightly
14 // different schedules.
16 // Basic Usage:
18 // llc -o - -run-pass mir-canonicalizer example.mir
20 // Reorders instructions canonically.
21 // Renames virtual register operands canonically.
22 // Strips certain MIR artifacts (optionally).
24 //===----------------------------------------------------------------------===//
26 #include "MIRVRegNamerUtils.h"
27 #include "llvm/ADT/PostOrderIterator.h"
28 #include "llvm/ADT/STLExtras.h"
29 #include "llvm/CodeGen/MachineFunctionPass.h"
30 #include "llvm/CodeGen/MachineRegisterInfo.h"
31 #include "llvm/InitializePasses.h"
32 #include "llvm/Pass.h"
33 #include "llvm/Support/Debug.h"
34 #include "llvm/Support/raw_ostream.h"
36 using namespace llvm;
38 #define DEBUG_TYPE "mir-canonicalizer"
40 static cl::opt<unsigned>
41 CanonicalizeFunctionNumber("canon-nth-function", cl::Hidden, cl::init(~0u),
42 cl::value_desc("N"),
43 cl::desc("Function number to canonicalize."));
45 namespace {
47 class MIRCanonicalizer : public MachineFunctionPass {
48 public:
49 static char ID;
50 MIRCanonicalizer() : MachineFunctionPass(ID) {}
52 StringRef getPassName() const override {
53 return "Rename register operands in a canonical ordering.";
56 void getAnalysisUsage(AnalysisUsage &AU) const override {
57 AU.setPreservesCFG();
58 MachineFunctionPass::getAnalysisUsage(AU);
61 bool runOnMachineFunction(MachineFunction &MF) override;
64 } // end anonymous namespace
66 char MIRCanonicalizer::ID;
68 char &llvm::MIRCanonicalizerID = MIRCanonicalizer::ID;
70 INITIALIZE_PASS_BEGIN(MIRCanonicalizer, "mir-canonicalizer",
71 "Rename Register Operands Canonically", false, false)
73 INITIALIZE_PASS_END(MIRCanonicalizer, "mir-canonicalizer",
74 "Rename Register Operands Canonically", false, false)
76 static std::vector<MachineBasicBlock *> GetRPOList(MachineFunction &MF) {
77 if (MF.empty())
78 return {};
79 ReversePostOrderTraversal<MachineBasicBlock *> RPOT(&*MF.begin());
80 std::vector<MachineBasicBlock *> RPOList;
81 append_range(RPOList, RPOT);
83 return RPOList;
86 static bool
87 rescheduleLexographically(std::vector<MachineInstr *> instructions,
88 MachineBasicBlock *MBB,
89 std::function<MachineBasicBlock::iterator()> getPos) {
91 bool Changed = false;
92 using StringInstrPair = std::pair<std::string, MachineInstr *>;
93 std::vector<StringInstrPair> StringInstrMap;
95 for (auto *II : instructions) {
96 std::string S;
97 raw_string_ostream OS(S);
98 II->print(OS);
99 OS.flush();
101 // Trim the assignment, or start from the beginning in the case of a store.
102 const size_t i = S.find('=');
103 StringInstrMap.push_back({(i == std::string::npos) ? S : S.substr(i), II});
106 llvm::sort(StringInstrMap, llvm::less_first());
108 for (auto &II : StringInstrMap) {
110 LLVM_DEBUG({
111 dbgs() << "Splicing ";
112 II.second->dump();
113 dbgs() << " right before: ";
114 getPos()->dump();
117 Changed = true;
118 MBB->splice(getPos(), MBB, II.second);
121 return Changed;
124 static bool rescheduleCanonically(unsigned &PseudoIdempotentInstCount,
125 MachineBasicBlock *MBB) {
127 bool Changed = false;
129 // Calculates the distance of MI from the beginning of its parent BB.
130 auto getInstrIdx = [](const MachineInstr &MI) {
131 unsigned i = 0;
132 for (const auto &CurMI : *MI.getParent()) {
133 if (&CurMI == &MI)
134 return i;
135 i++;
137 return ~0U;
140 // Pre-Populate vector of instructions to reschedule so that we don't
141 // clobber the iterator.
142 std::vector<MachineInstr *> Instructions;
143 for (auto &MI : *MBB) {
144 Instructions.push_back(&MI);
147 std::map<MachineInstr *, std::vector<MachineInstr *>> MultiUsers;
148 std::map<unsigned, MachineInstr *> MultiUserLookup;
149 unsigned UseToBringDefCloserToCount = 0;
150 std::vector<MachineInstr *> PseudoIdempotentInstructions;
151 std::vector<unsigned> PhysRegDefs;
152 for (auto *II : Instructions) {
153 for (unsigned i = 1; i < II->getNumOperands(); i++) {
154 MachineOperand &MO = II->getOperand(i);
155 if (!MO.isReg())
156 continue;
158 if (MO.getReg().isVirtual())
159 continue;
161 if (!MO.isDef())
162 continue;
164 PhysRegDefs.push_back(MO.getReg());
168 for (auto *II : Instructions) {
169 if (II->getNumOperands() == 0)
170 continue;
171 if (II->mayLoadOrStore())
172 continue;
174 MachineOperand &MO = II->getOperand(0);
175 if (!MO.isReg() || !MO.getReg().isVirtual())
176 continue;
177 if (!MO.isDef())
178 continue;
180 bool IsPseudoIdempotent = true;
181 for (unsigned i = 1; i < II->getNumOperands(); i++) {
183 if (II->getOperand(i).isImm()) {
184 continue;
187 if (II->getOperand(i).isReg()) {
188 if (!II->getOperand(i).getReg().isVirtual())
189 if (!llvm::is_contained(PhysRegDefs, II->getOperand(i).getReg())) {
190 continue;
194 IsPseudoIdempotent = false;
195 break;
198 if (IsPseudoIdempotent) {
199 PseudoIdempotentInstructions.push_back(II);
200 continue;
203 LLVM_DEBUG(dbgs() << "Operand " << 0 << " of "; II->dump(); MO.dump(););
205 MachineInstr *Def = II;
206 unsigned Distance = ~0U;
207 MachineInstr *UseToBringDefCloserTo = nullptr;
208 MachineRegisterInfo *MRI = &MBB->getParent()->getRegInfo();
209 for (auto &UO : MRI->use_nodbg_operands(MO.getReg())) {
210 MachineInstr *UseInst = UO.getParent();
212 const unsigned DefLoc = getInstrIdx(*Def);
213 const unsigned UseLoc = getInstrIdx(*UseInst);
214 const unsigned Delta = (UseLoc - DefLoc);
216 if (UseInst->getParent() != Def->getParent())
217 continue;
218 if (DefLoc >= UseLoc)
219 continue;
221 if (Delta < Distance) {
222 Distance = Delta;
223 UseToBringDefCloserTo = UseInst;
224 MultiUserLookup[UseToBringDefCloserToCount++] = UseToBringDefCloserTo;
228 const auto BBE = MBB->instr_end();
229 MachineBasicBlock::iterator DefI = BBE;
230 MachineBasicBlock::iterator UseI = BBE;
232 for (auto BBI = MBB->instr_begin(); BBI != BBE; ++BBI) {
234 if (DefI != BBE && UseI != BBE)
235 break;
237 if (&*BBI == Def) {
238 DefI = BBI;
239 continue;
242 if (&*BBI == UseToBringDefCloserTo) {
243 UseI = BBI;
244 continue;
248 if (DefI == BBE || UseI == BBE)
249 continue;
251 LLVM_DEBUG({
252 dbgs() << "Splicing ";
253 DefI->dump();
254 dbgs() << " right before: ";
255 UseI->dump();
258 MultiUsers[UseToBringDefCloserTo].push_back(Def);
259 Changed = true;
260 MBB->splice(UseI, MBB, DefI);
263 // Sort the defs for users of multiple defs lexographically.
264 for (const auto &E : MultiUserLookup) {
266 auto UseI = llvm::find_if(MBB->instrs(), [&](MachineInstr &MI) -> bool {
267 return &MI == E.second;
270 if (UseI == MBB->instr_end())
271 continue;
273 LLVM_DEBUG(
274 dbgs() << "Rescheduling Multi-Use Instructions Lexographically.";);
275 Changed |= rescheduleLexographically(
276 MultiUsers[E.second], MBB,
277 [&]() -> MachineBasicBlock::iterator { return UseI; });
280 PseudoIdempotentInstCount = PseudoIdempotentInstructions.size();
281 LLVM_DEBUG(
282 dbgs() << "Rescheduling Idempotent Instructions Lexographically.";);
283 Changed |= rescheduleLexographically(
284 PseudoIdempotentInstructions, MBB,
285 [&]() -> MachineBasicBlock::iterator { return MBB->begin(); });
287 return Changed;
290 static bool propagateLocalCopies(MachineBasicBlock *MBB) {
291 bool Changed = false;
292 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
294 std::vector<MachineInstr *> Copies;
295 for (MachineInstr &MI : MBB->instrs()) {
296 if (MI.isCopy())
297 Copies.push_back(&MI);
300 for (MachineInstr *MI : Copies) {
302 if (!MI->getOperand(0).isReg())
303 continue;
304 if (!MI->getOperand(1).isReg())
305 continue;
307 const Register Dst = MI->getOperand(0).getReg();
308 const Register Src = MI->getOperand(1).getReg();
310 if (!Dst.isVirtual())
311 continue;
312 if (!Src.isVirtual())
313 continue;
314 // Not folding COPY instructions if regbankselect has not set the RCs.
315 // Why are we only considering Register Classes? Because the verifier
316 // sometimes gets upset if the register classes don't match even if the
317 // types do. A future patch might add COPY folding for matching types in
318 // pre-registerbankselect code.
319 if (!MRI.getRegClassOrNull(Dst))
320 continue;
321 if (MRI.getRegClass(Dst) != MRI.getRegClass(Src))
322 continue;
324 std::vector<MachineOperand *> Uses;
325 for (MachineOperand &MO : MRI.use_operands(Dst))
326 Uses.push_back(&MO);
327 for (auto *MO : Uses)
328 MO->setReg(Src);
330 Changed = true;
331 MI->eraseFromParent();
334 return Changed;
337 static bool doDefKillClear(MachineBasicBlock *MBB) {
338 bool Changed = false;
340 for (auto &MI : *MBB) {
341 for (auto &MO : MI.operands()) {
342 if (!MO.isReg())
343 continue;
344 if (!MO.isDef() && MO.isKill()) {
345 Changed = true;
346 MO.setIsKill(false);
349 if (MO.isDef() && MO.isDead()) {
350 Changed = true;
351 MO.setIsDead(false);
356 return Changed;
359 static bool runOnBasicBlock(MachineBasicBlock *MBB,
360 unsigned BasicBlockNum, VRegRenamer &Renamer) {
361 LLVM_DEBUG({
362 dbgs() << "\n\n NEW BASIC BLOCK: " << MBB->getName() << " \n\n";
363 dbgs() << "\n\n================================================\n\n";
366 bool Changed = false;
368 LLVM_DEBUG(dbgs() << "\n\n NEW BASIC BLOCK: " << MBB->getName() << "\n\n";);
370 LLVM_DEBUG(dbgs() << "MBB Before Canonical Copy Propagation:\n";
371 MBB->dump(););
372 Changed |= propagateLocalCopies(MBB);
373 LLVM_DEBUG(dbgs() << "MBB After Canonical Copy Propagation:\n"; MBB->dump(););
375 LLVM_DEBUG(dbgs() << "MBB Before Scheduling:\n"; MBB->dump(););
376 unsigned IdempotentInstCount = 0;
377 Changed |= rescheduleCanonically(IdempotentInstCount, MBB);
378 LLVM_DEBUG(dbgs() << "MBB After Scheduling:\n"; MBB->dump(););
380 Changed |= Renamer.renameVRegs(MBB, BasicBlockNum);
382 // TODO: Consider dropping this. Dropping kill defs is probably not
383 // semantically sound.
384 Changed |= doDefKillClear(MBB);
386 LLVM_DEBUG(dbgs() << "Updated MachineBasicBlock:\n"; MBB->dump();
387 dbgs() << "\n";);
388 LLVM_DEBUG(
389 dbgs() << "\n\n================================================\n\n");
390 return Changed;
393 bool MIRCanonicalizer::runOnMachineFunction(MachineFunction &MF) {
395 static unsigned functionNum = 0;
396 if (CanonicalizeFunctionNumber != ~0U) {
397 if (CanonicalizeFunctionNumber != functionNum++)
398 return false;
399 LLVM_DEBUG(dbgs() << "\n Canonicalizing Function " << MF.getName()
400 << "\n";);
403 // we need a valid vreg to create a vreg type for skipping all those
404 // stray vreg numbers so reach alignment/canonical vreg values.
405 std::vector<MachineBasicBlock *> RPOList = GetRPOList(MF);
407 LLVM_DEBUG(
408 dbgs() << "\n\n NEW MACHINE FUNCTION: " << MF.getName() << " \n\n";
409 dbgs() << "\n\n================================================\n\n";
410 dbgs() << "Total Basic Blocks: " << RPOList.size() << "\n";
411 for (auto MBB
412 : RPOList) { dbgs() << MBB->getName() << "\n"; } dbgs()
413 << "\n\n================================================\n\n";);
415 unsigned BBNum = 0;
416 bool Changed = false;
417 MachineRegisterInfo &MRI = MF.getRegInfo();
418 VRegRenamer Renamer(MRI);
419 for (auto *MBB : RPOList)
420 Changed |= runOnBasicBlock(MBB, BBNum++, Renamer);
422 return Changed;