Improve systemz to model cmp and ucmp nodes as returning
[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() ?
211                  MBBI->getDebugLoc() : DebugLoc::getUnknownLoc());
212   bool FP = hasFP(MF);
213
214   //handle GOP offset
215   BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDAHg), Alpha::R29)
216     .addGlobalAddress(const_cast<Function*>(MF.getFunction()))
217     .addReg(Alpha::R27).addImm(++curgpdist);
218   BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDAg), Alpha::R29)
219     .addGlobalAddress(const_cast<Function*>(MF.getFunction()))
220     .addReg(Alpha::R29).addImm(curgpdist);
221
222   //evil const_cast until MO stuff setup to handle const
223   BuildMI(MBB, MBBI, dl, TII.get(Alpha::ALTENT))
224     .addGlobalAddress(const_cast<Function*>(MF.getFunction()));
225
226   // Get the number of bytes to allocate from the FrameInfo
227   long NumBytes = MFI->getStackSize();
228
229   if (FP)
230     NumBytes += 8; //reserve space for the old FP
231
232   // Do we need to allocate space on the stack?
233   if (NumBytes == 0) return;
234
235   unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
236   NumBytes = (NumBytes+Align-1)/Align*Align;
237
238   // Update frame info to pretend that this is part of the stack...
239   MFI->setStackSize(NumBytes);
240
241   // adjust stack pointer: r30 -= numbytes
242   NumBytes = -NumBytes;
243   if (NumBytes >= IMM_LOW) {
244     BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDA), Alpha::R30).addImm(NumBytes)
245       .addReg(Alpha::R30);
246   } else if (getUpper16(NumBytes) >= IMM_LOW) {
247     BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDAH), Alpha::R30)
248       .addImm(getUpper16(NumBytes)).addReg(Alpha::R30);
249     BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDA), Alpha::R30)
250       .addImm(getLower16(NumBytes)).addReg(Alpha::R30);
251   } else {
252     std::string msg;
253     raw_string_ostream Msg(msg); 
254     Msg << "Too big a stack frame at " << NumBytes;
255     llvm_report_error(Msg.str());
256   }
257
258   //now if we need to, save the old FP and set the new
259   if (FP)
260   {
261     BuildMI(MBB, MBBI, dl, TII.get(Alpha::STQ))
262       .addReg(Alpha::R15).addImm(0).addReg(Alpha::R30);
263     //this must be the last instr in the prolog
264     BuildMI(MBB, MBBI, dl, TII.get(Alpha::BISr), Alpha::R15)
265       .addReg(Alpha::R30).addReg(Alpha::R30);
266   }
267
268 }
269
270 void AlphaRegisterInfo::emitEpilogue(MachineFunction &MF,
271                                      MachineBasicBlock &MBB) const {
272   const MachineFrameInfo *MFI = MF.getFrameInfo();
273   MachineBasicBlock::iterator MBBI = prior(MBB.end());
274   assert((MBBI->getOpcode() == Alpha::RETDAG ||
275           MBBI->getOpcode() == Alpha::RETDAGp)
276          && "Can only insert epilog into returning blocks");
277   DebugLoc dl = MBBI->getDebugLoc();
278
279   bool FP = hasFP(MF);
280
281   // Get the number of bytes allocated from the FrameInfo...
282   long NumBytes = MFI->getStackSize();
283
284   //now if we need to, restore the old FP
285   if (FP) {
286     //copy the FP into the SP (discards allocas)
287     BuildMI(MBB, MBBI, dl, TII.get(Alpha::BISr), Alpha::R30).addReg(Alpha::R15)
288       .addReg(Alpha::R15);
289     //restore the FP
290     BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDQ), Alpha::R15)
291       .addImm(0).addReg(Alpha::R15);
292   }
293
294   if (NumBytes != 0) {
295     if (NumBytes <= IMM_HIGH) {
296       BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDA), Alpha::R30).addImm(NumBytes)
297         .addReg(Alpha::R30);
298     } else if (getUpper16(NumBytes) <= IMM_HIGH) {
299       BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDAH), Alpha::R30)
300         .addImm(getUpper16(NumBytes)).addReg(Alpha::R30);
301       BuildMI(MBB, MBBI, dl, TII.get(Alpha::LDA), Alpha::R30)
302         .addImm(getLower16(NumBytes)).addReg(Alpha::R30);
303     } else {
304       std::string msg;
305       raw_string_ostream Msg(msg); 
306       Msg << "Too big a stack frame at " << NumBytes;
307       llvm_report_error(Msg.str());
308     }
309   }
310 }
311
312 unsigned AlphaRegisterInfo::getRARegister() const {
313   return Alpha::R26;
314 }
315
316 unsigned AlphaRegisterInfo::getFrameRegister(const MachineFunction &MF) const {
317   return hasFP(MF) ? Alpha::R15 : Alpha::R30;
318 }
319
320 unsigned AlphaRegisterInfo::getEHExceptionRegister() const {
321   llvm_unreachable("What is the exception register");
322   return 0;
323 }
324
325 unsigned AlphaRegisterInfo::getEHHandlerRegister() const {
326   llvm_unreachable("What is the exception handler register");
327   return 0;
328 }
329
330 int AlphaRegisterInfo::getDwarfRegNum(unsigned RegNum, bool isEH) const {
331   llvm_unreachable("What is the dwarf register number");
332   return -1;
333 }
334
335 #include "AlphaGenRegisterInfo.inc"
336
337 std::string AlphaRegisterInfo::getPrettyName(unsigned reg)
338 {
339   std::string s(RegisterDescriptors[reg].Name);
340   return s;
341 }