LLVM 22.0.0git
RISCVVMV0Elimination.cpp
Go to the documentation of this file.
1//===- RISCVVMV0Elimination.cpp - VMV0 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// Mask operands in vector pseudos have to be in v0. We select them as a virtual
10// register in the singleton vmv0 register class instead of copying them to $v0
11// straight away, to make optimizing masks easier.
12//
13// However register coalescing may end up coleascing copies into vmv0, resulting
14// in instructions with multiple uses of vmv0 that the register allocator can't
15// allocate:
16//
17// %x:vrnov0 = PseudoVADD_VV_M1_MASK %0:vrnov0, %1:vr, %2:vmv0, %3:vmv0, ...
18//
19// To avoid this, this pass replaces any uses* of vmv0 with copies to $v0 before
20// register coalescing and allocation:
21//
22// %x:vrnov0 = PseudoVADD_VV_M1_MASK %0:vrnov0, %1:vr, %2:vr, %3:vmv0, ...
23// ->
24// $v0 = COPY %3:vr
25// %x:vrnov0 = PseudoVADD_VV_M1_MASK %0:vrnov0, %1:vr, %2:vr, $0, ...
26//
27// * The only uses of vmv0 left behind are when used for inline asm with the vm
28// constraint.
29//
30//===---------------------------------------------------------------------===//
31
32#include "RISCV.h"
33#include "RISCVSubtarget.h"
34#ifndef NDEBUG
36#endif
38
39using namespace llvm;
40
41#define DEBUG_TYPE "riscv-vmv0-elimination"
42
43namespace {
44
45class RISCVVMV0Elimination : public MachineFunctionPass {
46public:
47 static char ID;
48 RISCVVMV0Elimination() : MachineFunctionPass(ID) {}
49
50 bool runOnMachineFunction(MachineFunction &MF) override;
51
52 void getAnalysisUsage(AnalysisUsage &AU) const override {
53 AU.setPreservesCFG();
55 }
56
57 MachineFunctionProperties getRequiredProperties() const override {
58 // TODO: We could move this closer to regalloc, out of SSA, which would
59 // allow scheduling past mask operands. We would need to preserve live
60 // intervals.
61 return MachineFunctionProperties().setIsSSA();
62 }
63};
64
65} // namespace
66
67char RISCVVMV0Elimination::ID = 0;
68
69INITIALIZE_PASS(RISCVVMV0Elimination, DEBUG_TYPE, "RISC-V VMV0 Elimination",
70 false, false)
71
73 return new RISCVVMV0Elimination();
74}
75
76static bool isVMV0(const MCOperandInfo &MCOI) {
77 return MCOI.RegClass == RISCV::VMV0RegClassID;
78}
79
80bool RISCVVMV0Elimination::runOnMachineFunction(MachineFunction &MF) {
81 // Skip if the vector extension is not enabled.
82 const RISCVSubtarget *ST = &MF.getSubtarget<RISCVSubtarget>();
83 if (!ST->hasVInstructions())
84 return false;
85
86 MachineRegisterInfo &MRI = MF.getRegInfo();
87 const TargetInstrInfo *TII = ST->getInstrInfo();
88
89#ifndef NDEBUG
90 // Assert that we won't clobber any existing reads of v0 where we need to
91 // insert copies.
92 const TargetRegisterInfo *TRI = MRI.getTargetRegisterInfo();
93 ReversePostOrderTraversal<MachineBasicBlock *> RPOT(&*MF.begin());
94 for (MachineBasicBlock *MBB : RPOT) {
95 bool V0Clobbered = false;
96 for (MachineInstr &MI : *MBB) {
97 assert(!(MI.readsRegister(RISCV::V0, TRI) && V0Clobbered) &&
98 "Inserting a copy to v0 would clobber a read");
99 if (MI.modifiesRegister(RISCV::V0, TRI))
100 V0Clobbered = false;
101
102 if (any_of(MI.getDesc().operands(), isVMV0))
103 V0Clobbered = true;
104 }
105
106 assert(!(V0Clobbered &&
108 [](auto *Succ) { return Succ->isLiveIn(RISCV::V0); })) &&
109 "Clobbered a v0 used in a successor");
110 }
111#endif
112
113 bool MadeChange = false;
115
116 // For any instruction with a vmv0 operand, replace it with a copy to v0.
117 for (MachineBasicBlock &MBB : MF) {
118 for (MachineInstr &MI : MBB) {
119 assert(count_if(MI.getDesc().operands(), isVMV0) < 2 &&
120 "Expected only one or zero vmv0 operands");
121
122 for (auto [OpNo, MCOI] : enumerate(MI.getDesc().operands())) {
123 if (isVMV0(MCOI)) {
124 MachineOperand &MO = MI.getOperand(OpNo);
125 Register Src = MO.getReg();
126 assert(MO.isUse() && MO.getSubReg() == RISCV::NoSubRegister &&
127 Src.isVirtual() && "vmv0 use in unexpected form");
128
129 // Peek through a single copy to match what isel does.
130 if (MachineInstr *SrcMI = MRI.getVRegDef(Src);
131 SrcMI->isCopy() && SrcMI->getOperand(1).getReg().isVirtual() &&
132 SrcMI->getOperand(1).getSubReg() == RISCV::NoSubRegister) {
133 // Delete any dead copys to vmv0 to avoid allocating them.
134 if (MRI.hasOneNonDBGUse(Src))
135 DeadCopies.push_back(SrcMI);
136 Src = SrcMI->getOperand(1).getReg();
137 }
138
139 BuildMI(MBB, MI, MI.getDebugLoc(), TII->get(RISCV::COPY), RISCV::V0)
140 .addReg(Src);
141
142 MO.setReg(RISCV::V0);
143 MadeChange = true;
144 break;
145 }
146 }
147 }
148 }
149
150 for (MachineInstr *MI : DeadCopies)
151 MI->eraseFromParent();
152
153 if (!MadeChange)
154 return false;
155
156 // Now that any constraints requiring vmv0 are gone, eliminate any uses of
157 // vmv0 by recomputing the reg class.
158 // The only remaining uses should be around inline asm.
159 for (MachineBasicBlock &MBB : MF) {
160 for (MachineInstr &MI : MBB) {
161 for (MachineOperand &MO : MI.uses()) {
162 if (MO.isReg() && MO.getReg().isVirtual() &&
163 MRI.getRegClass(MO.getReg()) == &RISCV::VMV0RegClass) {
164 MRI.recomputeRegClass(MO.getReg());
165 assert((MRI.getRegClass(MO.getReg()) != &RISCV::VMV0RegClass ||
166 MI.isInlineAsm() ||
167 MRI.getVRegDef(MO.getReg())->isInlineAsm()) &&
168 "Non-inline-asm use of vmv0 left behind");
169 }
170 }
171 }
172 }
173
174 return true;
175}
unsigned const MachineRegisterInfo * MRI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
#define DEBUG_TYPE
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
static bool isVMV0(const MCOperandInfo &MCOI)
Represent the analysis usage information of a pass.
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition Pass.cpp:270
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
This holds information about one operand of a machine instruction, indicating the register class for ...
Definition MCInstrDesc.h:87
iterator_range< succ_iterator > successors()
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
Properties which a MachineFunction may have at a given point in time.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
unsigned getSubReg() const
bool isReg() const
isReg - Tests if this is a MO_Register operand.
LLVM_ABI void setReg(Register Reg)
Change the register this operand corresponds to.
Register getReg() const
getReg - Returns the register number.
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
Definition Register.h:74
void push_back(const T &Elt)
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.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
Definition STLExtras.h:2452
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1712
FunctionPass * createRISCVVMV0EliminationPass()
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
auto count_if(R &&Range, UnaryPredicate P)
Wrapper function around std::count_if to count the number of times an element satisfying a given pred...
Definition STLExtras.h:1941