mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
Clean up the AArch64 store pair suppression pass initialization
and remove and unnecessary class variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227175 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
72e7586339
commit
f57b52c8ba
@ -30,7 +30,6 @@ class AArch64StorePairSuppress : public MachineFunctionPass {
|
||||
const AArch64InstrInfo *TII;
|
||||
const TargetRegisterInfo *TRI;
|
||||
const MachineRegisterInfo *MRI;
|
||||
MachineFunction *MF;
|
||||
TargetSchedModel SchedModel;
|
||||
MachineTraceMetrics *Traces;
|
||||
MachineTraceMetrics::Ensemble *MinInstr;
|
||||
@ -115,19 +114,16 @@ bool AArch64StorePairSuppress::isNarrowFPStore(const MachineInstr &MI) {
|
||||
}
|
||||
}
|
||||
|
||||
bool AArch64StorePairSuppress::runOnMachineFunction(MachineFunction &mf) {
|
||||
MF = &mf;
|
||||
TII =
|
||||
static_cast<const AArch64InstrInfo *>(MF->getSubtarget().getInstrInfo());
|
||||
TRI = MF->getSubtarget().getRegisterInfo();
|
||||
MRI = &MF->getRegInfo();
|
||||
const TargetSubtargetInfo &ST = MF->getSubtarget();
|
||||
bool AArch64StorePairSuppress::runOnMachineFunction(MachineFunction &MF) {
|
||||
const TargetSubtargetInfo &ST = MF.getSubtarget();
|
||||
TII = static_cast<const AArch64InstrInfo *>(ST.getInstrInfo());
|
||||
TRI = ST.getRegisterInfo();
|
||||
MRI = &MF.getRegInfo();
|
||||
SchedModel.init(ST.getSchedModel(), &ST, TII);
|
||||
|
||||
Traces = &getAnalysis<MachineTraceMetrics>();
|
||||
MinInstr = nullptr;
|
||||
|
||||
DEBUG(dbgs() << "*** " << getPassName() << ": " << MF->getName() << '\n');
|
||||
DEBUG(dbgs() << "*** " << getPassName() << ": " << MF.getName() << '\n');
|
||||
|
||||
if (!SchedModel.hasInstrSchedModel()) {
|
||||
DEBUG(dbgs() << " Skipping pass: no machine model present.\n");
|
||||
@ -138,7 +134,7 @@ bool AArch64StorePairSuppress::runOnMachineFunction(MachineFunction &mf) {
|
||||
// precisely determine whether a store pair can be formed. But we do want to
|
||||
// filter out most situations where we can't form store pairs to avoid
|
||||
// computing trace metrics in those cases.
|
||||
for (auto &MBB : *MF) {
|
||||
for (auto &MBB : MF) {
|
||||
bool SuppressSTP = false;
|
||||
unsigned PrevBaseReg = 0;
|
||||
for (auto &MI : MBB) {
|
||||
|
Loading…
Reference in New Issue
Block a user