Add support for many of the MRegisterInfo callbacks.
[oota-llvm.git] / lib / Target / Sparc / SparcRegisterInfo.cpp
1 //===- SparcV8RegisterInfo.cpp - SparcV8 Register Information ---*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the SparcV8 implementation of the MRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "SparcV8.h"
15 #include "SparcV8RegisterInfo.h"
16 #include "llvm/CodeGen/MachineInstrBuilder.h"
17 #include "llvm/CodeGen/MachineFunction.h"
18 #include "llvm/CodeGen/MachineFrameInfo.h"
19 #include "llvm/Type.h"
20 #include "Support/STLExtras.h"
21 using namespace llvm;
22
23 SparcV8RegisterInfo::SparcV8RegisterInfo()
24   : SparcV8GenRegisterInfo(V8::ADJCALLSTACKDOWN,
25                            V8::ADJCALLSTACKUP) {}
26
27 int SparcV8RegisterInfo::storeRegToStackSlot(
28   MachineBasicBlock &MBB,
29   MachineBasicBlock::iterator MBBI,
30   unsigned SrcReg, int FrameIdx,
31   const TargetRegisterClass *RC) const
32 {
33   assert (RC == SparcV8::IntRegsRegisterClass
34           && "Can only store 32-bit values to stack slots");
35   MachineInstr *I =
36     BuildMI (V8::STrm, 2).addFrameIndex (FrameIdx).addReg (SrcReg);
37   MBB.insert(MBBI, I);
38   return 1;
39 }
40
41 int SparcV8RegisterInfo::loadRegFromStackSlot(
42   MachineBasicBlock &MBB,
43   MachineBasicBlock::iterator MBBI,
44   unsigned DestReg, int FrameIdx,
45   const TargetRegisterClass *RC) const
46 {
47   assert (RC == SparcV8::IntRegsRegisterClass
48           && "Can only load 32-bit registers from stack slots");
49   MachineInstr *I =
50     BuildMI (V8::LDmr, 2).addReg (DestReg).addFrameIndex (FrameIdx);
51   MBB.insert(MBBI, I);
52   return 1;
53 }
54
55 int SparcV8RegisterInfo::copyRegToReg(MachineBasicBlock &MBB,
56                                       MachineBasicBlock::iterator MBBI,
57                                       unsigned DestReg, unsigned SrcReg,
58                                       const TargetRegisterClass *RC) const {
59   assert (RC == SparcV8::IntRegsRegisterClass
60           && "Can only copy 32-bit registers");
61   MBB.insert (MBBI,
62    BuildMI (V8::ORrr, 3, DestReg).addReg (V8::G0).addReg (SrcReg));
63   return -1;
64 }
65
66 void SparcV8RegisterInfo::
67 eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
68                               MachineBasicBlock::iterator I) const {
69   std::cerr
70     << "Sorry, I don't know how to eliminate call frame pseudo instrs yet, in\n"
71     << __FUNCTION__ << " at " << __FILE__ << ":" << __LINE__ << "\n";
72   abort();
73 }
74
75 void
76 SparcV8RegisterInfo::eliminateFrameIndex(MachineFunction &MF,
77                                          MachineBasicBlock::iterator II) const {
78   unsigned i = 0;
79   MachineInstr &MI = *II;
80   while (!MI.getOperand(i).isFrameIndex()) {
81     ++i;
82     assert(i < MI.getNumOperands() && "Instr doesn't have FrameIndex operand!");
83   }
84
85   int FrameIndex = MI.getOperand(i).getFrameIndex();
86
87   std::cerr
88     << "Sorry, I don't know how to eliminate frame indices yet\n"
89     << "Frame index was " << FrameIndex << ", in\n"
90     << __FUNCTION__ << "() at " << __FILE__ << ":" << __LINE__ << "\n";
91   abort();
92 }
93
94 void SparcV8RegisterInfo::
95 processFunctionBeforeFrameFinalized(MachineFunction &MF) const {}
96
97 void SparcV8RegisterInfo::emitPrologue(MachineFunction &MF) const {
98   MachineBasicBlock &MBB = MF.front();
99   MachineFrameInfo *MFI = MF.getFrameInfo();
100
101   // Get the number of bytes to allocate from the FrameInfo
102   int NumBytes = (int) MFI->getStackSize();
103
104   // Emit the correct save instruction based on the number of bytes in the frame.
105   // Minimum stack frame size according to V8 ABI is:
106   //   16 words for register window spill
107   //    1 word for address of returned aggregate-value
108   // +  6 words for passing parameters on the stack
109   // ----------
110   //   23 words * 4 bytes per word = 92 bytes
111   NumBytes += 92;
112   NumBytes = (NumBytes + 3) & ~3;  // Round up to next word boundary
113   BuildMI(MBB, MBB.begin(), V8::SAVEri, 2,
114           V8::SP).addImm(-NumBytes).addReg(V8::SP);
115 }
116
117 void SparcV8RegisterInfo::emitEpilogue(MachineFunction &MF,
118                                        MachineBasicBlock &MBB) const {
119   MachineBasicBlock::iterator MBBI = prior(MBB.end());
120   assert(MBBI->getOpcode() == V8::RETL &&
121          "Can only put epilog before 'retl' instruction!");
122   BuildMI(MBB, MBBI, V8::RESTORErr, 2, V8::G0).addReg(V8::G0).addReg(V8::G0);
123 }
124
125 #include "SparcV8GenRegisterInfo.inc"
126
127 const TargetRegisterClass*
128 SparcV8RegisterInfo::getRegClassForType(const Type* Ty) const {
129   switch (Ty->getPrimitiveID()) {
130   case Type::FloatTyID:  return &FPRegsInstance;
131   case Type::DoubleTyID: return &DFPRegsInstance;
132   case Type::LongTyID:
133   case Type::ULongTyID: assert(0 && "Long values can't fit in registers!");
134   default:              assert(0 && "Invalid type to getClass!");
135   case Type::BoolTyID:
136   case Type::SByteTyID:
137   case Type::UByteTyID:
138   case Type::ShortTyID:
139   case Type::UShortTyID:
140   case Type::IntTyID:
141   case Type::UIntTyID:
142   case Type::PointerTyID: return &IntRegsInstance;
143   }
144 }
145