blob: f3d24739da433c6de03b69bb608c59773154f200 [file] [log] [blame]
Jyotsna Verma803e5062013-05-14 18:54:06 +00001//===------- HexagonCopyToCombine.cpp - Hexagon Copy-To-Combine Pass ------===//
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// This pass replaces transfer instructions by combine instructions.
10// We walk along a basic block and look for two combinable instructions and try
11// to move them together. If we can move them next to each other we do so and
12// replace them with a combine instruction.
13//===----------------------------------------------------------------------===//
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000014#include "HexagonInstrInfo.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000015#include "HexagonSubtarget.h"
Jyotsna Verma803e5062013-05-14 18:54:06 +000016#include "llvm/ADT/DenseMap.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000017#include "llvm/ADT/DenseSet.h"
Jyotsna Verma803e5062013-05-14 18:54:06 +000018#include "llvm/CodeGen/MachineBasicBlock.h"
19#include "llvm/CodeGen/MachineFunction.h"
20#include "llvm/CodeGen/MachineFunctionPass.h"
21#include "llvm/CodeGen/MachineInstr.h"
22#include "llvm/CodeGen/MachineInstrBuilder.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000023#include "llvm/CodeGen/Passes.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000024#include "llvm/CodeGen/TargetRegisterInfo.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000025#include "llvm/PassSupport.h"
Jyotsna Verma803e5062013-05-14 18:54:06 +000026#include "llvm/Support/CodeGen.h"
27#include "llvm/Support/CommandLine.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/raw_ostream.h"
Jyotsna Verma803e5062013-05-14 18:54:06 +000030
31using namespace llvm;
32
Chandler Carruth84e68b22014-04-22 02:41:26 +000033#define DEBUG_TYPE "hexagon-copy-combine"
34
Jyotsna Verma803e5062013-05-14 18:54:06 +000035static
36cl::opt<bool> IsCombinesDisabled("disable-merge-into-combines",
37 cl::Hidden, cl::ZeroOrMore,
38 cl::init(false),
39 cl::desc("Disable merging into combines"));
40static
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +000041cl::opt<bool> IsConst64Disabled("disable-const64",
42 cl::Hidden, cl::ZeroOrMore,
43 cl::init(false),
44 cl::desc("Disable generation of const64"));
45static
Jyotsna Verma803e5062013-05-14 18:54:06 +000046cl::opt<unsigned>
47MaxNumOfInstsBetweenNewValueStoreAndTFR("max-num-inst-between-tfr-and-nv-store",
48 cl::Hidden, cl::init(4),
49 cl::desc("Maximum distance between a tfr feeding a store we "
50 "consider the store still to be newifiable"));
51
52namespace llvm {
Colin LeMahieu56efafc2015-06-15 19:05:35 +000053 FunctionPass *createHexagonCopyToCombine();
Jyotsna Verma803e5062013-05-14 18:54:06 +000054 void initializeHexagonCopyToCombinePass(PassRegistry&);
55}
56
57
58namespace {
59
60class HexagonCopyToCombine : public MachineFunctionPass {
61 const HexagonInstrInfo *TII;
62 const TargetRegisterInfo *TRI;
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +000063 const HexagonSubtarget *ST;
Jyotsna Verma803e5062013-05-14 18:54:06 +000064 bool ShouldCombineAggressively;
65
66 DenseSet<MachineInstr *> PotentiallyNewifiableTFR;
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +000067 SmallVector<MachineInstr *, 8> DbgMItoMove;
68
Jyotsna Verma803e5062013-05-14 18:54:06 +000069public:
70 static char ID;
71
72 HexagonCopyToCombine() : MachineFunctionPass(ID) {
73 initializeHexagonCopyToCombinePass(*PassRegistry::getPassRegistry());
74 }
75
Craig Topper906c2cd2014-04-29 07:58:16 +000076 void getAnalysisUsage(AnalysisUsage &AU) const override {
Jyotsna Verma803e5062013-05-14 18:54:06 +000077 MachineFunctionPass::getAnalysisUsage(AU);
78 }
79
Mehdi Amini117296c2016-10-01 02:56:57 +000080 StringRef getPassName() const override {
Jyotsna Verma803e5062013-05-14 18:54:06 +000081 return "Hexagon Copy-To-Combine Pass";
82 }
83
Craig Topper906c2cd2014-04-29 07:58:16 +000084 bool runOnMachineFunction(MachineFunction &Fn) override;
Jyotsna Verma803e5062013-05-14 18:54:06 +000085
Derek Schuff1dbf7a52016-04-04 17:09:25 +000086 MachineFunctionProperties getRequiredProperties() const override {
87 return MachineFunctionProperties().set(
Matthias Braun1eb47362016-08-25 01:27:13 +000088 MachineFunctionProperties::Property::NoVRegs);
Derek Schuff1dbf7a52016-04-04 17:09:25 +000089 }
90
Jyotsna Verma803e5062013-05-14 18:54:06 +000091private:
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +000092 MachineInstr *findPairable(MachineInstr &I1, bool &DoInsertAtI1,
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +000093 bool AllowC64);
Jyotsna Verma803e5062013-05-14 18:54:06 +000094
95 void findPotentialNewifiableTFRs(MachineBasicBlock &);
96
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +000097 void combine(MachineInstr &I1, MachineInstr &I2,
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +000098 MachineBasicBlock::iterator &MI, bool DoInsertAtI1,
99 bool OptForSize);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000100
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000101 bool isSafeToMoveTogether(MachineInstr &I1, MachineInstr &I2,
Jyotsna Verma803e5062013-05-14 18:54:06 +0000102 unsigned I1DestReg, unsigned I2DestReg,
103 bool &DoInsertAtI1);
104
105 void emitCombineRR(MachineBasicBlock::iterator &Before, unsigned DestReg,
106 MachineOperand &HiOperand, MachineOperand &LoOperand);
107
108 void emitCombineRI(MachineBasicBlock::iterator &Before, unsigned DestReg,
109 MachineOperand &HiOperand, MachineOperand &LoOperand);
110
111 void emitCombineIR(MachineBasicBlock::iterator &Before, unsigned DestReg,
112 MachineOperand &HiOperand, MachineOperand &LoOperand);
113
114 void emitCombineII(MachineBasicBlock::iterator &Before, unsigned DestReg,
115 MachineOperand &HiOperand, MachineOperand &LoOperand);
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000116
117 void emitConst64(MachineBasicBlock::iterator &Before, unsigned DestReg,
118 MachineOperand &HiOperand, MachineOperand &LoOperand);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000119};
120
121} // End anonymous namespace.
122
123char HexagonCopyToCombine::ID = 0;
124
125INITIALIZE_PASS(HexagonCopyToCombine, "hexagon-copy-combine",
126 "Hexagon Copy-To-Combine Pass", false, false)
127
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000128static bool isCombinableInstType(MachineInstr &MI, const HexagonInstrInfo *TII,
Jyotsna Verma803e5062013-05-14 18:54:06 +0000129 bool ShouldCombineAggressively) {
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000130 switch (MI.getOpcode()) {
Colin LeMahieu4af437f2014-12-09 20:23:30 +0000131 case Hexagon::A2_tfr: {
Jyotsna Verma803e5062013-05-14 18:54:06 +0000132 // A COPY instruction can be combined if its arguments are IntRegs (32bit).
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000133 const MachineOperand &Op0 = MI.getOperand(0);
134 const MachineOperand &Op1 = MI.getOperand(1);
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000135 assert(Op0.isReg() && Op1.isReg());
Jyotsna Verma803e5062013-05-14 18:54:06 +0000136
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000137 unsigned DestReg = Op0.getReg();
138 unsigned SrcReg = Op1.getReg();
Jyotsna Verma803e5062013-05-14 18:54:06 +0000139 return Hexagon::IntRegsRegClass.contains(DestReg) &&
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000140 Hexagon::IntRegsRegClass.contains(SrcReg);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000141 }
142
Colin LeMahieu4af437f2014-12-09 20:23:30 +0000143 case Hexagon::A2_tfrsi: {
Jyotsna Verma803e5062013-05-14 18:54:06 +0000144 // A transfer-immediate can be combined if its argument is a signed 8bit
145 // value.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000146 const MachineOperand &Op0 = MI.getOperand(0);
147 const MachineOperand &Op1 = MI.getOperand(1);
Colin LeMahieu2efa2d02015-03-09 21:48:13 +0000148 assert(Op0.isReg());
Jyotsna Verma803e5062013-05-14 18:54:06 +0000149
Colin LeMahieu2efa2d02015-03-09 21:48:13 +0000150 unsigned DestReg = Op0.getReg();
151 // Ensure that TargetFlags are MO_NO_FLAG for a global. This is a
152 // workaround for an ABI bug that prevents GOT relocations on combine
153 // instructions
154 if (!Op1.isImm() && Op1.getTargetFlags() != HexagonII::MO_NO_FLAG)
155 return false;
156
157 // Only combine constant extended A2_tfrsi if we are in aggressive mode.
158 bool NotExt = Op1.isImm() && isInt<8>(Op1.getImm());
Jyotsna Verma803e5062013-05-14 18:54:06 +0000159 return Hexagon::IntRegsRegClass.contains(DestReg) &&
Colin LeMahieu2efa2d02015-03-09 21:48:13 +0000160 (ShouldCombineAggressively || NotExt);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000161 }
162
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000163 case Hexagon::V6_vassign:
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000164 return true;
165
Jyotsna Verma803e5062013-05-14 18:54:06 +0000166 default:
167 break;
168 }
169
170 return false;
171}
172
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000173template <unsigned N> static bool isGreaterThanNBitTFRI(const MachineInstr &I) {
174 if (I.getOpcode() == Hexagon::TFRI64_V4 ||
175 I.getOpcode() == Hexagon::A2_tfrsi) {
176 const MachineOperand &Op = I.getOperand(1);
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000177 return !Op.isImm() || !isInt<N>(Op.getImm());
178 }
179 return false;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000180}
181
182/// areCombinableOperations - Returns true if the two instruction can be merge
183/// into a combine (ignoring register constraints).
184static bool areCombinableOperations(const TargetRegisterInfo *TRI,
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000185 MachineInstr &HighRegInst,
186 MachineInstr &LowRegInst, bool AllowC64) {
187 unsigned HiOpc = HighRegInst.getOpcode();
188 unsigned LoOpc = LowRegInst.getOpcode();
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000189
190 auto verifyOpc = [](unsigned Opc) -> void {
191 switch (Opc) {
192 case Hexagon::A2_tfr:
193 case Hexagon::A2_tfrsi:
194 case Hexagon::V6_vassign:
195 break;
196 default:
197 llvm_unreachable("Unexpected opcode");
198 }
199 };
200 verifyOpc(HiOpc);
201 verifyOpc(LoOpc);
202
203 if (HiOpc == Hexagon::V6_vassign || LoOpc == Hexagon::V6_vassign)
204 return HiOpc == LoOpc;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000205
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000206 if (!AllowC64) {
207 // There is no combine of two constant extended values.
208 if (isGreaterThanNBitTFRI<8>(HighRegInst) &&
209 isGreaterThanNBitTFRI<6>(LowRegInst))
210 return false;
211 }
212
213 // There is a combine of two constant extended values into CONST64,
214 // provided both constants are true immediates.
215 if (isGreaterThanNBitTFRI<16>(HighRegInst) &&
216 isGreaterThanNBitTFRI<16>(LowRegInst))
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000217 return (HighRegInst.getOperand(1).isImm() &&
218 LowRegInst.getOperand(1).isImm());
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000219
220 // There is no combine of two constant extended values, unless handled above
221 // Make both 8-bit size checks to allow both combine (#,##) and combine(##,#)
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000222 if (isGreaterThanNBitTFRI<8>(HighRegInst) &&
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000223 isGreaterThanNBitTFRI<8>(LowRegInst))
Jyotsna Verma803e5062013-05-14 18:54:06 +0000224 return false;
225
226 return true;
227}
228
229static bool isEvenReg(unsigned Reg) {
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000230 assert(TargetRegisterInfo::isPhysicalRegister(Reg));
231 if (Hexagon::IntRegsRegClass.contains(Reg))
232 return (Reg - Hexagon::R0) % 2 == 0;
Krzysztof Parzyszek55772972017-09-15 15:46:05 +0000233 if (Hexagon::HvxVRRegClass.contains(Reg))
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000234 return (Reg - Hexagon::V0) % 2 == 0;
235 llvm_unreachable("Invalid register");
Jyotsna Verma803e5062013-05-14 18:54:06 +0000236}
237
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000238static void removeKillInfo(MachineInstr &MI, unsigned RegNotKilled) {
239 for (unsigned I = 0, E = MI.getNumOperands(); I != E; ++I) {
240 MachineOperand &Op = MI.getOperand(I);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000241 if (!Op.isReg() || Op.getReg() != RegNotKilled || !Op.isKill())
242 continue;
243 Op.setIsKill(false);
244 }
245}
246
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000247/// Returns true if it is unsafe to move a copy instruction from \p UseReg to
248/// \p DestReg over the instruction \p MI.
249static bool isUnsafeToMoveAcross(MachineInstr &MI, unsigned UseReg,
250 unsigned DestReg,
251 const TargetRegisterInfo *TRI) {
252 return (UseReg && (MI.modifiesRegister(UseReg, TRI))) ||
253 MI.modifiesRegister(DestReg, TRI) || MI.readsRegister(DestReg, TRI) ||
Krzysztof Parzyszek709e4f92017-08-10 15:00:30 +0000254 MI.hasUnmodeledSideEffects() || MI.isInlineAsm() ||
255 MI.isMetaInstruction();
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000256}
257
258static unsigned UseReg(const MachineOperand& MO) {
259 return MO.isReg() ? MO.getReg() : 0;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000260}
261
262/// isSafeToMoveTogether - Returns true if it is safe to move I1 next to I2 such
263/// that the two instructions can be paired in a combine.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000264bool HexagonCopyToCombine::isSafeToMoveTogether(MachineInstr &I1,
265 MachineInstr &I2,
Jyotsna Verma803e5062013-05-14 18:54:06 +0000266 unsigned I1DestReg,
267 unsigned I2DestReg,
268 bool &DoInsertAtI1) {
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000269 unsigned I2UseReg = UseReg(I2.getOperand(1));
Jyotsna Verma803e5062013-05-14 18:54:06 +0000270
271 // It is not safe to move I1 and I2 into one combine if I2 has a true
272 // dependence on I1.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000273 if (I2UseReg && I1.modifiesRegister(I2UseReg, TRI))
Jyotsna Verma803e5062013-05-14 18:54:06 +0000274 return false;
275
276 bool isSafe = true;
277
278 // First try to move I2 towards I1.
279 {
280 // A reverse_iterator instantiated like below starts before I2, and I1
281 // respectively.
282 // Look at instructions I in between I2 and (excluding) I1.
283 MachineBasicBlock::reverse_iterator I(I2),
284 End = --(MachineBasicBlock::reverse_iterator(I1));
285 // At 03 we got better results (dhrystone!) by being more conservative.
286 if (!ShouldCombineAggressively)
287 End = MachineBasicBlock::reverse_iterator(I1);
288 // If I2 kills its operand and we move I2 over an instruction that also
289 // uses I2's use reg we need to modify that (first) instruction to now kill
290 // this reg.
291 unsigned KilledOperand = 0;
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000292 if (I2.killsRegister(I2UseReg))
Jyotsna Verma803e5062013-05-14 18:54:06 +0000293 KilledOperand = I2UseReg;
Craig Topper062a2ba2014-04-25 05:30:21 +0000294 MachineInstr *KillingInstr = nullptr;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000295
296 for (; I != End; ++I) {
297 // If the intervening instruction I:
298 // * modifies I2's use reg
299 // * modifies I2's def reg
300 // * reads I2's def reg
301 // * or has unmodelled side effects
302 // we can't move I2 across it.
Shiva Chen801bf7e2018-05-09 02:42:00 +0000303 if (I->isDebugInstr())
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000304 continue;
305
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000306 if (isUnsafeToMoveAcross(*I, I2UseReg, I2DestReg, TRI)) {
Jyotsna Verma803e5062013-05-14 18:54:06 +0000307 isSafe = false;
308 break;
309 }
310
311 // Update first use of the killed operand.
312 if (!KillingInstr && KilledOperand &&
313 I->readsRegister(KilledOperand, TRI))
314 KillingInstr = &*I;
315 }
316 if (isSafe) {
317 // Update the intermediate instruction to with the kill flag.
318 if (KillingInstr) {
319 bool Added = KillingInstr->addRegisterKilled(KilledOperand, TRI, true);
Alp Tokercb402912014-01-24 17:20:08 +0000320 (void)Added; // suppress compiler warning
Jyotsna Verma803e5062013-05-14 18:54:06 +0000321 assert(Added && "Must successfully update kill flag");
322 removeKillInfo(I2, KilledOperand);
323 }
324 DoInsertAtI1 = true;
325 return true;
326 }
327 }
328
329 // Try to move I1 towards I2.
330 {
331 // Look at instructions I in between I1 and (excluding) I2.
332 MachineBasicBlock::iterator I(I1), End(I2);
333 // At O3 we got better results (dhrystone) by being more conservative here.
334 if (!ShouldCombineAggressively)
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000335 End = std::next(MachineBasicBlock::iterator(I2));
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000336 unsigned I1UseReg = UseReg(I1.getOperand(1));
Jyotsna Vermacceafb22013-05-28 19:01:45 +0000337 // Track killed operands. If we move across an instruction that kills our
Jyotsna Verma803e5062013-05-14 18:54:06 +0000338 // operand, we need to update the kill information on the moved I1. It kills
339 // the operand now.
Craig Topper062a2ba2014-04-25 05:30:21 +0000340 MachineInstr *KillingInstr = nullptr;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000341 unsigned KilledOperand = 0;
342
343 while(++I != End) {
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000344 MachineInstr &MI = *I;
345 // If the intervening instruction MI:
Jyotsna Verma803e5062013-05-14 18:54:06 +0000346 // * modifies I1's use reg
347 // * modifies I1's def reg
348 // * reads I1's def reg
349 // * or has unmodelled side effects
350 // We introduce this special case because llvm has no api to remove a
351 // kill flag for a register (a removeRegisterKilled() analogous to
352 // addRegisterKilled) that handles aliased register correctly.
353 // * or has a killed aliased register use of I1's use reg
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000354 // %d4 = A2_tfrpi 16
355 // %r6 = A2_tfr %r9
356 // %r8 = KILL %r8, implicit killed %d4
Jyotsna Verma803e5062013-05-14 18:54:06 +0000357 // If we want to move R6 = across the KILL instruction we would have
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000358 // to remove the implicit killed %d4 operand. For now, we are
Jyotsna Verma803e5062013-05-14 18:54:06 +0000359 // conservative and disallow the move.
360 // we can't move I1 across it.
Shiva Chen801bf7e2018-05-09 02:42:00 +0000361 if (MI.isDebugInstr()) {
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000362 if (MI.readsRegister(I1DestReg, TRI)) // Move this instruction after I2.
363 DbgMItoMove.push_back(&MI);
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000364 continue;
365 }
366
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000367 if (isUnsafeToMoveAcross(MI, I1UseReg, I1DestReg, TRI) ||
Jyotsna Verma803e5062013-05-14 18:54:06 +0000368 // Check for an aliased register kill. Bail out if we see one.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000369 (!MI.killsRegister(I1UseReg) && MI.killsRegister(I1UseReg, TRI)))
Jyotsna Verma803e5062013-05-14 18:54:06 +0000370 return false;
371
372 // Check for an exact kill (registers match).
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000373 if (I1UseReg && MI.killsRegister(I1UseReg)) {
Craig Toppere73658d2014-04-28 04:05:08 +0000374 assert(!KillingInstr && "Should only see one killing instruction");
Jyotsna Verma803e5062013-05-14 18:54:06 +0000375 KilledOperand = I1UseReg;
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000376 KillingInstr = &MI;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000377 }
378 }
379 if (KillingInstr) {
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000380 removeKillInfo(*KillingInstr, KilledOperand);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000381 // Update I1 to set the kill flag. This flag will later be picked up by
382 // the new COMBINE instruction.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000383 bool Added = I1.addRegisterKilled(KilledOperand, TRI);
Alp Tokercb402912014-01-24 17:20:08 +0000384 (void)Added; // suppress compiler warning
Jyotsna Verma803e5062013-05-14 18:54:06 +0000385 assert(Added && "Must successfully update kill flag");
386 }
387 DoInsertAtI1 = false;
388 }
389
390 return true;
391}
392
393/// findPotentialNewifiableTFRs - Finds tranfers that feed stores that could be
394/// newified. (A use of a 64 bit register define can not be newified)
395void
396HexagonCopyToCombine::findPotentialNewifiableTFRs(MachineBasicBlock &BB) {
397 DenseMap<unsigned, MachineInstr *> LastDef;
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000398 for (MachineInstr &MI : BB) {
Shiva Chen801bf7e2018-05-09 02:42:00 +0000399 if (MI.isDebugInstr())
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000400 continue;
401
Jyotsna Verma803e5062013-05-14 18:54:06 +0000402 // Mark TFRs that feed a potential new value store as such.
Krzysztof Parzyszekf0b34a52016-07-29 21:49:42 +0000403 if (TII->mayBeNewStore(MI)) {
Jyotsna Verma803e5062013-05-14 18:54:06 +0000404 // Look for uses of TFR instructions.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000405 for (unsigned OpdIdx = 0, OpdE = MI.getNumOperands(); OpdIdx != OpdE;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000406 ++OpdIdx) {
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000407 MachineOperand &Op = MI.getOperand(OpdIdx);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000408
409 // Skip over anything except register uses.
410 if (!Op.isReg() || !Op.isUse() || !Op.getReg())
411 continue;
412
413 // Look for the defining instruction.
414 unsigned Reg = Op.getReg();
415 MachineInstr *DefInst = LastDef[Reg];
416 if (!DefInst)
417 continue;
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000418 if (!isCombinableInstType(*DefInst, TII, ShouldCombineAggressively))
Jyotsna Verma803e5062013-05-14 18:54:06 +0000419 continue;
420
421 // Only close newifiable stores should influence the decision.
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000422 // Ignore the debug instructions in between.
Jyotsna Verma803e5062013-05-14 18:54:06 +0000423 MachineBasicBlock::iterator It(DefInst);
424 unsigned NumInstsToDef = 0;
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000425 while (&*It != &MI) {
Shiva Chen801bf7e2018-05-09 02:42:00 +0000426 if (!It->isDebugInstr())
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000427 ++NumInstsToDef;
Krzysztof Parzyszek14f9535e2016-01-21 12:45:17 +0000428 ++It;
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000429 }
Jyotsna Verma803e5062013-05-14 18:54:06 +0000430
431 if (NumInstsToDef > MaxNumOfInstsBetweenNewValueStoreAndTFR)
432 continue;
433
434 PotentiallyNewifiableTFR.insert(DefInst);
435 }
436 // Skip to next instruction.
437 continue;
438 }
439
440 // Put instructions that last defined integer or double registers into the
441 // map.
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000442 for (MachineOperand &Op : MI.operands()) {
443 if (Op.isReg()) {
444 if (!Op.isDef() || !Op.getReg())
445 continue;
446 unsigned Reg = Op.getReg();
447 if (Hexagon::DoubleRegsRegClass.contains(Reg)) {
448 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs)
449 LastDef[*SubRegs] = &MI;
450 } else if (Hexagon::IntRegsRegClass.contains(Reg))
451 LastDef[Reg] = &MI;
452 } else if (Op.isRegMask()) {
453 for (unsigned Reg : Hexagon::IntRegsRegClass)
454 if (Op.clobbersPhysReg(Reg))
455 LastDef[Reg] = &MI;
456 }
Jyotsna Verma803e5062013-05-14 18:54:06 +0000457 }
458 }
459}
460
461bool HexagonCopyToCombine::runOnMachineFunction(MachineFunction &MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000462 if (skipFunction(MF.getFunction()))
Krzysztof Parzyszek643aaea2017-04-14 15:26:34 +0000463 return false;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000464
465 if (IsCombinesDisabled) return false;
466
467 bool HasChanged = false;
468
469 // Get target info.
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000470 ST = &MF.getSubtarget<HexagonSubtarget>();
471 TRI = ST->getRegisterInfo();
472 TII = ST->getInstrInfo();
Jyotsna Verma803e5062013-05-14 18:54:06 +0000473
Matthias Braunf1caa282017-12-15 22:22:58 +0000474 const Function &F = MF.getFunction();
475 bool OptForSize = F.hasFnAttribute(Attribute::OptimizeForSize);
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000476
Jyotsna Verma803e5062013-05-14 18:54:06 +0000477 // Combine aggressively (for code size)
478 ShouldCombineAggressively =
479 MF.getTarget().getOptLevel() <= CodeGenOpt::Default;
480
481 // Traverse basic blocks.
482 for (MachineFunction::iterator BI = MF.begin(), BE = MF.end(); BI != BE;
483 ++BI) {
484 PotentiallyNewifiableTFR.clear();
485 findPotentialNewifiableTFRs(*BI);
486
487 // Traverse instructions in basic block.
488 for(MachineBasicBlock::iterator MI = BI->begin(), End = BI->end();
489 MI != End;) {
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000490 MachineInstr &I1 = *MI++;
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000491
Shiva Chen801bf7e2018-05-09 02:42:00 +0000492 if (I1.isDebugInstr())
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000493 continue;
494
Jyotsna Verma803e5062013-05-14 18:54:06 +0000495 // Don't combine a TFR whose user could be newified (instructions that
496 // define double registers can not be newified - Programmer's Ref Manual
497 // 5.4.2 New-value stores).
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000498 if (ShouldCombineAggressively && PotentiallyNewifiableTFR.count(&I1))
Jyotsna Verma803e5062013-05-14 18:54:06 +0000499 continue;
500
501 // Ignore instructions that are not combinable.
502 if (!isCombinableInstType(I1, TII, ShouldCombineAggressively))
503 continue;
504
505 // Find a second instruction that can be merged into a combine
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000506 // instruction. In addition, also find all the debug instructions that
507 // need to be moved along with it.
Jyotsna Verma803e5062013-05-14 18:54:06 +0000508 bool DoInsertAtI1 = false;
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000509 DbgMItoMove.clear();
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000510 MachineInstr *I2 = findPairable(I1, DoInsertAtI1, OptForSize);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000511 if (I2) {
512 HasChanged = true;
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000513 combine(I1, *I2, MI, DoInsertAtI1, OptForSize);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000514 }
515 }
516 }
517
518 return HasChanged;
519}
520
521/// findPairable - Returns an instruction that can be merged with \p I1 into a
522/// COMBINE instruction or 0 if no such instruction can be found. Returns true
523/// in \p DoInsertAtI1 if the combine must be inserted at instruction \p I1
524/// false if the combine must be inserted at the returned instruction.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000525MachineInstr *HexagonCopyToCombine::findPairable(MachineInstr &I1,
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000526 bool &DoInsertAtI1,
527 bool AllowC64) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000528 MachineBasicBlock::iterator I2 = std::next(MachineBasicBlock::iterator(I1));
Shiva Chen801bf7e2018-05-09 02:42:00 +0000529 while (I2 != I1.getParent()->end() && I2->isDebugInstr())
Krzysztof Parzyszek6dff3362016-08-24 22:36:35 +0000530 ++I2;
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000531
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000532 unsigned I1DestReg = I1.getOperand(0).getReg();
Jyotsna Verma803e5062013-05-14 18:54:06 +0000533
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000534 for (MachineBasicBlock::iterator End = I1.getParent()->end(); I2 != End;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000535 ++I2) {
536 // Bail out early if we see a second definition of I1DestReg.
537 if (I2->modifiesRegister(I1DestReg, TRI))
538 break;
539
540 // Ignore non-combinable instructions.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000541 if (!isCombinableInstType(*I2, TII, ShouldCombineAggressively))
Jyotsna Verma803e5062013-05-14 18:54:06 +0000542 continue;
543
544 // Don't combine a TFR whose user could be newified.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000545 if (ShouldCombineAggressively && PotentiallyNewifiableTFR.count(&*I2))
Jyotsna Verma803e5062013-05-14 18:54:06 +0000546 continue;
547
548 unsigned I2DestReg = I2->getOperand(0).getReg();
549
550 // Check that registers are adjacent and that the first destination register
551 // is even.
552 bool IsI1LowReg = (I2DestReg - I1DestReg) == 1;
553 bool IsI2LowReg = (I1DestReg - I2DestReg) == 1;
554 unsigned FirstRegIndex = IsI1LowReg ? I1DestReg : I2DestReg;
555 if ((!IsI1LowReg && !IsI2LowReg) || !isEvenReg(FirstRegIndex))
556 continue;
557
558 // Check that the two instructions are combinable. V4 allows more
559 // instructions to be merged into a combine.
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000560 // The order matters because in a A2_tfrsi we might can encode a int8 as
561 // the hi reg operand but only a uint6 as the low reg operand.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000562 if ((IsI2LowReg && !areCombinableOperations(TRI, I1, *I2, AllowC64)) ||
563 (IsI1LowReg && !areCombinableOperations(TRI, *I2, I1, AllowC64)))
Jyotsna Verma803e5062013-05-14 18:54:06 +0000564 break;
565
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000566 if (isSafeToMoveTogether(I1, *I2, I1DestReg, I2DestReg, DoInsertAtI1))
567 return &*I2;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000568
569 // Not safe. Stop searching.
570 break;
571 }
Craig Topper062a2ba2014-04-25 05:30:21 +0000572 return nullptr;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000573}
574
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000575void HexagonCopyToCombine::combine(MachineInstr &I1, MachineInstr &I2,
Jyotsna Verma803e5062013-05-14 18:54:06 +0000576 MachineBasicBlock::iterator &MI,
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000577 bool DoInsertAtI1, bool OptForSize) {
Jyotsna Verma803e5062013-05-14 18:54:06 +0000578 // We are going to delete I2. If MI points to I2 advance it to the next
579 // instruction.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000580 if (MI == I2.getIterator())
581 ++MI;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000582
583 // Figure out whether I1 or I2 goes into the lowreg part.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000584 unsigned I1DestReg = I1.getOperand(0).getReg();
585 unsigned I2DestReg = I2.getOperand(0).getReg();
Jyotsna Verma803e5062013-05-14 18:54:06 +0000586 bool IsI1Loreg = (I2DestReg - I1DestReg) == 1;
587 unsigned LoRegDef = IsI1Loreg ? I1DestReg : I2DestReg;
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000588 unsigned SubLo;
Jyotsna Verma803e5062013-05-14 18:54:06 +0000589
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000590 const TargetRegisterClass *SuperRC = nullptr;
591 if (Hexagon::IntRegsRegClass.contains(LoRegDef)) {
592 SuperRC = &Hexagon::DoubleRegsRegClass;
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000593 SubLo = Hexagon::isub_lo;
Krzysztof Parzyszek55772972017-09-15 15:46:05 +0000594 } else if (Hexagon::HvxVRRegClass.contains(LoRegDef)) {
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000595 assert(ST->useHVXOps());
Krzysztof Parzyszek55772972017-09-15 15:46:05 +0000596 SuperRC = &Hexagon::HvxWRRegClass;
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000597 SubLo = Hexagon::vsub_lo;
Krzysztof Parzyszekf817efb2016-11-09 17:50:46 +0000598 } else
599 llvm_unreachable("Unexpected register class");
600
Jyotsna Verma803e5062013-05-14 18:54:06 +0000601 // Get the double word register.
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000602 unsigned DoubleRegDest = TRI->getMatchingSuperReg(LoRegDef, SubLo, SuperRC);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000603 assert(DoubleRegDest != 0 && "Expect a valid register");
604
Jyotsna Verma803e5062013-05-14 18:54:06 +0000605 // Setup source operands.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000606 MachineOperand &LoOperand = IsI1Loreg ? I1.getOperand(1) : I2.getOperand(1);
607 MachineOperand &HiOperand = IsI1Loreg ? I2.getOperand(1) : I1.getOperand(1);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000608
609 // Figure out which source is a register and which a constant.
610 bool IsHiReg = HiOperand.isReg();
611 bool IsLoReg = LoOperand.isReg();
612
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000613 // There is a combine of two constant extended values into CONST64.
614 bool IsC64 = OptForSize && LoOperand.isImm() && HiOperand.isImm() &&
615 isGreaterThanNBitTFRI<16>(I1) && isGreaterThanNBitTFRI<16>(I2);
616
Jyotsna Verma803e5062013-05-14 18:54:06 +0000617 MachineBasicBlock::iterator InsertPt(DoInsertAtI1 ? I1 : I2);
618 // Emit combine.
619 if (IsHiReg && IsLoReg)
620 emitCombineRR(InsertPt, DoubleRegDest, HiOperand, LoOperand);
621 else if (IsHiReg)
622 emitCombineRI(InsertPt, DoubleRegDest, HiOperand, LoOperand);
623 else if (IsLoReg)
624 emitCombineIR(InsertPt, DoubleRegDest, HiOperand, LoOperand);
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000625 else if (IsC64 && !IsConst64Disabled)
626 emitConst64(InsertPt, DoubleRegDest, HiOperand, LoOperand);
Jyotsna Verma803e5062013-05-14 18:54:06 +0000627 else
628 emitCombineII(InsertPt, DoubleRegDest, HiOperand, LoOperand);
629
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000630 // Move debug instructions along with I1 if it's being
631 // moved towards I2.
632 if (!DoInsertAtI1 && DbgMItoMove.size() != 0) {
633 // Insert debug instructions at the new location before I2.
634 MachineBasicBlock *BB = InsertPt->getParent();
635 for (auto NewMI : DbgMItoMove) {
636 // If iterator MI is pointing to DEBUG_VAL, make sure
637 // MI now points to next relevant instruction.
Duncan P. N. Exon Smithf197b1f2016-08-12 05:05:36 +0000638 if (NewMI == MI)
Krzysztof Parzyszek9b7320e2016-01-15 13:55:57 +0000639 ++MI;
640 BB->splice(InsertPt, BB, NewMI);
641 }
642 }
643
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000644 I1.eraseFromParent();
645 I2.eraseFromParent();
Jyotsna Verma803e5062013-05-14 18:54:06 +0000646}
647
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000648void HexagonCopyToCombine::emitConst64(MachineBasicBlock::iterator &InsertPt,
649 unsigned DoubleDestReg,
650 MachineOperand &HiOperand,
651 MachineOperand &LoOperand) {
652 DEBUG(dbgs() << "Found a CONST64\n");
653
654 DebugLoc DL = InsertPt->getDebugLoc();
655 MachineBasicBlock *BB = InsertPt->getParent();
656 assert(LoOperand.isImm() && HiOperand.isImm() &&
657 "Both operands must be immediate");
658
659 int64_t V = HiOperand.getImm();
660 V = (V << 32) | (0x0ffffffffLL & LoOperand.getImm());
Krzysztof Parzyszeka3386502016-08-10 16:46:36 +0000661 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::CONST64), DoubleDestReg)
Krzysztof Parzyszek2a3b2f92016-01-15 14:08:31 +0000662 .addImm(V);
663}
664
Jyotsna Verma803e5062013-05-14 18:54:06 +0000665void HexagonCopyToCombine::emitCombineII(MachineBasicBlock::iterator &InsertPt,
666 unsigned DoubleDestReg,
667 MachineOperand &HiOperand,
668 MachineOperand &LoOperand) {
669 DebugLoc DL = InsertPt->getDebugLoc();
670 MachineBasicBlock *BB = InsertPt->getParent();
671
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000672 // Handle globals.
Jyotsna Verma803e5062013-05-14 18:54:06 +0000673 if (HiOperand.isGlobal()) {
Colin LeMahieub580d7d2014-12-09 19:23:45 +0000674 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg)
Jyotsna Verma803e5062013-05-14 18:54:06 +0000675 .addGlobalAddress(HiOperand.getGlobal(), HiOperand.getOffset(),
676 HiOperand.getTargetFlags())
677 .addImm(LoOperand.getImm());
678 return;
679 }
680 if (LoOperand.isGlobal()) {
Colin LeMahieu82fb8cb2014-12-30 17:53:54 +0000681 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineii), DoubleDestReg)
Jyotsna Verma803e5062013-05-14 18:54:06 +0000682 .addImm(HiOperand.getImm())
683 .addGlobalAddress(LoOperand.getGlobal(), LoOperand.getOffset(),
684 LoOperand.getTargetFlags());
685 return;
686 }
687
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000688 // Handle block addresses.
689 if (HiOperand.isBlockAddress()) {
Colin LeMahieub580d7d2014-12-09 19:23:45 +0000690 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg)
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000691 .addBlockAddress(HiOperand.getBlockAddress(), HiOperand.getOffset(),
692 HiOperand.getTargetFlags())
Jyotsna Verma803e5062013-05-14 18:54:06 +0000693 .addImm(LoOperand.getImm());
694 return;
695 }
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000696 if (LoOperand.isBlockAddress()) {
697 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineii), DoubleDestReg)
698 .addImm(HiOperand.getImm())
699 .addBlockAddress(LoOperand.getBlockAddress(), LoOperand.getOffset(),
700 LoOperand.getTargetFlags());
701 return;
702 }
Jyotsna Verma803e5062013-05-14 18:54:06 +0000703
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000704 // Handle jump tables.
705 if (HiOperand.isJTI()) {
706 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg)
707 .addJumpTableIndex(HiOperand.getIndex(), HiOperand.getTargetFlags())
708 .addImm(LoOperand.getImm());
709 return;
710 }
711 if (LoOperand.isJTI()) {
712 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineii), DoubleDestReg)
713 .addImm(HiOperand.getImm())
714 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags());
715 return;
716 }
717
718 // Handle constant pools.
719 if (HiOperand.isCPI()) {
720 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg)
721 .addConstantPoolIndex(HiOperand.getIndex(), HiOperand.getOffset(),
722 HiOperand.getTargetFlags())
723 .addImm(LoOperand.getImm());
724 return;
725 }
726 if (LoOperand.isCPI()) {
727 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineii), DoubleDestReg)
728 .addImm(HiOperand.getImm())
729 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(),
730 LoOperand.getTargetFlags());
731 return;
732 }
733
734 // First preference should be given to Hexagon::A2_combineii instruction
735 // as it can include U6 (in Hexagon::A4_combineii) as well.
736 // In this instruction, HiOperand is const extended, if required.
737 if (isInt<8>(LoOperand.getImm())) {
738 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg)
739 .addImm(HiOperand.getImm())
740 .addImm(LoOperand.getImm());
741 return;
742 }
743
744 // In this instruction, LoOperand is const extended, if required.
745 if (isInt<8>(HiOperand.getImm())) {
Colin LeMahieu82fb8cb2014-12-30 17:53:54 +0000746 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineii), DoubleDestReg)
Jyotsna Verma803e5062013-05-14 18:54:06 +0000747 .addImm(HiOperand.getImm())
748 .addImm(LoOperand.getImm());
749 return;
750 }
751
752 // Insert new combine instruction.
753 // DoubleRegDest = combine #HiImm, #LoImm
Colin LeMahieub580d7d2014-12-09 19:23:45 +0000754 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A2_combineii), DoubleDestReg)
Jyotsna Verma803e5062013-05-14 18:54:06 +0000755 .addImm(HiOperand.getImm())
756 .addImm(LoOperand.getImm());
757}
758
759void HexagonCopyToCombine::emitCombineIR(MachineBasicBlock::iterator &InsertPt,
760 unsigned DoubleDestReg,
761 MachineOperand &HiOperand,
762 MachineOperand &LoOperand) {
763 unsigned LoReg = LoOperand.getReg();
764 unsigned LoRegKillFlag = getKillRegState(LoOperand.isKill());
765
766 DebugLoc DL = InsertPt->getDebugLoc();
767 MachineBasicBlock *BB = InsertPt->getParent();
768
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000769 // Handle globals.
Jyotsna Verma803e5062013-05-14 18:54:06 +0000770 if (HiOperand.isGlobal()) {
Colin LeMahieu82fb8cb2014-12-30 17:53:54 +0000771 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineir), DoubleDestReg)
Jyotsna Verma803e5062013-05-14 18:54:06 +0000772 .addGlobalAddress(HiOperand.getGlobal(), HiOperand.getOffset(),
773 HiOperand.getTargetFlags())
774 .addReg(LoReg, LoRegKillFlag);
775 return;
776 }
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000777 // Handle block addresses.
778 if (HiOperand.isBlockAddress()) {
779 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineir), DoubleDestReg)
780 .addBlockAddress(HiOperand.getBlockAddress(), HiOperand.getOffset(),
781 HiOperand.getTargetFlags())
782 .addReg(LoReg, LoRegKillFlag);
783 return;
784 }
785 // Handle jump tables.
786 if (HiOperand.isJTI()) {
787 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineir), DoubleDestReg)
788 .addJumpTableIndex(HiOperand.getIndex(), HiOperand.getTargetFlags())
789 .addReg(LoReg, LoRegKillFlag);
790 return;
791 }
792 // Handle constant pools.
793 if (HiOperand.isCPI()) {
794 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineir), DoubleDestReg)
795 .addConstantPoolIndex(HiOperand.getIndex(), HiOperand.getOffset(),
796 HiOperand.getTargetFlags())
797 .addReg(LoReg, LoRegKillFlag);
798 return;
799 }
Jyotsna Verma803e5062013-05-14 18:54:06 +0000800 // Insert new combine instruction.
801 // DoubleRegDest = combine #HiImm, LoReg
Colin LeMahieu82fb8cb2014-12-30 17:53:54 +0000802 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineir), DoubleDestReg)
Jyotsna Verma803e5062013-05-14 18:54:06 +0000803 .addImm(HiOperand.getImm())
804 .addReg(LoReg, LoRegKillFlag);
805}
806
807void HexagonCopyToCombine::emitCombineRI(MachineBasicBlock::iterator &InsertPt,
808 unsigned DoubleDestReg,
809 MachineOperand &HiOperand,
810 MachineOperand &LoOperand) {
811 unsigned HiRegKillFlag = getKillRegState(HiOperand.isKill());
812 unsigned HiReg = HiOperand.getReg();
813
814 DebugLoc DL = InsertPt->getDebugLoc();
815 MachineBasicBlock *BB = InsertPt->getParent();
816
817 // Handle global.
818 if (LoOperand.isGlobal()) {
Colin LeMahieu82fb8cb2014-12-30 17:53:54 +0000819 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineri), DoubleDestReg)
Jyotsna Verma803e5062013-05-14 18:54:06 +0000820 .addReg(HiReg, HiRegKillFlag)
821 .addGlobalAddress(LoOperand.getGlobal(), LoOperand.getOffset(),
822 LoOperand.getTargetFlags());
823 return;
824 }
Krzysztof Parzyszekcd97c982015-04-22 18:25:53 +0000825 // Handle block addresses.
826 if (LoOperand.isBlockAddress()) {
827 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineri), DoubleDestReg)
828 .addReg(HiReg, HiRegKillFlag)
829 .addBlockAddress(LoOperand.getBlockAddress(), LoOperand.getOffset(),
830 LoOperand.getTargetFlags());
831 return;
832 }
833 // Handle jump tables.
834 if (LoOperand.isJTI()) {
835 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineri), DoubleDestReg)
836 .addReg(HiOperand.getReg(), HiRegKillFlag)
837 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags());
838 return;
839 }
840 // Handle constant pools.
841 if (LoOperand.isCPI()) {
842 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineri), DoubleDestReg)
843 .addReg(HiOperand.getReg(), HiRegKillFlag)
844 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(),
845 LoOperand.getTargetFlags());
846 return;
847 }
Jyotsna Verma803e5062013-05-14 18:54:06 +0000848
849 // Insert new combine instruction.
850 // DoubleRegDest = combine HiReg, #LoImm
Colin LeMahieu82fb8cb2014-12-30 17:53:54 +0000851 BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::A4_combineri), DoubleDestReg)
Jyotsna Verma803e5062013-05-14 18:54:06 +0000852 .addReg(HiReg, HiRegKillFlag)
853 .addImm(LoOperand.getImm());
854}
855
856void HexagonCopyToCombine::emitCombineRR(MachineBasicBlock::iterator &InsertPt,
857 unsigned DoubleDestReg,
858 MachineOperand &HiOperand,
859 MachineOperand &LoOperand) {
860 unsigned LoRegKillFlag = getKillRegState(LoOperand.isKill());
861 unsigned HiRegKillFlag = getKillRegState(HiOperand.isKill());
862 unsigned LoReg = LoOperand.getReg();
863 unsigned HiReg = HiOperand.getReg();
864
865 DebugLoc DL = InsertPt->getDebugLoc();
866 MachineBasicBlock *BB = InsertPt->getParent();
867
868 // Insert new combine instruction.
869 // DoubleRegDest = combine HiReg, LoReg
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000870 unsigned NewOpc;
871 if (Hexagon::DoubleRegsRegClass.contains(DoubleDestReg)) {
872 NewOpc = Hexagon::A2_combinew;
Krzysztof Parzyszek55772972017-09-15 15:46:05 +0000873 } else if (Hexagon::HvxWRRegClass.contains(DoubleDestReg)) {
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000874 assert(ST->useHVXOps());
Krzysztof Parzyszek55772972017-09-15 15:46:05 +0000875 NewOpc = Hexagon::V6_vcombine;
Krzysztof Parzyszekb1b03722016-08-18 14:12:34 +0000876 } else
877 llvm_unreachable("Unexpected register");
878
879 BuildMI(*BB, InsertPt, DL, TII->get(NewOpc), DoubleDestReg)
Jyotsna Verma803e5062013-05-14 18:54:06 +0000880 .addReg(HiReg, HiRegKillFlag)
881 .addReg(LoReg, LoRegKillFlag);
882}
883
884FunctionPass *llvm::createHexagonCopyToCombine() {
885 return new HexagonCopyToCombine();
886}