blob: c5f121757e62352b098c55c57968ca0294c54d8e [file] [log] [blame]
Tom Stellard1aaad692014-07-21 16:55:33 +00001//===-- SIShrinkInstructions.cpp - Shrink Instructions --------------------===//
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/// The pass tries to use the 32-bit encoding for instructions when possible.
9//===----------------------------------------------------------------------===//
10//
11
12#include "AMDGPU.h"
Marek Olsaka93603d2015-01-15 18:42:51 +000013#include "AMDGPUMCInstLower.h"
Eric Christopherd9134482014-08-04 21:25:23 +000014#include "AMDGPUSubtarget.h"
Tom Stellard1aaad692014-07-21 16:55:33 +000015#include "SIInstrInfo.h"
16#include "llvm/ADT/Statistic.h"
17#include "llvm/CodeGen/MachineFunctionPass.h"
18#include "llvm/CodeGen/MachineInstrBuilder.h"
19#include "llvm/CodeGen/MachineRegisterInfo.h"
Tom Stellard6407e1e2014-08-01 00:32:33 +000020#include "llvm/IR/Constants.h"
Tom Stellard1aaad692014-07-21 16:55:33 +000021#include "llvm/IR/Function.h"
Benjamin Kramer16132e62015-03-23 18:07:13 +000022#include "llvm/IR/LLVMContext.h"
Tom Stellard1aaad692014-07-21 16:55:33 +000023#include "llvm/Support/Debug.h"
Benjamin Kramer16132e62015-03-23 18:07:13 +000024#include "llvm/Support/raw_ostream.h"
Tom Stellard1aaad692014-07-21 16:55:33 +000025#include "llvm/Target/TargetMachine.h"
26
27#define DEBUG_TYPE "si-shrink-instructions"
28
29STATISTIC(NumInstructionsShrunk,
30 "Number of 64-bit instruction reduced to 32-bit.");
Tom Stellard6407e1e2014-08-01 00:32:33 +000031STATISTIC(NumLiteralConstantsFolded,
32 "Number of literal constants folded into 32-bit instructions.");
Tom Stellard1aaad692014-07-21 16:55:33 +000033
Tom Stellard1aaad692014-07-21 16:55:33 +000034using namespace llvm;
35
36namespace {
37
38class SIShrinkInstructions : public MachineFunctionPass {
39public:
40 static char ID;
41
42public:
43 SIShrinkInstructions() : MachineFunctionPass(ID) {
44 }
45
Craig Topperfd38cbe2014-08-30 16:48:34 +000046 bool runOnMachineFunction(MachineFunction &MF) override;
Tom Stellard1aaad692014-07-21 16:55:33 +000047
Mehdi Amini117296c2016-10-01 02:56:57 +000048 StringRef getPassName() const override { return "SI Shrink Instructions"; }
Tom Stellard1aaad692014-07-21 16:55:33 +000049
Craig Topperfd38cbe2014-08-30 16:48:34 +000050 void getAnalysisUsage(AnalysisUsage &AU) const override {
Tom Stellard1aaad692014-07-21 16:55:33 +000051 AU.setPreservesCFG();
52 MachineFunctionPass::getAnalysisUsage(AU);
53 }
54};
55
56} // End anonymous namespace.
57
Matt Arsenaultc3a01ec2016-06-09 23:18:47 +000058INITIALIZE_PASS(SIShrinkInstructions, DEBUG_TYPE,
59 "SI Shrink Instructions", false, false)
Tom Stellard1aaad692014-07-21 16:55:33 +000060
61char SIShrinkInstructions::ID = 0;
62
63FunctionPass *llvm::createSIShrinkInstructionsPass() {
64 return new SIShrinkInstructions();
65}
66
67static bool isVGPR(const MachineOperand *MO, const SIRegisterInfo &TRI,
68 const MachineRegisterInfo &MRI) {
69 if (!MO->isReg())
70 return false;
71
72 if (TargetRegisterInfo::isVirtualRegister(MO->getReg()))
73 return TRI.hasVGPRs(MRI.getRegClass(MO->getReg()));
74
75 return TRI.hasVGPRs(TRI.getPhysRegClass(MO->getReg()));
76}
77
78static bool canShrink(MachineInstr &MI, const SIInstrInfo *TII,
79 const SIRegisterInfo &TRI,
80 const MachineRegisterInfo &MRI) {
81
82 const MachineOperand *Src2 = TII->getNamedOperand(MI, AMDGPU::OpName::src2);
83 // Can't shrink instruction with three operands.
Tom Stellard5224df32015-03-10 16:16:44 +000084 // FIXME: v_cndmask_b32 has 3 operands and is shrinkable, but we need to add
85 // a special case for it. It can only be shrunk if the third operand
86 // is vcc. We should handle this the same way we handle vopc, by addding
Matt Arsenault28bd4cb2017-01-11 22:35:17 +000087 // a register allocation hint pre-regalloc and then do the shrinking
Tom Stellard5224df32015-03-10 16:16:44 +000088 // post-regalloc.
Tom Stellarddb5a11f2015-07-13 15:47:57 +000089 if (Src2) {
Tom Stellarde48fe2a2015-07-14 14:15:03 +000090 switch (MI.getOpcode()) {
91 default: return false;
Tom Stellarddb5a11f2015-07-13 15:47:57 +000092
Matt Arsenault24a12732017-01-11 22:58:12 +000093 case AMDGPU::V_ADDC_U32_e64:
94 case AMDGPU::V_SUBB_U32_e64:
95 // Additional verification is needed for sdst/src2.
96 return true;
97
Tom Stellarde48fe2a2015-07-14 14:15:03 +000098 case AMDGPU::V_MAC_F32_e64:
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +000099 case AMDGPU::V_MAC_F16_e64:
Tom Stellarde48fe2a2015-07-14 14:15:03 +0000100 if (!isVGPR(Src2, TRI, MRI) ||
101 TII->hasModifiersSet(MI, AMDGPU::OpName::src2_modifiers))
102 return false;
103 break;
104
105 case AMDGPU::V_CNDMASK_B32_e64:
106 break;
107 }
Tom Stellarddb5a11f2015-07-13 15:47:57 +0000108 }
Tom Stellard1aaad692014-07-21 16:55:33 +0000109
110 const MachineOperand *Src1 = TII->getNamedOperand(MI, AMDGPU::OpName::src1);
111 const MachineOperand *Src1Mod =
112 TII->getNamedOperand(MI, AMDGPU::OpName::src1_modifiers);
113
Tom Stellardb4a313a2014-08-01 00:32:39 +0000114 if (Src1 && (!isVGPR(Src1, TRI, MRI) || (Src1Mod && Src1Mod->getImm() != 0)))
Tom Stellard1aaad692014-07-21 16:55:33 +0000115 return false;
116
Matt Arsenault8943d242014-10-17 18:00:45 +0000117 // We don't need to check src0, all input types are legal, so just make sure
118 // src0 isn't using any modifiers.
119 if (TII->hasModifiersSet(MI, AMDGPU::OpName::src0_modifiers))
Tom Stellard1aaad692014-07-21 16:55:33 +0000120 return false;
121
122 // Check output modifiers
Matt Arsenault8943d242014-10-17 18:00:45 +0000123 if (TII->hasModifiersSet(MI, AMDGPU::OpName::omod))
Tom Stellard1aaad692014-07-21 16:55:33 +0000124 return false;
125
Matt Arsenault8226fc42016-03-02 23:00:21 +0000126 return !TII->hasModifiersSet(MI, AMDGPU::OpName::clamp);
Tom Stellard1aaad692014-07-21 16:55:33 +0000127}
128
Tom Stellard6407e1e2014-08-01 00:32:33 +0000129/// \brief This function checks \p MI for operands defined by a move immediate
130/// instruction and then folds the literal constant into the instruction if it
131/// can. This function assumes that \p MI is a VOP1, VOP2, or VOPC instruction
132/// and will only fold literal constants if we are still in SSA.
133static void foldImmediates(MachineInstr &MI, const SIInstrInfo *TII,
134 MachineRegisterInfo &MRI, bool TryToCommute = true) {
135
136 if (!MRI.isSSA())
137 return;
138
Matt Arsenault3add6432015-10-20 04:35:43 +0000139 assert(TII->isVOP1(MI) || TII->isVOP2(MI) || TII->isVOPC(MI));
Tom Stellard6407e1e2014-08-01 00:32:33 +0000140
Matt Arsenault11a4d672015-02-13 19:05:03 +0000141 int Src0Idx = AMDGPU::getNamedOperandIdx(MI.getOpcode(), AMDGPU::OpName::src0);
Tom Stellard6407e1e2014-08-01 00:32:33 +0000142
143 // Only one literal constant is allowed per instruction, so if src0 is a
144 // literal constant then we can't do any folding.
Matt Arsenault4bd72362016-12-10 00:39:12 +0000145 if (TII->isLiteralConstant(MI, Src0Idx))
Tom Stellard6407e1e2014-08-01 00:32:33 +0000146 return;
147
Tom Stellard6407e1e2014-08-01 00:32:33 +0000148 // Try to fold Src0
Matt Arsenault4bd72362016-12-10 00:39:12 +0000149 MachineOperand &Src0 = MI.getOperand(Src0Idx);
Tom Stellardab6e9c02015-07-09 16:30:36 +0000150 if (Src0.isReg() && MRI.hasOneUse(Src0.getReg())) {
Matt Arsenault11a4d672015-02-13 19:05:03 +0000151 unsigned Reg = Src0.getReg();
Tom Stellard6407e1e2014-08-01 00:32:33 +0000152 MachineInstr *Def = MRI.getUniqueVRegDef(Reg);
153 if (Def && Def->isMoveImmediate()) {
154 MachineOperand &MovSrc = Def->getOperand(1);
155 bool ConstantFolded = false;
156
Matt Arsenault124384f2016-09-09 23:32:53 +0000157 if (MovSrc.isImm() && (isInt<32>(MovSrc.getImm()) ||
158 isUInt<32>(MovSrc.getImm()))) {
Matt Arsenault11a4d672015-02-13 19:05:03 +0000159 Src0.ChangeToImmediate(MovSrc.getImm());
Tom Stellard6407e1e2014-08-01 00:32:33 +0000160 ConstantFolded = true;
Tom Stellard6407e1e2014-08-01 00:32:33 +0000161 }
162 if (ConstantFolded) {
Tom Stellard6407e1e2014-08-01 00:32:33 +0000163 if (MRI.use_empty(Reg))
164 Def->eraseFromParent();
165 ++NumLiteralConstantsFolded;
166 return;
167 }
168 }
169 }
170
171 // We have failed to fold src0, so commute the instruction and try again.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000172 if (TryToCommute && MI.isCommutable() && TII->commuteInstruction(MI))
Tom Stellard6407e1e2014-08-01 00:32:33 +0000173 foldImmediates(MI, TII, MRI, false);
174
175}
176
Matt Arsenault6942d1a2015-08-08 00:41:45 +0000177// Copy MachineOperand with all flags except setting it as implicit.
Matt Arsenault22096252016-06-20 18:34:00 +0000178static void copyFlagsToImplicitVCC(MachineInstr &MI,
179 const MachineOperand &Orig) {
180
181 for (MachineOperand &Use : MI.implicit_operands()) {
Matt Arsenault24a12732017-01-11 22:58:12 +0000182 if (Use.isUse() && Use.getReg() == AMDGPU::VCC) {
Matt Arsenault22096252016-06-20 18:34:00 +0000183 Use.setIsUndef(Orig.isUndef());
184 Use.setIsKill(Orig.isKill());
185 return;
186 }
187 }
Matt Arsenault6942d1a2015-08-08 00:41:45 +0000188}
189
Matt Arsenaultb6be2022016-04-16 01:46:49 +0000190static bool isKImmOperand(const SIInstrInfo *TII, const MachineOperand &Src) {
Matt Arsenault4bd72362016-12-10 00:39:12 +0000191 return isInt<16>(Src.getImm()) &&
192 !TII->isInlineConstant(*Src.getParent(),
193 Src.getParent()->getOperandNo(&Src));
Matt Arsenaultb6be2022016-04-16 01:46:49 +0000194}
195
Matt Arsenault7ccf6cd2016-09-16 21:41:16 +0000196static bool isKUImmOperand(const SIInstrInfo *TII, const MachineOperand &Src) {
Matt Arsenault4bd72362016-12-10 00:39:12 +0000197 return isUInt<16>(Src.getImm()) &&
198 !TII->isInlineConstant(*Src.getParent(),
199 Src.getParent()->getOperandNo(&Src));
Matt Arsenault7ccf6cd2016-09-16 21:41:16 +0000200}
201
202static bool isKImmOrKUImmOperand(const SIInstrInfo *TII,
203 const MachineOperand &Src,
204 bool &IsUnsigned) {
205 if (isInt<16>(Src.getImm())) {
206 IsUnsigned = false;
Matt Arsenault4bd72362016-12-10 00:39:12 +0000207 return !TII->isInlineConstant(Src);
Matt Arsenault7ccf6cd2016-09-16 21:41:16 +0000208 }
209
210 if (isUInt<16>(Src.getImm())) {
211 IsUnsigned = true;
Matt Arsenault4bd72362016-12-10 00:39:12 +0000212 return !TII->isInlineConstant(Src);
Matt Arsenault7ccf6cd2016-09-16 21:41:16 +0000213 }
214
215 return false;
216}
217
Matt Arsenault663ab8c2016-11-01 23:14:20 +0000218/// \returns true if the constant in \p Src should be replaced with a bitreverse
219/// of an inline immediate.
220static bool isReverseInlineImm(const SIInstrInfo *TII,
221 const MachineOperand &Src,
222 int32_t &ReverseImm) {
Matt Arsenault4bd72362016-12-10 00:39:12 +0000223 if (!isInt<32>(Src.getImm()) || TII->isInlineConstant(Src))
Matt Arsenault663ab8c2016-11-01 23:14:20 +0000224 return false;
225
226 ReverseImm = reverseBits<int32_t>(static_cast<int32_t>(Src.getImm()));
227 return ReverseImm >= -16 && ReverseImm <= 64;
228}
229
Matt Arsenault5ffe3e12016-09-03 17:25:39 +0000230/// Copy implicit register operands from specified instruction to this
231/// instruction that are not part of the instruction definition.
232static void copyExtraImplicitOps(MachineInstr &NewMI, MachineFunction &MF,
233 const MachineInstr &MI) {
234 for (unsigned i = MI.getDesc().getNumOperands() +
235 MI.getDesc().getNumImplicitUses() +
236 MI.getDesc().getNumImplicitDefs(), e = MI.getNumOperands();
237 i != e; ++i) {
238 const MachineOperand &MO = MI.getOperand(i);
239 if ((MO.isReg() && MO.isImplicit()) || MO.isRegMask())
240 NewMI.addOperand(MF, MO);
241 }
242}
243
Matt Arsenault7ccf6cd2016-09-16 21:41:16 +0000244static void shrinkScalarCompare(const SIInstrInfo *TII, MachineInstr &MI) {
245 // cmpk instructions do scc = dst <cc op> imm16, so commute the instruction to
246 // get constants on the RHS.
247 if (!MI.getOperand(0).isReg())
248 TII->commuteInstruction(MI, false, 0, 1);
249
250 const MachineOperand &Src1 = MI.getOperand(1);
251 if (!Src1.isImm())
252 return;
253
254 int SOPKOpc = AMDGPU::getSOPKOp(MI.getOpcode());
255 if (SOPKOpc == -1)
256 return;
257
258 // eq/ne is special because the imm16 can be treated as signed or unsigned,
Matt Arsenault5d8eb252016-09-30 01:50:20 +0000259 // and initially selectd to the unsigned versions.
260 if (SOPKOpc == AMDGPU::S_CMPK_EQ_U32 || SOPKOpc == AMDGPU::S_CMPK_LG_U32) {
Matt Arsenault7ccf6cd2016-09-16 21:41:16 +0000261 bool HasUImm;
262 if (isKImmOrKUImmOperand(TII, Src1, HasUImm)) {
Matt Arsenault5d8eb252016-09-30 01:50:20 +0000263 if (!HasUImm) {
264 SOPKOpc = (SOPKOpc == AMDGPU::S_CMPK_EQ_U32) ?
265 AMDGPU::S_CMPK_EQ_I32 : AMDGPU::S_CMPK_LG_I32;
Matt Arsenault7ccf6cd2016-09-16 21:41:16 +0000266 }
267
268 MI.setDesc(TII->get(SOPKOpc));
269 }
270
271 return;
272 }
273
274 const MCInstrDesc &NewDesc = TII->get(SOPKOpc);
275
276 if ((TII->sopkIsZext(SOPKOpc) && isKUImmOperand(TII, Src1)) ||
277 (!TII->sopkIsZext(SOPKOpc) && isKImmOperand(TII, Src1))) {
278 MI.setDesc(NewDesc);
279 }
280}
281
Tom Stellard1aaad692014-07-21 16:55:33 +0000282bool SIShrinkInstructions::runOnMachineFunction(MachineFunction &MF) {
Andrew Kaylor7de74af2016-04-25 22:23:44 +0000283 if (skipFunction(*MF.getFunction()))
284 return false;
285
Tom Stellard1aaad692014-07-21 16:55:33 +0000286 MachineRegisterInfo &MRI = MF.getRegInfo();
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000287 const SISubtarget &ST = MF.getSubtarget<SISubtarget>();
288 const SIInstrInfo *TII = ST.getInstrInfo();
Tom Stellard1aaad692014-07-21 16:55:33 +0000289 const SIRegisterInfo &TRI = TII->getRegisterInfo();
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000290
Tom Stellard1aaad692014-07-21 16:55:33 +0000291 std::vector<unsigned> I1Defs;
292
293 for (MachineFunction::iterator BI = MF.begin(), BE = MF.end();
294 BI != BE; ++BI) {
295
296 MachineBasicBlock &MBB = *BI;
297 MachineBasicBlock::iterator I, Next;
298 for (I = MBB.begin(); I != MBB.end(); I = Next) {
299 Next = std::next(I);
300 MachineInstr &MI = *I;
301
Matt Arsenault9a19c242016-03-11 07:42:49 +0000302 if (MI.getOpcode() == AMDGPU::V_MOV_B32_e32) {
303 // If this has a literal constant source that is the same as the
304 // reversed bits of an inline immediate, replace with a bitreverse of
305 // that constant. This saves 4 bytes in the common case of materializing
306 // sign bits.
307
308 // Test if we are after regalloc. We only want to do this after any
309 // optimizations happen because this will confuse them.
310 // XXX - not exactly a check for post-regalloc run.
311 MachineOperand &Src = MI.getOperand(1);
312 if (Src.isImm() &&
313 TargetRegisterInfo::isPhysicalRegister(MI.getOperand(0).getReg())) {
Matt Arsenault663ab8c2016-11-01 23:14:20 +0000314 int32_t ReverseImm;
315 if (isReverseInlineImm(TII, Src, ReverseImm)) {
316 MI.setDesc(TII->get(AMDGPU::V_BFREV_B32_e32));
317 Src.setImm(ReverseImm);
318 continue;
Matt Arsenault9a19c242016-03-11 07:42:49 +0000319 }
320 }
321 }
322
Matt Arsenault074ea282016-04-25 19:53:22 +0000323 // Combine adjacent s_nops to use the immediate operand encoding how long
324 // to wait.
325 //
326 // s_nop N
327 // s_nop M
328 // =>
329 // s_nop (N + M)
330 if (MI.getOpcode() == AMDGPU::S_NOP &&
331 Next != MBB.end() &&
332 (*Next).getOpcode() == AMDGPU::S_NOP) {
333
334 MachineInstr &NextMI = *Next;
335 // The instruction encodes the amount to wait with an offset of 1,
336 // i.e. 0 is wait 1 cycle. Convert both to cycles and then convert back
337 // after adding.
338 uint8_t Nop0 = MI.getOperand(0).getImm() + 1;
339 uint8_t Nop1 = NextMI.getOperand(0).getImm() + 1;
340
341 // Make sure we don't overflow the bounds.
342 if (Nop0 + Nop1 <= 8) {
343 NextMI.getOperand(0).setImm(Nop0 + Nop1 - 1);
344 MI.eraseFromParent();
345 }
346
347 continue;
348 }
349
Matt Arsenaultb6be2022016-04-16 01:46:49 +0000350 // FIXME: We also need to consider movs of constant operands since
351 // immediate operands are not folded if they have more than one use, and
352 // the operand folding pass is unaware if the immediate will be free since
353 // it won't know if the src == dest constraint will end up being
354 // satisfied.
355 if (MI.getOpcode() == AMDGPU::S_ADD_I32 ||
356 MI.getOpcode() == AMDGPU::S_MUL_I32) {
Matt Arsenaultbe90f702016-09-08 17:35:41 +0000357 const MachineOperand *Dest = &MI.getOperand(0);
358 MachineOperand *Src0 = &MI.getOperand(1);
359 MachineOperand *Src1 = &MI.getOperand(2);
360
361 if (!Src0->isReg() && Src1->isReg()) {
362 if (TII->commuteInstruction(MI, false, 1, 2))
363 std::swap(Src0, Src1);
364 }
Matt Arsenaultb6be2022016-04-16 01:46:49 +0000365
366 // FIXME: This could work better if hints worked with subregisters. If
367 // we have a vector add of a constant, we usually don't get the correct
368 // allocation due to the subregister usage.
Matt Arsenaultbe90f702016-09-08 17:35:41 +0000369 if (TargetRegisterInfo::isVirtualRegister(Dest->getReg()) &&
370 Src0->isReg()) {
371 MRI.setRegAllocationHint(Dest->getReg(), 0, Src0->getReg());
372 MRI.setRegAllocationHint(Src0->getReg(), 0, Dest->getReg());
Matt Arsenaultb6be2022016-04-16 01:46:49 +0000373 continue;
374 }
375
Matt Arsenaultbe90f702016-09-08 17:35:41 +0000376 if (Src0->isReg() && Src0->getReg() == Dest->getReg()) {
377 if (Src1->isImm() && isKImmOperand(TII, *Src1)) {
Matt Arsenaultb6be2022016-04-16 01:46:49 +0000378 unsigned Opc = (MI.getOpcode() == AMDGPU::S_ADD_I32) ?
379 AMDGPU::S_ADDK_I32 : AMDGPU::S_MULK_I32;
380
381 MI.setDesc(TII->get(Opc));
382 MI.tieOperands(0, 1);
383 }
384 }
385 }
386
Matt Arsenault7ccf6cd2016-09-16 21:41:16 +0000387 // Try to use s_cmpk_*
388 if (MI.isCompare() && TII->isSOPC(MI)) {
389 shrinkScalarCompare(TII, MI);
390 continue;
391 }
392
Matt Arsenaultb6be2022016-04-16 01:46:49 +0000393 // Try to use S_MOVK_I32, which will save 4 bytes for small immediates.
394 if (MI.getOpcode() == AMDGPU::S_MOV_B32) {
Matt Arsenault663ab8c2016-11-01 23:14:20 +0000395 const MachineOperand &Dst = MI.getOperand(0);
396 MachineOperand &Src = MI.getOperand(1);
Matt Arsenaultb6be2022016-04-16 01:46:49 +0000397
Matt Arsenault663ab8c2016-11-01 23:14:20 +0000398 if (Src.isImm() &&
399 TargetRegisterInfo::isPhysicalRegister(Dst.getReg())) {
400 int32_t ReverseImm;
401 if (isKImmOperand(TII, Src))
402 MI.setDesc(TII->get(AMDGPU::S_MOVK_I32));
403 else if (isReverseInlineImm(TII, Src, ReverseImm)) {
404 MI.setDesc(TII->get(AMDGPU::S_BREV_B32));
405 Src.setImm(ReverseImm);
406 }
407 }
Matt Arsenaultb6be2022016-04-16 01:46:49 +0000408
409 continue;
410 }
411
Tom Stellard86d12eb2014-08-01 00:32:28 +0000412 if (!TII->hasVALU32BitEncoding(MI.getOpcode()))
Tom Stellard1aaad692014-07-21 16:55:33 +0000413 continue;
414
415 if (!canShrink(MI, TII, TRI, MRI)) {
Matt Arsenault66524032014-09-16 18:00:23 +0000416 // Try commuting the instruction and see if that enables us to shrink
Tom Stellard1aaad692014-07-21 16:55:33 +0000417 // it.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000418 if (!MI.isCommutable() || !TII->commuteInstruction(MI) ||
Tom Stellard1aaad692014-07-21 16:55:33 +0000419 !canShrink(MI, TII, TRI, MRI))
420 continue;
421 }
422
Marek Olsaka93603d2015-01-15 18:42:51 +0000423 // getVOPe32 could be -1 here if we started with an instruction that had
Tom Stellard86d12eb2014-08-01 00:32:28 +0000424 // a 32-bit encoding and then commuted it to an instruction that did not.
Marek Olsaka93603d2015-01-15 18:42:51 +0000425 if (!TII->hasVALU32BitEncoding(MI.getOpcode()))
Tom Stellard86d12eb2014-08-01 00:32:28 +0000426 continue;
427
Marek Olsaka93603d2015-01-15 18:42:51 +0000428 int Op32 = AMDGPU::getVOPe32(MI.getOpcode());
429
Tom Stellard1aaad692014-07-21 16:55:33 +0000430 if (TII->isVOPC(Op32)) {
431 unsigned DstReg = MI.getOperand(0).getReg();
432 if (TargetRegisterInfo::isVirtualRegister(DstReg)) {
Matt Arsenault6942d1a2015-08-08 00:41:45 +0000433 // VOPC instructions can only write to the VCC register. We can't
434 // force them to use VCC here, because this is only one register and
435 // cannot deal with sequences which would require multiple copies of
436 // VCC, e.g. S_AND_B64 (vcc = V_CMP_...), (vcc = V_CMP_...)
Tom Stellard1aaad692014-07-21 16:55:33 +0000437 //
Matt Arsenaulta9627ae2014-09-21 17:27:32 +0000438 // So, instead of forcing the instruction to write to VCC, we provide
439 // a hint to the register allocator to use VCC and then we we will run
440 // this pass again after RA and shrink it if it outputs to VCC.
Tom Stellard1aaad692014-07-21 16:55:33 +0000441 MRI.setRegAllocationHint(MI.getOperand(0).getReg(), 0, AMDGPU::VCC);
442 continue;
443 }
444 if (DstReg != AMDGPU::VCC)
445 continue;
446 }
447
Tom Stellarde48fe2a2015-07-14 14:15:03 +0000448 if (Op32 == AMDGPU::V_CNDMASK_B32_e32) {
449 // We shrink V_CNDMASK_B32_e64 using regalloc hints like we do for VOPC
450 // instructions.
451 const MachineOperand *Src2 =
452 TII->getNamedOperand(MI, AMDGPU::OpName::src2);
453 if (!Src2->isReg())
454 continue;
455 unsigned SReg = Src2->getReg();
456 if (TargetRegisterInfo::isVirtualRegister(SReg)) {
457 MRI.setRegAllocationHint(SReg, 0, AMDGPU::VCC);
458 continue;
459 }
460 if (SReg != AMDGPU::VCC)
461 continue;
462 }
463
Matt Arsenault28bd4cb2017-01-11 22:35:17 +0000464 // Check for the bool flag output for instructions like V_ADD_I32_e64.
465 const MachineOperand *SDst = TII->getNamedOperand(MI,
466 AMDGPU::OpName::sdst);
Matt Arsenault28bd4cb2017-01-11 22:35:17 +0000467
Matt Arsenault24a12732017-01-11 22:58:12 +0000468 // Check the carry-in operand for v_addc_u32_e64.
469 const MachineOperand *Src2 = TII->getNamedOperand(MI,
470 AMDGPU::OpName::src2);
471
472 if (SDst) {
473 if (SDst->getReg() != AMDGPU::VCC) {
474 if (TargetRegisterInfo::isVirtualRegister(SDst->getReg()))
475 MRI.setRegAllocationHint(SDst->getReg(), 0, AMDGPU::VCC);
476 continue;
477 }
478
479 // All of the instructions with carry outs also have an SGPR input in
480 // src2.
481 if (Src2 && Src2->getReg() != AMDGPU::VCC) {
482 if (TargetRegisterInfo::isVirtualRegister(Src2->getReg()))
483 MRI.setRegAllocationHint(Src2->getReg(), 0, AMDGPU::VCC);
484
485 continue;
486 }
Matt Arsenault28bd4cb2017-01-11 22:35:17 +0000487 }
488
Tom Stellard1aaad692014-07-21 16:55:33 +0000489 // We can shrink this instruction
Matt Arsenaulte0b44042015-09-10 21:51:19 +0000490 DEBUG(dbgs() << "Shrinking " << MI);
Tom Stellard1aaad692014-07-21 16:55:33 +0000491
Tom Stellard6407e1e2014-08-01 00:32:33 +0000492 MachineInstrBuilder Inst32 =
Tom Stellard1aaad692014-07-21 16:55:33 +0000493 BuildMI(MBB, I, MI.getDebugLoc(), TII->get(Op32));
494
Tom Stellardcc4c8712016-02-16 18:14:56 +0000495 // Add the dst operand if the 32-bit encoding also has an explicit $vdst.
Matt Arsenault46359152015-08-08 00:41:48 +0000496 // For VOPC instructions, this is replaced by an implicit def of vcc.
Tom Stellardcc4c8712016-02-16 18:14:56 +0000497 int Op32DstIdx = AMDGPU::getNamedOperandIdx(Op32, AMDGPU::OpName::vdst);
Matt Arsenault46359152015-08-08 00:41:48 +0000498 if (Op32DstIdx != -1) {
499 // dst
Diana Picus116bbab2017-01-13 09:58:52 +0000500 Inst32.add(MI.getOperand(0));
Matt Arsenault46359152015-08-08 00:41:48 +0000501 } else {
502 assert(MI.getOperand(0).getReg() == AMDGPU::VCC &&
503 "Unexpected case");
504 }
505
Tom Stellard1aaad692014-07-21 16:55:33 +0000506
Diana Picus116bbab2017-01-13 09:58:52 +0000507 Inst32.add(*TII->getNamedOperand(MI, AMDGPU::OpName::src0));
Tom Stellard1aaad692014-07-21 16:55:33 +0000508
509 const MachineOperand *Src1 =
510 TII->getNamedOperand(MI, AMDGPU::OpName::src1);
511 if (Src1)
Diana Picus116bbab2017-01-13 09:58:52 +0000512 Inst32.add(*Src1);
Tom Stellard1aaad692014-07-21 16:55:33 +0000513
Matt Arsenault6942d1a2015-08-08 00:41:45 +0000514 if (Src2) {
515 int Op32Src2Idx = AMDGPU::getNamedOperandIdx(Op32, AMDGPU::OpName::src2);
516 if (Op32Src2Idx != -1) {
Diana Picus116bbab2017-01-13 09:58:52 +0000517 Inst32.add(*Src2);
Matt Arsenault6942d1a2015-08-08 00:41:45 +0000518 } else {
519 // In the case of V_CNDMASK_B32_e32, the explicit operand src2 is
Matt Arsenault22096252016-06-20 18:34:00 +0000520 // replaced with an implicit read of vcc. This was already added
521 // during the initial BuildMI, so find it to preserve the flags.
522 copyFlagsToImplicitVCC(*Inst32, *Src2);
Matt Arsenault6942d1a2015-08-08 00:41:45 +0000523 }
524 }
Tom Stellarddb5a11f2015-07-13 15:47:57 +0000525
Tom Stellard1aaad692014-07-21 16:55:33 +0000526 ++NumInstructionsShrunk;
Tom Stellard6407e1e2014-08-01 00:32:33 +0000527
Matt Arsenaultcb540bc2016-07-19 00:35:03 +0000528 // Copy extra operands not present in the instruction definition.
Matt Arsenault5ffe3e12016-09-03 17:25:39 +0000529 copyExtraImplicitOps(*Inst32, MF, MI);
Matt Arsenaultcb540bc2016-07-19 00:35:03 +0000530
531 MI.eraseFromParent();
Tom Stellard6407e1e2014-08-01 00:32:33 +0000532 foldImmediates(*Inst32, TII, MRI);
Matt Arsenaultcb540bc2016-07-19 00:35:03 +0000533
Tom Stellard6407e1e2014-08-01 00:32:33 +0000534 DEBUG(dbgs() << "e32 MI = " << *Inst32 << '\n');
535
536
Tom Stellard1aaad692014-07-21 16:55:33 +0000537 }
538 }
539 return false;
540}