1//===-- MSP430RegisterInfo.cpp - MSP430 Register 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 MSP430 implementation of the TargetRegisterInfo class. 11// 12//===----------------------------------------------------------------------===// 13 14#include "MSP430RegisterInfo.h" 15#include "MSP430.h" 16#include "MSP430MachineFunctionInfo.h" 17#include "MSP430TargetMachine.h" 18#include "llvm/ADT/BitVector.h" 19#include "llvm/CodeGen/MachineFrameInfo.h" 20#include "llvm/CodeGen/MachineFunction.h" 21#include "llvm/CodeGen/MachineInstrBuilder.h" 22#include "llvm/IR/Function.h" 23#include "llvm/Support/ErrorHandling.h" 24#include "llvm/Target/TargetMachine.h" 25#include "llvm/Target/TargetOptions.h" 26 27using namespace llvm; 28 29#define DEBUG_TYPE "msp430-reg-info" 30 31#define GET_REGINFO_TARGET_DESC 32#include "MSP430GenRegisterInfo.inc" 33 34// FIXME: Provide proper call frame setup / destroy opcodes. 35MSP430RegisterInfo::MSP430RegisterInfo() 36 : MSP430GenRegisterInfo(MSP430::PC) {} 37 38const MCPhysReg* 39MSP430RegisterInfo::getCalleeSavedRegs(const MachineFunction *MF) const { 40 const MSP430FrameLowering *TFI = getFrameLowering(*MF); 41 const Function* F = MF->getFunction(); 42 static const MCPhysReg CalleeSavedRegs[] = { 43 MSP430::FP, MSP430::R5, MSP430::R6, MSP430::R7, 44 MSP430::R8, MSP430::R9, MSP430::R10, MSP430::R11, 45 0 46 }; 47 static const MCPhysReg CalleeSavedRegsFP[] = { 48 MSP430::R5, MSP430::R6, MSP430::R7, 49 MSP430::R8, MSP430::R9, MSP430::R10, MSP430::R11, 50 0 51 }; 52 static const MCPhysReg CalleeSavedRegsIntr[] = { 53 MSP430::FP, MSP430::R5, MSP430::R6, MSP430::R7, 54 MSP430::R8, MSP430::R9, MSP430::R10, MSP430::R11, 55 MSP430::R12, MSP430::R13, MSP430::R14, MSP430::R15, 56 0 57 }; 58 static const MCPhysReg CalleeSavedRegsIntrFP[] = { 59 MSP430::R5, MSP430::R6, MSP430::R7, 60 MSP430::R8, MSP430::R9, MSP430::R10, MSP430::R11, 61 MSP430::R12, MSP430::R13, MSP430::R14, MSP430::R15, 62 0 63 }; 64 65 if (TFI->hasFP(*MF)) 66 return (F->getCallingConv() == CallingConv::MSP430_INTR ? 67 CalleeSavedRegsIntrFP : CalleeSavedRegsFP); 68 else 69 return (F->getCallingConv() == CallingConv::MSP430_INTR ? 70 CalleeSavedRegsIntr : CalleeSavedRegs); 71 72} 73 74BitVector MSP430RegisterInfo::getReservedRegs(const MachineFunction &MF) const { 75 BitVector Reserved(getNumRegs()); 76 const MSP430FrameLowering *TFI = getFrameLowering(MF); 77 78 // Mark 4 special registers with subregisters as reserved. 79 Reserved.set(MSP430::PCB); 80 Reserved.set(MSP430::SPB); 81 Reserved.set(MSP430::SRB); 82 Reserved.set(MSP430::CGB); 83 Reserved.set(MSP430::PC); 84 Reserved.set(MSP430::SP); 85 Reserved.set(MSP430::SR); 86 Reserved.set(MSP430::CG); 87 88 // Mark frame pointer as reserved if needed. 89 if (TFI->hasFP(MF)) { 90 Reserved.set(MSP430::FPB); 91 Reserved.set(MSP430::FP); 92 } 93 94 return Reserved; 95} 96 97const TargetRegisterClass * 98MSP430RegisterInfo::getPointerRegClass(const MachineFunction &MF, unsigned Kind) 99 const { 100 return &MSP430::GR16RegClass; 101} 102 103void 104MSP430RegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II, 105 int SPAdj, unsigned FIOperandNum, 106 RegScavenger *RS) const { 107 assert(SPAdj == 0 && "Unexpected"); 108 109 MachineInstr &MI = *II; 110 MachineBasicBlock &MBB = *MI.getParent(); 111 MachineFunction &MF = *MBB.getParent(); 112 const MSP430FrameLowering *TFI = getFrameLowering(MF); 113 DebugLoc dl = MI.getDebugLoc(); 114 int FrameIndex = MI.getOperand(FIOperandNum).getIndex(); 115 116 unsigned BasePtr = (TFI->hasFP(MF) ? MSP430::FP : MSP430::SP); 117 int Offset = MF.getFrameInfo()->getObjectOffset(FrameIndex); 118 119 // Skip the saved PC 120 Offset += 2; 121 122 if (!TFI->hasFP(MF)) 123 Offset += MF.getFrameInfo()->getStackSize(); 124 else 125 Offset += 2; // Skip the saved FP 126 127 // Fold imm into offset 128 Offset += MI.getOperand(FIOperandNum + 1).getImm(); 129 130 if (MI.getOpcode() == MSP430::ADD16ri) { 131 // This is actually "load effective address" of the stack slot 132 // instruction. We have only two-address instructions, thus we need to 133 // expand it into mov + add 134 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo(); 135 136 MI.setDesc(TII.get(MSP430::MOV16rr)); 137 MI.getOperand(FIOperandNum).ChangeToRegister(BasePtr, false); 138 139 if (Offset == 0) 140 return; 141 142 // We need to materialize the offset via add instruction. 143 unsigned DstReg = MI.getOperand(0).getReg(); 144 if (Offset < 0) 145 BuildMI(MBB, std::next(II), dl, TII.get(MSP430::SUB16ri), DstReg) 146 .addReg(DstReg).addImm(-Offset); 147 else 148 BuildMI(MBB, std::next(II), dl, TII.get(MSP430::ADD16ri), DstReg) 149 .addReg(DstReg).addImm(Offset); 150 151 return; 152 } 153 154 MI.getOperand(FIOperandNum).ChangeToRegister(BasePtr, false); 155 MI.getOperand(FIOperandNum + 1).ChangeToImmediate(Offset); 156} 157 158unsigned MSP430RegisterInfo::getFrameRegister(const MachineFunction &MF) const { 159 const MSP430FrameLowering *TFI = getFrameLowering(MF); 160 return TFI->hasFP(MF) ? MSP430::FP : MSP430::SP; 161} 162