mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
Implement PowerPCInstrInfo::isMoveInstr(), patch by Nate Begeman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14898 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6b4ea88e83
commit
01d46e9c55
@ -15,8 +15,37 @@
|
|||||||
#include "PowerPC.h"
|
#include "PowerPC.h"
|
||||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||||
#include "PowerPCGenInstrInfo.inc"
|
#include "PowerPCGenInstrInfo.inc"
|
||||||
|
#include <iostream>
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
PowerPCInstrInfo::PowerPCInstrInfo()
|
PowerPCInstrInfo::PowerPCInstrInfo()
|
||||||
: TargetInstrInfo(PowerPCInsts, sizeof(PowerPCInsts)/sizeof(PowerPCInsts[0])){
|
: TargetInstrInfo(PowerPCInsts, sizeof(PowerPCInsts)/sizeof(PowerPCInsts[0])){
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool PowerPCInstrInfo::isMoveInstr(const MachineInstr& MI,
|
||||||
|
unsigned& sourceReg,
|
||||||
|
unsigned& destReg) const {
|
||||||
|
MachineOpCode oc = MI.getOpcode();
|
||||||
|
if (oc == PPC32::OR) {
|
||||||
|
assert(MI.getNumOperands() == 3 &&
|
||||||
|
MI.getOperand(0).isRegister() &&
|
||||||
|
MI.getOperand(1).isRegister() &&
|
||||||
|
MI.getOperand(2).isRegister() &&
|
||||||
|
"invalid register-register int move instruction");
|
||||||
|
if (MI.getOperand(1).getReg() == MI.getOperand(2).getReg()) {
|
||||||
|
sourceReg = MI.getOperand(1).getReg();
|
||||||
|
destReg = MI.getOperand(0).getReg();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (oc == PPC32::FMR) {
|
||||||
|
assert(MI.getNumOperands() == 2 &&
|
||||||
|
MI.getOperand(0).isRegister() &&
|
||||||
|
MI.getOperand(1).isRegister() &&
|
||||||
|
"invalid register-register fp move instruction");
|
||||||
|
sourceReg = MI.getOperand(1).getReg();
|
||||||
|
destReg = MI.getOperand(0).getReg();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user