mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Fix code formatting
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14899 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -13,39 +13,38 @@
|
|||||||
|
|
||||||
#include "PowerPCInstrInfo.h"
|
#include "PowerPCInstrInfo.h"
|
||||||
#include "PowerPC.h"
|
#include "PowerPC.h"
|
||||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
||||||
#include "PowerPCGenInstrInfo.inc"
|
#include "PowerPCGenInstrInfo.inc"
|
||||||
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||||
#include <iostream>
|
#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,
|
bool PowerPCInstrInfo::isMoveInstr(const MachineInstr& MI,
|
||||||
unsigned& sourceReg,
|
unsigned& sourceReg,
|
||||||
unsigned& destReg) const {
|
unsigned& destReg) const {
|
||||||
MachineOpCode oc = MI.getOpcode();
|
MachineOpCode oc = MI.getOpcode();
|
||||||
if (oc == PPC32::OR) {
|
if (oc == PPC32::OR) {
|
||||||
assert(MI.getNumOperands() == 3 &&
|
assert(MI.getNumOperands() == 3 &&
|
||||||
MI.getOperand(0).isRegister() &&
|
MI.getOperand(0).isRegister() &&
|
||||||
MI.getOperand(1).isRegister() &&
|
MI.getOperand(1).isRegister() &&
|
||||||
MI.getOperand(2).isRegister() &&
|
MI.getOperand(2).isRegister() &&
|
||||||
"invalid register-register int move instruction");
|
"invalid register-register int move instruction");
|
||||||
if (MI.getOperand(1).getReg() == MI.getOperand(2).getReg()) {
|
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();
|
sourceReg = MI.getOperand(1).getReg();
|
||||||
destReg = MI.getOperand(0).getReg();
|
destReg = MI.getOperand(0).getReg();
|
||||||
return true;
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user