mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Code clean up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85046 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d66f0015ad
commit
d98e30f618
@ -30,6 +30,11 @@ using namespace llvm;
|
||||
|
||||
namespace {
|
||||
struct LowerSubregsInstructionPass : public MachineFunctionPass {
|
||||
private:
|
||||
const TargetRegisterInfo *TRI;
|
||||
const TargetInstrInfo *TII;
|
||||
|
||||
public:
|
||||
static char ID; // Pass identification, replacement for typeid
|
||||
LowerSubregsInstructionPass() : MachineFunctionPass(&ID) {}
|
||||
|
||||
@ -46,15 +51,16 @@ namespace {
|
||||
|
||||
/// runOnMachineFunction - pass entry point
|
||||
bool runOnMachineFunction(MachineFunction&);
|
||||
|
||||
|
||||
private:
|
||||
bool LowerExtract(MachineInstr *MI);
|
||||
bool LowerInsert(MachineInstr *MI);
|
||||
bool LowerSubregToReg(MachineInstr *MI);
|
||||
|
||||
void TransferDeadFlag(MachineInstr *MI, unsigned DstReg,
|
||||
const TargetRegisterInfo &TRI);
|
||||
const TargetRegisterInfo *TRI);
|
||||
void TransferKillFlag(MachineInstr *MI, unsigned SrcReg,
|
||||
const TargetRegisterInfo &TRI,
|
||||
const TargetRegisterInfo *TRI,
|
||||
bool AddIfNotFound = false);
|
||||
};
|
||||
|
||||
@ -71,10 +77,10 @@ FunctionPass *llvm::createLowerSubregsPass() {
|
||||
void
|
||||
LowerSubregsInstructionPass::TransferDeadFlag(MachineInstr *MI,
|
||||
unsigned DstReg,
|
||||
const TargetRegisterInfo &TRI) {
|
||||
const TargetRegisterInfo *TRI) {
|
||||
for (MachineBasicBlock::iterator MII =
|
||||
prior(MachineBasicBlock::iterator(MI)); ; --MII) {
|
||||
if (MII->addRegisterDead(DstReg, &TRI))
|
||||
if (MII->addRegisterDead(DstReg, TRI))
|
||||
break;
|
||||
assert(MII != MI->getParent()->begin() &&
|
||||
"copyRegToReg output doesn't reference destination register!");
|
||||
@ -87,11 +93,11 @@ LowerSubregsInstructionPass::TransferDeadFlag(MachineInstr *MI,
|
||||
void
|
||||
LowerSubregsInstructionPass::TransferKillFlag(MachineInstr *MI,
|
||||
unsigned SrcReg,
|
||||
const TargetRegisterInfo &TRI,
|
||||
const TargetRegisterInfo *TRI,
|
||||
bool AddIfNotFound) {
|
||||
for (MachineBasicBlock::iterator MII =
|
||||
prior(MachineBasicBlock::iterator(MI)); ; --MII) {
|
||||
if (MII->addRegisterKilled(SrcReg, &TRI, AddIfNotFound))
|
||||
if (MII->addRegisterKilled(SrcReg, TRI, AddIfNotFound))
|
||||
break;
|
||||
assert(MII != MI->getParent()->begin() &&
|
||||
"copyRegToReg output doesn't reference source register!");
|
||||
@ -100,9 +106,6 @@ LowerSubregsInstructionPass::TransferKillFlag(MachineInstr *MI,
|
||||
|
||||
bool LowerSubregsInstructionPass::LowerExtract(MachineInstr *MI) {
|
||||
MachineBasicBlock *MBB = MI->getParent();
|
||||
MachineFunction &MF = *MBB->getParent();
|
||||
const TargetRegisterInfo &TRI = *MF.getTarget().getRegisterInfo();
|
||||
const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
|
||||
|
||||
assert(MI->getOperand(0).isReg() && MI->getOperand(0).isDef() &&
|
||||
MI->getOperand(1).isReg() && MI->getOperand(1).isUse() &&
|
||||
@ -111,7 +114,7 @@ bool LowerSubregsInstructionPass::LowerExtract(MachineInstr *MI) {
|
||||
unsigned DstReg = MI->getOperand(0).getReg();
|
||||
unsigned SuperReg = MI->getOperand(1).getReg();
|
||||
unsigned SubIdx = MI->getOperand(2).getImm();
|
||||
unsigned SrcReg = TRI.getSubReg(SuperReg, SubIdx);
|
||||
unsigned SrcReg = TRI->getSubReg(SuperReg, SubIdx);
|
||||
|
||||
assert(TargetRegisterInfo::isPhysicalRegister(SuperReg) &&
|
||||
"Extract supperg source must be a physical register");
|
||||
@ -126,7 +129,7 @@ bool LowerSubregsInstructionPass::LowerExtract(MachineInstr *MI) {
|
||||
if (MI->getOperand(1).isKill()) {
|
||||
// We must make sure the super-register gets killed. Replace the
|
||||
// instruction with KILL.
|
||||
MI->setDesc(TII.get(TargetInstrInfo::KILL));
|
||||
MI->setDesc(TII->get(TargetInstrInfo::KILL));
|
||||
MI->RemoveOperand(2); // SubIdx
|
||||
DEBUG(errs() << "subreg: replace by: " << *MI);
|
||||
return true;
|
||||
@ -135,9 +138,9 @@ bool LowerSubregsInstructionPass::LowerExtract(MachineInstr *MI) {
|
||||
DEBUG(errs() << "subreg: eliminated!");
|
||||
} else {
|
||||
// Insert copy
|
||||
const TargetRegisterClass *TRCS = TRI.getPhysicalRegisterRegClass(DstReg);
|
||||
const TargetRegisterClass *TRCD = TRI.getPhysicalRegisterRegClass(SrcReg);
|
||||
bool Emitted = TII.copyRegToReg(*MBB, MI, DstReg, SrcReg, TRCD, TRCS);
|
||||
const TargetRegisterClass *TRCS = TRI->getPhysicalRegisterRegClass(DstReg);
|
||||
const TargetRegisterClass *TRCD = TRI->getPhysicalRegisterRegClass(SrcReg);
|
||||
bool Emitted = TII->copyRegToReg(*MBB, MI, DstReg, SrcReg, TRCD, TRCS);
|
||||
(void)Emitted;
|
||||
assert(Emitted && "Subreg and Dst must be of compatible register class");
|
||||
// Transfer the kill/dead flags, if needed.
|
||||
@ -158,9 +161,6 @@ bool LowerSubregsInstructionPass::LowerExtract(MachineInstr *MI) {
|
||||
|
||||
bool LowerSubregsInstructionPass::LowerSubregToReg(MachineInstr *MI) {
|
||||
MachineBasicBlock *MBB = MI->getParent();
|
||||
MachineFunction &MF = *MBB->getParent();
|
||||
const TargetRegisterInfo &TRI = *MF.getTarget().getRegisterInfo();
|
||||
const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
|
||||
assert((MI->getOperand(0).isReg() && MI->getOperand(0).isDef()) &&
|
||||
MI->getOperand(1).isImm() &&
|
||||
(MI->getOperand(2).isReg() && MI->getOperand(2).isUse()) &&
|
||||
@ -172,7 +172,7 @@ bool LowerSubregsInstructionPass::LowerSubregToReg(MachineInstr *MI) {
|
||||
unsigned SubIdx = MI->getOperand(3).getImm();
|
||||
|
||||
assert(SubIdx != 0 && "Invalid index for insert_subreg");
|
||||
unsigned DstSubReg = TRI.getSubReg(DstReg, SubIdx);
|
||||
unsigned DstSubReg = TRI->getSubReg(DstReg, SubIdx);
|
||||
|
||||
assert(TargetRegisterInfo::isPhysicalRegister(DstReg) &&
|
||||
"Insert destination must be in a physical register");
|
||||
@ -191,9 +191,9 @@ bool LowerSubregsInstructionPass::LowerSubregToReg(MachineInstr *MI) {
|
||||
DEBUG(errs() << "subreg: eliminated!");
|
||||
} else {
|
||||
// Insert sub-register copy
|
||||
const TargetRegisterClass *TRC0= TRI.getPhysicalRegisterRegClass(DstSubReg);
|
||||
const TargetRegisterClass *TRC1= TRI.getPhysicalRegisterRegClass(InsReg);
|
||||
bool Emitted = TII.copyRegToReg(*MBB, MI, DstSubReg, InsReg, TRC0, TRC1);
|
||||
const TargetRegisterClass *TRC0= TRI->getPhysicalRegisterRegClass(DstSubReg);
|
||||
const TargetRegisterClass *TRC1= TRI->getPhysicalRegisterRegClass(InsReg);
|
||||
bool Emitted = TII->copyRegToReg(*MBB, MI, DstSubReg, InsReg, TRC0, TRC1);
|
||||
(void)Emitted;
|
||||
assert(Emitted && "Subreg and Dst must be of compatible register class");
|
||||
// Transfer the kill/dead flags, if needed.
|
||||
@ -214,9 +214,6 @@ bool LowerSubregsInstructionPass::LowerSubregToReg(MachineInstr *MI) {
|
||||
|
||||
bool LowerSubregsInstructionPass::LowerInsert(MachineInstr *MI) {
|
||||
MachineBasicBlock *MBB = MI->getParent();
|
||||
MachineFunction &MF = *MBB->getParent();
|
||||
const TargetRegisterInfo &TRI = *MF.getTarget().getRegisterInfo();
|
||||
const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
|
||||
assert((MI->getOperand(0).isReg() && MI->getOperand(0).isDef()) &&
|
||||
(MI->getOperand(1).isReg() && MI->getOperand(1).isUse()) &&
|
||||
(MI->getOperand(2).isReg() && MI->getOperand(2).isUse()) &&
|
||||
@ -231,7 +228,7 @@ bool LowerSubregsInstructionPass::LowerInsert(MachineInstr *MI) {
|
||||
|
||||
assert(DstReg == SrcReg && "insert_subreg not a two-address instruction?");
|
||||
assert(SubIdx != 0 && "Invalid index for insert_subreg");
|
||||
unsigned DstSubReg = TRI.getSubReg(DstReg, SubIdx);
|
||||
unsigned DstSubReg = TRI->getSubReg(DstReg, SubIdx);
|
||||
assert(DstSubReg && "invalid subregister index for register");
|
||||
assert(TargetRegisterInfo::isPhysicalRegister(SrcReg) &&
|
||||
"Insert superreg source must be in a physical register");
|
||||
@ -245,7 +242,7 @@ bool LowerSubregsInstructionPass::LowerInsert(MachineInstr *MI) {
|
||||
// <undef>, we need to make sure it is alive by inserting a KILL
|
||||
if (MI->getOperand(1).isUndef() && !MI->getOperand(0).isDead()) {
|
||||
MachineInstrBuilder MIB = BuildMI(*MBB, MI, MI->getDebugLoc(),
|
||||
TII.get(TargetInstrInfo::KILL), DstReg);
|
||||
TII->get(TargetInstrInfo::KILL), DstReg);
|
||||
if (MI->getOperand(2).isUndef())
|
||||
MIB.addReg(InsReg, RegState::Undef);
|
||||
else
|
||||
@ -257,15 +254,15 @@ bool LowerSubregsInstructionPass::LowerInsert(MachineInstr *MI) {
|
||||
}
|
||||
} else {
|
||||
// Insert sub-register copy
|
||||
const TargetRegisterClass *TRC0= TRI.getPhysicalRegisterRegClass(DstSubReg);
|
||||
const TargetRegisterClass *TRC1= TRI.getPhysicalRegisterRegClass(InsReg);
|
||||
const TargetRegisterClass *TRC0= TRI->getPhysicalRegisterRegClass(DstSubReg);
|
||||
const TargetRegisterClass *TRC1= TRI->getPhysicalRegisterRegClass(InsReg);
|
||||
if (MI->getOperand(2).isUndef())
|
||||
// If the source register being inserted is undef, then this becomes a
|
||||
// KILL.
|
||||
BuildMI(*MBB, MI, MI->getDebugLoc(),
|
||||
TII.get(TargetInstrInfo::KILL), DstSubReg);
|
||||
TII->get(TargetInstrInfo::KILL), DstSubReg);
|
||||
else {
|
||||
bool Emitted = TII.copyRegToReg(*MBB, MI, DstSubReg, InsReg, TRC0, TRC1);
|
||||
bool Emitted = TII->copyRegToReg(*MBB, MI, DstSubReg, InsReg, TRC0, TRC1);
|
||||
(void)Emitted;
|
||||
assert(Emitted && "Subreg and Dst must be of compatible register class");
|
||||
}
|
||||
@ -306,6 +303,8 @@ bool LowerSubregsInstructionPass::runOnMachineFunction(MachineFunction &MF) {
|
||||
<< "********** LOWERING SUBREG INSTRS **********\n"
|
||||
<< "********** Function: "
|
||||
<< MF.getFunction()->getName() << '\n');
|
||||
TRI = MF.getTarget().getRegisterInfo();
|
||||
TII = MF.getTarget().getInstrInfo();
|
||||
|
||||
bool MadeChange = false;
|
||||
|
||||
@ -313,8 +312,8 @@ bool LowerSubregsInstructionPass::runOnMachineFunction(MachineFunction &MF) {
|
||||
mbbi != mbbe; ++mbbi) {
|
||||
for (MachineBasicBlock::iterator mi = mbbi->begin(), me = mbbi->end();
|
||||
mi != me;) {
|
||||
MachineInstr *MI = mi++;
|
||||
|
||||
MachineBasicBlock::iterator nmi = next(mi);
|
||||
MachineInstr *MI = mi;
|
||||
if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
|
||||
MadeChange |= LowerExtract(MI);
|
||||
} else if (MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG) {
|
||||
@ -322,6 +321,7 @@ bool LowerSubregsInstructionPass::runOnMachineFunction(MachineFunction &MF) {
|
||||
} else if (MI->getOpcode() == TargetInstrInfo::SUBREG_TO_REG) {
|
||||
MadeChange |= LowerSubregToReg(MI);
|
||||
}
|
||||
mi = nmi;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user