Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 1 | //===- 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 Gupta | 753ec15 | 2009-10-15 19:26:25 +0000 | [diff] [blame^] | 15 | #include "PIC16ABINames.h" |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 16 | #include "PIC16InstrInfo.h" |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 17 | #include "PIC16TargetMachine.h" |
| 18 | #include "PIC16GenInstrInfo.inc" |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 19 | #include "llvm/Function.h" |
| 20 | #include "llvm/ADT/STLExtras.h" |
| 21 | #include "llvm/CodeGen/MachineFunction.h" |
| 22 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 24 | #include "llvm/Support/ErrorHandling.h" |
Duncan Sands | c6dbe7f | 2008-11-28 10:20:03 +0000 | [diff] [blame] | 25 | #include <cstdio> |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 26 | |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 27 | |
| 28 | using namespace llvm; |
| 29 | |
Sanjiv Gupta | 2010b3e | 2008-05-14 11:31:39 +0000 | [diff] [blame] | 30 | // FIXME: Add the subtarget support on this constructor. |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 31 | PIC16InstrInfo::PIC16InstrInfo(PIC16TargetMachine &tm) |
| 32 | : TargetInstrInfoImpl(PIC16Insts, array_lengthof(PIC16Insts)), |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 33 | TM(tm), |
| 34 | RegInfo(*this, *TM.getSubtargetImpl()) {} |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 35 | |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 36 | |
| 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 Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 39 | /// 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 Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 41 | /// any side effects other than storing to the stack slot. |
Sanjiv Gupta | 863d3e9 | 2008-11-19 11:27:59 +0000 | [diff] [blame] | 42 | unsigned PIC16InstrInfo::isStoreToStackSlot(const MachineInstr *MI, |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 43 | 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 Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 49 | } |
| 50 | return 0; |
| 51 | } |
| 52 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 53 | /// 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 Gupta | 863d3e9 | 2008-11-19 11:27:59 +0000 | [diff] [blame] | 58 | unsigned PIC16InstrInfo::isLoadFromStackSlot(const MachineInstr *MI, |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 59 | 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 | |
| 70 | void PIC16InstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB, |
| 71 | MachineBasicBlock::iterator I, |
| 72 | unsigned SrcReg, bool isKill, int FI, |
| 73 | const TargetRegisterClass *RC) const { |
Sanjiv Gupta | cae1b62 | 2009-04-06 10:54:50 +0000 | [diff] [blame] | 74 | PIC16TargetLowering *PTLI = TM.getTargetLowering(); |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 75 | DebugLoc DL = DebugLoc::getUnknownLoc(); |
| 76 | if (I != MBB.end()) DL = I->getDebugLoc(); |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 77 | |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 78 | const Function *Func = MBB.getParent()->getFunction(); |
| 79 | const std::string FuncName = Func->getName(); |
| 80 | |
Sanjiv Gupta | 211f362 | 2009-05-10 05:23:47 +0000 | [diff] [blame] | 81 | const char *tmpName = createESName(PAN::getTempdataLabel(FuncName)); |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 82 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 83 | // 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 Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 87 | BuildMI(MBB, I, DL, get(PIC16::movwf)) |
Bill Wendling | 587daed | 2009-05-13 21:33:08 +0000 | [diff] [blame] | 88 | .addReg(SrcReg, getKillRegState(isKill)) |
Sanjiv Gupta | a3613be | 2009-04-10 15:10:14 +0000 | [diff] [blame] | 89 | .addImm(PTLI->GetTmpOffsetForFI(FI, 1)) |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 90 | .addExternalSymbol(tmpName) |
| 91 | .addImm(1); // Emit banksel for it. |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 92 | } |
Sanjiv Gupta | a3613be | 2009-04-10 15:10:14 +0000 | [diff] [blame] | 93 | 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 Wendling | 587daed | 2009-05-13 21:33:08 +0000 | [diff] [blame] | 103 | .addReg(SrcReg, getKillRegState(isKill)) |
Sanjiv Gupta | a3613be | 2009-04-10 15:10:14 +0000 | [diff] [blame] | 104 | .addImm(PTLI->GetTmpOffsetForFI(FI, 3)) |
| 105 | .addExternalSymbol(tmpName) |
| 106 | .addImm(1); // Emit banksel for it. |
| 107 | } |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 108 | else |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 109 | llvm_unreachable("Can't store this register to stack slot"); |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 110 | } |
| 111 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 112 | void PIC16InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 113 | MachineBasicBlock::iterator I, |
| 114 | unsigned DestReg, int FI, |
| 115 | const TargetRegisterClass *RC) const { |
Sanjiv Gupta | cae1b62 | 2009-04-06 10:54:50 +0000 | [diff] [blame] | 116 | PIC16TargetLowering *PTLI = TM.getTargetLowering(); |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 117 | DebugLoc DL = DebugLoc::getUnknownLoc(); |
| 118 | if (I != MBB.end()) DL = I->getDebugLoc(); |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 119 | |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 120 | const Function *Func = MBB.getParent()->getFunction(); |
| 121 | const std::string FuncName = Func->getName(); |
| 122 | |
Sanjiv Gupta | 211f362 | 2009-05-10 05:23:47 +0000 | [diff] [blame] | 123 | const char *tmpName = createESName(PAN::getTempdataLabel(FuncName)); |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 124 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 125 | // 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 Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 129 | BuildMI(MBB, I, DL, get(PIC16::movf), DestReg) |
Sanjiv Gupta | a3613be | 2009-04-10 15:10:14 +0000 | [diff] [blame] | 130 | .addImm(PTLI->GetTmpOffsetForFI(FI, 1)) |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 131 | .addExternalSymbol(tmpName) |
| 132 | .addImm(1); // Emit banksel for it. |
| 133 | } |
Sanjiv Gupta | a3613be | 2009-04-10 15:10:14 +0000 | [diff] [blame] | 134 | 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 Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 148 | else |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 149 | llvm_unreachable("Can't load this register from stack slot"); |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 150 | } |
| 151 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 152 | bool PIC16InstrInfo::copyRegToReg (MachineBasicBlock &MBB, |
| 153 | MachineBasicBlock::iterator I, |
| 154 | unsigned DestReg, unsigned SrcReg, |
| 155 | const TargetRegisterClass *DestRC, |
| 156 | const TargetRegisterClass *SrcRC) const { |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 157 | DebugLoc DL = DebugLoc::getUnknownLoc(); |
| 158 | if (I != MBB.end()) DL = I->getDebugLoc(); |
| 159 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 160 | if (DestRC == PIC16::FSR16RegisterClass) { |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 161 | BuildMI(MBB, I, DL, get(PIC16::copy_fsr), DestReg).addReg(SrcReg); |
Sanjiv Gupta | 1b04694 | 2009-01-13 19:18:47 +0000 | [diff] [blame] | 162 | return true; |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Sanjiv Gupta | 1b04694 | 2009-01-13 19:18:47 +0000 | [diff] [blame] | 165 | if (DestRC == PIC16::GPRRegisterClass) { |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 166 | BuildMI(MBB, I, DL, get(PIC16::copy_w), DestReg).addReg(SrcReg); |
Sanjiv Gupta | 1b04694 | 2009-01-13 19:18:47 +0000 | [diff] [blame] | 167 | return true; |
| 168 | } |
| 169 | |
| 170 | // Not yet supported. |
| 171 | return false; |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | bool PIC16InstrInfo::isMoveInstr(const MachineInstr &MI, |
Sanjiv Gupta | 2530566 | 2009-01-21 09:02:46 +0000 | [diff] [blame] | 175 | unsigned &SrcReg, unsigned &DestReg, |
| 176 | unsigned &SrcSubIdx, unsigned &DstSubIdx) const { |
| 177 | SrcSubIdx = DstSubIdx = 0; // No sub-registers. |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 178 | |
Sanjiv Gupta | 1b04694 | 2009-01-13 19:18:47 +0000 | [diff] [blame] | 179 | if (MI.getOpcode() == PIC16::copy_fsr |
| 180 | || MI.getOpcode() == PIC16::copy_w) { |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 181 | DestReg = MI.getOperand(0).getReg(); |
| 182 | SrcReg = MI.getOperand(1).getReg(); |
| 183 | return true; |
| 184 | } |
Sanjiv Gupta | 1b04694 | 2009-01-13 19:18:47 +0000 | [diff] [blame] | 185 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 186 | return false; |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Sanjiv Gupta | 892c8ca | 2009-06-03 15:31:12 +0000 | [diff] [blame] | 189 | /// 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. |
| 195 | unsigned PIC16InstrInfo:: |
| 196 | InsertBranch(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 | } |