Fix build.
[oota-llvm.git] / lib / Target / Alpha / AlphaRegisterInfo.cpp
1 //===- AlphaRegisterInfo.cpp - Alpha Register Information -------*- C++ -*-===//
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 Alpha implementation of the TargetRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "reginfo"
15 #include "Alpha.h"
16 #include "AlphaRegisterInfo.h"
17 #include "llvm/Constants.h"
18 #include "llvm/Type.h"
19 #include "llvm/Function.h"
20 #include "llvm/CodeGen/ValueTypes.h"
21 #include "llvm/CodeGen/MachineInstrBuilder.h"
22 #include "llvm/CodeGen/MachineFunction.h"
23 #include "llvm/CodeGen/MachineFrameInfo.h"
24 #include "llvm/CodeGen/MachineLocation.h"
25 #include "llvm/Target/TargetFrameInfo.h"
26 #include "llvm/Target/TargetMachine.h"
27 #include "llvm/Target/TargetOptions.h"
28 #include "llvm/Target/TargetInstrInfo.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Support/Debug.h"
31 #include "llvm/Support/ErrorHandling.h"
32 #include "llvm/Support/raw_ostream.h"
33 #include "llvm/ADT/BitVector.h"
34 #include "llvm/ADT/STLExtras.h"
35 #include <cstdlib>
36 using namespace llvm;
37
38 //These describe LDAx
39 static const int IMM_LOW  = -32768;
40 static const int IMM_HIGH = 32767;
41 static const int IMM_MULT = 65536;
42
43 static long getUpper16(long l)
44 {
45   long y = l / IMM_MULT;
46   if (l % IMM_MULT > IMM_HIGH)
47     ++y;
48   return y;
49 }
50
51 static long getLower16(long l)
52 {
53   long h = getUpper16(l);
54   return l - h * IMM_MULT;
55 }
56
57 AlphaRegisterInfo::AlphaRegisterInfo(const TargetInstrInfo &tii)
58   : AlphaGenRegisterInfo(Alpha::ADJUSTSTACKDOWN, Alpha::ADJUSTSTACKUP),
59     TII(tii), curgpdist(0)
60 {
61 }
62
63 const unsigned* AlphaRegisterInfo::getCalleeSavedRegs(const MachineFunction *MF)
64                                                                          const {
65   static const unsigned CalleeSavedRegs[] = {
66     Alpha::R9, Alpha::R10,
67     Alpha::R11, Alpha::R12,
68     Alpha::R13, Alpha::R14,
69     Alpha::F2, Alpha::F3,
70     Alpha::F4, Alpha::F5,
71     Alpha::F6, Alpha::F7,
72     Alpha::F8, Alpha::F9,  0
73   };
74   return CalleeSavedRegs;
75 }
76
77 const TargetRegisterClass* const*
78 AlphaRegisterInfo::getCalleeSavedRegClasses(const MachineFunction *MF) const {
79   static const TargetRegisterClass * const CalleeSavedRegClasses[] = {
80     &Alpha::GPRCRegClass, &Alpha::GPRCRegClass,
81     &Alpha::GPRCRegClass, &Alpha::GPRCRegClass,
82     &Alpha::GPRCRegClass, &Alpha::GPRCRegClass,
83     &Alpha::F8RCRegClass, &Alpha::F8RCRegClass,
84     &Alpha::F8RCRegClass, &Alpha::F8RCRegClass,
85     &Alpha::F8RCRegClass, &Alpha::F8RCRegClass,
86     &Alpha::F8RCRegClass, &Alpha::F8RCRegClass,  0
87   };
88   return CalleeSavedRegClasses;
89 }
90
91 BitVector AlphaRegisterInfo::getReservedRegs(const MachineFunction &MF) const {
92   BitVector Reserved(getNumRegs());
93   Reserved.set(Alpha::R15);
94   Reserved.set(Alpha::R30);
95   Reserved.set(Alpha::R31);
96   return Reserved;
97 }
98
99 //===----------------------------------------------------------------------===//
100 // Stack Frame Processing methods
101 //===----------------------------------------------------------------------===//
102
103 // hasFP - Return true if the specified function should have a dedicated frame
104 // pointer register.  This is true if the function has variable sized allocas or
105 // if frame pointer elimination is disabled.
106 //
107 bool AlphaRegisterInfo::hasFP(const MachineFunction &MF) const {
108   const MachineFrameInfo *MFI = MF.getFrameInfo();
109   return MFI->hasVarSizedObjects();
110 }
111
112 void AlphaRegisterInfo::
113 eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
114                               MachineBasicBlock::iterator I) const {
115   if (hasFP(MF)) {
116     // If we have a frame pointer, turn the adjcallstackup instruction into a
117     // 'sub ESP, <amt>' and the adjcallstackdown instruction into 'add ESP,
118     // <amt>'
119     MachineInstr *Old = I;
120     uint64_t Amount = Old->getOperand(0).getImm();
121     if (Amount != 0) {
122       // We need to keep the stack aligned properly.  To do this, we round the
123       // amount of space needed for the outgoing arguments up to the next
124       // alignment boundary.
125       unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
126       Amount = (Amount+Align-1)/Align*Align;
127
128       MachineInstr *New;
129       if (Old->getOpcode() == Alpha::ADJUSTSTACKDOWN) {
130         New=BuildMI(MF, Old->getDebugLoc(), TII.get(Alpha::LDA), Alpha::R30)
131           .addImm(-Amount).addReg(Alpha::R30);
132       } else {
133          assert(Old->getOpcode() == Alpha::ADJUSTSTACKUP);
134          New=BuildMI(MF, Old->getDebugLoc(), TII.get(Alpha::LDA), Alpha::R30)
135           .addImm(Amount).addReg(Alpha::R30);
136       }
137
138       // Replace the pseudo instruction with a new instruction...
139       MBB.insert(I, New);
140     }
141   }
142
143   MBB.erase(I);
144 }
145
146 //Alpha has a slightly funny stack:
147 //Args
148 //<- incoming SP
149 //fixed locals (and spills, callee saved, etc)
150 //<- FP
151 //variable locals
152 //<- SP
153
154 unsigned
155 AlphaRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
156                                        int SPAdj, FrameIndexValue *Value,
157                                        RegScavenger *RS) const {
158   assert(SPAdj == 0 && "Unexpected");
159
160   unsigned i = 0;
161   MachineInstr &MI = *II;
162   MachineBasicBlock &MBB = *MI.getParent();
163   MachineFunction &MF = *MBB.getParent();
164   bool FP = hasFP(MF);
165
166   while (!MI.getOperand(i).isFI()) {
167     ++i;
168     assert(i < MI.getNumOperands() && "Instr doesn't have FrameIndex operand!");
169   }
170
171   int FrameIndex = MI.getOperand(i).getIndex();
172
173   // Add the base register of R30 (SP) or R15 (FP).
174   MI.getOperand(i + 1).ChangeToRegister(FP ? Alpha::R15 : Alpha::R30, false);
175
176   // Now add the frame object offset to the offset from the virtual frame index.
177   int Offset = MF.getFrameInfo()->getObjectOffset(FrameIndex);
178
179   DEBUG(errs() << "FI: " << FrameIndex << " Offset: " << Offset << "\n");
180
181   Offset += MF.getFrameInfo()->getStackSize();
182
183   DEBUG(errs() << "Corrected Offset " << Offset
184        << " for stack size: " << MF.getFrameInfo()->getStackSize() << "\n");
185
186   if (Offset > IMM_HIGH || Offset < IMM_LOW) {
187     DEBUG(errs() << "Unconditionally using R28 for evil purposes Offset: "
188           << Offset << "\n");
189     //so in this case, we need to use a temporary register, and move the
190     //original inst off the SP/FP
191     //fix up the old:
192     MI.getOperand(i + 1).ChangeToRegister(Alpha::R28, false);
193     MI.getOperand(i).ChangeToImmediate(getLower16(Offset));
194     //insert the new
195     MachineInstr* nMI=BuildMI(MF, MI.getDebugLoc(),
196                               TII.get(Alpha::LDAH), Alpha::R28)
197       .addImm(getUpper16(Offset)).addReg(FP ? Alpha::R15 : Alpha::R30);
198     MBB.insert(II, nMI);
199   } else {
200     MI.getOperand(i).ChangeToImmediate(Offset);
201   }
202   return 0;
203 }
204
205
206 void AlphaRegisterInfo::emitPrologue(MachineFunction &MF) const {
207   MachineBasicBlock &MBB = MF.front();   // Prolog goes in entry BB
208   MachineBasicBlock::iterator MBBI = MBB.begin();
209   MachineFrameInfo *MFI = MF.getFrameInfo();
210   DebugLoc dl = (MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc());
211   bool FP = hasFP(MF);
212
213   //handle GOP offset
214   BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDAHg), Alpha::R29)
215     .addGlobalAddress(const_cast<Function*>(MF.getFunction()))
216     .addReg(Alpha::R27).addImm(++curgpdist);
217   BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDAg), Alpha::R29)
218     .addGlobalAddress(const_cast<Function*>(MF.getFunction()))
219     .addReg(Alpha::R29).addImm(curgpdist);
220
221   //evil const_cast until MO stuff setup to handle const
222   BuildMI(MBB, MBBI, dl, TII.get(Alpha::ALTENT))
223     .addGlobalAddress(const_cast<Function*>(MF.getFunction()));
224
225   // Get the number of bytes to allocate from the FrameInfo
226   long NumBytes = MFI->getStackSize();
227
228   if (FP)
229     NumBytes += 8; //reserve space for the old FP
230
231   // Do we need to allocate space on the stack?
232   if (NumBytes == 0) return;
233
234   unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
235   NumBytes = (NumBytes+Align-1)/Align*Align;
236
237   // Update frame info to pretend that this is part of the stack...
238   MFI->setStackSize(NumBytes);
239
240   // adjust stack pointer: r30 -= numbytes
241   NumBytes = -NumBytes;
242   if (NumBytes >= IMM_LOW) {
243     BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDA), Alpha::R30).addImm(NumBytes)
244       .addReg(Alpha::R30);
245   } else if (getUpper16(NumBytes) >= IMM_LOW) {
246     BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDAH), Alpha::R30)
247       .addImm(getUpper16(NumBytes)).addReg(Alpha::R30);
248     BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDA), Alpha::R30)
249       .addImm(getLower16(NumBytes)).addReg(Alpha::R30);
250   } else {
251     report_fatal_error("Too big a stack frame at " + Twine(NumBytes));
252   }
253
254   //now if we need to, save the old FP and set the new
255   if (FP)
256   {
257     BuildMI(MBB, MBBI, dl, TII.get(Alpha::STQ))
258       .addReg(Alpha::R15).addImm(0).addReg(Alpha::R30);
259     //this must be the last instr in the prolog
260     BuildMI(MBB, MBBI, dl, TII.get(Alpha::BISr), Alpha::R15)
261       .addReg(Alpha::R30).addReg(Alpha::R30);
262   }
263
264 }
265
266 void AlphaRegisterInfo::emitEpilogue(MachineFunction &MF,
267                                      MachineBasicBlock &MBB) const {
268   const MachineFrameInfo *MFI = MF.getFrameInfo();
269   MachineBasicBlock::iterator MBBI = prior(MBB.end());
270   assert((MBBI->getOpcode() == Alpha::RETDAG ||
271           MBBI->getOpcode() == Alpha::RETDAGp)
272          && "Can only insert epilog into returning blocks");
273   DebugLoc dl = MBBI->getDebugLoc();
274
275   bool FP = hasFP(MF);
276
277   // Get the number of bytes allocated from the FrameInfo...
278   long NumBytes = MFI->getStackSize();
279
280   //now if we need to, restore the old FP
281   if (FP) {
282     //copy the FP into the SP (discards allocas)
283     BuildMI(MBB, MBBI, dl, TII.get(Alpha::BISr), Alpha::R30).addReg(Alpha::R15)
284       .addReg(Alpha::R15);
285     //restore the FP
286     BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDQ), Alpha::R15)
287       .addImm(0).addReg(Alpha::R15);
288   }
289
290   if (NumBytes != 0) {
291     if (NumBytes <= IMM_HIGH) {
292       BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDA), Alpha::R30).addImm(NumBytes)
293         .addReg(Alpha::R30);
294     } else if (getUpper16(NumBytes) <= IMM_HIGH) {
295       BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDAH), Alpha::R30)
296         .addImm(getUpper16(NumBytes)).addReg(Alpha::R30);
297       BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDA), Alpha::R30)
298         .addImm(getLower16(NumBytes)).addReg(Alpha::R30);
299     } else {
300       report_fatal_error("Too big a stack frame at " + Twine(NumBytes));
301     }
302   }
303 }
304
305 unsigned AlphaRegisterInfo::getRARegister() const {
306   return Alpha::R26;
307 }
308
309 unsigned AlphaRegisterInfo::getFrameRegister(const MachineFunction &MF) const {
310   return hasFP(MF) ? Alpha::R15 : Alpha::R30;
311 }
312
313 unsigned AlphaRegisterInfo::getEHExceptionRegister() const {
314   llvm_unreachable("What is the exception register");
315   return 0;
316 }
317
318 unsigned AlphaRegisterInfo::getEHHandlerRegister() const {
319   llvm_unreachable("What is the exception handler register");
320   return 0;
321 }
322
323 int AlphaRegisterInfo::getDwarfRegNum(unsigned RegNum, bool isEH) const {
324   llvm_unreachable("What is the dwarf register number");
325   return -1;
326 }
327
328 #include "AlphaGenRegisterInfo.inc"
329
330 std::string AlphaRegisterInfo::getPrettyName(unsigned reg)
331 {
332   std::string s(RegisterDescriptors[reg].Name);
333   return s;
334 }