blob: 87bd3d9c7e63ee56b05ce4d5026012e5397fd2d4 [file] [log] [blame]
Sanjiv Gupta0e687712008-05-13 09:02:57 +00001//===- PIC16InstrInfo.cpp - PIC16 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 PIC16 implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "PIC16.h"
Sanjiv Gupta753ec152009-10-15 19:26:25 +000015#include "PIC16ABINames.h"
Sanjiv Gupta0e687712008-05-13 09:02:57 +000016#include "PIC16InstrInfo.h"
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000017#include "PIC16TargetMachine.h"
18#include "PIC16GenInstrInfo.inc"
Sanjiv Gupta0e687712008-05-13 09:02:57 +000019#include "llvm/Function.h"
20#include "llvm/ADT/STLExtras.h"
21#include "llvm/CodeGen/MachineFunction.h"
22#include "llvm/CodeGen/MachineInstrBuilder.h"
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000024#include "llvm/Support/ErrorHandling.h"
Duncan Sandsc6dbe7f2008-11-28 10:20:03 +000025#include <cstdio>
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000026
Sanjiv Gupta0e687712008-05-13 09:02:57 +000027
28using namespace llvm;
29
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +000030// FIXME: Add the subtarget support on this constructor.
Sanjiv Gupta0e687712008-05-13 09:02:57 +000031PIC16InstrInfo::PIC16InstrInfo(PIC16TargetMachine &tm)
32 : TargetInstrInfoImpl(PIC16Insts, array_lengthof(PIC16Insts)),
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000033 TM(tm),
34 RegInfo(*this, *TM.getSubtargetImpl()) {}
Sanjiv Gupta0e687712008-05-13 09:02:57 +000035
Sanjiv Gupta0e687712008-05-13 09:02:57 +000036
37/// isStoreToStackSlot - If the specified machine instruction is a direct
38/// store to a stack slot, return the virtual or physical register number of
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000039/// the source reg along with the FrameIndex of the loaded stack slot.
40/// If not, return 0. This predicate must return 0 if the instruction has
Sanjiv Gupta0e687712008-05-13 09:02:57 +000041/// any side effects other than storing to the stack slot.
Sanjiv Gupta863d3e92008-11-19 11:27:59 +000042unsigned PIC16InstrInfo::isStoreToStackSlot(const MachineInstr *MI,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000043 int &FrameIndex) const {
44 if (MI->getOpcode() == PIC16::movwf
45 && MI->getOperand(0).isReg()
46 && MI->getOperand(1).isSymbol()) {
47 FrameIndex = MI->getOperand(1).getIndex();
48 return MI->getOperand(0).getReg();
Sanjiv Gupta0e687712008-05-13 09:02:57 +000049 }
50 return 0;
51}
52
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000053/// isLoadFromStackSlot - If the specified machine instruction is a direct
54/// load from a stack slot, return the virtual or physical register number of
55/// the dest reg along with the FrameIndex of the stack slot.
56/// If not, return 0. This predicate must return 0 if the instruction has
57/// any side effects other than storing to the stack slot.
Sanjiv Gupta863d3e92008-11-19 11:27:59 +000058unsigned PIC16InstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000059 int &FrameIndex) const {
60 if (MI->getOpcode() == PIC16::movf
61 && MI->getOperand(0).isReg()
62 && MI->getOperand(1).isSymbol()) {
63 FrameIndex = MI->getOperand(1).getIndex();
64 return MI->getOperand(0).getReg();
65 }
66 return 0;
67}
68
69
70void PIC16InstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
71 MachineBasicBlock::iterator I,
72 unsigned SrcReg, bool isKill, int FI,
73 const TargetRegisterClass *RC) const {
Sanjiv Guptacae1b622009-04-06 10:54:50 +000074 PIC16TargetLowering *PTLI = TM.getTargetLowering();
Bill Wendlingd1c321a2009-02-12 00:02:55 +000075 DebugLoc DL = DebugLoc::getUnknownLoc();
76 if (I != MBB.end()) DL = I->getDebugLoc();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000077
Sanjiv Gupta0e687712008-05-13 09:02:57 +000078 const Function *Func = MBB.getParent()->getFunction();
79 const std::string FuncName = Func->getName();
80
Sanjiv Gupta211f3622009-05-10 05:23:47 +000081 const char *tmpName = createESName(PAN::getTempdataLabel(FuncName));
Sanjiv Gupta0e687712008-05-13 09:02:57 +000082
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000083 // On the order of operands here: think "movwf SrcReg, tmp_slot, offset".
84 if (RC == PIC16::GPRRegisterClass) {
85 //MachineFunction &MF = *MBB.getParent();
86 //MachineRegisterInfo &RI = MF.getRegInfo();
Bill Wendlingd1c321a2009-02-12 00:02:55 +000087 BuildMI(MBB, I, DL, get(PIC16::movwf))
Bill Wendling587daed2009-05-13 21:33:08 +000088 .addReg(SrcReg, getKillRegState(isKill))
Sanjiv Guptaa3613be2009-04-10 15:10:14 +000089 .addImm(PTLI->GetTmpOffsetForFI(FI, 1))
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +000090 .addExternalSymbol(tmpName)
91 .addImm(1); // Emit banksel for it.
Sanjiv Gupta0e687712008-05-13 09:02:57 +000092 }
Sanjiv Guptaa3613be2009-04-10 15:10:14 +000093 else if (RC == PIC16::FSR16RegisterClass) {
94 // This is a 16-bit register and the frameindex given by llvm is of
95 // size two here. Break this index N into two zero based indexes and
96 // put one into the map. The second one is always obtained by adding 1
97 // to the first zero based index. In fact it is going to use 3 slots
98 // as saving FSRs corrupts W also and hence we need to save/restore W also.
99
100 unsigned opcode = (SrcReg == PIC16::FSR0) ? PIC16::save_fsr0
101 : PIC16::save_fsr1;
102 BuildMI(MBB, I, DL, get(opcode))
Bill Wendling587daed2009-05-13 21:33:08 +0000103 .addReg(SrcReg, getKillRegState(isKill))
Sanjiv Guptaa3613be2009-04-10 15:10:14 +0000104 .addImm(PTLI->GetTmpOffsetForFI(FI, 3))
105 .addExternalSymbol(tmpName)
106 .addImm(1); // Emit banksel for it.
107 }
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000108 else
Torok Edwinc23197a2009-07-14 16:55:14 +0000109 llvm_unreachable("Can't store this register to stack slot");
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000110}
111
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000112void PIC16InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
113 MachineBasicBlock::iterator I,
114 unsigned DestReg, int FI,
115 const TargetRegisterClass *RC) const {
Sanjiv Guptacae1b622009-04-06 10:54:50 +0000116 PIC16TargetLowering *PTLI = TM.getTargetLowering();
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000117 DebugLoc DL = DebugLoc::getUnknownLoc();
118 if (I != MBB.end()) DL = I->getDebugLoc();
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000119
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000120 const Function *Func = MBB.getParent()->getFunction();
121 const std::string FuncName = Func->getName();
122
Sanjiv Gupta211f3622009-05-10 05:23:47 +0000123 const char *tmpName = createESName(PAN::getTempdataLabel(FuncName));
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000124
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000125 // On the order of operands here: think "movf FrameIndex, W".
126 if (RC == PIC16::GPRRegisterClass) {
127 //MachineFunction &MF = *MBB.getParent();
128 //MachineRegisterInfo &RI = MF.getRegInfo();
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000129 BuildMI(MBB, I, DL, get(PIC16::movf), DestReg)
Sanjiv Guptaa3613be2009-04-10 15:10:14 +0000130 .addImm(PTLI->GetTmpOffsetForFI(FI, 1))
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000131 .addExternalSymbol(tmpName)
132 .addImm(1); // Emit banksel for it.
133 }
Sanjiv Guptaa3613be2009-04-10 15:10:14 +0000134 else if (RC == PIC16::FSR16RegisterClass) {
135 // This is a 16-bit register and the frameindex given by llvm is of
136 // size two here. Break this index N into two zero based indexes and
137 // put one into the map. The second one is always obtained by adding 1
138 // to the first zero based index. In fact it is going to use 3 slots
139 // as saving FSRs corrupts W also and hence we need to save/restore W also.
140
141 unsigned opcode = (DestReg == PIC16::FSR0) ? PIC16::restore_fsr0
142 : PIC16::restore_fsr1;
143 BuildMI(MBB, I, DL, get(opcode), DestReg)
144 .addImm(PTLI->GetTmpOffsetForFI(FI, 3))
145 .addExternalSymbol(tmpName)
146 .addImm(1); // Emit banksel for it.
147 }
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000148 else
Torok Edwinc23197a2009-07-14 16:55:14 +0000149 llvm_unreachable("Can't load this register from stack slot");
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000150}
151
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000152bool PIC16InstrInfo::copyRegToReg (MachineBasicBlock &MBB,
153 MachineBasicBlock::iterator I,
154 unsigned DestReg, unsigned SrcReg,
155 const TargetRegisterClass *DestRC,
156 const TargetRegisterClass *SrcRC) const {
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000157 DebugLoc DL = DebugLoc::getUnknownLoc();
158 if (I != MBB.end()) DL = I->getDebugLoc();
159
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000160 if (DestRC == PIC16::FSR16RegisterClass) {
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000161 BuildMI(MBB, I, DL, get(PIC16::copy_fsr), DestReg).addReg(SrcReg);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000162 return true;
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000163 }
164
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000165 if (DestRC == PIC16::GPRRegisterClass) {
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000166 BuildMI(MBB, I, DL, get(PIC16::copy_w), DestReg).addReg(SrcReg);
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000167 return true;
168 }
169
170 // Not yet supported.
171 return false;
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000172}
173
174bool PIC16InstrInfo::isMoveInstr(const MachineInstr &MI,
Sanjiv Gupta25305662009-01-21 09:02:46 +0000175 unsigned &SrcReg, unsigned &DestReg,
176 unsigned &SrcSubIdx, unsigned &DstSubIdx) const {
177 SrcSubIdx = DstSubIdx = 0; // No sub-registers.
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000178
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000179 if (MI.getOpcode() == PIC16::copy_fsr
180 || MI.getOpcode() == PIC16::copy_w) {
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000181 DestReg = MI.getOperand(0).getReg();
182 SrcReg = MI.getOperand(1).getReg();
183 return true;
184 }
Sanjiv Gupta1b046942009-01-13 19:18:47 +0000185
Sanjiv Guptab1b5ffd2008-11-19 11:00:54 +0000186 return false;
Sanjiv Gupta0e687712008-05-13 09:02:57 +0000187}
188
Sanjiv Gupta892c8ca2009-06-03 15:31:12 +0000189/// InsertBranch - Insert a branch into the end of the specified
190/// MachineBasicBlock. This operands to this method are the same as those
191/// returned by AnalyzeBranch. This is invoked in cases where AnalyzeBranch
192/// returns success and when an unconditional branch (TBB is non-null, FBB is
193/// null, Cond is empty) needs to be inserted. It returns the number of
194/// instructions inserted.
195unsigned PIC16InstrInfo::
196InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
197 MachineBasicBlock *FBB,
198 const SmallVectorImpl<MachineOperand> &Cond) const {
199 // Shouldn't be a fall through.
200 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
201
202 if (FBB == 0) { // One way branch.
203 if (Cond.empty()) {
204 // Unconditional branch?
205 DebugLoc dl = DebugLoc::getUnknownLoc();
206 BuildMI(&MBB, dl, get(PIC16::br_uncond)).addMBB(TBB);
207 }
208 return 1;
209 }
210
211 // FIXME: If the there are some conditions specified then conditional branch
212 // should be generated.
213 // For the time being no instruction is being generated therefore
214 // returning NULL.
215 return 0;
216}