xref: /freebsd/contrib/llvm-project/llvm/lib/CodeGen/PHIEliminationUtils.cpp (revision 37f253ed0ff80cd6a0937859a4c3c80c256f6d61)
1 //===-- PHIEliminationUtils.cpp - Helper functions for PHI elimination ----===//
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 #include "PHIEliminationUtils.h"
10 #include "llvm/ADT/SmallPtrSet.h"
11 #include "llvm/CodeGen/MachineBasicBlock.h"
12 #include "llvm/CodeGen/MachineFunction.h"
13 #include "llvm/CodeGen/MachineRegisterInfo.h"
14 using namespace llvm;
15 
16 // findCopyInsertPoint - Find a safe place in MBB to insert a copy from SrcReg
17 // when following the CFG edge to SuccMBB. This needs to be after any def of
18 // SrcReg, but before any subsequent point where control flow might jump out of
19 // the basic block.
20 MachineBasicBlock::iterator
21 llvm::findPHICopyInsertPoint(MachineBasicBlock* MBB, MachineBasicBlock* SuccMBB,
22                              unsigned SrcReg) {
23   // Handle the trivial case trivially.
24   if (MBB->empty())
25     return MBB->begin();
26 
27   // Usually, we just want to insert the copy before the first terminator
28   // instruction. However, for the edge going to a landing pad, we must insert
29   // the copy before the call/invoke instruction. Similarly for an INLINEASM_BR
30   // going to an indirect target.
31   if (!SuccMBB->isEHPad() && !SuccMBB->isInlineAsmBrIndirectTarget())
32     return MBB->getFirstTerminator();
33 
34   // Discover any defs/uses in this basic block.
35   SmallPtrSet<MachineInstr*, 8> DefUsesInMBB;
36   MachineRegisterInfo& MRI = MBB->getParent()->getRegInfo();
37   for (MachineInstr &RI : MRI.reg_instructions(SrcReg)) {
38     if (RI.getParent() == MBB)
39       DefUsesInMBB.insert(&RI);
40   }
41 
42   MachineBasicBlock::iterator InsertPoint;
43   if (DefUsesInMBB.empty()) {
44     // No defs.  Insert the copy at the start of the basic block.
45     InsertPoint = MBB->begin();
46   } else if (DefUsesInMBB.size() == 1) {
47     // Insert the copy immediately after the def/use.
48     InsertPoint = *DefUsesInMBB.begin();
49     ++InsertPoint;
50   } else {
51     // Insert the copy immediately after the last def/use.
52     InsertPoint = MBB->end();
53     while (!DefUsesInMBB.count(&*--InsertPoint)) {}
54     ++InsertPoint;
55   }
56 
57   // Make sure the copy goes after any phi nodes but before
58   // any debug nodes.
59   return MBB->SkipPHIsAndLabels(InsertPoint);
60 }
61