blob: 093f99f2871128cf3f93ea336f238d3c619d3200 [file] [log] [blame]
Scott Michel266bc8f2007-12-04 22:23:35 +00001//===-- SPUTargetMachine.cpp - Define TargetMachine for Cell SPU ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Scott Michel266bc8f2007-12-04 22:23:35 +00007//
8//===----------------------------------------------------------------------===//
9//
10// Top-level implementation for the Cell SPU target.
11//
12//===----------------------------------------------------------------------===//
13
14#include "SPU.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000015#include "SPUFrameLowering.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000016#include "SPUInstrBuilder.h"
17#include "SPUInstrInfo.h"
18#include "llvm/Function.h"
19#include "llvm/CodeGen/MachineFrameInfo.h"
20#include "llvm/CodeGen/MachineFunction.h"
21#include "llvm/CodeGen/MachineInstrBuilder.h"
22#include "llvm/CodeGen/MachineModuleInfo.h"
23#include "llvm/CodeGen/MachineRegisterInfo.h"
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +000024#include "llvm/CodeGen/RegisterScavenging.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000025#include "llvm/Target/TargetData.h"
26#include "llvm/Target/TargetOptions.h"
27#include "llvm/Support/CommandLine.h"
Scott Michel266bc8f2007-12-04 22:23:35 +000028using namespace llvm;
29
30//===----------------------------------------------------------------------===//
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000031// SPUFrameLowering:
Scott Michel266bc8f2007-12-04 22:23:35 +000032//===----------------------------------------------------------------------===//
33
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000034SPUFrameLowering::SPUFrameLowering(const SPUSubtarget &sti)
35 : TargetFrameLowering(TargetFrameLowering::StackGrowsDown, 16, 0),
Anton Korobeynikov33464912010-11-15 00:06:54 +000036 Subtarget(sti) {
Scott Michel266bc8f2007-12-04 22:23:35 +000037 LR[0].first = SPU::R0;
38 LR[0].second = 16;
39}
Anton Korobeynikov33464912010-11-15 00:06:54 +000040
41
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000042//--------------------------------------------------------------------------
43// hasFP - Return true if the specified function actually has a dedicated frame
44// pointer register. This is true if the function needs a frame pointer and has
45// a non-zero stack size.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000046bool SPUFrameLowering::hasFP(const MachineFunction &MF) const {
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000047 const MachineFrameInfo *MFI = MF.getFrameInfo();
48
49 return MFI->getStackSize() &&
50 (DisableFramePointerElim(MF) || MFI->hasVarSizedObjects());
51}
52
53
Anton Korobeynikov33464912010-11-15 00:06:54 +000054/// determineFrameLayout - Determine the size of the frame and maximum call
55/// frame size.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000056void SPUFrameLowering::determineFrameLayout(MachineFunction &MF) const {
Anton Korobeynikov33464912010-11-15 00:06:54 +000057 MachineFrameInfo *MFI = MF.getFrameInfo();
58
59 // Get the number of bytes to allocate from the FrameInfo
60 unsigned FrameSize = MFI->getStackSize();
61
62 // Get the alignments provided by the target, and the maximum alignment
63 // (if any) of the fixed frame objects.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000064 unsigned TargetAlign = getStackAlignment();
Anton Korobeynikov33464912010-11-15 00:06:54 +000065 unsigned Align = std::max(TargetAlign, MFI->getMaxAlignment());
66 assert(isPowerOf2_32(Align) && "Alignment is not power of 2");
67 unsigned AlignMask = Align - 1;
68
69 // Get the maximum call frame size of all the calls.
70 unsigned maxCallFrameSize = MFI->getMaxCallFrameSize();
71
72 // If we have dynamic alloca then maxCallFrameSize needs to be aligned so
73 // that allocations will be aligned.
74 if (MFI->hasVarSizedObjects())
75 maxCallFrameSize = (maxCallFrameSize + AlignMask) & ~AlignMask;
76
77 // Update maximum call frame size.
78 MFI->setMaxCallFrameSize(maxCallFrameSize);
79
80 // Include call frame size in total.
81 FrameSize += maxCallFrameSize;
82
83 // Make sure the frame is aligned.
84 FrameSize = (FrameSize + AlignMask) & ~AlignMask;
85
86 // Update frame info.
87 MFI->setStackSize(FrameSize);
88}
89
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000090void SPUFrameLowering::emitPrologue(MachineFunction &MF) const {
Anton Korobeynikov33464912010-11-15 00:06:54 +000091 MachineBasicBlock &MBB = MF.front(); // Prolog goes in entry BB
92 MachineBasicBlock::iterator MBBI = MBB.begin();
93 MachineFrameInfo *MFI = MF.getFrameInfo();
94 const SPUInstrInfo &TII =
95 *static_cast<const SPUInstrInfo*>(MF.getTarget().getInstrInfo());
96 MachineModuleInfo &MMI = MF.getMMI();
97 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
98
99 // Prepare for debug frame info.
100 bool hasDebugInfo = MMI.hasDebugInfo();
101 MCSymbol *FrameLabel = 0;
102
103 // Move MBBI back to the beginning of the function.
104 MBBI = MBB.begin();
105
106 // Work out frame sizes.
107 determineFrameLayout(MF);
108 int FrameSize = MFI->getStackSize();
109
110 assert((FrameSize & 0xf) == 0
111 && "SPURegisterInfo::emitPrologue: FrameSize not aligned");
112
113 // the "empty" frame size is 16 - just the register scavenger spill slot
114 if (FrameSize > 16 || MFI->adjustsStack()) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000115 FrameSize = -(FrameSize + SPUFrameLowering::minStackSize());
Anton Korobeynikov33464912010-11-15 00:06:54 +0000116 if (hasDebugInfo) {
117 // Mark effective beginning of when frame pointer becomes valid.
118 FrameLabel = MMI.getContext().CreateTempSymbol();
119 BuildMI(MBB, MBBI, dl, TII.get(SPU::PROLOG_LABEL)).addSym(FrameLabel);
120 }
121
122 // Adjust stack pointer, spilling $lr -> 16($sp) and $sp -> -FrameSize($sp)
123 // for the ABI
124 BuildMI(MBB, MBBI, dl, TII.get(SPU::STQDr32), SPU::R0).addImm(16)
125 .addReg(SPU::R1);
126 if (isInt<10>(FrameSize)) {
127 // Spill $sp to adjusted $sp
128 BuildMI(MBB, MBBI, dl, TII.get(SPU::STQDr32), SPU::R1).addImm(FrameSize)
129 .addReg(SPU::R1);
130 // Adjust $sp by required amout
131 BuildMI(MBB, MBBI, dl, TII.get(SPU::AIr32), SPU::R1).addReg(SPU::R1)
132 .addImm(FrameSize);
133 } else if (isInt<16>(FrameSize)) {
134 // Frame size can be loaded into ILr32n, so temporarily spill $r2 and use
135 // $r2 to adjust $sp:
136 BuildMI(MBB, MBBI, dl, TII.get(SPU::STQDr128), SPU::R2)
137 .addImm(-16)
138 .addReg(SPU::R1);
139 BuildMI(MBB, MBBI, dl, TII.get(SPU::ILr32), SPU::R2)
140 .addImm(FrameSize);
141 BuildMI(MBB, MBBI, dl, TII.get(SPU::STQXr32), SPU::R1)
142 .addReg(SPU::R2)
143 .addReg(SPU::R1);
144 BuildMI(MBB, MBBI, dl, TII.get(SPU::Ar32), SPU::R1)
145 .addReg(SPU::R1)
146 .addReg(SPU::R2);
147 BuildMI(MBB, MBBI, dl, TII.get(SPU::SFIr32), SPU::R2)
148 .addReg(SPU::R2)
149 .addImm(16);
150 BuildMI(MBB, MBBI, dl, TII.get(SPU::LQXr128), SPU::R2)
151 .addReg(SPU::R2)
152 .addReg(SPU::R1);
153 } else {
154 report_fatal_error("Unhandled frame size: " + Twine(FrameSize));
155 }
156
157 if (hasDebugInfo) {
158 std::vector<MachineMove> &Moves = MMI.getFrameMoves();
159
160 // Show update of SP.
161 MachineLocation SPDst(MachineLocation::VirtualFP);
162 MachineLocation SPSrc(MachineLocation::VirtualFP, -FrameSize);
163 Moves.push_back(MachineMove(FrameLabel, SPDst, SPSrc));
164
165 // Add callee saved registers to move list.
166 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
167 for (unsigned I = 0, E = CSI.size(); I != E; ++I) {
168 int Offset = MFI->getObjectOffset(CSI[I].getFrameIdx());
169 unsigned Reg = CSI[I].getReg();
170 if (Reg == SPU::R0) continue;
171 MachineLocation CSDst(MachineLocation::VirtualFP, Offset);
172 MachineLocation CSSrc(Reg);
173 Moves.push_back(MachineMove(FrameLabel, CSDst, CSSrc));
174 }
175
176 // Mark effective beginning of when frame pointer is ready.
177 MCSymbol *ReadyLabel = MMI.getContext().CreateTempSymbol();
178 BuildMI(MBB, MBBI, dl, TII.get(SPU::PROLOG_LABEL)).addSym(ReadyLabel);
179
180 MachineLocation FPDst(SPU::R1);
181 MachineLocation FPSrc(MachineLocation::VirtualFP);
182 Moves.push_back(MachineMove(ReadyLabel, FPDst, FPSrc));
183 }
Anton Korobeynikov33464912010-11-15 00:06:54 +0000184 }
185}
186
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000187void SPUFrameLowering::emitEpilogue(MachineFunction &MF,
Anton Korobeynikov33464912010-11-15 00:06:54 +0000188 MachineBasicBlock &MBB) const {
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +0000189 MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000190 const SPUInstrInfo &TII =
191 *static_cast<const SPUInstrInfo*>(MF.getTarget().getInstrInfo());
192 const MachineFrameInfo *MFI = MF.getFrameInfo();
193 int FrameSize = MFI->getStackSize();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000194 int LinkSlotOffset = SPUFrameLowering::stackSlotSize();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000195 DebugLoc dl = MBBI->getDebugLoc();
196
197 assert(MBBI->getOpcode() == SPU::RET &&
198 "Can only insert epilog into returning blocks");
199 assert((FrameSize & 0xf) == 0 && "FrameSize not aligned");
200
201 // the "empty" frame size is 16 - just the register scavenger spill slot
202 if (FrameSize > 16 || MFI->adjustsStack()) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000203 FrameSize = FrameSize + SPUFrameLowering::minStackSize();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000204 if (isInt<10>(FrameSize + LinkSlotOffset)) {
205 // Reload $lr, adjust $sp by required amount
206 // Note: We do this to slightly improve dual issue -- not by much, but it
207 // is an opportunity for dual issue.
208 BuildMI(MBB, MBBI, dl, TII.get(SPU::LQDr128), SPU::R0)
209 .addImm(FrameSize + LinkSlotOffset)
210 .addReg(SPU::R1);
211 BuildMI(MBB, MBBI, dl, TII.get(SPU::AIr32), SPU::R1)
212 .addReg(SPU::R1)
213 .addImm(FrameSize);
214 } else if (FrameSize <= (1 << 16) - 1 && FrameSize >= -(1 << 16)) {
215 // Frame size can be loaded into ILr32n, so temporarily spill $r2 and use
216 // $r2 to adjust $sp:
217 BuildMI(MBB, MBBI, dl, TII.get(SPU::STQDr128), SPU::R2)
218 .addImm(16)
219 .addReg(SPU::R1);
220 BuildMI(MBB, MBBI, dl, TII.get(SPU::ILr32), SPU::R2)
221 .addImm(FrameSize);
222 BuildMI(MBB, MBBI, dl, TII.get(SPU::Ar32), SPU::R1)
223 .addReg(SPU::R1)
224 .addReg(SPU::R2);
225 BuildMI(MBB, MBBI, dl, TII.get(SPU::LQDr128), SPU::R0)
226 .addImm(16)
227 .addReg(SPU::R1);
228 BuildMI(MBB, MBBI, dl, TII.get(SPU::SFIr32), SPU::R2).
229 addReg(SPU::R2)
230 .addImm(16);
231 BuildMI(MBB, MBBI, dl, TII.get(SPU::LQXr128), SPU::R2)
232 .addReg(SPU::R2)
233 .addReg(SPU::R1);
234 } else {
235 report_fatal_error("Unhandled frame size: " + Twine(FrameSize));
236 }
237 }
238}
Anton Korobeynikovd9e33852010-11-18 23:25:52 +0000239
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000240void SPUFrameLowering::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +0000241 RegScavenger *RS) const{
242 // Mark LR and SP unused, since the prolog spills them to stack and
243 // we don't want anyone else to spill them for us.
244 //
245 // Also, unless R2 is really used someday, don't spill it automatically.
246 MF.getRegInfo().setPhysRegUnused(SPU::R0);
247 MF.getRegInfo().setPhysRegUnused(SPU::R1);
248 MF.getRegInfo().setPhysRegUnused(SPU::R2);
249
250 MachineFrameInfo *MFI = MF.getFrameInfo();
251 const TargetRegisterClass *RC = &SPU::R32CRegClass;
252 RS->setScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
253 RC->getAlignment(),
254 false));
255}