blob: afa3c1f88f96074b001d2bd007815935afe0aa4b [file] [log] [blame]
Chris Lattner7c90f732006-02-05 05:50:24 +00001//===- SparcInstrInfo.cpp - Sparc Instruction Information -------*- C++ -*-===//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Brian Gaekee785e532004-02-25 19:28:19 +00003// 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.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Brian Gaekee785e532004-02-25 19:28:19 +00008//===----------------------------------------------------------------------===//
9//
Chris Lattner7c90f732006-02-05 05:50:24 +000010// This file contains the Sparc implementation of the TargetInstrInfo class.
Brian Gaekee785e532004-02-25 19:28:19 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner7c90f732006-02-05 05:50:24 +000014#include "SparcInstrInfo.h"
Owen Andersond10fd972007-12-31 06:32:00 +000015#include "SparcSubtarget.h"
Chris Lattner7c90f732006-02-05 05:50:24 +000016#include "Sparc.h"
Owen Anderson718cb662007-09-07 04:06:50 +000017#include "llvm/ADT/STLExtras.h"
Dan Gohmand68a0762009-01-05 17:59:02 +000018#include "llvm/ADT/SmallVector.h"
Brian Gaekee785e532004-02-25 19:28:19 +000019#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnerdb486a62009-09-15 17:46:24 +000020#include "llvm/CodeGen/MachineRegisterInfo.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000021#include "llvm/Support/ErrorHandling.h"
Chris Lattner7c90f732006-02-05 05:50:24 +000022#include "SparcGenInstrInfo.inc"
Chris Lattnerdb486a62009-09-15 17:46:24 +000023#include "SparcMachineFunctionInfo.h"
Chris Lattner1ddf4752004-02-29 05:59:33 +000024using namespace llvm;
Brian Gaekee785e532004-02-25 19:28:19 +000025
Chris Lattner7c90f732006-02-05 05:50:24 +000026SparcInstrInfo::SparcInstrInfo(SparcSubtarget &ST)
Chris Lattner64105522008-01-01 01:03:04 +000027 : TargetInstrInfoImpl(SparcInsts, array_lengthof(SparcInsts)),
Owen Andersond10fd972007-12-31 06:32:00 +000028 RI(ST, *this), Subtarget(ST) {
Brian Gaekee785e532004-02-25 19:28:19 +000029}
30
Chris Lattner5ccc7222006-02-03 06:44:54 +000031/// isLoadFromStackSlot - If the specified machine instruction is a direct
32/// load from a stack slot, return the virtual or physical register number of
33/// the destination along with the FrameIndex of the loaded stack slot. If
34/// not, return 0. This predicate must return 0 if the instruction has
35/// any side effects other than loading from the stack slot.
Dan Gohmancbad42c2008-11-18 19:49:32 +000036unsigned SparcInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
Chris Lattner7c90f732006-02-05 05:50:24 +000037 int &FrameIndex) const {
38 if (MI->getOpcode() == SP::LDri ||
39 MI->getOpcode() == SP::LDFri ||
40 MI->getOpcode() == SP::LDDFri) {
Dan Gohmand735b802008-10-03 15:45:36 +000041 if (MI->getOperand(1).isFI() && MI->getOperand(2).isImm() &&
Chris Lattner9a1ceae2007-12-30 20:49:49 +000042 MI->getOperand(2).getImm() == 0) {
Chris Lattner8aa797a2007-12-30 23:10:15 +000043 FrameIndex = MI->getOperand(1).getIndex();
Chris Lattner5ccc7222006-02-03 06:44:54 +000044 return MI->getOperand(0).getReg();
45 }
46 }
47 return 0;
48}
49
50/// isStoreToStackSlot - If the specified machine instruction is a direct
51/// store to a stack slot, return the virtual or physical register number of
52/// the source reg along with the FrameIndex of the loaded stack slot. If
53/// not, return 0. This predicate must return 0 if the instruction has
54/// any side effects other than storing to the stack slot.
Dan Gohmancbad42c2008-11-18 19:49:32 +000055unsigned SparcInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
Chris Lattner7c90f732006-02-05 05:50:24 +000056 int &FrameIndex) const {
57 if (MI->getOpcode() == SP::STri ||
58 MI->getOpcode() == SP::STFri ||
59 MI->getOpcode() == SP::STDFri) {
Dan Gohmand735b802008-10-03 15:45:36 +000060 if (MI->getOperand(0).isFI() && MI->getOperand(1).isImm() &&
Chris Lattner9a1ceae2007-12-30 20:49:49 +000061 MI->getOperand(1).getImm() == 0) {
Chris Lattner8aa797a2007-12-30 23:10:15 +000062 FrameIndex = MI->getOperand(0).getIndex();
Chris Lattner5ccc7222006-02-03 06:44:54 +000063 return MI->getOperand(2).getReg();
64 }
65 }
66 return 0;
67}
Chris Lattnere87146a2006-10-24 16:39:19 +000068
Venkatraman Govindarajuc1a62832011-01-16 03:15:11 +000069static bool IsIntegerCC(unsigned CC)
70{
71 return (CC <= SPCC::ICC_VC);
72}
73
74
75static SPCC::CondCodes GetOppositeBranchCondition(SPCC::CondCodes CC)
76{
77 switch(CC) {
78 default: llvm_unreachable("Unknown condition code");
79 case SPCC::ICC_NE: return SPCC::ICC_E;
80 case SPCC::ICC_E: return SPCC::ICC_NE;
81 case SPCC::ICC_G: return SPCC::ICC_LE;
82 case SPCC::ICC_LE: return SPCC::ICC_G;
83 case SPCC::ICC_GE: return SPCC::ICC_L;
84 case SPCC::ICC_L: return SPCC::ICC_GE;
85 case SPCC::ICC_GU: return SPCC::ICC_LEU;
86 case SPCC::ICC_LEU: return SPCC::ICC_GU;
87 case SPCC::ICC_CC: return SPCC::ICC_CS;
88 case SPCC::ICC_CS: return SPCC::ICC_CC;
89 case SPCC::ICC_POS: return SPCC::ICC_NEG;
90 case SPCC::ICC_NEG: return SPCC::ICC_POS;
91 case SPCC::ICC_VC: return SPCC::ICC_VS;
92 case SPCC::ICC_VS: return SPCC::ICC_VC;
93
94 case SPCC::FCC_U: return SPCC::FCC_O;
95 case SPCC::FCC_O: return SPCC::FCC_U;
96 case SPCC::FCC_G: return SPCC::FCC_LE;
97 case SPCC::FCC_LE: return SPCC::FCC_G;
98 case SPCC::FCC_UG: return SPCC::FCC_ULE;
99 case SPCC::FCC_ULE: return SPCC::FCC_UG;
100 case SPCC::FCC_L: return SPCC::FCC_GE;
101 case SPCC::FCC_GE: return SPCC::FCC_L;
102 case SPCC::FCC_UL: return SPCC::FCC_UGE;
103 case SPCC::FCC_UGE: return SPCC::FCC_UL;
104 case SPCC::FCC_LG: return SPCC::FCC_UE;
105 case SPCC::FCC_UE: return SPCC::FCC_LG;
106 case SPCC::FCC_NE: return SPCC::FCC_E;
107 case SPCC::FCC_E: return SPCC::FCC_NE;
108 }
109}
110
111
112bool SparcInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,
113 MachineBasicBlock *&TBB,
114 MachineBasicBlock *&FBB,
115 SmallVectorImpl<MachineOperand> &Cond,
116 bool AllowModify) const
117{
118
119 MachineBasicBlock::iterator I = MBB.end();
120 MachineBasicBlock::iterator UnCondBrIter = MBB.end();
121 while (I != MBB.begin()) {
122 --I;
123
124 if (I->isDebugValue())
125 continue;
126
127 //When we see a non-terminator, we are done
128 if (!isUnpredicatedTerminator(I))
129 break;
130
131 //Terminator is not a branch
132 if (!I->getDesc().isBranch())
133 return true;
134
135 //Handle Unconditional branches
136 if (I->getOpcode() == SP::BA) {
137 UnCondBrIter = I;
138
139 if (!AllowModify) {
140 TBB = I->getOperand(0).getMBB();
141 continue;
142 }
143
144 while (llvm::next(I) != MBB.end())
145 llvm::next(I)->eraseFromParent();
146
147 Cond.clear();
148 FBB = 0;
149
150 if (MBB.isLayoutSuccessor(I->getOperand(0).getMBB())) {
151 TBB = 0;
152 I->eraseFromParent();
153 I = MBB.end();
154 UnCondBrIter = MBB.end();
155 continue;
156 }
157
158 TBB = I->getOperand(0).getMBB();
159 continue;
160 }
161
162 unsigned Opcode = I->getOpcode();
163 if (Opcode != SP::BCOND && Opcode != SP::FBCOND)
164 return true; //Unknown Opcode
165
166 SPCC::CondCodes BranchCode = (SPCC::CondCodes)I->getOperand(1).getImm();
167
168 if (Cond.empty()) {
169 MachineBasicBlock *TargetBB = I->getOperand(0).getMBB();
170 if (AllowModify && UnCondBrIter != MBB.end() &&
171 MBB.isLayoutSuccessor(TargetBB)) {
172
173 //Transform the code
174 //
175 // brCC L1
176 // ba L2
177 // L1:
178 // ..
179 // L2:
180 //
181 // into
182 //
183 // brnCC L2
184 // L1:
185 // ...
186 // L2:
187 //
188 BranchCode = GetOppositeBranchCondition(BranchCode);
189 MachineBasicBlock::iterator OldInst = I;
190 BuildMI(MBB, UnCondBrIter, MBB.findDebugLoc(I), get(Opcode))
191 .addMBB(UnCondBrIter->getOperand(0).getMBB()).addImm(BranchCode);
192 BuildMI(MBB, UnCondBrIter, MBB.findDebugLoc(I), get(SP::BA))
193 .addMBB(TargetBB);
194 MBB.addSuccessor(TargetBB);
195 OldInst->eraseFromParent();
196 UnCondBrIter->eraseFromParent();
197
198 UnCondBrIter = MBB.end();
199 I = MBB.end();
200 continue;
201 }
202 FBB = TBB;
203 TBB = I->getOperand(0).getMBB();
204 Cond.push_back(MachineOperand::CreateImm(BranchCode));
205 continue;
206 }
207 //FIXME: Handle subsequent conditional branches
208 //For now, we can't handle multiple conditional branches
209 return true;
210 }
211 return false;
212}
213
Evan Cheng6ae36262007-05-18 00:18:17 +0000214unsigned
215SparcInstrInfo::InsertBranch(MachineBasicBlock &MBB,MachineBasicBlock *TBB,
216 MachineBasicBlock *FBB,
Stuart Hastings3bf91252010-06-17 22:43:56 +0000217 const SmallVectorImpl<MachineOperand> &Cond,
Venkatraman Govindarajuc1a62832011-01-16 03:15:11 +0000218 DebugLoc DL) const {
219 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
220 assert((Cond.size() == 1 || Cond.size() == 0) &&
221 "Sparc branch conditions should have one component!");
222
223 if (Cond.empty()) {
224 assert(!FBB && "Unconditional branch with multiple successors!");
225 BuildMI(&MBB, DL, get(SP::BA)).addMBB(TBB);
226 return 1;
227 }
228
229 //Conditional branch
230 unsigned CC = Cond[0].getImm();
231
232 if (IsIntegerCC(CC))
233 BuildMI(&MBB, DL, get(SP::BCOND)).addMBB(TBB).addImm(CC);
234 else
235 BuildMI(&MBB, DL, get(SP::FBCOND)).addMBB(TBB).addImm(CC);
236 if (!FBB)
237 return 1;
238
239 BuildMI(&MBB, DL, get(SP::BA)).addMBB(FBB);
240 return 2;
241}
242
243unsigned SparcInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const
244{
245 MachineBasicBlock::iterator I = MBB.end();
246 unsigned Count = 0;
247 while (I != MBB.begin()) {
248 --I;
249
250 if (I->isDebugValue())
251 continue;
252
253 if (I->getOpcode() != SP::BA
254 && I->getOpcode() != SP::BCOND
255 && I->getOpcode() != SP::FBCOND)
256 break; // Not a branch
257
258 I->eraseFromParent();
259 I = MBB.end();
260 ++Count;
261 }
262 return Count;
Rafael Espindola3d7d39a2006-10-24 17:07:11 +0000263}
Owen Andersond10fd972007-12-31 06:32:00 +0000264
Jakob Stoklund Olesen8e18a1a2010-07-11 07:56:09 +0000265void SparcInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
266 MachineBasicBlock::iterator I, DebugLoc DL,
267 unsigned DestReg, unsigned SrcReg,
268 bool KillSrc) const {
269 if (SP::IntRegsRegClass.contains(DestReg, SrcReg))
270 BuildMI(MBB, I, DL, get(SP::ORrr), DestReg).addReg(SP::G0)
271 .addReg(SrcReg, getKillRegState(KillSrc));
272 else if (SP::FPRegsRegClass.contains(DestReg, SrcReg))
273 BuildMI(MBB, I, DL, get(SP::FMOVS), DestReg)
274 .addReg(SrcReg, getKillRegState(KillSrc));
275 else if (SP::DFPRegsRegClass.contains(DestReg, SrcReg))
276 BuildMI(MBB, I, DL, get(Subtarget.isV9() ? SP::FMOVD : SP::FpMOVD), DestReg)
277 .addReg(SrcReg, getKillRegState(KillSrc));
Owen Andersond10fd972007-12-31 06:32:00 +0000278 else
Jakob Stoklund Olesen8e18a1a2010-07-11 07:56:09 +0000279 llvm_unreachable("Impossible reg-to-reg copy");
Owen Andersond10fd972007-12-31 06:32:00 +0000280}
Owen Andersonf6372aa2008-01-01 21:11:32 +0000281
282void SparcInstrInfo::
283storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
284 unsigned SrcReg, bool isKill, int FI,
Evan Cheng746ad692010-05-06 19:06:44 +0000285 const TargetRegisterClass *RC,
286 const TargetRegisterInfo *TRI) const {
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000287 DebugLoc DL;
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000288 if (I != MBB.end()) DL = I->getDebugLoc();
289
Owen Andersonf6372aa2008-01-01 21:11:32 +0000290 // On the order of operands here: think "[FrameIdx + 0] = SrcReg".
291 if (RC == SP::IntRegsRegisterClass)
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000292 BuildMI(MBB, I, DL, get(SP::STri)).addFrameIndex(FI).addImm(0)
Bill Wendling587daed2009-05-13 21:33:08 +0000293 .addReg(SrcReg, getKillRegState(isKill));
Owen Andersonf6372aa2008-01-01 21:11:32 +0000294 else if (RC == SP::FPRegsRegisterClass)
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000295 BuildMI(MBB, I, DL, get(SP::STFri)).addFrameIndex(FI).addImm(0)
Bill Wendling587daed2009-05-13 21:33:08 +0000296 .addReg(SrcReg, getKillRegState(isKill));
Owen Andersonf6372aa2008-01-01 21:11:32 +0000297 else if (RC == SP::DFPRegsRegisterClass)
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000298 BuildMI(MBB, I, DL, get(SP::STDFri)).addFrameIndex(FI).addImm(0)
Bill Wendling587daed2009-05-13 21:33:08 +0000299 .addReg(SrcReg, getKillRegState(isKill));
Owen Andersonf6372aa2008-01-01 21:11:32 +0000300 else
Torok Edwinc23197a2009-07-14 16:55:14 +0000301 llvm_unreachable("Can't store this register to stack slot");
Owen Andersonf6372aa2008-01-01 21:11:32 +0000302}
303
Owen Andersonf6372aa2008-01-01 21:11:32 +0000304void SparcInstrInfo::
305loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
306 unsigned DestReg, int FI,
Evan Cheng746ad692010-05-06 19:06:44 +0000307 const TargetRegisterClass *RC,
308 const TargetRegisterInfo *TRI) const {
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000309 DebugLoc DL;
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000310 if (I != MBB.end()) DL = I->getDebugLoc();
311
Owen Andersonf6372aa2008-01-01 21:11:32 +0000312 if (RC == SP::IntRegsRegisterClass)
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000313 BuildMI(MBB, I, DL, get(SP::LDri), DestReg).addFrameIndex(FI).addImm(0);
Owen Andersonf6372aa2008-01-01 21:11:32 +0000314 else if (RC == SP::FPRegsRegisterClass)
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000315 BuildMI(MBB, I, DL, get(SP::LDFri), DestReg).addFrameIndex(FI).addImm(0);
Owen Andersonf6372aa2008-01-01 21:11:32 +0000316 else if (RC == SP::DFPRegsRegisterClass)
Bill Wendlingd1c321a2009-02-12 00:02:55 +0000317 BuildMI(MBB, I, DL, get(SP::LDDFri), DestReg).addFrameIndex(FI).addImm(0);
Owen Andersonf6372aa2008-01-01 21:11:32 +0000318 else
Torok Edwinc23197a2009-07-14 16:55:14 +0000319 llvm_unreachable("Can't load this register from stack slot");
Owen Andersonf6372aa2008-01-01 21:11:32 +0000320}
321
Chris Lattnerdb486a62009-09-15 17:46:24 +0000322unsigned SparcInstrInfo::getGlobalBaseReg(MachineFunction *MF) const
323{
324 SparcMachineFunctionInfo *SparcFI = MF->getInfo<SparcMachineFunctionInfo>();
325 unsigned GlobalBaseReg = SparcFI->getGlobalBaseReg();
326 if (GlobalBaseReg != 0)
327 return GlobalBaseReg;
328
329 // Insert the set of GlobalBaseReg into the first MBB of the function
330 MachineBasicBlock &FirstMBB = MF->front();
331 MachineBasicBlock::iterator MBBI = FirstMBB.begin();
332 MachineRegisterInfo &RegInfo = MF->getRegInfo();
333
334 GlobalBaseReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
335
336
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000337 DebugLoc dl;
Chris Lattnerdb486a62009-09-15 17:46:24 +0000338
339 BuildMI(FirstMBB, MBBI, dl, get(SP::GETPCX), GlobalBaseReg);
340 SparcFI->setGlobalBaseReg(GlobalBaseReg);
341 return GlobalBaseReg;
342}