llvm-project/llvm/tools/llvm-reduce/deltas/ReduceIRReferences.cpp
YLChenZ fea6b38805
[llvm-reduce]: print short form, actionable names in the log (#133561)
Closes #132696

before the patch like this:
```
----------------------------
*** Reducing GlobalObjects...
----------------------------
*** Reducing GV Initializers...
----------------------------
*** Reducing GlobalVariables...
----------------------------
```
after the patch like this:
```
----------------------------
*** Reducing GlobalObjects (global-objects)...
----------------------------
*** Reducing GV Initializers (global-initializers)...
----------------------------
*** Reducing GlobalVariables (global-variables)...
----------------------------
```
2025-03-30 12:37:48 +07:00

72 lines
2.5 KiB
C++

//===- ReduceIRReferences.cpp - Specialized Delta Pass --------------------===//
//
// 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 file implements a function which calls the Generic Delta pass in order
// to remove backreferences to the IR from MIR. In particular, this will remove
// the Value references in MachineMemOperands.
//
//===----------------------------------------------------------------------===//
#include "ReduceIRReferences.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineModuleInfo.h"
using namespace llvm;
static void dropIRReferencesFromInstructions(Oracle &O, MachineFunction &MF) {
for (MachineBasicBlock &MBB : MF) {
for (MachineInstr &MI : MBB) {
if (!O.shouldKeep()) {
for (MachineMemOperand *MMO : MI.memoperands()) {
// Leave behind pseudo source values.
// TODO: Removing all MemOperand values is a further reduction step.
if (isa<const Value *>(MMO->getPointerInfo().V))
MMO->setValue(static_cast<const Value *>(nullptr));
}
// TODO: Try to remove GlobalValue references and metadata
}
}
}
}
void llvm::reduceIRInstructionReferencesDeltaPass(Oracle &O,
ReducerWorkItem &WorkItem) {
for (const Function &F : WorkItem.getModule()) {
if (auto *MF = WorkItem.MMI->getMachineFunction(F))
dropIRReferencesFromInstructions(O, *MF);
}
}
void llvm::reduceIRBlockReferencesDeltaPass(Oracle &O,
ReducerWorkItem &WorkItem) {
for (const Function &F : WorkItem.getModule()) {
if (auto *MF = WorkItem.MMI->getMachineFunction(F)) {
for (MachineBasicBlock &MBB : *MF) {
if (!O.shouldKeep())
MBB.clearBasicBlock();
}
}
}
}
void llvm::reduceIRFunctionReferencesDeltaPass(Oracle &O,
ReducerWorkItem &WorkItem) {
for (const Function &F : WorkItem.getModule()) {
if (!O.shouldKeep()) {
if (auto *MF = WorkItem.MMI->getMachineFunction(F)) {
MachineFrameInfo &MFI = MF->getFrameInfo();
for (int I = MFI.getObjectIndexBegin(), E = MFI.getObjectIndexEnd();
I != E; ++I)
MFI.clearObjectAllocation(I);
}
}
}
}