blob: cfd270ae43470d1a8444c112d440c64e1664fb1f [file] [log] [blame]
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001//===-- SystemZInstrInfo.cpp - SystemZ instruction information ------------===//
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 SystemZ implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "SystemZInstrInfo.h"
15#include "SystemZInstrBuilder.h"
Richard Sandifordf6bae1e2013-07-02 15:28:56 +000016#include "llvm/CodeGen/MachineRegisterInfo.h"
Richard Sandiford312425f2013-05-20 14:23:08 +000017#include "llvm/Target/TargetMachine.h"
Ulrich Weigand5f613df2013-05-06 16:15:19 +000018
19#define GET_INSTRINFO_CTOR
20#define GET_INSTRMAP_INFO
21#include "SystemZGenInstrInfo.inc"
22
23using namespace llvm;
24
25SystemZInstrInfo::SystemZInstrInfo(SystemZTargetMachine &tm)
26 : SystemZGenInstrInfo(SystemZ::ADJCALLSTACKDOWN, SystemZ::ADJCALLSTACKUP),
Bill Wendling637d97d2013-06-07 20:42:15 +000027 RI(tm) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +000028}
29
30// MI is a 128-bit load or store. Split it into two 64-bit loads or stores,
31// each having the opcode given by NewOpcode.
32void SystemZInstrInfo::splitMove(MachineBasicBlock::iterator MI,
33 unsigned NewOpcode) const {
34 MachineBasicBlock *MBB = MI->getParent();
35 MachineFunction &MF = *MBB->getParent();
36
37 // Get two load or store instructions. Use the original instruction for one
38 // of them (arbitarily the second here) and create a clone for the other.
39 MachineInstr *EarlierMI = MF.CloneMachineInstr(MI);
40 MBB->insert(MI, EarlierMI);
41
42 // Set up the two 64-bit registers.
43 MachineOperand &HighRegOp = EarlierMI->getOperand(0);
44 MachineOperand &LowRegOp = MI->getOperand(0);
45 HighRegOp.setReg(RI.getSubReg(HighRegOp.getReg(), SystemZ::subreg_high));
46 LowRegOp.setReg(RI.getSubReg(LowRegOp.getReg(), SystemZ::subreg_low));
47
48 // The address in the first (high) instruction is already correct.
49 // Adjust the offset in the second (low) instruction.
50 MachineOperand &HighOffsetOp = EarlierMI->getOperand(2);
51 MachineOperand &LowOffsetOp = MI->getOperand(2);
52 LowOffsetOp.setImm(LowOffsetOp.getImm() + 8);
53
54 // Set the opcodes.
55 unsigned HighOpcode = getOpcodeForOffset(NewOpcode, HighOffsetOp.getImm());
56 unsigned LowOpcode = getOpcodeForOffset(NewOpcode, LowOffsetOp.getImm());
57 assert(HighOpcode && LowOpcode && "Both offsets should be in range");
58
59 EarlierMI->setDesc(get(HighOpcode));
60 MI->setDesc(get(LowOpcode));
61}
62
63// Split ADJDYNALLOC instruction MI.
64void SystemZInstrInfo::splitAdjDynAlloc(MachineBasicBlock::iterator MI) const {
65 MachineBasicBlock *MBB = MI->getParent();
66 MachineFunction &MF = *MBB->getParent();
67 MachineFrameInfo *MFFrame = MF.getFrameInfo();
68 MachineOperand &OffsetMO = MI->getOperand(2);
69
70 uint64_t Offset = (MFFrame->getMaxCallFrameSize() +
71 SystemZMC::CallFrameSize +
72 OffsetMO.getImm());
73 unsigned NewOpcode = getOpcodeForOffset(SystemZ::LA, Offset);
74 assert(NewOpcode && "No support for huge argument lists yet");
75 MI->setDesc(get(NewOpcode));
76 OffsetMO.setImm(Offset);
77}
78
79// If MI is a simple load or store for a frame object, return the register
80// it loads or stores and set FrameIndex to the index of the frame object.
81// Return 0 otherwise.
82//
83// Flag is SimpleBDXLoad for loads and SimpleBDXStore for stores.
Richard Sandifordf6bae1e2013-07-02 15:28:56 +000084static int isSimpleMove(const MachineInstr *MI, int &FrameIndex,
85 unsigned Flag) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +000086 const MCInstrDesc &MCID = MI->getDesc();
87 if ((MCID.TSFlags & Flag) &&
88 MI->getOperand(1).isFI() &&
89 MI->getOperand(2).getImm() == 0 &&
90 MI->getOperand(3).getReg() == 0) {
91 FrameIndex = MI->getOperand(1).getIndex();
92 return MI->getOperand(0).getReg();
93 }
94 return 0;
95}
96
97unsigned SystemZInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
98 int &FrameIndex) const {
99 return isSimpleMove(MI, FrameIndex, SystemZII::SimpleBDXLoad);
100}
101
102unsigned SystemZInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
103 int &FrameIndex) const {
104 return isSimpleMove(MI, FrameIndex, SystemZII::SimpleBDXStore);
105}
106
Richard Sandifordc40f27b2013-07-05 14:38:48 +0000107bool SystemZInstrInfo::isStackSlotCopy(const MachineInstr *MI,
108 int &DestFrameIndex,
109 int &SrcFrameIndex) const {
110 // Check for MVC 0(Length,FI1),0(FI2)
111 const MachineFrameInfo *MFI = MI->getParent()->getParent()->getFrameInfo();
112 if (MI->getOpcode() != SystemZ::MVC ||
113 !MI->getOperand(0).isFI() ||
114 MI->getOperand(1).getImm() != 0 ||
115 !MI->getOperand(3).isFI() ||
116 MI->getOperand(4).getImm() != 0)
117 return false;
118
119 // Check that Length covers the full slots.
120 int64_t Length = MI->getOperand(2).getImm();
121 unsigned FI1 = MI->getOperand(0).getIndex();
122 unsigned FI2 = MI->getOperand(3).getIndex();
123 if (MFI->getObjectSize(FI1) != Length ||
124 MFI->getObjectSize(FI2) != Length)
125 return false;
126
127 DestFrameIndex = FI1;
128 SrcFrameIndex = FI2;
129 return true;
130}
131
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000132bool SystemZInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,
133 MachineBasicBlock *&TBB,
134 MachineBasicBlock *&FBB,
135 SmallVectorImpl<MachineOperand> &Cond,
136 bool AllowModify) const {
137 // Most of the code and comments here are boilerplate.
138
139 // Start from the bottom of the block and work up, examining the
140 // terminator instructions.
141 MachineBasicBlock::iterator I = MBB.end();
142 while (I != MBB.begin()) {
143 --I;
144 if (I->isDebugValue())
145 continue;
146
147 // Working from the bottom, when we see a non-terminator instruction, we're
148 // done.
149 if (!isUnpredicatedTerminator(I))
150 break;
151
152 // A terminator that isn't a branch can't easily be handled by this
153 // analysis.
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000154 if (!I->isBranch())
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000155 return true;
156
157 // Can't handle indirect branches.
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000158 SystemZII::Branch Branch(getBranchInfo(I));
159 if (!Branch.Target->isMBB())
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000160 return true;
161
Richard Sandiford0fb90ab2013-05-28 10:41:11 +0000162 // Punt on compound branches.
163 if (Branch.Type != SystemZII::BranchNormal)
164 return true;
165
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000166 if (Branch.CCMask == SystemZ::CCMASK_ANY) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000167 // Handle unconditional branches.
168 if (!AllowModify) {
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000169 TBB = Branch.Target->getMBB();
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000170 continue;
171 }
172
173 // If the block has any instructions after a JMP, delete them.
174 while (llvm::next(I) != MBB.end())
175 llvm::next(I)->eraseFromParent();
176
177 Cond.clear();
178 FBB = 0;
179
180 // Delete the JMP if it's equivalent to a fall-through.
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000181 if (MBB.isLayoutSuccessor(Branch.Target->getMBB())) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000182 TBB = 0;
183 I->eraseFromParent();
184 I = MBB.end();
185 continue;
186 }
187
188 // TBB is used to indicate the unconditinal destination.
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000189 TBB = Branch.Target->getMBB();
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000190 continue;
191 }
192
193 // Working from the bottom, handle the first conditional branch.
194 if (Cond.empty()) {
195 // FIXME: add X86-style branch swap
196 FBB = TBB;
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000197 TBB = Branch.Target->getMBB();
198 Cond.push_back(MachineOperand::CreateImm(Branch.CCMask));
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000199 continue;
200 }
201
202 // Handle subsequent conditional branches.
203 assert(Cond.size() == 1);
204 assert(TBB);
205
206 // Only handle the case where all conditional branches branch to the same
207 // destination.
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000208 if (TBB != Branch.Target->getMBB())
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000209 return true;
210
211 // If the conditions are the same, we can leave them alone.
212 unsigned OldCond = Cond[0].getImm();
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000213 if (OldCond == Branch.CCMask)
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000214 continue;
215
216 // FIXME: Try combining conditions like X86 does. Should be easy on Z!
217 }
218
219 return false;
220}
221
222unsigned SystemZInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
223 // Most of the code and comments here are boilerplate.
224 MachineBasicBlock::iterator I = MBB.end();
225 unsigned Count = 0;
226
227 while (I != MBB.begin()) {
228 --I;
229 if (I->isDebugValue())
230 continue;
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000231 if (!I->isBranch())
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000232 break;
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000233 if (!getBranchInfo(I).Target->isMBB())
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000234 break;
235 // Remove the branch.
236 I->eraseFromParent();
237 I = MBB.end();
238 ++Count;
239 }
240
241 return Count;
242}
243
244unsigned
245SystemZInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
246 MachineBasicBlock *FBB,
247 const SmallVectorImpl<MachineOperand> &Cond,
248 DebugLoc DL) const {
249 // In this function we output 32-bit branches, which should always
250 // have enough range. They can be shortened and relaxed by later code
251 // in the pipeline, if desired.
252
253 // Shouldn't be a fall through.
254 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
255 assert((Cond.size() == 1 || Cond.size() == 0) &&
256 "SystemZ branch conditions have one component!");
257
258 if (Cond.empty()) {
259 // Unconditional branch?
260 assert(!FBB && "Unconditional branch with multiple successors!");
Richard Sandiford312425f2013-05-20 14:23:08 +0000261 BuildMI(&MBB, DL, get(SystemZ::J)).addMBB(TBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000262 return 1;
263 }
264
265 // Conditional branch.
266 unsigned Count = 0;
267 unsigned CC = Cond[0].getImm();
Richard Sandiford312425f2013-05-20 14:23:08 +0000268 BuildMI(&MBB, DL, get(SystemZ::BRC)).addImm(CC).addMBB(TBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000269 ++Count;
270
271 if (FBB) {
272 // Two-way Conditional branch. Insert the second branch.
Richard Sandiford312425f2013-05-20 14:23:08 +0000273 BuildMI(&MBB, DL, get(SystemZ::J)).addMBB(FBB);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000274 ++Count;
275 }
276 return Count;
277}
278
279void
280SystemZInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
281 MachineBasicBlock::iterator MBBI, DebugLoc DL,
282 unsigned DestReg, unsigned SrcReg,
283 bool KillSrc) const {
284 // Split 128-bit GPR moves into two 64-bit moves. This handles ADDR128 too.
285 if (SystemZ::GR128BitRegClass.contains(DestReg, SrcReg)) {
286 copyPhysReg(MBB, MBBI, DL, RI.getSubReg(DestReg, SystemZ::subreg_high),
287 RI.getSubReg(SrcReg, SystemZ::subreg_high), KillSrc);
288 copyPhysReg(MBB, MBBI, DL, RI.getSubReg(DestReg, SystemZ::subreg_low),
289 RI.getSubReg(SrcReg, SystemZ::subreg_low), KillSrc);
290 return;
291 }
292
293 // Everything else needs only one instruction.
294 unsigned Opcode;
295 if (SystemZ::GR32BitRegClass.contains(DestReg, SrcReg))
296 Opcode = SystemZ::LR;
297 else if (SystemZ::GR64BitRegClass.contains(DestReg, SrcReg))
298 Opcode = SystemZ::LGR;
299 else if (SystemZ::FP32BitRegClass.contains(DestReg, SrcReg))
300 Opcode = SystemZ::LER;
301 else if (SystemZ::FP64BitRegClass.contains(DestReg, SrcReg))
302 Opcode = SystemZ::LDR;
303 else if (SystemZ::FP128BitRegClass.contains(DestReg, SrcReg))
304 Opcode = SystemZ::LXR;
305 else
306 llvm_unreachable("Impossible reg-to-reg copy");
307
308 BuildMI(MBB, MBBI, DL, get(Opcode), DestReg)
309 .addReg(SrcReg, getKillRegState(KillSrc));
310}
311
312void
313SystemZInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
314 MachineBasicBlock::iterator MBBI,
315 unsigned SrcReg, bool isKill,
316 int FrameIdx,
317 const TargetRegisterClass *RC,
318 const TargetRegisterInfo *TRI) const {
319 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
320
321 // Callers may expect a single instruction, so keep 128-bit moves
322 // together for now and lower them after register allocation.
323 unsigned LoadOpcode, StoreOpcode;
324 getLoadStoreOpcodes(RC, LoadOpcode, StoreOpcode);
325 addFrameReference(BuildMI(MBB, MBBI, DL, get(StoreOpcode))
326 .addReg(SrcReg, getKillRegState(isKill)), FrameIdx);
327}
328
329void
330SystemZInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
331 MachineBasicBlock::iterator MBBI,
332 unsigned DestReg, int FrameIdx,
333 const TargetRegisterClass *RC,
334 const TargetRegisterInfo *TRI) const {
335 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
336
337 // Callers may expect a single instruction, so keep 128-bit moves
338 // together for now and lower them after register allocation.
339 unsigned LoadOpcode, StoreOpcode;
340 getLoadStoreOpcodes(RC, LoadOpcode, StoreOpcode);
341 addFrameReference(BuildMI(MBB, MBBI, DL, get(LoadOpcode), DestReg),
342 FrameIdx);
343}
344
Richard Sandifordf6bae1e2013-07-02 15:28:56 +0000345// Return true if MI is a simple load or store with a 12-bit displacement
346// and no index. Flag is SimpleBDXLoad for loads and SimpleBDXStore for stores.
347static bool isSimpleBD12Move(const MachineInstr *MI, unsigned Flag) {
348 const MCInstrDesc &MCID = MI->getDesc();
349 return ((MCID.TSFlags & Flag) &&
350 isUInt<12>(MI->getOperand(2).getImm()) &&
351 MI->getOperand(3).getReg() == 0);
352}
353
Richard Sandifordf6bae1e2013-07-02 15:28:56 +0000354MachineInstr *
355SystemZInstrInfo::foldMemoryOperandImpl(MachineFunction &MF,
356 MachineInstr *MI,
357 const SmallVectorImpl<unsigned> &Ops,
358 int FrameIndex) const {
359 const MachineFrameInfo *MFI = MF.getFrameInfo();
360 unsigned Size = MFI->getObjectSize(FrameIndex);
361
362 // Eary exit for cases we don't care about
363 if (Ops.size() != 1)
364 return 0;
365
366 unsigned OpNum = Ops[0];
NAKAMURA Takumiddcba562013-07-03 02:20:49 +0000367 assert(Size == MF.getRegInfo()
368 .getRegClass(MI->getOperand(OpNum).getReg())->getSize() &&
Benjamin Kramer421c8fb2013-07-02 21:17:31 +0000369 "Invalid size combination");
Richard Sandifordf6bae1e2013-07-02 15:28:56 +0000370
371 // Look for cases where the source of a simple store or the destination
372 // of a simple load is being spilled. Try to use MVC instead.
373 //
374 // Although MVC is in practice a fast choice in these cases, it is still
375 // logically a bytewise copy. This means that we cannot use it if the
376 // load or store is volatile. It also means that the transformation is
377 // not valid in cases where the two memories partially overlap; however,
378 // that is not a problem here, because we know that one of the memories
379 // is a full frame index.
Richard Sandifordf6bae1e2013-07-02 15:28:56 +0000380 if (OpNum == 0 && MI->hasOneMemOperand()) {
381 MachineMemOperand *MMO = *MI->memoperands_begin();
382 if (MMO->getSize() == Size && !MMO->isVolatile()) {
383 // Handle conversion of loads.
Richard Sandiford8976ea72013-07-05 14:02:01 +0000384 if (isSimpleBD12Move(MI, SystemZII::SimpleBDXLoad)) {
Richard Sandifordf6bae1e2013-07-02 15:28:56 +0000385 return BuildMI(MF, MI->getDebugLoc(), get(SystemZ::MVC))
Richard Sandiford1ca6dea2013-07-05 14:31:24 +0000386 .addFrameIndex(FrameIndex).addImm(0).addImm(Size)
Richard Sandifordf6bae1e2013-07-02 15:28:56 +0000387 .addOperand(MI->getOperand(1)).addImm(MI->getOperand(2).getImm())
Richard Sandiford1ca6dea2013-07-05 14:31:24 +0000388 .addMemOperand(MMO);
Richard Sandifordf6bae1e2013-07-02 15:28:56 +0000389 }
390 // Handle conversion of stores.
Richard Sandiford8976ea72013-07-05 14:02:01 +0000391 if (isSimpleBD12Move(MI, SystemZII::SimpleBDXStore)) {
Richard Sandifordf6bae1e2013-07-02 15:28:56 +0000392 return BuildMI(MF, MI->getDebugLoc(), get(SystemZ::MVC))
393 .addOperand(MI->getOperand(1)).addImm(MI->getOperand(2).getImm())
Richard Sandiford1ca6dea2013-07-05 14:31:24 +0000394 .addImm(Size).addFrameIndex(FrameIndex).addImm(0)
395 .addMemOperand(MMO);
Richard Sandifordf6bae1e2013-07-02 15:28:56 +0000396 }
397 }
398 }
399
Richard Sandiforded1fab62013-07-03 10:10:02 +0000400 // If the spilled operand is the final one, try to change <INSN>R
401 // into <INSN>.
402 int MemOpcode = SystemZ::getMemOpcode(MI->getOpcode());
403 if (MemOpcode >= 0) {
404 unsigned NumOps = MI->getNumExplicitOperands();
405 if (OpNum == NumOps - 1) {
406 const MCInstrDesc &MemDesc = get(MemOpcode);
407 uint64_t AccessBytes = SystemZII::getAccessSize(MemDesc.TSFlags);
408 assert(AccessBytes != 0 && "Size of access should be known");
409 assert(AccessBytes <= Size && "Access outside the frame index");
410 uint64_t Offset = Size - AccessBytes;
Richard Sandiforded1fab62013-07-03 10:10:02 +0000411 MachineInstrBuilder MIB = BuildMI(MF, MI->getDebugLoc(), get(MemOpcode));
412 for (unsigned I = 0; I < OpNum; ++I)
413 MIB.addOperand(MI->getOperand(I));
414 MIB.addFrameIndex(FrameIndex).addImm(Offset);
415 if (MemDesc.TSFlags & SystemZII::HasIndex)
416 MIB.addReg(0);
Richard Sandiforded1fab62013-07-03 10:10:02 +0000417 return MIB;
418 }
419 }
420
Richard Sandifordf6bae1e2013-07-02 15:28:56 +0000421 return 0;
422}
423
424MachineInstr *
425SystemZInstrInfo::foldMemoryOperandImpl(MachineFunction &MF, MachineInstr* MI,
426 const SmallVectorImpl<unsigned> &Ops,
427 MachineInstr* LoadMI) const {
428 return 0;
429}
430
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000431bool
432SystemZInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const {
433 switch (MI->getOpcode()) {
434 case SystemZ::L128:
435 splitMove(MI, SystemZ::LG);
436 return true;
437
438 case SystemZ::ST128:
439 splitMove(MI, SystemZ::STG);
440 return true;
441
442 case SystemZ::LX:
443 splitMove(MI, SystemZ::LD);
444 return true;
445
446 case SystemZ::STX:
447 splitMove(MI, SystemZ::STD);
448 return true;
449
450 case SystemZ::ADJDYNALLOC:
451 splitAdjDynAlloc(MI);
452 return true;
453
454 default:
455 return false;
456 }
457}
458
459bool SystemZInstrInfo::
460ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
461 assert(Cond.size() == 1 && "Invalid branch condition!");
462 Cond[0].setImm(Cond[0].getImm() ^ SystemZ::CCMASK_ANY);
463 return false;
464}
465
Richard Sandiford312425f2013-05-20 14:23:08 +0000466uint64_t SystemZInstrInfo::getInstSizeInBytes(const MachineInstr *MI) const {
467 if (MI->getOpcode() == TargetOpcode::INLINEASM) {
468 const MachineFunction *MF = MI->getParent()->getParent();
469 const char *AsmStr = MI->getOperand(0).getSymbolName();
470 return getInlineAsmLength(AsmStr, *MF->getTarget().getMCAsmInfo());
471 }
472 return MI->getDesc().getSize();
473}
474
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000475SystemZII::Branch
476SystemZInstrInfo::getBranchInfo(const MachineInstr *MI) const {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000477 switch (MI->getOpcode()) {
478 case SystemZ::BR:
479 case SystemZ::J:
480 case SystemZ::JG:
Richard Sandiford0fb90ab2013-05-28 10:41:11 +0000481 return SystemZII::Branch(SystemZII::BranchNormal, SystemZ::CCMASK_ANY,
482 &MI->getOperand(0));
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000483
484 case SystemZ::BRC:
485 case SystemZ::BRCL:
Richard Sandiford0fb90ab2013-05-28 10:41:11 +0000486 return SystemZII::Branch(SystemZII::BranchNormal,
487 MI->getOperand(0).getImm(), &MI->getOperand(1));
488
Richard Sandiforde1d9f002013-05-29 11:58:52 +0000489 case SystemZ::CIJ:
Richard Sandiford0fb90ab2013-05-28 10:41:11 +0000490 case SystemZ::CRJ:
491 return SystemZII::Branch(SystemZII::BranchC, MI->getOperand(2).getImm(),
492 &MI->getOperand(3));
493
Richard Sandiforde1d9f002013-05-29 11:58:52 +0000494 case SystemZ::CGIJ:
Richard Sandiford0fb90ab2013-05-28 10:41:11 +0000495 case SystemZ::CGRJ:
496 return SystemZII::Branch(SystemZII::BranchCG, MI->getOperand(2).getImm(),
497 &MI->getOperand(3));
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000498
499 default:
Richard Sandiford53c9efd2013-05-28 10:13:54 +0000500 llvm_unreachable("Unrecognized branch opcode");
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000501 }
502}
503
504void SystemZInstrInfo::getLoadStoreOpcodes(const TargetRegisterClass *RC,
505 unsigned &LoadOpcode,
506 unsigned &StoreOpcode) const {
507 if (RC == &SystemZ::GR32BitRegClass || RC == &SystemZ::ADDR32BitRegClass) {
508 LoadOpcode = SystemZ::L;
509 StoreOpcode = SystemZ::ST32;
510 } else if (RC == &SystemZ::GR64BitRegClass ||
511 RC == &SystemZ::ADDR64BitRegClass) {
512 LoadOpcode = SystemZ::LG;
513 StoreOpcode = SystemZ::STG;
514 } else if (RC == &SystemZ::GR128BitRegClass ||
515 RC == &SystemZ::ADDR128BitRegClass) {
516 LoadOpcode = SystemZ::L128;
517 StoreOpcode = SystemZ::ST128;
518 } else if (RC == &SystemZ::FP32BitRegClass) {
519 LoadOpcode = SystemZ::LE;
520 StoreOpcode = SystemZ::STE;
521 } else if (RC == &SystemZ::FP64BitRegClass) {
522 LoadOpcode = SystemZ::LD;
523 StoreOpcode = SystemZ::STD;
524 } else if (RC == &SystemZ::FP128BitRegClass) {
525 LoadOpcode = SystemZ::LX;
526 StoreOpcode = SystemZ::STX;
527 } else
528 llvm_unreachable("Unsupported regclass to load or store");
529}
530
531unsigned SystemZInstrInfo::getOpcodeForOffset(unsigned Opcode,
532 int64_t Offset) const {
533 const MCInstrDesc &MCID = get(Opcode);
534 int64_t Offset2 = (MCID.TSFlags & SystemZII::Is128Bit ? Offset + 8 : Offset);
535 if (isUInt<12>(Offset) && isUInt<12>(Offset2)) {
536 // Get the instruction to use for unsigned 12-bit displacements.
537 int Disp12Opcode = SystemZ::getDisp12Opcode(Opcode);
538 if (Disp12Opcode >= 0)
539 return Disp12Opcode;
540
541 // All address-related instructions can use unsigned 12-bit
542 // displacements.
543 return Opcode;
544 }
545 if (isInt<20>(Offset) && isInt<20>(Offset2)) {
546 // Get the instruction to use for signed 20-bit displacements.
547 int Disp20Opcode = SystemZ::getDisp20Opcode(Opcode);
548 if (Disp20Opcode >= 0)
549 return Disp20Opcode;
550
551 // Check whether Opcode allows signed 20-bit displacements.
552 if (MCID.TSFlags & SystemZII::Has20BitOffset)
553 return Opcode;
554 }
555 return 0;
556}
557
Richard Sandiforde1d9f002013-05-29 11:58:52 +0000558unsigned SystemZInstrInfo::getCompareAndBranch(unsigned Opcode,
559 const MachineInstr *MI) const {
Richard Sandiford0fb90ab2013-05-28 10:41:11 +0000560 switch (Opcode) {
561 case SystemZ::CR:
562 return SystemZ::CRJ;
563 case SystemZ::CGR:
564 return SystemZ::CGRJ;
Richard Sandiforde1d9f002013-05-29 11:58:52 +0000565 case SystemZ::CHI:
566 return MI && isInt<8>(MI->getOperand(1).getImm()) ? SystemZ::CIJ : 0;
567 case SystemZ::CGHI:
568 return MI && isInt<8>(MI->getOperand(1).getImm()) ? SystemZ::CGIJ : 0;
Richard Sandiford0fb90ab2013-05-28 10:41:11 +0000569 default:
570 return 0;
571 }
572}
573
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000574void SystemZInstrInfo::loadImmediate(MachineBasicBlock &MBB,
575 MachineBasicBlock::iterator MBBI,
576 unsigned Reg, uint64_t Value) const {
577 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
578 unsigned Opcode;
579 if (isInt<16>(Value))
580 Opcode = SystemZ::LGHI;
581 else if (SystemZ::isImmLL(Value))
582 Opcode = SystemZ::LLILL;
583 else if (SystemZ::isImmLH(Value)) {
584 Opcode = SystemZ::LLILH;
585 Value >>= 16;
586 } else {
587 assert(isInt<32>(Value) && "Huge values not handled yet");
588 Opcode = SystemZ::LGFI;
589 }
590 BuildMI(MBB, MBBI, DL, get(Opcode), Reg).addImm(Value);
591}