
The existing analysis was already a pimpl wrapper. I have extracted legacy pass logic to a LDVImpl wrapper named `LiveDebugVariables` which is the analysis::Result now. This controls whether to activate the LDV (depending on `-live-debug-variables` and DIsubprogram) itself. The legacy and new analysis only construct the LiveDebugVariables. VirtRegRewriter will test this.
119 lines
4.3 KiB
C++
119 lines
4.3 KiB
C++
//===- RISCVDeadRegisterDefinitions.cpp - Replace dead defs w/ zero reg --===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===---------------------------------------------------------------------===//
|
|
//
|
|
// This pass rewrites Rd to x0 for instrs whose return values are unused.
|
|
//
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
#include "RISCV.h"
|
|
#include "RISCVSubtarget.h"
|
|
#include "llvm/ADT/Statistic.h"
|
|
#include "llvm/CodeGen/LiveDebugVariables.h"
|
|
#include "llvm/CodeGen/LiveIntervals.h"
|
|
#include "llvm/CodeGen/LiveStacks.h"
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
|
|
|
using namespace llvm;
|
|
#define DEBUG_TYPE "riscv-dead-defs"
|
|
#define RISCV_DEAD_REG_DEF_NAME "RISC-V Dead register definitions"
|
|
|
|
STATISTIC(NumDeadDefsReplaced, "Number of dead definitions replaced");
|
|
|
|
namespace {
|
|
class RISCVDeadRegisterDefinitions : public MachineFunctionPass {
|
|
public:
|
|
static char ID;
|
|
|
|
RISCVDeadRegisterDefinitions() : MachineFunctionPass(ID) {}
|
|
bool runOnMachineFunction(MachineFunction &MF) override;
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
|
AU.setPreservesCFG();
|
|
AU.addRequired<LiveIntervalsWrapperPass>();
|
|
AU.addPreserved<LiveIntervalsWrapperPass>();
|
|
AU.addRequired<LiveIntervalsWrapperPass>();
|
|
AU.addPreserved<SlotIndexesWrapperPass>();
|
|
AU.addPreserved<LiveDebugVariablesWrapperLegacy>();
|
|
AU.addPreserved<LiveStacks>();
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
}
|
|
|
|
StringRef getPassName() const override { return RISCV_DEAD_REG_DEF_NAME; }
|
|
};
|
|
} // end anonymous namespace
|
|
|
|
char RISCVDeadRegisterDefinitions::ID = 0;
|
|
INITIALIZE_PASS(RISCVDeadRegisterDefinitions, DEBUG_TYPE,
|
|
RISCV_DEAD_REG_DEF_NAME, false, false)
|
|
|
|
FunctionPass *llvm::createRISCVDeadRegisterDefinitionsPass() {
|
|
return new RISCVDeadRegisterDefinitions();
|
|
}
|
|
|
|
bool RISCVDeadRegisterDefinitions::runOnMachineFunction(MachineFunction &MF) {
|
|
if (skipFunction(MF.getFunction()))
|
|
return false;
|
|
|
|
const TargetInstrInfo *TII = MF.getSubtarget().getInstrInfo();
|
|
const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
|
|
LiveIntervals &LIS = getAnalysis<LiveIntervalsWrapperPass>().getLIS();
|
|
LLVM_DEBUG(dbgs() << "***** RISCVDeadRegisterDefinitions *****\n");
|
|
|
|
bool MadeChange = false;
|
|
for (MachineBasicBlock &MBB : MF) {
|
|
for (MachineInstr &MI : MBB) {
|
|
// We only handle non-computational instructions since some NOP encodings
|
|
// are reserved for HINT instructions.
|
|
const MCInstrDesc &Desc = MI.getDesc();
|
|
if (!Desc.mayLoad() && !Desc.mayStore() &&
|
|
!Desc.hasUnmodeledSideEffects() &&
|
|
MI.getOpcode() != RISCV::PseudoVSETVLI &&
|
|
MI.getOpcode() != RISCV::PseudoVSETIVLI)
|
|
continue;
|
|
// For PseudoVSETVLIX0, Rd = X0 has special meaning.
|
|
if (MI.getOpcode() == RISCV::PseudoVSETVLIX0)
|
|
continue;
|
|
for (int I = 0, E = Desc.getNumDefs(); I != E; ++I) {
|
|
MachineOperand &MO = MI.getOperand(I);
|
|
if (!MO.isReg() || !MO.isDef() || MO.isEarlyClobber())
|
|
continue;
|
|
// Be careful not to change the register if it's a tied operand.
|
|
if (MI.isRegTiedToUseOperand(I)) {
|
|
LLVM_DEBUG(dbgs() << " Ignoring, def is tied operand.\n");
|
|
continue;
|
|
}
|
|
Register Reg = MO.getReg();
|
|
if (!Reg.isVirtual() || !MO.isDead())
|
|
continue;
|
|
LLVM_DEBUG(dbgs() << " Dead def operand #" << I << " in:\n ";
|
|
MI.print(dbgs()));
|
|
Register X0Reg;
|
|
const TargetRegisterClass *RC = TII->getRegClass(Desc, I, TRI, MF);
|
|
if (RC && RC->contains(RISCV::X0)) {
|
|
X0Reg = RISCV::X0;
|
|
} else if (RC && RC->contains(RISCV::X0_W)) {
|
|
X0Reg = RISCV::X0_W;
|
|
} else if (RC && RC->contains(RISCV::X0_H)) {
|
|
X0Reg = RISCV::X0_H;
|
|
} else {
|
|
LLVM_DEBUG(dbgs() << " Ignoring, register is not a GPR.\n");
|
|
continue;
|
|
}
|
|
assert(LIS.hasInterval(Reg));
|
|
LIS.removeInterval(Reg);
|
|
MO.setReg(X0Reg);
|
|
LLVM_DEBUG(dbgs() << " Replacing with zero register. New:\n ";
|
|
MI.print(dbgs()));
|
|
++NumDeadDefsReplaced;
|
|
MadeChange = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return MadeChange;
|
|
}
|