blob: d8f6015dce0f25187c8992aef28ece1d6da5632f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- PPCInstrInfo.cpp - PowerPC32 Instruction Information -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the PowerPC implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "PPCInstrInfo.h"
Owen Anderson81875432008-01-01 21:11:32 +000015#include "PPCInstrBuilder.h"
Bill Wendlinga1877c52008-03-03 22:19:16 +000016#include "PPCMachineFunctionInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000017#include "PPCPredicates.h"
18#include "PPCGenInstrInfo.inc"
19#include "PPCTargetMachine.h"
Owen Anderson1636de92007-09-07 04:06:50 +000020#include "llvm/ADT/STLExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
Bill Wendling03598502008-03-04 23:13:51 +000022#include "llvm/Support/CommandLine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023using namespace llvm;
24
Bill Wendling03598502008-03-04 23:13:51 +000025extern cl::opt<bool> EnablePPCRS; // FIXME (64-bit): See PPCRegisterInfo.cpp.
26
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027PPCInstrInfo::PPCInstrInfo(PPCTargetMachine &tm)
Chris Lattnerd2fd6db2008-01-01 01:03:04 +000028 : TargetInstrInfoImpl(PPCInsts, array_lengthof(PPCInsts)), TM(tm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029 RI(*TM.getSubtargetImpl(), *this) {}
30
31/// getPointerRegClass - Return the register class to use to hold pointers.
32/// This is used for addressing modes.
33const TargetRegisterClass *PPCInstrInfo::getPointerRegClass() const {
34 if (TM.getSubtargetImpl()->isPPC64())
35 return &PPC::G8RCRegClass;
36 else
37 return &PPC::GPRCRegClass;
38}
39
40
41bool PPCInstrInfo::isMoveInstr(const MachineInstr& MI,
42 unsigned& sourceReg,
43 unsigned& destReg) const {
Chris Lattner99aa3372008-01-07 02:48:55 +000044 unsigned oc = MI.getOpcode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045 if (oc == PPC::OR || oc == PPC::OR8 || oc == PPC::VOR ||
46 oc == PPC::OR4To8 || oc == PPC::OR8To4) { // or r1, r2, r2
47 assert(MI.getNumOperands() >= 3 &&
48 MI.getOperand(0).isRegister() &&
49 MI.getOperand(1).isRegister() &&
50 MI.getOperand(2).isRegister() &&
51 "invalid PPC OR instruction!");
52 if (MI.getOperand(1).getReg() == MI.getOperand(2).getReg()) {
53 sourceReg = MI.getOperand(1).getReg();
54 destReg = MI.getOperand(0).getReg();
55 return true;
56 }
57 } else if (oc == PPC::ADDI) { // addi r1, r2, 0
58 assert(MI.getNumOperands() >= 3 &&
59 MI.getOperand(0).isRegister() &&
60 MI.getOperand(2).isImmediate() &&
61 "invalid PPC ADDI instruction!");
Chris Lattnera96056a2007-12-30 20:49:49 +000062 if (MI.getOperand(1).isRegister() && MI.getOperand(2).getImm() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063 sourceReg = MI.getOperand(1).getReg();
64 destReg = MI.getOperand(0).getReg();
65 return true;
66 }
67 } else if (oc == PPC::ORI) { // ori r1, r2, 0
68 assert(MI.getNumOperands() >= 3 &&
69 MI.getOperand(0).isRegister() &&
70 MI.getOperand(1).isRegister() &&
71 MI.getOperand(2).isImmediate() &&
72 "invalid PPC ORI instruction!");
Chris Lattnera96056a2007-12-30 20:49:49 +000073 if (MI.getOperand(2).getImm() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074 sourceReg = MI.getOperand(1).getReg();
75 destReg = MI.getOperand(0).getReg();
76 return true;
77 }
78 } else if (oc == PPC::FMRS || oc == PPC::FMRD ||
79 oc == PPC::FMRSD) { // fmr r1, r2
80 assert(MI.getNumOperands() >= 2 &&
81 MI.getOperand(0).isRegister() &&
82 MI.getOperand(1).isRegister() &&
83 "invalid PPC FMR instruction");
84 sourceReg = MI.getOperand(1).getReg();
85 destReg = MI.getOperand(0).getReg();
86 return true;
87 } else if (oc == PPC::MCRF) { // mcrf cr1, cr2
88 assert(MI.getNumOperands() >= 2 &&
89 MI.getOperand(0).isRegister() &&
90 MI.getOperand(1).isRegister() &&
91 "invalid PPC MCRF instruction");
92 sourceReg = MI.getOperand(1).getReg();
93 destReg = MI.getOperand(0).getReg();
94 return true;
95 }
96 return false;
97}
98
99unsigned PPCInstrInfo::isLoadFromStackSlot(MachineInstr *MI,
100 int &FrameIndex) const {
101 switch (MI->getOpcode()) {
102 default: break;
103 case PPC::LD:
104 case PPC::LWZ:
105 case PPC::LFS:
106 case PPC::LFD:
Chris Lattner6017d482007-12-30 23:10:15 +0000107 if (MI->getOperand(1).isImm() && !MI->getOperand(1).getImm() &&
108 MI->getOperand(2).isFI()) {
109 FrameIndex = MI->getOperand(2).getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110 return MI->getOperand(0).getReg();
111 }
112 break;
113 }
114 return 0;
115}
116
117unsigned PPCInstrInfo::isStoreToStackSlot(MachineInstr *MI,
118 int &FrameIndex) const {
119 switch (MI->getOpcode()) {
120 default: break;
121 case PPC::STD:
122 case PPC::STW:
123 case PPC::STFS:
124 case PPC::STFD:
Chris Lattner6017d482007-12-30 23:10:15 +0000125 if (MI->getOperand(1).isImm() && !MI->getOperand(1).getImm() &&
126 MI->getOperand(2).isFI()) {
127 FrameIndex = MI->getOperand(2).getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 return MI->getOperand(0).getReg();
129 }
130 break;
131 }
132 return 0;
133}
134
135// commuteInstruction - We can commute rlwimi instructions, but only if the
136// rotate amt is zero. We also have to munge the immediates a bit.
137MachineInstr *PPCInstrInfo::commuteInstruction(MachineInstr *MI) const {
138 // Normal instructions can be commuted the obvious way.
139 if (MI->getOpcode() != PPC::RLWIMI)
Chris Lattner6ca3a8e2008-01-01 01:05:34 +0000140 return TargetInstrInfoImpl::commuteInstruction(MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141
142 // Cannot commute if it has a non-zero rotate count.
Chris Lattnera96056a2007-12-30 20:49:49 +0000143 if (MI->getOperand(3).getImm() != 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000144 return 0;
145
146 // If we have a zero rotate count, we have:
147 // M = mask(MB,ME)
148 // Op0 = (Op1 & ~M) | (Op2 & M)
149 // Change this to:
150 // M = mask((ME+1)&31, (MB-1)&31)
151 // Op0 = (Op2 & ~M) | (Op1 & M)
152
153 // Swap op1/op2
Evan Chengb554e532008-02-13 02:46:49 +0000154 unsigned Reg0 = MI->getOperand(0).getReg();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 unsigned Reg1 = MI->getOperand(1).getReg();
156 unsigned Reg2 = MI->getOperand(2).getReg();
157 bool Reg1IsKill = MI->getOperand(1).isKill();
158 bool Reg2IsKill = MI->getOperand(2).isKill();
Evan Chengb554e532008-02-13 02:46:49 +0000159 // If machine instrs are no longer in two-address forms, update
160 // destination register as well.
161 if (Reg0 == Reg1) {
162 // Must be two address instruction!
163 assert(MI->getDesc().getOperandConstraint(0, TOI::TIED_TO) &&
164 "Expecting a two-address instruction!");
165 MI->getOperand(0).setReg(Reg2);
166 Reg2IsKill = false;
167 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 MI->getOperand(2).setReg(Reg1);
169 MI->getOperand(1).setReg(Reg2);
Chris Lattner7f2d3b82007-12-30 21:56:09 +0000170 MI->getOperand(2).setIsKill(Reg1IsKill);
171 MI->getOperand(1).setIsKill(Reg2IsKill);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172
173 // Swap the mask around.
Chris Lattnera96056a2007-12-30 20:49:49 +0000174 unsigned MB = MI->getOperand(4).getImm();
175 unsigned ME = MI->getOperand(5).getImm();
176 MI->getOperand(4).setImm((ME+1) & 31);
177 MI->getOperand(5).setImm((MB-1) & 31);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 return MI;
179}
180
181void PPCInstrInfo::insertNoop(MachineBasicBlock &MBB,
182 MachineBasicBlock::iterator MI) const {
183 BuildMI(MBB, MI, get(PPC::NOP));
184}
185
186
187// Branch analysis.
188bool PPCInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
189 MachineBasicBlock *&FBB,
190 std::vector<MachineOperand> &Cond) const {
191 // If the block has no terminators, it just falls into the block after it.
192 MachineBasicBlock::iterator I = MBB.end();
193 if (I == MBB.begin() || !isUnpredicatedTerminator(--I))
194 return false;
195
196 // Get the last instruction in the block.
197 MachineInstr *LastInst = I;
198
199 // If there is only one terminator instruction, process it.
200 if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
201 if (LastInst->getOpcode() == PPC::B) {
Chris Lattner6017d482007-12-30 23:10:15 +0000202 TBB = LastInst->getOperand(0).getMBB();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 return false;
204 } else if (LastInst->getOpcode() == PPC::BCC) {
205 // Block ends with fall-through condbranch.
Chris Lattner6017d482007-12-30 23:10:15 +0000206 TBB = LastInst->getOperand(2).getMBB();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207 Cond.push_back(LastInst->getOperand(0));
208 Cond.push_back(LastInst->getOperand(1));
209 return false;
210 }
211 // Otherwise, don't know what this is.
212 return true;
213 }
214
215 // Get the instruction before it if it's a terminator.
216 MachineInstr *SecondLastInst = I;
217
218 // If there are three terminators, we don't know what sort of block this is.
219 if (SecondLastInst && I != MBB.begin() &&
220 isUnpredicatedTerminator(--I))
221 return true;
222
223 // If the block ends with PPC::B and PPC:BCC, handle it.
224 if (SecondLastInst->getOpcode() == PPC::BCC &&
225 LastInst->getOpcode() == PPC::B) {
Chris Lattner6017d482007-12-30 23:10:15 +0000226 TBB = SecondLastInst->getOperand(2).getMBB();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 Cond.push_back(SecondLastInst->getOperand(0));
228 Cond.push_back(SecondLastInst->getOperand(1));
Chris Lattner6017d482007-12-30 23:10:15 +0000229 FBB = LastInst->getOperand(0).getMBB();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230 return false;
231 }
232
233 // If the block ends with two PPC:Bs, handle it. The second one is not
234 // executed, so remove it.
235 if (SecondLastInst->getOpcode() == PPC::B &&
236 LastInst->getOpcode() == PPC::B) {
Chris Lattner6017d482007-12-30 23:10:15 +0000237 TBB = SecondLastInst->getOperand(0).getMBB();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 I = LastInst;
239 I->eraseFromParent();
240 return false;
241 }
242
243 // Otherwise, can't handle this.
244 return true;
245}
246
247unsigned PPCInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
248 MachineBasicBlock::iterator I = MBB.end();
249 if (I == MBB.begin()) return 0;
250 --I;
251 if (I->getOpcode() != PPC::B && I->getOpcode() != PPC::BCC)
252 return 0;
253
254 // Remove the branch.
255 I->eraseFromParent();
256
257 I = MBB.end();
258
259 if (I == MBB.begin()) return 1;
260 --I;
261 if (I->getOpcode() != PPC::BCC)
262 return 1;
263
264 // Remove the branch.
265 I->eraseFromParent();
266 return 2;
267}
268
269unsigned
270PPCInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
271 MachineBasicBlock *FBB,
272 const std::vector<MachineOperand> &Cond) const {
273 // Shouldn't be a fall through.
274 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
275 assert((Cond.size() == 2 || Cond.size() == 0) &&
276 "PPC branch conditions have two components!");
277
278 // One-way branch.
279 if (FBB == 0) {
280 if (Cond.empty()) // Unconditional branch
281 BuildMI(&MBB, get(PPC::B)).addMBB(TBB);
282 else // Conditional branch
283 BuildMI(&MBB, get(PPC::BCC))
284 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg()).addMBB(TBB);
285 return 1;
286 }
287
288 // Two-way Conditional Branch.
289 BuildMI(&MBB, get(PPC::BCC))
290 .addImm(Cond[0].getImm()).addReg(Cond[1].getReg()).addMBB(TBB);
291 BuildMI(&MBB, get(PPC::B)).addMBB(FBB);
292 return 2;
293}
294
Owen Anderson8f2c8932007-12-31 06:32:00 +0000295void PPCInstrInfo::copyRegToReg(MachineBasicBlock &MBB,
296 MachineBasicBlock::iterator MI,
297 unsigned DestReg, unsigned SrcReg,
298 const TargetRegisterClass *DestRC,
299 const TargetRegisterClass *SrcRC) const {
300 if (DestRC != SrcRC) {
301 cerr << "Not yet supported!";
302 abort();
303 }
304
305 if (DestRC == PPC::GPRCRegisterClass) {
306 BuildMI(MBB, MI, get(PPC::OR), DestReg).addReg(SrcReg).addReg(SrcReg);
307 } else if (DestRC == PPC::G8RCRegisterClass) {
308 BuildMI(MBB, MI, get(PPC::OR8), DestReg).addReg(SrcReg).addReg(SrcReg);
309 } else if (DestRC == PPC::F4RCRegisterClass) {
310 BuildMI(MBB, MI, get(PPC::FMRS), DestReg).addReg(SrcReg);
311 } else if (DestRC == PPC::F8RCRegisterClass) {
312 BuildMI(MBB, MI, get(PPC::FMRD), DestReg).addReg(SrcReg);
313 } else if (DestRC == PPC::CRRCRegisterClass) {
314 BuildMI(MBB, MI, get(PPC::MCRF), DestReg).addReg(SrcReg);
315 } else if (DestRC == PPC::VRRCRegisterClass) {
316 BuildMI(MBB, MI, get(PPC::VOR), DestReg).addReg(SrcReg).addReg(SrcReg);
317 } else {
318 cerr << "Attempt to copy register that is not GPR or FPR";
319 abort();
320 }
321}
322
Bill Wendlinga1877c52008-03-03 22:19:16 +0000323static bool StoreRegToStackSlot(const TargetInstrInfo &TII,
Owen Anderson81875432008-01-01 21:11:32 +0000324 unsigned SrcReg, bool isKill, int FrameIdx,
325 const TargetRegisterClass *RC,
Bill Wendling03598502008-03-04 23:13:51 +0000326 SmallVectorImpl<MachineInstr*> &NewMIs) {
Owen Anderson81875432008-01-01 21:11:32 +0000327 if (RC == PPC::GPRCRegisterClass) {
328 if (SrcReg != PPC::LR) {
329 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::STW))
330 .addReg(SrcReg, false, false, isKill), FrameIdx));
331 } else {
332 // FIXME: this spills LR immediately to memory in one step. To do this,
333 // we use R11, which we know cannot be used in the prolog/epilog. This is
334 // a hack.
335 NewMIs.push_back(BuildMI(TII.get(PPC::MFLR), PPC::R11));
336 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::STW))
337 .addReg(PPC::R11, false, false, isKill), FrameIdx));
338 }
339 } else if (RC == PPC::G8RCRegisterClass) {
340 if (SrcReg != PPC::LR8) {
341 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::STD))
342 .addReg(SrcReg, false, false, isKill), FrameIdx));
343 } else {
344 // FIXME: this spills LR immediately to memory in one step. To do this,
345 // we use R11, which we know cannot be used in the prolog/epilog. This is
346 // a hack.
347 NewMIs.push_back(BuildMI(TII.get(PPC::MFLR8), PPC::X11));
348 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::STD))
349 .addReg(PPC::X11, false, false, isKill), FrameIdx));
350 }
351 } else if (RC == PPC::F8RCRegisterClass) {
352 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::STFD))
353 .addReg(SrcReg, false, false, isKill), FrameIdx));
354 } else if (RC == PPC::F4RCRegisterClass) {
355 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::STFS))
356 .addReg(SrcReg, false, false, isKill), FrameIdx));
357 } else if (RC == PPC::CRRCRegisterClass) {
Bill Wendling03598502008-03-04 23:13:51 +0000358 if (EnablePPCRS) { // FIXME (64-bit): Enable
Bill Wendlinga1877c52008-03-03 22:19:16 +0000359 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::SPILL_CR))
360 .addReg(SrcReg, false, false, isKill),
361 FrameIdx));
362 return true;
363 } else {
364 // FIXME: We use R0 here, because it isn't available for RA. We need to
365 // store the CR in the low 4-bits of the saved value. First, issue a MFCR
366 // to save all of the CRBits.
367 NewMIs.push_back(BuildMI(TII.get(PPC::MFCR), PPC::R0));
Owen Anderson81875432008-01-01 21:11:32 +0000368
Bill Wendlinga1877c52008-03-03 22:19:16 +0000369 // If the saved register wasn't CR0, shift the bits left so that they are
370 // in CR0's slot.
371 if (SrcReg != PPC::CR0) {
372 unsigned ShiftBits = PPCRegisterInfo::getRegisterNumbering(SrcReg)*4;
373 // rlwinm r0, r0, ShiftBits, 0, 31.
374 NewMIs.push_back(BuildMI(TII.get(PPC::RLWINM), PPC::R0)
375 .addReg(PPC::R0).addImm(ShiftBits).addImm(0).addImm(31));
376 }
377
378 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::STW))
379 .addReg(PPC::R0, false, false, isKill),
380 FrameIdx));
Owen Anderson81875432008-01-01 21:11:32 +0000381 }
Owen Anderson81875432008-01-01 21:11:32 +0000382 } else if (RC == PPC::VRRCRegisterClass) {
383 // We don't have indexed addressing for vector loads. Emit:
384 // R0 = ADDI FI#
385 // STVX VAL, 0, R0
386 //
387 // FIXME: We use R0 here, because it isn't available for RA.
388 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::ADDI), PPC::R0),
389 FrameIdx, 0, 0));
390 NewMIs.push_back(BuildMI(TII.get(PPC::STVX))
391 .addReg(SrcReg, false, false, isKill).addReg(PPC::R0).addReg(PPC::R0));
392 } else {
393 assert(0 && "Unknown regclass!");
394 abort();
395 }
Bill Wendlinga1877c52008-03-03 22:19:16 +0000396
397 return false;
Owen Anderson81875432008-01-01 21:11:32 +0000398}
399
400void
401PPCInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
Bill Wendlinga1877c52008-03-03 22:19:16 +0000402 MachineBasicBlock::iterator MI,
403 unsigned SrcReg, bool isKill, int FrameIdx,
404 const TargetRegisterClass *RC) const {
Owen Anderson81875432008-01-01 21:11:32 +0000405 SmallVector<MachineInstr*, 4> NewMIs;
Bill Wendlinga1877c52008-03-03 22:19:16 +0000406
Bill Wendling03598502008-03-04 23:13:51 +0000407 if (StoreRegToStackSlot(*this, SrcReg, isKill, FrameIdx, RC, NewMIs)) {
Bill Wendlinga1877c52008-03-03 22:19:16 +0000408 PPCFunctionInfo *FuncInfo = MBB.getParent()->getInfo<PPCFunctionInfo>();
409 FuncInfo->setSpillsCR();
410 }
411
Owen Anderson81875432008-01-01 21:11:32 +0000412 for (unsigned i = 0, e = NewMIs.size(); i != e; ++i)
413 MBB.insert(MI, NewMIs[i]);
414}
415
416void PPCInstrInfo::storeRegToAddr(MachineFunction &MF, unsigned SrcReg,
Bill Wendlinga1877c52008-03-03 22:19:16 +0000417 bool isKill,
418 SmallVectorImpl<MachineOperand> &Addr,
419 const TargetRegisterClass *RC,
420 SmallVectorImpl<MachineInstr*> &NewMIs) const{
Owen Anderson81875432008-01-01 21:11:32 +0000421 if (Addr[0].isFrameIndex()) {
Bill Wendling03598502008-03-04 23:13:51 +0000422 if (StoreRegToStackSlot(*this, SrcReg, isKill, Addr[0].getIndex(),
423 RC, NewMIs)) {
Bill Wendlinga1877c52008-03-03 22:19:16 +0000424 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
425 FuncInfo->setSpillsCR();
426 }
427
Owen Anderson81875432008-01-01 21:11:32 +0000428 return;
429 }
430
431 unsigned Opc = 0;
432 if (RC == PPC::GPRCRegisterClass) {
433 Opc = PPC::STW;
434 } else if (RC == PPC::G8RCRegisterClass) {
435 Opc = PPC::STD;
436 } else if (RC == PPC::F8RCRegisterClass) {
437 Opc = PPC::STFD;
438 } else if (RC == PPC::F4RCRegisterClass) {
439 Opc = PPC::STFS;
440 } else if (RC == PPC::VRRCRegisterClass) {
441 Opc = PPC::STVX;
442 } else {
443 assert(0 && "Unknown regclass!");
444 abort();
445 }
446 MachineInstrBuilder MIB = BuildMI(get(Opc))
447 .addReg(SrcReg, false, false, isKill);
448 for (unsigned i = 0, e = Addr.size(); i != e; ++i) {
449 MachineOperand &MO = Addr[i];
450 if (MO.isRegister())
451 MIB.addReg(MO.getReg());
452 else if (MO.isImmediate())
453 MIB.addImm(MO.getImm());
454 else
455 MIB.addFrameIndex(MO.getIndex());
456 }
457 NewMIs.push_back(MIB);
458 return;
459}
460
461static void LoadRegFromStackSlot(const TargetInstrInfo &TII,
462 unsigned DestReg, int FrameIdx,
463 const TargetRegisterClass *RC,
464 SmallVectorImpl<MachineInstr*> &NewMIs) {
465 if (RC == PPC::GPRCRegisterClass) {
466 if (DestReg != PPC::LR) {
467 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::LWZ), DestReg),
468 FrameIdx));
469 } else {
470 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::LWZ), PPC::R11),
471 FrameIdx));
472 NewMIs.push_back(BuildMI(TII.get(PPC::MTLR)).addReg(PPC::R11));
473 }
474 } else if (RC == PPC::G8RCRegisterClass) {
475 if (DestReg != PPC::LR8) {
476 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::LD), DestReg),
477 FrameIdx));
478 } else {
479 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::LD), PPC::R11),
480 FrameIdx));
481 NewMIs.push_back(BuildMI(TII.get(PPC::MTLR8)).addReg(PPC::R11));
482 }
483 } else if (RC == PPC::F8RCRegisterClass) {
484 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::LFD), DestReg),
485 FrameIdx));
486 } else if (RC == PPC::F4RCRegisterClass) {
487 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::LFS), DestReg),
488 FrameIdx));
489 } else if (RC == PPC::CRRCRegisterClass) {
490 // FIXME: We use R0 here, because it isn't available for RA.
491 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::LWZ), PPC::R0),
492 FrameIdx));
493
494 // If the reloaded register isn't CR0, shift the bits right so that they are
495 // in the right CR's slot.
496 if (DestReg != PPC::CR0) {
497 unsigned ShiftBits = PPCRegisterInfo::getRegisterNumbering(DestReg)*4;
498 // rlwinm r11, r11, 32-ShiftBits, 0, 31.
499 NewMIs.push_back(BuildMI(TII.get(PPC::RLWINM), PPC::R0)
500 .addReg(PPC::R0).addImm(32-ShiftBits).addImm(0).addImm(31));
501 }
502
503 NewMIs.push_back(BuildMI(TII.get(PPC::MTCRF), DestReg).addReg(PPC::R0));
504 } else if (RC == PPC::VRRCRegisterClass) {
505 // We don't have indexed addressing for vector loads. Emit:
506 // R0 = ADDI FI#
507 // Dest = LVX 0, R0
508 //
509 // FIXME: We use R0 here, because it isn't available for RA.
510 NewMIs.push_back(addFrameReference(BuildMI(TII.get(PPC::ADDI), PPC::R0),
511 FrameIdx, 0, 0));
512 NewMIs.push_back(BuildMI(TII.get(PPC::LVX),DestReg).addReg(PPC::R0)
513 .addReg(PPC::R0));
514 } else {
515 assert(0 && "Unknown regclass!");
516 abort();
517 }
518}
519
520void
521PPCInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
Bill Wendlinga1877c52008-03-03 22:19:16 +0000522 MachineBasicBlock::iterator MI,
523 unsigned DestReg, int FrameIdx,
524 const TargetRegisterClass *RC) const {
Owen Anderson81875432008-01-01 21:11:32 +0000525 SmallVector<MachineInstr*, 4> NewMIs;
526 LoadRegFromStackSlot(*this, DestReg, FrameIdx, RC, NewMIs);
527 for (unsigned i = 0, e = NewMIs.size(); i != e; ++i)
528 MBB.insert(MI, NewMIs[i]);
529}
530
531void PPCInstrInfo::loadRegFromAddr(MachineFunction &MF, unsigned DestReg,
Bill Wendlinga1877c52008-03-03 22:19:16 +0000532 SmallVectorImpl<MachineOperand> &Addr,
533 const TargetRegisterClass *RC,
534 SmallVectorImpl<MachineInstr*> &NewMIs)const{
Owen Anderson81875432008-01-01 21:11:32 +0000535 if (Addr[0].isFrameIndex()) {
536 LoadRegFromStackSlot(*this, DestReg, Addr[0].getIndex(), RC, NewMIs);
537 return;
538 }
539
540 unsigned Opc = 0;
541 if (RC == PPC::GPRCRegisterClass) {
542 assert(DestReg != PPC::LR && "Can't handle this yet!");
543 Opc = PPC::LWZ;
544 } else if (RC == PPC::G8RCRegisterClass) {
545 assert(DestReg != PPC::LR8 && "Can't handle this yet!");
546 Opc = PPC::LD;
547 } else if (RC == PPC::F8RCRegisterClass) {
548 Opc = PPC::LFD;
549 } else if (RC == PPC::F4RCRegisterClass) {
550 Opc = PPC::LFS;
551 } else if (RC == PPC::VRRCRegisterClass) {
552 Opc = PPC::LVX;
553 } else {
554 assert(0 && "Unknown regclass!");
555 abort();
556 }
557 MachineInstrBuilder MIB = BuildMI(get(Opc), DestReg);
558 for (unsigned i = 0, e = Addr.size(); i != e; ++i) {
559 MachineOperand &MO = Addr[i];
560 if (MO.isRegister())
561 MIB.addReg(MO.getReg());
562 else if (MO.isImmediate())
563 MIB.addImm(MO.getImm());
564 else
565 MIB.addFrameIndex(MO.getIndex());
566 }
567 NewMIs.push_back(MIB);
568 return;
569}
570
Owen Anderson9a184ef2008-01-07 01:35:02 +0000571/// foldMemoryOperand - PowerPC (like most RISC's) can only fold spills into
572/// copy instructions, turning them into load/store instructions.
Evan Cheng4f2f3f62008-02-08 21:20:40 +0000573MachineInstr *PPCInstrInfo::foldMemoryOperand(MachineFunction &MF,
574 MachineInstr *MI,
Owen Anderson9a184ef2008-01-07 01:35:02 +0000575 SmallVectorImpl<unsigned> &Ops,
576 int FrameIndex) const {
577 if (Ops.size() != 1) return NULL;
578
579 // Make sure this is a reg-reg copy. Note that we can't handle MCRF, because
580 // it takes more than one instruction to store it.
581 unsigned Opc = MI->getOpcode();
582 unsigned OpNum = Ops[0];
583
584 MachineInstr *NewMI = NULL;
585 if ((Opc == PPC::OR &&
586 MI->getOperand(1).getReg() == MI->getOperand(2).getReg())) {
587 if (OpNum == 0) { // move -> store
588 unsigned InReg = MI->getOperand(1).getReg();
589 NewMI = addFrameReference(BuildMI(get(PPC::STW)).addReg(InReg),
590 FrameIndex);
591 } else { // move -> load
592 unsigned OutReg = MI->getOperand(0).getReg();
593 NewMI = addFrameReference(BuildMI(get(PPC::LWZ), OutReg),
594 FrameIndex);
595 }
596 } else if ((Opc == PPC::OR8 &&
597 MI->getOperand(1).getReg() == MI->getOperand(2).getReg())) {
598 if (OpNum == 0) { // move -> store
599 unsigned InReg = MI->getOperand(1).getReg();
600 NewMI = addFrameReference(BuildMI(get(PPC::STD)).addReg(InReg),
601 FrameIndex);
602 } else { // move -> load
603 unsigned OutReg = MI->getOperand(0).getReg();
604 NewMI = addFrameReference(BuildMI(get(PPC::LD), OutReg), FrameIndex);
605 }
606 } else if (Opc == PPC::FMRD) {
607 if (OpNum == 0) { // move -> store
608 unsigned InReg = MI->getOperand(1).getReg();
609 NewMI = addFrameReference(BuildMI(get(PPC::STFD)).addReg(InReg),
610 FrameIndex);
611 } else { // move -> load
612 unsigned OutReg = MI->getOperand(0).getReg();
613 NewMI = addFrameReference(BuildMI(get(PPC::LFD), OutReg), FrameIndex);
614 }
615 } else if (Opc == PPC::FMRS) {
616 if (OpNum == 0) { // move -> store
617 unsigned InReg = MI->getOperand(1).getReg();
618 NewMI = addFrameReference(BuildMI(get(PPC::STFS)).addReg(InReg),
619 FrameIndex);
620 } else { // move -> load
621 unsigned OutReg = MI->getOperand(0).getReg();
622 NewMI = addFrameReference(BuildMI(get(PPC::LFS), OutReg), FrameIndex);
623 }
624 }
625
626 if (NewMI)
627 NewMI->copyKillDeadInfo(MI);
628 return NewMI;
629}
630
631bool PPCInstrInfo::canFoldMemoryOperand(MachineInstr *MI,
Evan Cheng4f2f3f62008-02-08 21:20:40 +0000632 SmallVectorImpl<unsigned> &Ops) const {
Owen Anderson9a184ef2008-01-07 01:35:02 +0000633 if (Ops.size() != 1) return false;
634
635 // Make sure this is a reg-reg copy. Note that we can't handle MCRF, because
636 // it takes more than one instruction to store it.
637 unsigned Opc = MI->getOpcode();
638
639 if ((Opc == PPC::OR &&
640 MI->getOperand(1).getReg() == MI->getOperand(2).getReg()))
641 return true;
642 else if ((Opc == PPC::OR8 &&
643 MI->getOperand(1).getReg() == MI->getOperand(2).getReg()))
644 return true;
645 else if (Opc == PPC::FMRD || Opc == PPC::FMRS)
646 return true;
647
648 return false;
649}
650
Owen Anderson81875432008-01-01 21:11:32 +0000651
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000652bool PPCInstrInfo::BlockHasNoFallThrough(MachineBasicBlock &MBB) const {
653 if (MBB.empty()) return false;
654
655 switch (MBB.back().getOpcode()) {
656 case PPC::BLR: // Return.
657 case PPC::B: // Uncond branch.
658 case PPC::BCTR: // Indirect branch.
659 return true;
660 default: return false;
661 }
662}
663
664bool PPCInstrInfo::
665ReverseBranchCondition(std::vector<MachineOperand> &Cond) const {
666 assert(Cond.size() == 2 && "Invalid PPC branch opcode!");
667 // Leave the CR# the same, but invert the condition.
668 Cond[0].setImm(PPC::InvertPredicate((PPC::Predicate)Cond[0].getImm()));
669 return false;
670}