forked from OSchip/llvm-project
Add definitions of two subclasses of MipsInstrInfo, MipsInstrInfo (for mips16),
and MipsSEInstrInfo (for mips32/64). llvm-svn: 161081
This commit is contained in:
parent
30651805c4
commit
b7fa3c9db0
|
@ -0,0 +1,123 @@
|
|||
//===-- Mips16InstrInfo.cpp - Mips16 Instruction Information --------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file contains the Mips16 implementation of the TargetInstrInfo class.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Mips16InstrInfo.h"
|
||||
#include "MipsTargetMachine.h"
|
||||
#include "MipsMachineFunction.h"
|
||||
#include "InstPrinter/MipsInstPrinter.h"
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/TargetRegistry.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
Mips16InstrInfo::Mips16InstrInfo(MipsTargetMachine &tm)
|
||||
: MipsInstrInfo(tm, /* FIXME: set mips16 unconditional br */ 0) {}
|
||||
|
||||
/// isLoadFromStackSlot - If the specified machine instruction is a direct
|
||||
/// load from a stack slot, return the virtual or physical register number of
|
||||
/// the destination along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than loading from the stack slot.
|
||||
unsigned Mips16InstrInfo::
|
||||
isLoadFromStackSlot(const MachineInstr *MI, int &FrameIndex) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// isStoreToStackSlot - If the specified machine instruction is a direct
|
||||
/// store to a stack slot, return the virtual or physical register number of
|
||||
/// the source reg along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than storing to the stack slot.
|
||||
unsigned Mips16InstrInfo::
|
||||
isStoreToStackSlot(const MachineInstr *MI, int &FrameIndex) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void Mips16InstrInfo::copyPhysReg(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I, DebugLoc DL,
|
||||
unsigned DestReg, unsigned SrcReg,
|
||||
bool KillSrc) const {
|
||||
unsigned Opc = 0, ZeroReg = 0;
|
||||
|
||||
if (Mips::CPURegsRegClass.contains(DestReg)) { // Copy to CPU Reg.
|
||||
if (Mips::CPURegsRegClass.contains(SrcReg))
|
||||
Opc = Mips::Mov32R16;
|
||||
}
|
||||
|
||||
assert(Opc && "Cannot copy registers");
|
||||
|
||||
MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc));
|
||||
|
||||
if (DestReg)
|
||||
MIB.addReg(DestReg, RegState::Define);
|
||||
|
||||
if (ZeroReg)
|
||||
MIB.addReg(ZeroReg);
|
||||
|
||||
if (SrcReg)
|
||||
MIB.addReg(SrcReg, getKillRegState(KillSrc));
|
||||
}
|
||||
|
||||
void Mips16InstrInfo::
|
||||
storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned SrcReg, bool isKill, int FI,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const {
|
||||
assert(false && "Implement this function.");
|
||||
}
|
||||
|
||||
void Mips16InstrInfo::
|
||||
loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned DestReg, int FI,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const {
|
||||
assert(false && "Implement this function.");
|
||||
}
|
||||
|
||||
bool Mips16InstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const {
|
||||
MachineBasicBlock &MBB = *MI->getParent();
|
||||
|
||||
switch(MI->getDesc().getOpcode()) {
|
||||
default:
|
||||
return false;
|
||||
case Mips::RetRA16:
|
||||
ExpandRetRA16(MBB, MI, Mips::JrRa16);
|
||||
break;
|
||||
}
|
||||
|
||||
MBB.erase(MI);
|
||||
return true;
|
||||
}
|
||||
|
||||
/// GetOppositeBranchOpc - Return the inverse of the specified
|
||||
/// opcode, e.g. turning BEQ to BNE.
|
||||
unsigned Mips16InstrInfo::GetOppositeBranchOpc(unsigned Opc) const {
|
||||
assert(false && "Implement this function.");
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned Mips16InstrInfo::GetAnalyzableBrOpc(unsigned Opc) const {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void Mips16InstrInfo::ExpandRetRA16(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I,
|
||||
unsigned Opc) const {
|
||||
BuildMI(MBB, I, I->getDebugLoc(), get(Opc));
|
||||
}
|
|
@ -0,0 +1,71 @@
|
|||
//===-- Mips16InstrInfo.h - Mips16 Instruction Information ------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file contains the Mips16 implementation of the TargetInstrInfo class.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef MIPS16INSTRUCTIONINFO_H
|
||||
#define MIPS16INSTRUCTIONINFO_H
|
||||
|
||||
#include "MipsInstrInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class Mips16InstrInfo : public MipsInstrInfo {
|
||||
public:
|
||||
explicit Mips16InstrInfo(MipsTargetMachine &TM);
|
||||
|
||||
/// isLoadFromStackSlot - If the specified machine instruction is a direct
|
||||
/// load from a stack slot, return the virtual or physical register number of
|
||||
/// the destination along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than loading from the stack slot.
|
||||
virtual unsigned isLoadFromStackSlot(const MachineInstr *MI,
|
||||
int &FrameIndex) const;
|
||||
|
||||
/// isStoreToStackSlot - If the specified machine instruction is a direct
|
||||
/// store to a stack slot, return the virtual or physical register number of
|
||||
/// the source reg along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than storing to the stack slot.
|
||||
virtual unsigned isStoreToStackSlot(const MachineInstr *MI,
|
||||
int &FrameIndex) const;
|
||||
|
||||
virtual void copyPhysReg(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MI, DebugLoc DL,
|
||||
unsigned DestReg, unsigned SrcReg,
|
||||
bool KillSrc) const;
|
||||
|
||||
virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MBBI,
|
||||
unsigned SrcReg, bool isKill, int FrameIndex,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const;
|
||||
|
||||
virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MBBI,
|
||||
unsigned DestReg, int FrameIndex,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const;
|
||||
|
||||
virtual bool expandPostRAPseudo(MachineBasicBlock::iterator MI) const;
|
||||
|
||||
virtual unsigned GetOppositeBranchOpc(unsigned Opc) const;
|
||||
|
||||
private:
|
||||
virtual unsigned GetAnalyzableBrOpc(unsigned Opc) const;
|
||||
|
||||
void ExpandRetRA16(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned Opc) const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
|
@ -27,70 +27,18 @@
|
|||
|
||||
using namespace llvm;
|
||||
|
||||
MipsInstrInfo::MipsInstrInfo(MipsTargetMachine &tm)
|
||||
MipsInstrInfo::MipsInstrInfo(MipsTargetMachine &tm, unsigned UncondBr)
|
||||
: MipsGenInstrInfo(Mips::ADJCALLSTACKDOWN, Mips::ADJCALLSTACKUP),
|
||||
TM(tm), IsN64(TM.getSubtarget<MipsSubtarget>().isABI_N64()),
|
||||
InMips16Mode(TM.getSubtarget<MipsSubtarget>().inMips16Mode()),
|
||||
RI(*TM.getSubtargetImpl(), *this),
|
||||
UncondBrOpc(TM.getRelocationModel() == Reloc::PIC_ ? Mips::B : Mips::J) {}
|
||||
TM(tm), RI(*TM.getSubtargetImpl(), *this), UncondBrOpc(UncondBr) {}
|
||||
|
||||
const MipsRegisterInfo &MipsInstrInfo::getRegisterInfo() const {
|
||||
return RI;
|
||||
}
|
||||
|
||||
static bool isZeroImm(const MachineOperand &op) {
|
||||
bool MipsInstrInfo::isZeroImm(const MachineOperand &op) const {
|
||||
return op.isImm() && op.getImm() == 0;
|
||||
}
|
||||
|
||||
/// isLoadFromStackSlot - If the specified machine instruction is a direct
|
||||
/// load from a stack slot, return the virtual or physical register number of
|
||||
/// the destination along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than loading from the stack slot.
|
||||
unsigned MipsInstrInfo::
|
||||
isLoadFromStackSlot(const MachineInstr *MI, int &FrameIndex) const
|
||||
{
|
||||
unsigned Opc = MI->getOpcode();
|
||||
|
||||
if ((Opc == Mips::LW) || (Opc == Mips::LW_P8) || (Opc == Mips::LD) ||
|
||||
(Opc == Mips::LD_P8) || (Opc == Mips::LWC1) || (Opc == Mips::LWC1_P8) ||
|
||||
(Opc == Mips::LDC1) || (Opc == Mips::LDC164) ||
|
||||
(Opc == Mips::LDC164_P8)) {
|
||||
if ((MI->getOperand(1).isFI()) && // is a stack slot
|
||||
(MI->getOperand(2).isImm()) && // the imm is zero
|
||||
(isZeroImm(MI->getOperand(2)))) {
|
||||
FrameIndex = MI->getOperand(1).getIndex();
|
||||
return MI->getOperand(0).getReg();
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// isStoreToStackSlot - If the specified machine instruction is a direct
|
||||
/// store to a stack slot, return the virtual or physical register number of
|
||||
/// the source reg along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than storing to the stack slot.
|
||||
unsigned MipsInstrInfo::
|
||||
isStoreToStackSlot(const MachineInstr *MI, int &FrameIndex) const
|
||||
{
|
||||
unsigned Opc = MI->getOpcode();
|
||||
|
||||
if ((Opc == Mips::SW) || (Opc == Mips::SW_P8) || (Opc == Mips::SD) ||
|
||||
(Opc == Mips::SD_P8) || (Opc == Mips::SWC1) || (Opc == Mips::SWC1_P8) ||
|
||||
(Opc == Mips::SDC1) || (Opc == Mips::SDC164) ||
|
||||
(Opc == Mips::SDC164_P8)) {
|
||||
if ((MI->getOperand(1).isFI()) && // is a stack slot
|
||||
(MI->getOperand(2).isImm()) && // the imm is zero
|
||||
(isZeroImm(MI->getOperand(2)))) {
|
||||
FrameIndex = MI->getOperand(1).getIndex();
|
||||
return MI->getOperand(0).getReg();
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// insertNoop - If data hazard condition is found insert the target nop
|
||||
/// instruction.
|
||||
void MipsInstrInfo::
|
||||
|
@ -100,83 +48,8 @@ insertNoop(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI) const
|
|||
BuildMI(MBB, MI, DL, get(Mips::NOP));
|
||||
}
|
||||
|
||||
void MipsInstrInfo::
|
||||
copyPhysReg(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I, DebugLoc DL,
|
||||
unsigned DestReg, unsigned SrcReg,
|
||||
bool KillSrc) const {
|
||||
unsigned Opc = 0, ZeroReg = 0;
|
||||
|
||||
if (Mips::CPURegsRegClass.contains(DestReg)) { // Copy to CPU Reg.
|
||||
if (Mips::CPURegsRegClass.contains(SrcReg)) {
|
||||
if (InMips16Mode)
|
||||
Opc=Mips::Mov32R16;
|
||||
else {
|
||||
Opc = Mips::ADDu, ZeroReg = Mips::ZERO;
|
||||
}
|
||||
}
|
||||
else if (Mips::CCRRegClass.contains(SrcReg))
|
||||
Opc = Mips::CFC1;
|
||||
else if (Mips::FGR32RegClass.contains(SrcReg))
|
||||
Opc = Mips::MFC1;
|
||||
else if (SrcReg == Mips::HI)
|
||||
Opc = Mips::MFHI, SrcReg = 0;
|
||||
else if (SrcReg == Mips::LO)
|
||||
Opc = Mips::MFLO, SrcReg = 0;
|
||||
}
|
||||
else if (Mips::CPURegsRegClass.contains(SrcReg)) { // Copy from CPU Reg.
|
||||
if (Mips::CCRRegClass.contains(DestReg))
|
||||
Opc = Mips::CTC1;
|
||||
else if (Mips::FGR32RegClass.contains(DestReg))
|
||||
Opc = Mips::MTC1;
|
||||
else if (DestReg == Mips::HI)
|
||||
Opc = Mips::MTHI, DestReg = 0;
|
||||
else if (DestReg == Mips::LO)
|
||||
Opc = Mips::MTLO, DestReg = 0;
|
||||
}
|
||||
else if (Mips::FGR32RegClass.contains(DestReg, SrcReg))
|
||||
Opc = Mips::FMOV_S;
|
||||
else if (Mips::AFGR64RegClass.contains(DestReg, SrcReg))
|
||||
Opc = Mips::FMOV_D32;
|
||||
else if (Mips::FGR64RegClass.contains(DestReg, SrcReg))
|
||||
Opc = Mips::FMOV_D64;
|
||||
else if (Mips::CCRRegClass.contains(DestReg, SrcReg))
|
||||
Opc = Mips::MOVCCRToCCR;
|
||||
else if (Mips::CPU64RegsRegClass.contains(DestReg)) { // Copy to CPU64 Reg.
|
||||
if (Mips::CPU64RegsRegClass.contains(SrcReg))
|
||||
Opc = Mips::DADDu, ZeroReg = Mips::ZERO_64;
|
||||
else if (SrcReg == Mips::HI64)
|
||||
Opc = Mips::MFHI64, SrcReg = 0;
|
||||
else if (SrcReg == Mips::LO64)
|
||||
Opc = Mips::MFLO64, SrcReg = 0;
|
||||
else if (Mips::FGR64RegClass.contains(SrcReg))
|
||||
Opc = Mips::DMFC1;
|
||||
}
|
||||
else if (Mips::CPU64RegsRegClass.contains(SrcReg)) { // Copy from CPU64 Reg.
|
||||
if (DestReg == Mips::HI64)
|
||||
Opc = Mips::MTHI64, DestReg = 0;
|
||||
else if (DestReg == Mips::LO64)
|
||||
Opc = Mips::MTLO64, DestReg = 0;
|
||||
else if (Mips::FGR64RegClass.contains(DestReg))
|
||||
Opc = Mips::DMTC1;
|
||||
}
|
||||
|
||||
assert(Opc && "Cannot copy registers");
|
||||
|
||||
MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc));
|
||||
|
||||
if (DestReg)
|
||||
MIB.addReg(DestReg, RegState::Define);
|
||||
|
||||
if (ZeroReg)
|
||||
MIB.addReg(ZeroReg);
|
||||
|
||||
if (SrcReg)
|
||||
MIB.addReg(SrcReg, getKillRegState(KillSrc));
|
||||
}
|
||||
|
||||
static MachineMemOperand* GetMemOperand(MachineBasicBlock &MBB, int FI,
|
||||
unsigned Flag) {
|
||||
MachineMemOperand *MipsInstrInfo::GetMemOperand(MachineBasicBlock &MBB, int FI,
|
||||
unsigned Flag) const {
|
||||
MachineFunction &MF = *MBB.getParent();
|
||||
MachineFrameInfo &MFI = *MF.getFrameInfo();
|
||||
unsigned Align = MFI.getObjectAlignment(FI);
|
||||
|
@ -185,130 +58,6 @@ static MachineMemOperand* GetMemOperand(MachineBasicBlock &MBB, int FI,
|
|||
MFI.getObjectSize(FI), Align);
|
||||
}
|
||||
|
||||
void MipsInstrInfo::
|
||||
storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned SrcReg, bool isKill, int FI,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const {
|
||||
DebugLoc DL;
|
||||
if (I != MBB.end()) DL = I->getDebugLoc();
|
||||
MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOStore);
|
||||
|
||||
unsigned Opc = 0;
|
||||
|
||||
if (Mips::CPURegsRegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::SW_P8 : Mips::SW;
|
||||
else if (Mips::CPU64RegsRegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::SD_P8 : Mips::SD;
|
||||
else if (Mips::FGR32RegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::SWC1_P8 : Mips::SWC1;
|
||||
else if (Mips::AFGR64RegClass.hasSubClassEq(RC))
|
||||
Opc = Mips::SDC1;
|
||||
else if (Mips::FGR64RegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::SDC164_P8 : Mips::SDC164;
|
||||
|
||||
assert(Opc && "Register class not handled!");
|
||||
BuildMI(MBB, I, DL, get(Opc)).addReg(SrcReg, getKillRegState(isKill))
|
||||
.addFrameIndex(FI).addImm(0).addMemOperand(MMO);
|
||||
}
|
||||
|
||||
void MipsInstrInfo::
|
||||
loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned DestReg, int FI,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const
|
||||
{
|
||||
DebugLoc DL;
|
||||
if (I != MBB.end()) DL = I->getDebugLoc();
|
||||
MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOLoad);
|
||||
unsigned Opc = 0;
|
||||
|
||||
if (Mips::CPURegsRegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::LW_P8 : Mips::LW;
|
||||
else if (Mips::CPU64RegsRegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::LD_P8 : Mips::LD;
|
||||
else if (Mips::FGR32RegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::LWC1_P8 : Mips::LWC1;
|
||||
else if (Mips::AFGR64RegClass.hasSubClassEq(RC))
|
||||
Opc = Mips::LDC1;
|
||||
else if (Mips::FGR64RegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::LDC164_P8 : Mips::LDC164;
|
||||
|
||||
assert(Opc && "Register class not handled!");
|
||||
BuildMI(MBB, I, DL, get(Opc), DestReg).addFrameIndex(FI).addImm(0)
|
||||
.addMemOperand(MMO);
|
||||
}
|
||||
|
||||
void MipsInstrInfo::ExpandRetRA(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I,
|
||||
unsigned Opc) const {
|
||||
BuildMI(MBB, I, I->getDebugLoc(), TM.getInstrInfo()->get(Opc))
|
||||
.addReg(Mips::RA);
|
||||
}
|
||||
|
||||
void MipsInstrInfo::ExpandRetRA16(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I,
|
||||
unsigned Opc) const {
|
||||
BuildMI(MBB, I, I->getDebugLoc(), TM.getInstrInfo()->get(Opc));
|
||||
}
|
||||
|
||||
void MipsInstrInfo::ExpandExtractElementF64(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I) const {
|
||||
const TargetInstrInfo *TII = TM.getInstrInfo();
|
||||
unsigned DstReg = I->getOperand(0).getReg();
|
||||
unsigned SrcReg = I->getOperand(1).getReg();
|
||||
unsigned N = I->getOperand(2).getImm();
|
||||
const MCInstrDesc& Mfc1Tdd = TII->get(Mips::MFC1);
|
||||
DebugLoc dl = I->getDebugLoc();
|
||||
|
||||
assert(N < 2 && "Invalid immediate");
|
||||
unsigned SubIdx = N ? Mips::sub_fpodd : Mips::sub_fpeven;
|
||||
unsigned SubReg = TM.getRegisterInfo()->getSubReg(SrcReg, SubIdx);
|
||||
|
||||
BuildMI(MBB, I, dl, Mfc1Tdd, DstReg).addReg(SubReg);
|
||||
}
|
||||
|
||||
void MipsInstrInfo::ExpandBuildPairF64(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I) const {
|
||||
const TargetInstrInfo *TII = TM.getInstrInfo();
|
||||
unsigned DstReg = I->getOperand(0).getReg();
|
||||
unsigned LoReg = I->getOperand(1).getReg(), HiReg = I->getOperand(2).getReg();
|
||||
const MCInstrDesc& Mtc1Tdd = TII->get(Mips::MTC1);
|
||||
DebugLoc dl = I->getDebugLoc();
|
||||
const TargetRegisterInfo *TRI = TM.getRegisterInfo();
|
||||
|
||||
// mtc1 Lo, $fp
|
||||
// mtc1 Hi, $fp + 1
|
||||
BuildMI(MBB, I, dl, Mtc1Tdd, TRI->getSubReg(DstReg, Mips::sub_fpeven))
|
||||
.addReg(LoReg);
|
||||
BuildMI(MBB, I, dl, Mtc1Tdd, TRI->getSubReg(DstReg, Mips::sub_fpodd))
|
||||
.addReg(HiReg);
|
||||
}
|
||||
|
||||
bool MipsInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const {
|
||||
MachineBasicBlock &MBB = *MI->getParent();
|
||||
|
||||
switch(MI->getDesc().getOpcode()) {
|
||||
default:
|
||||
return false;
|
||||
case Mips::RetRA:
|
||||
ExpandRetRA(MBB, MI, Mips::RET);
|
||||
break;
|
||||
case Mips::RetRA16:
|
||||
ExpandRetRA16(MBB, MI, Mips::JrRa16);
|
||||
break;
|
||||
case Mips::BuildPairF64:
|
||||
ExpandBuildPairF64(MBB, MI);
|
||||
break;
|
||||
case Mips::ExtractElementF64:
|
||||
ExpandExtractElementF64(MBB, MI);
|
||||
break;
|
||||
}
|
||||
|
||||
MBB.erase(MI);
|
||||
return true;
|
||||
}
|
||||
|
||||
MachineInstr*
|
||||
MipsInstrInfo::emitFrameIndexDebugValue(MachineFunction &MF, int FrameIx,
|
||||
uint64_t Offset, const MDNode *MDPtr,
|
||||
|
@ -322,42 +71,9 @@ MipsInstrInfo::emitFrameIndexDebugValue(MachineFunction &MF, int FrameIx,
|
|||
// Branch Analysis
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
static unsigned GetAnalyzableBrOpc(unsigned Opc) {
|
||||
return (Opc == Mips::BEQ || Opc == Mips::BNE || Opc == Mips::BGTZ ||
|
||||
Opc == Mips::BGEZ || Opc == Mips::BLTZ || Opc == Mips::BLEZ ||
|
||||
Opc == Mips::BEQ64 || Opc == Mips::BNE64 || Opc == Mips::BGTZ64 ||
|
||||
Opc == Mips::BGEZ64 || Opc == Mips::BLTZ64 || Opc == Mips::BLEZ64 ||
|
||||
Opc == Mips::BC1T || Opc == Mips::BC1F || Opc == Mips::B ||
|
||||
Opc == Mips::J) ?
|
||||
Opc : 0;
|
||||
}
|
||||
|
||||
/// GetOppositeBranchOpc - Return the inverse of the specified
|
||||
/// opcode, e.g. turning BEQ to BNE.
|
||||
unsigned Mips::GetOppositeBranchOpc(unsigned Opc)
|
||||
{
|
||||
switch (Opc) {
|
||||
default: llvm_unreachable("Illegal opcode!");
|
||||
case Mips::BEQ: return Mips::BNE;
|
||||
case Mips::BNE: return Mips::BEQ;
|
||||
case Mips::BGTZ: return Mips::BLEZ;
|
||||
case Mips::BGEZ: return Mips::BLTZ;
|
||||
case Mips::BLTZ: return Mips::BGEZ;
|
||||
case Mips::BLEZ: return Mips::BGTZ;
|
||||
case Mips::BEQ64: return Mips::BNE64;
|
||||
case Mips::BNE64: return Mips::BEQ64;
|
||||
case Mips::BGTZ64: return Mips::BLEZ64;
|
||||
case Mips::BGEZ64: return Mips::BLTZ64;
|
||||
case Mips::BLTZ64: return Mips::BGEZ64;
|
||||
case Mips::BLEZ64: return Mips::BGTZ64;
|
||||
case Mips::BC1T: return Mips::BC1F;
|
||||
case Mips::BC1F: return Mips::BC1T;
|
||||
}
|
||||
}
|
||||
|
||||
static void AnalyzeCondBr(const MachineInstr *Inst, unsigned Opc,
|
||||
MachineBasicBlock *&BB,
|
||||
SmallVectorImpl<MachineOperand> &Cond) {
|
||||
void MipsInstrInfo::AnalyzeCondBr(const MachineInstr *Inst, unsigned Opc,
|
||||
MachineBasicBlock *&BB,
|
||||
SmallVectorImpl<MachineOperand> &Cond) const {
|
||||
assert(GetAnalyzableBrOpc(Opc) && "Not an analyzable branch");
|
||||
int NumOp = Inst->getNumExplicitOperands();
|
||||
|
||||
|
@ -527,7 +243,7 @@ ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const
|
|||
{
|
||||
assert( (Cond.size() && Cond.size() <= 3) &&
|
||||
"Invalid Mips branch condition!");
|
||||
Cond[0].setImm(Mips::GetOppositeBranchOpc(Cond[0].getImm()));
|
||||
Cond[0].setImm(GetOppositeBranchOpc(Cond[0].getImm()));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -26,12 +26,38 @@
|
|||
namespace llvm {
|
||||
|
||||
class MipsInstrInfo : public MipsGenInstrInfo {
|
||||
protected:
|
||||
MipsTargetMachine &TM;
|
||||
bool IsN64; bool InMips16Mode;
|
||||
const MipsRegisterInfo RI;
|
||||
unsigned UncondBrOpc;
|
||||
|
||||
public:
|
||||
explicit MipsInstrInfo(MipsTargetMachine &TM);
|
||||
explicit MipsInstrInfo(MipsTargetMachine &TM, unsigned UncondBrOpc);
|
||||
|
||||
/// Branch Analysis
|
||||
virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
|
||||
MachineBasicBlock *&FBB,
|
||||
SmallVectorImpl<MachineOperand> &Cond,
|
||||
bool AllowModify) const;
|
||||
|
||||
virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const;
|
||||
|
||||
virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
|
||||
MachineBasicBlock *FBB,
|
||||
const SmallVectorImpl<MachineOperand> &Cond,
|
||||
DebugLoc DL) const;
|
||||
|
||||
virtual
|
||||
bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
|
||||
|
||||
virtual MachineInstr* emitFrameIndexDebugValue(MachineFunction &MF,
|
||||
int FrameIx, uint64_t Offset,
|
||||
const MDNode *MDPtr,
|
||||
DebugLoc DL) const;
|
||||
|
||||
/// Insert nop instruction when hazard condition is found
|
||||
virtual void insertNoop(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MI) const;
|
||||
|
||||
/// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
|
||||
/// such, whenever a client has an instance of instruction info, it should
|
||||
|
@ -39,86 +65,29 @@ public:
|
|||
///
|
||||
virtual const MipsRegisterInfo &getRegisterInfo() const;
|
||||
|
||||
/// isLoadFromStackSlot - If the specified machine instruction is a direct
|
||||
/// load from a stack slot, return the virtual or physical register number of
|
||||
/// the destination along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than loading from the stack slot.
|
||||
virtual unsigned isLoadFromStackSlot(const MachineInstr *MI,
|
||||
int &FrameIndex) const;
|
||||
|
||||
/// isStoreToStackSlot - If the specified machine instruction is a direct
|
||||
/// store to a stack slot, return the virtual or physical register number of
|
||||
/// the source reg along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than storing to the stack slot.
|
||||
virtual unsigned isStoreToStackSlot(const MachineInstr *MI,
|
||||
int &FrameIndex) const;
|
||||
|
||||
/// Branch Analysis
|
||||
virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
|
||||
MachineBasicBlock *&FBB,
|
||||
SmallVectorImpl<MachineOperand> &Cond,
|
||||
bool AllowModify) const;
|
||||
virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const;
|
||||
|
||||
private:
|
||||
void ExpandRetRA(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned Opc) const;
|
||||
void ExpandRetRA16(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned Opc) const;
|
||||
|
||||
void BuildCondBr(MachineBasicBlock &MBB, MachineBasicBlock *TBB, DebugLoc DL,
|
||||
const SmallVectorImpl<MachineOperand>& Cond) const;
|
||||
void ExpandExtractElementF64(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I) const;
|
||||
void ExpandBuildPairF64(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I) const;
|
||||
|
||||
public:
|
||||
virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
|
||||
MachineBasicBlock *FBB,
|
||||
const SmallVectorImpl<MachineOperand> &Cond,
|
||||
DebugLoc DL) const;
|
||||
virtual void copyPhysReg(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MI, DebugLoc DL,
|
||||
unsigned DestReg, unsigned SrcReg,
|
||||
bool KillSrc) const;
|
||||
virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MBBI,
|
||||
unsigned SrcReg, bool isKill, int FrameIndex,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const;
|
||||
|
||||
virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MBBI,
|
||||
unsigned DestReg, int FrameIndex,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const;
|
||||
|
||||
virtual bool expandPostRAPseudo(MachineBasicBlock::iterator MI) const;
|
||||
|
||||
virtual MachineInstr* emitFrameIndexDebugValue(MachineFunction &MF,
|
||||
int FrameIx, uint64_t Offset,
|
||||
const MDNode *MDPtr,
|
||||
DebugLoc DL) const;
|
||||
|
||||
virtual
|
||||
bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
|
||||
|
||||
/// Insert nop instruction when hazard condition is found
|
||||
virtual void insertNoop(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MI) const;
|
||||
virtual unsigned GetOppositeBranchOpc(unsigned Opc) const = 0;
|
||||
|
||||
/// Return the number of bytes of code the specified instruction may be.
|
||||
unsigned GetInstSizeInBytes(const MachineInstr *MI) const;
|
||||
|
||||
protected:
|
||||
bool isZeroImm(const MachineOperand &op) const;
|
||||
|
||||
MachineMemOperand *GetMemOperand(MachineBasicBlock &MBB, int FI,
|
||||
unsigned Flag) const;
|
||||
|
||||
private:
|
||||
virtual unsigned GetAnalyzableBrOpc(unsigned Opc) const = 0;
|
||||
|
||||
void AnalyzeCondBr(const MachineInstr *Inst, unsigned Opc,
|
||||
MachineBasicBlock *&BB,
|
||||
SmallVectorImpl<MachineOperand> &Cond) const;
|
||||
|
||||
void BuildCondBr(MachineBasicBlock &MBB, MachineBasicBlock *TBB, DebugLoc DL,
|
||||
const SmallVectorImpl<MachineOperand>& Cond) const;
|
||||
};
|
||||
|
||||
namespace Mips {
|
||||
/// GetOppositeBranchOpc - Return the inverse of the specified
|
||||
/// opcode, e.g. turning BEQ to BNE.
|
||||
unsigned GetOppositeBranchOpc(unsigned Opc);
|
||||
|
||||
/// Emit a series of instructions to load an immediate. All instructions
|
||||
/// except for the last one are emitted. The function returns the number of
|
||||
/// MachineInstrs generated. The opcode-immediate pair of the last
|
||||
|
|
|
@ -207,7 +207,7 @@ int64_t MipsLongBranch::computeOffset(const MachineInstr *Br) {
|
|||
// MachineBasicBlock operand MBBOpnd.
|
||||
void MipsLongBranch::replaceBranch(MachineBasicBlock &MBB, Iter Br,
|
||||
DebugLoc DL, MachineBasicBlock *MBBOpnd) {
|
||||
unsigned NewOpc = Mips::GetOppositeBranchOpc(Br->getOpcode());
|
||||
unsigned NewOpc = TII->GetOppositeBranchOpc(Br->getOpcode());
|
||||
const MCInstrDesc &NewDesc = TII->get(NewOpc);
|
||||
|
||||
MachineInstrBuilder MIB = BuildMI(MBB, Br, DL, NewDesc);
|
||||
|
|
|
@ -0,0 +1,291 @@
|
|||
//===-- MipsSEInstrInfo.cpp - Mips32/64 Instruction Information -----------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file contains the Mips32/64 implementation of the TargetInstrInfo class.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "MipsSEInstrInfo.h"
|
||||
#include "MipsTargetMachine.h"
|
||||
#include "MipsMachineFunction.h"
|
||||
#include "InstPrinter/MipsInstPrinter.h"
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/TargetRegistry.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
MipsSEInstrInfo::MipsSEInstrInfo(MipsTargetMachine &tm)
|
||||
: MipsInstrInfo(tm,
|
||||
tm.getRelocationModel() == Reloc::PIC_ ? Mips::B : Mips::J),
|
||||
IsN64(tm.getSubtarget<MipsSubtarget>().isABI_N64()) {}
|
||||
|
||||
/// isLoadFromStackSlot - If the specified machine instruction is a direct
|
||||
/// load from a stack slot, return the virtual or physical register number of
|
||||
/// the destination along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than loading from the stack slot.
|
||||
unsigned MipsSEInstrInfo::
|
||||
isLoadFromStackSlot(const MachineInstr *MI, int &FrameIndex) const
|
||||
{
|
||||
unsigned Opc = MI->getOpcode();
|
||||
|
||||
if ((Opc == Mips::LW) || (Opc == Mips::LW_P8) || (Opc == Mips::LD) ||
|
||||
(Opc == Mips::LD_P8) || (Opc == Mips::LWC1) || (Opc == Mips::LWC1_P8) ||
|
||||
(Opc == Mips::LDC1) || (Opc == Mips::LDC164) ||
|
||||
(Opc == Mips::LDC164_P8)) {
|
||||
if ((MI->getOperand(1).isFI()) && // is a stack slot
|
||||
(MI->getOperand(2).isImm()) && // the imm is zero
|
||||
(isZeroImm(MI->getOperand(2)))) {
|
||||
FrameIndex = MI->getOperand(1).getIndex();
|
||||
return MI->getOperand(0).getReg();
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// isStoreToStackSlot - If the specified machine instruction is a direct
|
||||
/// store to a stack slot, return the virtual or physical register number of
|
||||
/// the source reg along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than storing to the stack slot.
|
||||
unsigned MipsSEInstrInfo::
|
||||
isStoreToStackSlot(const MachineInstr *MI, int &FrameIndex) const
|
||||
{
|
||||
unsigned Opc = MI->getOpcode();
|
||||
|
||||
if ((Opc == Mips::SW) || (Opc == Mips::SW_P8) || (Opc == Mips::SD) ||
|
||||
(Opc == Mips::SD_P8) || (Opc == Mips::SWC1) || (Opc == Mips::SWC1_P8) ||
|
||||
(Opc == Mips::SDC1) || (Opc == Mips::SDC164) ||
|
||||
(Opc == Mips::SDC164_P8)) {
|
||||
if ((MI->getOperand(1).isFI()) && // is a stack slot
|
||||
(MI->getOperand(2).isImm()) && // the imm is zero
|
||||
(isZeroImm(MI->getOperand(2)))) {
|
||||
FrameIndex = MI->getOperand(1).getIndex();
|
||||
return MI->getOperand(0).getReg();
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
void MipsSEInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I, DebugLoc DL,
|
||||
unsigned DestReg, unsigned SrcReg,
|
||||
bool KillSrc) const {
|
||||
unsigned Opc = 0, ZeroReg = 0;
|
||||
|
||||
if (Mips::CPURegsRegClass.contains(DestReg)) { // Copy to CPU Reg.
|
||||
if (Mips::CPURegsRegClass.contains(SrcReg))
|
||||
Opc = Mips::ADDu, ZeroReg = Mips::ZERO;
|
||||
else if (Mips::CCRRegClass.contains(SrcReg))
|
||||
Opc = Mips::CFC1;
|
||||
else if (Mips::FGR32RegClass.contains(SrcReg))
|
||||
Opc = Mips::MFC1;
|
||||
else if (SrcReg == Mips::HI)
|
||||
Opc = Mips::MFHI, SrcReg = 0;
|
||||
else if (SrcReg == Mips::LO)
|
||||
Opc = Mips::MFLO, SrcReg = 0;
|
||||
}
|
||||
else if (Mips::CPURegsRegClass.contains(SrcReg)) { // Copy from CPU Reg.
|
||||
if (Mips::CCRRegClass.contains(DestReg))
|
||||
Opc = Mips::CTC1;
|
||||
else if (Mips::FGR32RegClass.contains(DestReg))
|
||||
Opc = Mips::MTC1;
|
||||
else if (DestReg == Mips::HI)
|
||||
Opc = Mips::MTHI, DestReg = 0;
|
||||
else if (DestReg == Mips::LO)
|
||||
Opc = Mips::MTLO, DestReg = 0;
|
||||
}
|
||||
else if (Mips::FGR32RegClass.contains(DestReg, SrcReg))
|
||||
Opc = Mips::FMOV_S;
|
||||
else if (Mips::AFGR64RegClass.contains(DestReg, SrcReg))
|
||||
Opc = Mips::FMOV_D32;
|
||||
else if (Mips::FGR64RegClass.contains(DestReg, SrcReg))
|
||||
Opc = Mips::FMOV_D64;
|
||||
else if (Mips::CCRRegClass.contains(DestReg, SrcReg))
|
||||
Opc = Mips::MOVCCRToCCR;
|
||||
else if (Mips::CPU64RegsRegClass.contains(DestReg)) { // Copy to CPU64 Reg.
|
||||
if (Mips::CPU64RegsRegClass.contains(SrcReg))
|
||||
Opc = Mips::DADDu, ZeroReg = Mips::ZERO_64;
|
||||
else if (SrcReg == Mips::HI64)
|
||||
Opc = Mips::MFHI64, SrcReg = 0;
|
||||
else if (SrcReg == Mips::LO64)
|
||||
Opc = Mips::MFLO64, SrcReg = 0;
|
||||
else if (Mips::FGR64RegClass.contains(SrcReg))
|
||||
Opc = Mips::DMFC1;
|
||||
}
|
||||
else if (Mips::CPU64RegsRegClass.contains(SrcReg)) { // Copy from CPU64 Reg.
|
||||
if (DestReg == Mips::HI64)
|
||||
Opc = Mips::MTHI64, DestReg = 0;
|
||||
else if (DestReg == Mips::LO64)
|
||||
Opc = Mips::MTLO64, DestReg = 0;
|
||||
else if (Mips::FGR64RegClass.contains(DestReg))
|
||||
Opc = Mips::DMTC1;
|
||||
}
|
||||
|
||||
assert(Opc && "Cannot copy registers");
|
||||
|
||||
MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc));
|
||||
|
||||
if (DestReg)
|
||||
MIB.addReg(DestReg, RegState::Define);
|
||||
|
||||
if (ZeroReg)
|
||||
MIB.addReg(ZeroReg);
|
||||
|
||||
if (SrcReg)
|
||||
MIB.addReg(SrcReg, getKillRegState(KillSrc));
|
||||
}
|
||||
|
||||
void MipsSEInstrInfo::
|
||||
storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned SrcReg, bool isKill, int FI,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const {
|
||||
DebugLoc DL;
|
||||
if (I != MBB.end()) DL = I->getDebugLoc();
|
||||
MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOStore);
|
||||
|
||||
unsigned Opc = 0;
|
||||
|
||||
if (Mips::CPURegsRegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::SW_P8 : Mips::SW;
|
||||
else if (Mips::CPU64RegsRegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::SD_P8 : Mips::SD;
|
||||
else if (Mips::FGR32RegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::SWC1_P8 : Mips::SWC1;
|
||||
else if (Mips::AFGR64RegClass.hasSubClassEq(RC))
|
||||
Opc = Mips::SDC1;
|
||||
else if (Mips::FGR64RegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::SDC164_P8 : Mips::SDC164;
|
||||
|
||||
assert(Opc && "Register class not handled!");
|
||||
BuildMI(MBB, I, DL, get(Opc)).addReg(SrcReg, getKillRegState(isKill))
|
||||
.addFrameIndex(FI).addImm(0).addMemOperand(MMO);
|
||||
}
|
||||
|
||||
void MipsSEInstrInfo::
|
||||
loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned DestReg, int FI,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const
|
||||
{
|
||||
DebugLoc DL;
|
||||
if (I != MBB.end()) DL = I->getDebugLoc();
|
||||
MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOLoad);
|
||||
unsigned Opc = 0;
|
||||
|
||||
if (Mips::CPURegsRegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::LW_P8 : Mips::LW;
|
||||
else if (Mips::CPU64RegsRegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::LD_P8 : Mips::LD;
|
||||
else if (Mips::FGR32RegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::LWC1_P8 : Mips::LWC1;
|
||||
else if (Mips::AFGR64RegClass.hasSubClassEq(RC))
|
||||
Opc = Mips::LDC1;
|
||||
else if (Mips::FGR64RegClass.hasSubClassEq(RC))
|
||||
Opc = IsN64 ? Mips::LDC164_P8 : Mips::LDC164;
|
||||
|
||||
assert(Opc && "Register class not handled!");
|
||||
BuildMI(MBB, I, DL, get(Opc), DestReg).addFrameIndex(FI).addImm(0)
|
||||
.addMemOperand(MMO);
|
||||
}
|
||||
|
||||
bool MipsSEInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const {
|
||||
MachineBasicBlock &MBB = *MI->getParent();
|
||||
|
||||
switch(MI->getDesc().getOpcode()) {
|
||||
default:
|
||||
return false;
|
||||
case Mips::RetRA:
|
||||
ExpandRetRA(MBB, MI, Mips::RET);
|
||||
break;
|
||||
case Mips::BuildPairF64:
|
||||
ExpandBuildPairF64(MBB, MI);
|
||||
break;
|
||||
case Mips::ExtractElementF64:
|
||||
ExpandExtractElementF64(MBB, MI);
|
||||
break;
|
||||
}
|
||||
|
||||
MBB.erase(MI);
|
||||
return true;
|
||||
}
|
||||
|
||||
/// GetOppositeBranchOpc - Return the inverse of the specified
|
||||
/// opcode, e.g. turning BEQ to BNE.
|
||||
unsigned MipsSEInstrInfo::GetOppositeBranchOpc(unsigned Opc) const {
|
||||
switch (Opc) {
|
||||
default: llvm_unreachable("Illegal opcode!");
|
||||
case Mips::BEQ: return Mips::BNE;
|
||||
case Mips::BNE: return Mips::BEQ;
|
||||
case Mips::BGTZ: return Mips::BLEZ;
|
||||
case Mips::BGEZ: return Mips::BLTZ;
|
||||
case Mips::BLTZ: return Mips::BGEZ;
|
||||
case Mips::BLEZ: return Mips::BGTZ;
|
||||
case Mips::BEQ64: return Mips::BNE64;
|
||||
case Mips::BNE64: return Mips::BEQ64;
|
||||
case Mips::BGTZ64: return Mips::BLEZ64;
|
||||
case Mips::BGEZ64: return Mips::BLTZ64;
|
||||
case Mips::BLTZ64: return Mips::BGEZ64;
|
||||
case Mips::BLEZ64: return Mips::BGTZ64;
|
||||
case Mips::BC1T: return Mips::BC1F;
|
||||
case Mips::BC1F: return Mips::BC1T;
|
||||
}
|
||||
}
|
||||
|
||||
unsigned MipsSEInstrInfo::GetAnalyzableBrOpc(unsigned Opc) const {
|
||||
return (Opc == Mips::BEQ || Opc == Mips::BNE || Opc == Mips::BGTZ ||
|
||||
Opc == Mips::BGEZ || Opc == Mips::BLTZ || Opc == Mips::BLEZ ||
|
||||
Opc == Mips::BEQ64 || Opc == Mips::BNE64 || Opc == Mips::BGTZ64 ||
|
||||
Opc == Mips::BGEZ64 || Opc == Mips::BLTZ64 || Opc == Mips::BLEZ64 ||
|
||||
Opc == Mips::BC1T || Opc == Mips::BC1F || Opc == Mips::B ||
|
||||
Opc == Mips::J) ?
|
||||
Opc : 0;
|
||||
}
|
||||
|
||||
void MipsSEInstrInfo::ExpandRetRA(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I,
|
||||
unsigned Opc) const {
|
||||
BuildMI(MBB, I, I->getDebugLoc(), get(Opc)).addReg(Mips::RA);
|
||||
}
|
||||
|
||||
void MipsSEInstrInfo::ExpandExtractElementF64(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I) const {
|
||||
unsigned DstReg = I->getOperand(0).getReg();
|
||||
unsigned SrcReg = I->getOperand(1).getReg();
|
||||
unsigned N = I->getOperand(2).getImm();
|
||||
const MCInstrDesc& Mfc1Tdd = get(Mips::MFC1);
|
||||
DebugLoc dl = I->getDebugLoc();
|
||||
|
||||
assert(N < 2 && "Invalid immediate");
|
||||
unsigned SubIdx = N ? Mips::sub_fpodd : Mips::sub_fpeven;
|
||||
unsigned SubReg = getRegisterInfo().getSubReg(SrcReg, SubIdx);
|
||||
|
||||
BuildMI(MBB, I, dl, Mfc1Tdd, DstReg).addReg(SubReg);
|
||||
}
|
||||
|
||||
void MipsSEInstrInfo::ExpandBuildPairF64(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I) const {
|
||||
unsigned DstReg = I->getOperand(0).getReg();
|
||||
unsigned LoReg = I->getOperand(1).getReg(), HiReg = I->getOperand(2).getReg();
|
||||
const MCInstrDesc& Mtc1Tdd = get(Mips::MTC1);
|
||||
DebugLoc dl = I->getDebugLoc();
|
||||
const TargetRegisterInfo &TRI = getRegisterInfo();
|
||||
|
||||
// mtc1 Lo, $fp
|
||||
// mtc1 Hi, $fp + 1
|
||||
BuildMI(MBB, I, dl, Mtc1Tdd, TRI.getSubReg(DstReg, Mips::sub_fpeven))
|
||||
.addReg(LoReg);
|
||||
BuildMI(MBB, I, dl, Mtc1Tdd, TRI.getSubReg(DstReg, Mips::sub_fpodd))
|
||||
.addReg(HiReg);
|
||||
}
|
|
@ -0,0 +1,77 @@
|
|||
//===-- MipsSEInstrInfo.h - Mips32/64 Instruction Information ---*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file contains the Mips32/64 implementation of the TargetInstrInfo class.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef MIPSSEINSTRUCTIONINFO_H
|
||||
#define MIPSSEINSTRUCTIONINFO_H
|
||||
|
||||
#include "MipsInstrInfo.h"
|
||||
#include "MipsAnalyzeImmediate.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class MipsSEInstrInfo : public MipsInstrInfo {
|
||||
bool IsN64;
|
||||
public:
|
||||
explicit MipsSEInstrInfo(MipsTargetMachine &TM);
|
||||
|
||||
/// isLoadFromStackSlot - If the specified machine instruction is a direct
|
||||
/// load from a stack slot, return the virtual or physical register number of
|
||||
/// the destination along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than loading from the stack slot.
|
||||
virtual unsigned isLoadFromStackSlot(const MachineInstr *MI,
|
||||
int &FrameIndex) const;
|
||||
|
||||
/// isStoreToStackSlot - If the specified machine instruction is a direct
|
||||
/// store to a stack slot, return the virtual or physical register number of
|
||||
/// the source reg along with the FrameIndex of the loaded stack slot. If
|
||||
/// not, return 0. This predicate must return 0 if the instruction has
|
||||
/// any side effects other than storing to the stack slot.
|
||||
virtual unsigned isStoreToStackSlot(const MachineInstr *MI,
|
||||
int &FrameIndex) const;
|
||||
|
||||
virtual void copyPhysReg(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MI, DebugLoc DL,
|
||||
unsigned DestReg, unsigned SrcReg,
|
||||
bool KillSrc) const;
|
||||
|
||||
virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MBBI,
|
||||
unsigned SrcReg, bool isKill, int FrameIndex,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const;
|
||||
|
||||
virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MBBI,
|
||||
unsigned DestReg, int FrameIndex,
|
||||
const TargetRegisterClass *RC,
|
||||
const TargetRegisterInfo *TRI) const;
|
||||
|
||||
virtual bool expandPostRAPseudo(MachineBasicBlock::iterator MI) const;
|
||||
|
||||
virtual unsigned GetOppositeBranchOpc(unsigned Opc) const;
|
||||
|
||||
private:
|
||||
virtual unsigned GetAnalyzableBrOpc(unsigned Opc) const;
|
||||
|
||||
void ExpandRetRA(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned Opc) const;
|
||||
void ExpandExtractElementF64(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I) const;
|
||||
void ExpandBuildPairF64(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I) const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
|
@ -12,6 +12,8 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "MipsTargetMachine.h"
|
||||
#include "MipsSEInstrInfo.h"
|
||||
#include "Mips16InstrInfo.h"
|
||||
#include "Mips.h"
|
||||
#include "llvm/PassManager.h"
|
||||
#include "llvm/CodeGen/Passes.h"
|
||||
|
@ -26,6 +28,17 @@ extern "C" void LLVMInitializeMipsTarget() {
|
|||
RegisterTargetMachine<MipselTargetMachine> B(TheMips64elTarget);
|
||||
}
|
||||
|
||||
static const MipsInstrInfo *genInstrInfo(MipsTargetMachine &TM) {
|
||||
const MipsInstrInfo *II;
|
||||
|
||||
if (TM.getSubtargetImpl()->inMips16Mode())
|
||||
II = new Mips16InstrInfo(TM);
|
||||
else
|
||||
II = new MipsSEInstrInfo(TM);
|
||||
|
||||
return II;
|
||||
}
|
||||
|
||||
// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
|
||||
// The stack is always 8 byte aligned
|
||||
// On function prologue, the stack is created by decrementing
|
||||
|
@ -48,7 +61,7 @@ MipsTargetMachine(const Target &T, StringRef TT,
|
|||
(Subtarget.isABI_N64() ?
|
||||
"E-p:64:64:64-i8:8:32-i16:16:32-i64:64:64-f128:128:128-n32" :
|
||||
"E-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32")),
|
||||
InstrInfo(*this),
|
||||
InstrInfo(genInstrInfo(*this)),
|
||||
FrameLowering(Subtarget),
|
||||
TLInfo(*this), TSInfo(*this), JITInfo() {
|
||||
}
|
||||
|
|
|
@ -25,12 +25,13 @@
|
|||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
|
||||
namespace llvm {
|
||||
class formatted_raw_ostream;
|
||||
class formatted_raw_ostream;
|
||||
class MipsRegisterInfo;
|
||||
|
||||
class MipsTargetMachine : public LLVMTargetMachine {
|
||||
MipsSubtarget Subtarget;
|
||||
const TargetData DataLayout; // Calculates type size & alignment
|
||||
MipsInstrInfo InstrInfo;
|
||||
const MipsInstrInfo *InstrInfo;
|
||||
MipsFrameLowering FrameLowering;
|
||||
MipsTargetLowering TLInfo;
|
||||
MipsSelectionDAGInfo TSInfo;
|
||||
|
@ -43,8 +44,10 @@ public:
|
|||
CodeGenOpt::Level OL,
|
||||
bool isLittle);
|
||||
|
||||
virtual ~MipsTargetMachine() { delete InstrInfo; }
|
||||
|
||||
virtual const MipsInstrInfo *getInstrInfo() const
|
||||
{ return &InstrInfo; }
|
||||
{ return InstrInfo; }
|
||||
virtual const TargetFrameLowering *getFrameLowering() const
|
||||
{ return &FrameLowering; }
|
||||
virtual const MipsSubtarget *getSubtargetImpl() const
|
||||
|
@ -55,7 +58,7 @@ public:
|
|||
{ return &JITInfo; }
|
||||
|
||||
virtual const MipsRegisterInfo *getRegisterInfo() const {
|
||||
return &InstrInfo.getRegisterInfo();
|
||||
return &InstrInfo->getRegisterInfo();
|
||||
}
|
||||
|
||||
virtual const MipsTargetLowering *getTargetLowering() const {
|
||||
|
|
Loading…
Reference in New Issue