mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-13 17:06:15 +00:00

output As part of the unification of the debug format and the MIR format, always use `printReg` to print all kinds of registers. Updated the tests using '_' instead of '%noreg' until we decide which one we want to be the default one. Differential Revision: https://reviews.llvm.org/D40421 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@319445 91177308-0d34-0410-b5e6-96231b3b80d8
105 lines
3.2 KiB
C++
105 lines
3.2 KiB
C++
//===- RegisterUsageInfo.cpp - Register Usage Information Storage ---------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// This pass is required to take advantage of the interprocedural register
|
|
/// allocation infrastructure.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/CodeGen/RegisterUsageInfo.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "llvm/CodeGen/MachineOperand.h"
|
|
#include "llvm/CodeGen/TargetRegisterInfo.h"
|
|
#include "llvm/CodeGen/TargetSubtargetInfo.h"
|
|
#include "llvm/IR/Function.h"
|
|
#include "llvm/IR/Module.h"
|
|
#include "llvm/Pass.h"
|
|
#include "llvm/Support/CommandLine.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
#include <algorithm>
|
|
#include <cassert>
|
|
#include <cstdint>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
using namespace llvm;
|
|
|
|
#define DEBUG_TYPE "ip-regalloc"
|
|
|
|
static cl::opt<bool> DumpRegUsage(
|
|
"print-regusage", cl::init(false), cl::Hidden,
|
|
cl::desc("print register usage details collected for analysis."));
|
|
|
|
INITIALIZE_PASS(PhysicalRegisterUsageInfo, "reg-usage-info",
|
|
"Register Usage Information Storage", false, true)
|
|
|
|
char PhysicalRegisterUsageInfo::ID = 0;
|
|
|
|
void PhysicalRegisterUsageInfo::anchor() {}
|
|
|
|
bool PhysicalRegisterUsageInfo::doInitialization(Module &M) {
|
|
RegMasks.grow(M.size());
|
|
return false;
|
|
}
|
|
|
|
bool PhysicalRegisterUsageInfo::doFinalization(Module &M) {
|
|
if (DumpRegUsage)
|
|
print(errs());
|
|
|
|
RegMasks.shrink_and_clear();
|
|
return false;
|
|
}
|
|
|
|
void PhysicalRegisterUsageInfo::storeUpdateRegUsageInfo(
|
|
const Function *FP, std::vector<uint32_t> RegMask) {
|
|
assert(FP != nullptr && "Function * can't be nullptr.");
|
|
RegMasks[FP] = std::move(RegMask);
|
|
}
|
|
|
|
const std::vector<uint32_t> *
|
|
PhysicalRegisterUsageInfo::getRegUsageInfo(const Function *FP) {
|
|
auto It = RegMasks.find(FP);
|
|
if (It != RegMasks.end())
|
|
return &(It->second);
|
|
return nullptr;
|
|
}
|
|
|
|
void PhysicalRegisterUsageInfo::print(raw_ostream &OS, const Module *M) const {
|
|
const TargetRegisterInfo *TRI;
|
|
|
|
using FuncPtrRegMaskPair = std::pair<const Function *, std::vector<uint32_t>>;
|
|
|
|
SmallVector<const FuncPtrRegMaskPair *, 64> FPRMPairVector;
|
|
|
|
// Create a vector of pointer to RegMasks entries
|
|
for (const auto &RegMask : RegMasks)
|
|
FPRMPairVector.push_back(&RegMask);
|
|
|
|
// sort the vector to print analysis in alphabatic order of function name.
|
|
std::sort(
|
|
FPRMPairVector.begin(), FPRMPairVector.end(),
|
|
[](const FuncPtrRegMaskPair *A, const FuncPtrRegMaskPair *B) -> bool {
|
|
return A->first->getName() < B->first->getName();
|
|
});
|
|
|
|
for (const FuncPtrRegMaskPair *FPRMPair : FPRMPairVector) {
|
|
OS << FPRMPair->first->getName() << " "
|
|
<< "Clobbered Registers: ";
|
|
TRI = TM->getSubtarget<TargetSubtargetInfo>(*(FPRMPair->first))
|
|
.getRegisterInfo();
|
|
|
|
for (unsigned PReg = 1, PRegE = TRI->getNumRegs(); PReg < PRegE; ++PReg) {
|
|
if (MachineOperand::clobbersPhysReg(&(FPRMPair->second[0]), PReg))
|
|
OS << printReg(PReg, TRI) << " ";
|
|
}
|
|
OS << "\n";
|
|
}
|
|
}
|