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" |
| 15 | #include "PIC16InstrInfo.h" |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 16 | #include "PIC16TargetMachine.h" |
| 17 | #include "PIC16GenInstrInfo.inc" |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 18 | #include "llvm/Function.h" |
| 19 | #include "llvm/ADT/STLExtras.h" |
| 20 | #include "llvm/CodeGen/MachineFunction.h" |
| 21 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Duncan Sands | c6dbe7f | 2008-11-28 10:20:03 +0000 | [diff] [blame^] | 23 | #include <cstdio> |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 24 | |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 25 | |
| 26 | using namespace llvm; |
| 27 | |
Sanjiv Gupta | 2010b3e | 2008-05-14 11:31:39 +0000 | [diff] [blame] | 28 | // FIXME: Add the subtarget support on this constructor. |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 29 | PIC16InstrInfo::PIC16InstrInfo(PIC16TargetMachine &tm) |
| 30 | : TargetInstrInfoImpl(PIC16Insts, array_lengthof(PIC16Insts)), |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 31 | TM(tm), |
| 32 | RegInfo(*this, *TM.getSubtargetImpl()) {} |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 33 | |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 34 | |
| 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 Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 37 | /// 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 Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 39 | /// any side effects other than storing to the stack slot. |
Sanjiv Gupta | 863d3e9 | 2008-11-19 11:27:59 +0000 | [diff] [blame] | 40 | unsigned PIC16InstrInfo::isStoreToStackSlot(const MachineInstr *MI, |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 41 | 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 Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 47 | } |
| 48 | return 0; |
| 49 | } |
| 50 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 51 | /// 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 Gupta | 863d3e9 | 2008-11-19 11:27:59 +0000 | [diff] [blame] | 56 | unsigned PIC16InstrInfo::isLoadFromStackSlot(const MachineInstr *MI, |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 57 | 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 | |
| 68 | void PIC16InstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB, |
| 69 | MachineBasicBlock::iterator I, |
| 70 | unsigned SrcReg, bool isKill, int FI, |
| 71 | const TargetRegisterClass *RC) const { |
| 72 | |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 73 | const Function *Func = MBB.getParent()->getFunction(); |
| 74 | const std::string FuncName = Func->getName(); |
| 75 | |
| 76 | char *tmpName = new char [strlen(FuncName.c_str()) + 6]; |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 77 | sprintf(tmpName, "%s.tmp", FuncName.c_str()); |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 78 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 79 | // On the order of operands here: think "movwf SrcReg, tmp_slot, offset". |
| 80 | if (RC == PIC16::GPRRegisterClass) { |
| 81 | //MachineFunction &MF = *MBB.getParent(); |
| 82 | //MachineRegisterInfo &RI = MF.getRegInfo(); |
| 83 | BuildMI(MBB, I, get(PIC16::movwf)) |
| 84 | .addReg(SrcReg, false, false, isKill) |
| 85 | .addImm(FI) |
| 86 | .addExternalSymbol(tmpName) |
| 87 | .addImm(1); // Emit banksel for it. |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 88 | } |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 89 | else if (RC == PIC16::FSR16RegisterClass) |
| 90 | assert(0 && "Don't know yet how to store a FSR16 to stack slot"); |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 91 | else |
| 92 | assert(0 && "Can't store this register to stack slot"); |
| 93 | } |
| 94 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 95 | void PIC16InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 96 | MachineBasicBlock::iterator I, |
| 97 | unsigned DestReg, int FI, |
| 98 | const TargetRegisterClass *RC) const { |
| 99 | |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 100 | const Function *Func = MBB.getParent()->getFunction(); |
| 101 | const std::string FuncName = Func->getName(); |
| 102 | |
| 103 | char *tmpName = new char [strlen(FuncName.c_str()) + 6]; |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 104 | sprintf(tmpName, "%s.tmp", FuncName.c_str()); |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 105 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 106 | // On the order of operands here: think "movf FrameIndex, W". |
| 107 | if (RC == PIC16::GPRRegisterClass) { |
| 108 | //MachineFunction &MF = *MBB.getParent(); |
| 109 | //MachineRegisterInfo &RI = MF.getRegInfo(); |
| 110 | BuildMI(MBB, I, get(PIC16::movf), DestReg) |
| 111 | .addImm(FI) |
| 112 | .addExternalSymbol(tmpName) |
| 113 | .addImm(1); // Emit banksel for it. |
| 114 | } |
| 115 | else if (RC == PIC16::FSR16RegisterClass) |
| 116 | assert(0 && "Don't know yet how to load an FSR16 from stack slot"); |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 117 | else |
| 118 | assert(0 && "Can't load this register from stack slot"); |
| 119 | } |
| 120 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 121 | bool PIC16InstrInfo::copyRegToReg (MachineBasicBlock &MBB, |
| 122 | MachineBasicBlock::iterator I, |
| 123 | unsigned DestReg, unsigned SrcReg, |
| 124 | const TargetRegisterClass *DestRC, |
| 125 | const TargetRegisterClass *SrcRC) const { |
| 126 | if (DestRC == PIC16::FSR16RegisterClass) { |
| 127 | BuildMI(MBB, I, get(PIC16::copy_fsr), DestReg).addReg(SrcReg); |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 128 | } |
| 129 | |
Sanjiv Gupta | b1b5ffd | 2008-11-19 11:00:54 +0000 | [diff] [blame] | 130 | return true; |
| 131 | } |
| 132 | |
| 133 | bool PIC16InstrInfo::isMoveInstr(const MachineInstr &MI, |
| 134 | unsigned &SrcReg, |
| 135 | unsigned &DestReg) const { |
| 136 | |
| 137 | if (MI.getOpcode() == PIC16::copy_fsr) { |
| 138 | DestReg = MI.getOperand(0).getReg(); |
| 139 | SrcReg = MI.getOperand(1).getReg(); |
| 140 | return true; |
| 141 | } |
| 142 | return false; |
Sanjiv Gupta | 0e68771 | 2008-05-13 09:02:57 +0000 | [diff] [blame] | 143 | } |
| 144 | |