blob: 8991433005dfeaae241cbf817e5c5f959a6c2627 [file] [log] [blame]
Akira Hatanaka0bc1adb2012-07-31 21:49:49 +00001//===-- Mips16InstrInfo.cpp - Mips16 Instruction Information --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the Mips16 implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Mips16InstrInfo.h"
15#include "MipsTargetMachine.h"
16#include "MipsMachineFunction.h"
17#include "InstPrinter/MipsInstPrinter.h"
18#include "llvm/CodeGen/MachineInstrBuilder.h"
19#include "llvm/CodeGen/MachineRegisterInfo.h"
20#include "llvm/Support/ErrorHandling.h"
21#include "llvm/Support/TargetRegistry.h"
22#include "llvm/ADT/STLExtras.h"
23#include "llvm/ADT/StringRef.h"
24
25using namespace llvm;
26
27Mips16InstrInfo::Mips16InstrInfo(MipsTargetMachine &tm)
Akira Hatanaka85890102012-07-31 23:41:32 +000028 : MipsInstrInfo(tm, /* FIXME: set mips16 unconditional br */ 0),
Craig Topper71eab962012-08-23 04:45:31 +000029 RI(*tm.getSubtargetImpl()) {}
Akira Hatanaka85890102012-07-31 23:41:32 +000030
31const MipsRegisterInfo &Mips16InstrInfo::getRegisterInfo() const {
32 return RI;
33}
Akira Hatanaka0bc1adb2012-07-31 21:49:49 +000034
35/// isLoadFromStackSlot - If the specified machine instruction is a direct
36/// load from a stack slot, return the virtual or physical register number of
37/// the destination along with the FrameIndex of the loaded stack slot. If
38/// not, return 0. This predicate must return 0 if the instruction has
39/// any side effects other than loading from the stack slot.
40unsigned Mips16InstrInfo::
41isLoadFromStackSlot(const MachineInstr *MI, int &FrameIndex) const
42{
43 return 0;
44}
45
46/// isStoreToStackSlot - If the specified machine instruction is a direct
47/// store to a stack slot, return the virtual or physical register number of
48/// the source reg along with the FrameIndex of the loaded stack slot. If
49/// not, return 0. This predicate must return 0 if the instruction has
50/// any side effects other than storing to the stack slot.
51unsigned Mips16InstrInfo::
52isStoreToStackSlot(const MachineInstr *MI, int &FrameIndex) const
53{
54 return 0;
55}
56
57void Mips16InstrInfo::copyPhysReg(MachineBasicBlock &MBB,
58 MachineBasicBlock::iterator I, DebugLoc DL,
59 unsigned DestReg, unsigned SrcReg,
60 bool KillSrc) const {
Reed Kotler7d90d4d2012-10-12 02:01:09 +000061 unsigned Opc = 0;
Akira Hatanaka0bc1adb2012-07-31 21:49:49 +000062
Reed Kotler7d90d4d2012-10-12 02:01:09 +000063 if (Mips::CPU16RegsRegClass.contains(DestReg) &&
64 Mips::CPURegsRegClass.contains(SrcReg))
65 Opc = Mips::MoveR3216;
66 else if (Mips::CPURegsRegClass.contains(DestReg) &&
67 Mips::CPU16RegsRegClass.contains(SrcReg))
68 Opc = Mips::Move32R16;
69 else if ((SrcReg == Mips::HI) &&
70 (Mips::CPU16RegsRegClass.contains(DestReg)))
71 Opc = Mips::Mfhi16, SrcReg = 0;
72
73 else if ((SrcReg == Mips::LO) &&
74 (Mips::CPU16RegsRegClass.contains(DestReg)))
75 Opc = Mips::Mflo16, SrcReg = 0;
76
Akira Hatanaka0bc1adb2012-07-31 21:49:49 +000077
78 assert(Opc && "Cannot copy registers");
79
80 MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc));
81
82 if (DestReg)
83 MIB.addReg(DestReg, RegState::Define);
84
Akira Hatanaka0bc1adb2012-07-31 21:49:49 +000085 if (SrcReg)
86 MIB.addReg(SrcReg, getKillRegState(KillSrc));
87}
88
89void Mips16InstrInfo::
90storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
91 unsigned SrcReg, bool isKill, int FI,
92 const TargetRegisterClass *RC,
93 const TargetRegisterInfo *TRI) const {
Reed Kotlerc94a38f2012-09-28 02:26:24 +000094 DebugLoc DL;
95 if (I != MBB.end()) DL = I->getDebugLoc();
96 MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOStore);
97 unsigned Opc = 0;
98 if (Mips::CPU16RegsRegClass.hasSubClassEq(RC))
99 Opc = Mips::SwRxSpImmX16;
100 assert(Opc && "Register class not handled!");
101 BuildMI(MBB, I, DL, get(Opc)).addReg(SrcReg, getKillRegState(isKill))
102 .addFrameIndex(FI).addImm(0).addMemOperand(MMO);
Akira Hatanaka0bc1adb2012-07-31 21:49:49 +0000103}
104
105void Mips16InstrInfo::
106loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
107 unsigned DestReg, int FI,
108 const TargetRegisterClass *RC,
109 const TargetRegisterInfo *TRI) const {
Reed Kotlerc94a38f2012-09-28 02:26:24 +0000110 DebugLoc DL;
111 if (I != MBB.end()) DL = I->getDebugLoc();
112 MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOLoad);
113 unsigned Opc = 0;
114
115 if (Mips::CPU16RegsRegClass.hasSubClassEq(RC))
116 Opc = Mips::LwRxSpImmX16;
117 assert(Opc && "Register class not handled!");
118 BuildMI(MBB, I, DL, get(Opc), DestReg).addFrameIndex(FI).addImm(0)
119 .addMemOperand(MMO);
Akira Hatanaka0bc1adb2012-07-31 21:49:49 +0000120}
121
122bool Mips16InstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const {
123 MachineBasicBlock &MBB = *MI->getParent();
124
125 switch(MI->getDesc().getOpcode()) {
126 default:
127 return false;
128 case Mips::RetRA16:
129 ExpandRetRA16(MBB, MI, Mips::JrRa16);
130 break;
131 }
132
133 MBB.erase(MI);
134 return true;
135}
136
137/// GetOppositeBranchOpc - Return the inverse of the specified
138/// opcode, e.g. turning BEQ to BNE.
139unsigned Mips16InstrInfo::GetOppositeBranchOpc(unsigned Opc) const {
140 assert(false && "Implement this function.");
141 return 0;
142}
143
144unsigned Mips16InstrInfo::GetAnalyzableBrOpc(unsigned Opc) const {
145 return 0;
146}
147
148void Mips16InstrInfo::ExpandRetRA16(MachineBasicBlock &MBB,
149 MachineBasicBlock::iterator I,
150 unsigned Opc) const {
151 BuildMI(MBB, I, I->getDebugLoc(), get(Opc));
152}
Akira Hatanakaaf266262012-08-02 18:21:47 +0000153
154const MipsInstrInfo *llvm::createMips16InstrInfo(MipsTargetMachine &TM) {
155 return new Mips16InstrInfo(TM);
156}