blob: 2a769e8ad16e46dc6e4932cafe3da42b4798dc8d [file] [log] [blame]
Sanjiv Gupta09bb4202008-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"
15#include "PIC16InstrInfo.h"
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000016#include "PIC16TargetMachine.h"
17#include "PIC16GenInstrInfo.inc"
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000018#include "llvm/Function.h"
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/CodeGen/MachineFunction.h"
21#include "llvm/CodeGen/MachineInstrBuilder.h"
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000022#include "llvm/CodeGen/MachineRegisterInfo.h"
Duncan Sandsd46f6b82008-11-28 10:20:03 +000023#include <cstdio>
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000024
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000025
26using namespace llvm;
27
Sanjiv Gupta1f7b12b2008-05-14 11:31:39 +000028// FIXME: Add the subtarget support on this constructor.
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000029PIC16InstrInfo::PIC16InstrInfo(PIC16TargetMachine &tm)
30 : TargetInstrInfoImpl(PIC16Insts, array_lengthof(PIC16Insts)),
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000031 TM(tm),
32 RegInfo(*this, *TM.getSubtargetImpl()) {}
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000033
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000034
35/// isStoreToStackSlot - If the specified machine instruction is a direct
36/// store to a stack slot, return the virtual or physical register number of
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000037/// the source reg along with the FrameIndex of the loaded stack slot.
38/// If not, return 0. This predicate must return 0 if the instruction has
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000039/// any side effects other than storing to the stack slot.
Sanjiv Guptac780d0e2008-11-19 11:27:59 +000040unsigned PIC16InstrInfo::isStoreToStackSlot(const MachineInstr *MI,
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000041 int &FrameIndex) const {
42 if (MI->getOpcode() == PIC16::movwf
43 && MI->getOperand(0).isReg()
44 && MI->getOperand(1).isSymbol()) {
45 FrameIndex = MI->getOperand(1).getIndex();
46 return MI->getOperand(0).getReg();
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000047 }
48 return 0;
49}
50
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000051/// isLoadFromStackSlot - If the specified machine instruction is a direct
52/// load from a stack slot, return the virtual or physical register number of
53/// the dest reg along with the FrameIndex of the stack slot.
54/// If not, return 0. This predicate must return 0 if the instruction has
55/// any side effects other than storing to the stack slot.
Sanjiv Guptac780d0e2008-11-19 11:27:59 +000056unsigned PIC16InstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000057 int &FrameIndex) const {
58 if (MI->getOpcode() == PIC16::movf
59 && MI->getOperand(0).isReg()
60 && MI->getOperand(1).isSymbol()) {
61 FrameIndex = MI->getOperand(1).getIndex();
62 return MI->getOperand(0).getReg();
63 }
64 return 0;
65}
66
67
68void PIC16InstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
69 MachineBasicBlock::iterator I,
70 unsigned SrcReg, bool isKill, int FI,
71 const TargetRegisterClass *RC) const {
Sanjiv Gupta4ab710d2009-04-06 10:54:50 +000072 PIC16TargetLowering *PTLI = TM.getTargetLowering();
Bill Wendling5b8a97b2009-02-12 00:02:55 +000073 DebugLoc DL = DebugLoc::getUnknownLoc();
74 if (I != MBB.end()) DL = I->getDebugLoc();
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000075
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000076 const Function *Func = MBB.getParent()->getFunction();
77 const std::string FuncName = Func->getName();
78
Sanjiv Guptaca549b72009-05-10 05:23:47 +000079 const char *tmpName = createESName(PAN::getTempdataLabel(FuncName));
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000080
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000081 // On the order of operands here: think "movwf SrcReg, tmp_slot, offset".
82 if (RC == PIC16::GPRRegisterClass) {
83 //MachineFunction &MF = *MBB.getParent();
84 //MachineRegisterInfo &RI = MF.getRegInfo();
Bill Wendling5b8a97b2009-02-12 00:02:55 +000085 BuildMI(MBB, I, DL, get(PIC16::movwf))
Bill Wendling2b739762009-05-13 21:33:08 +000086 .addReg(SrcReg, getKillRegState(isKill))
Sanjiv Guptaab5e8d92009-04-10 15:10:14 +000087 .addImm(PTLI->GetTmpOffsetForFI(FI, 1))
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000088 .addExternalSymbol(tmpName)
89 .addImm(1); // Emit banksel for it.
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000090 }
Sanjiv Guptaab5e8d92009-04-10 15:10:14 +000091 else if (RC == PIC16::FSR16RegisterClass) {
92 // This is a 16-bit register and the frameindex given by llvm is of
93 // size two here. Break this index N into two zero based indexes and
94 // put one into the map. The second one is always obtained by adding 1
95 // to the first zero based index. In fact it is going to use 3 slots
96 // as saving FSRs corrupts W also and hence we need to save/restore W also.
97
98 unsigned opcode = (SrcReg == PIC16::FSR0) ? PIC16::save_fsr0
99 : PIC16::save_fsr1;
100 BuildMI(MBB, I, DL, get(opcode))
Bill Wendling2b739762009-05-13 21:33:08 +0000101 .addReg(SrcReg, getKillRegState(isKill))
Sanjiv Guptaab5e8d92009-04-10 15:10:14 +0000102 .addImm(PTLI->GetTmpOffsetForFI(FI, 3))
103 .addExternalSymbol(tmpName)
104 .addImm(1); // Emit banksel for it.
105 }
Sanjiv Gupta09bb4202008-05-13 09:02:57 +0000106 else
107 assert(0 && "Can't store this register to stack slot");
108}
109
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +0000110void PIC16InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
111 MachineBasicBlock::iterator I,
112 unsigned DestReg, int FI,
113 const TargetRegisterClass *RC) const {
Sanjiv Gupta4ab710d2009-04-06 10:54:50 +0000114 PIC16TargetLowering *PTLI = TM.getTargetLowering();
Bill Wendling5b8a97b2009-02-12 00:02:55 +0000115 DebugLoc DL = DebugLoc::getUnknownLoc();
116 if (I != MBB.end()) DL = I->getDebugLoc();
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +0000117
Sanjiv Gupta09bb4202008-05-13 09:02:57 +0000118 const Function *Func = MBB.getParent()->getFunction();
119 const std::string FuncName = Func->getName();
120
Sanjiv Guptaca549b72009-05-10 05:23:47 +0000121 const char *tmpName = createESName(PAN::getTempdataLabel(FuncName));
Sanjiv Gupta09bb4202008-05-13 09:02:57 +0000122
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +0000123 // On the order of operands here: think "movf FrameIndex, W".
124 if (RC == PIC16::GPRRegisterClass) {
125 //MachineFunction &MF = *MBB.getParent();
126 //MachineRegisterInfo &RI = MF.getRegInfo();
Bill Wendling5b8a97b2009-02-12 00:02:55 +0000127 BuildMI(MBB, I, DL, get(PIC16::movf), DestReg)
Sanjiv Guptaab5e8d92009-04-10 15:10:14 +0000128 .addImm(PTLI->GetTmpOffsetForFI(FI, 1))
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +0000129 .addExternalSymbol(tmpName)
130 .addImm(1); // Emit banksel for it.
131 }
Sanjiv Guptaab5e8d92009-04-10 15:10:14 +0000132 else if (RC == PIC16::FSR16RegisterClass) {
133 // This is a 16-bit register and the frameindex given by llvm is of
134 // size two here. Break this index N into two zero based indexes and
135 // put one into the map. The second one is always obtained by adding 1
136 // to the first zero based index. In fact it is going to use 3 slots
137 // as saving FSRs corrupts W also and hence we need to save/restore W also.
138
139 unsigned opcode = (DestReg == PIC16::FSR0) ? PIC16::restore_fsr0
140 : PIC16::restore_fsr1;
141 BuildMI(MBB, I, DL, get(opcode), DestReg)
142 .addImm(PTLI->GetTmpOffsetForFI(FI, 3))
143 .addExternalSymbol(tmpName)
144 .addImm(1); // Emit banksel for it.
145 }
Sanjiv Gupta09bb4202008-05-13 09:02:57 +0000146 else
147 assert(0 && "Can't load this register from stack slot");
148}
149
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +0000150bool PIC16InstrInfo::copyRegToReg (MachineBasicBlock &MBB,
151 MachineBasicBlock::iterator I,
152 unsigned DestReg, unsigned SrcReg,
153 const TargetRegisterClass *DestRC,
154 const TargetRegisterClass *SrcRC) const {
Bill Wendling5b8a97b2009-02-12 00:02:55 +0000155 DebugLoc DL = DebugLoc::getUnknownLoc();
156 if (I != MBB.end()) DL = I->getDebugLoc();
157
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +0000158 if (DestRC == PIC16::FSR16RegisterClass) {
Bill Wendling5b8a97b2009-02-12 00:02:55 +0000159 BuildMI(MBB, I, DL, get(PIC16::copy_fsr), DestReg).addReg(SrcReg);
Sanjiv Gupta4affaea2009-01-13 19:18:47 +0000160 return true;
Sanjiv Gupta09bb4202008-05-13 09:02:57 +0000161 }
162
Sanjiv Gupta4affaea2009-01-13 19:18:47 +0000163 if (DestRC == PIC16::GPRRegisterClass) {
Bill Wendling5b8a97b2009-02-12 00:02:55 +0000164 BuildMI(MBB, I, DL, get(PIC16::copy_w), DestReg).addReg(SrcReg);
Sanjiv Gupta4affaea2009-01-13 19:18:47 +0000165 return true;
166 }
167
168 // Not yet supported.
169 return false;
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +0000170}
171
172bool PIC16InstrInfo::isMoveInstr(const MachineInstr &MI,
Sanjiv Guptaf06bc202009-01-21 09:02:46 +0000173 unsigned &SrcReg, unsigned &DestReg,
174 unsigned &SrcSubIdx, unsigned &DstSubIdx) const {
175 SrcSubIdx = DstSubIdx = 0; // No sub-registers.
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +0000176
Sanjiv Gupta4affaea2009-01-13 19:18:47 +0000177 if (MI.getOpcode() == PIC16::copy_fsr
178 || MI.getOpcode() == PIC16::copy_w) {
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +0000179 DestReg = MI.getOperand(0).getReg();
180 SrcReg = MI.getOperand(1).getReg();
181 return true;
182 }
Sanjiv Gupta4affaea2009-01-13 19:18:47 +0000183
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +0000184 return false;
Sanjiv Gupta09bb4202008-05-13 09:02:57 +0000185}
186