3fc7bb99a12cf56685e09206fb7c8d44285a2a42
[oota-llvm.git] / lib / Target / Hexagon / HexagonCopyToCombine.cpp
1 //===------- 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 //===----------------------------------------------------------------------===//
14 #include "llvm/PassSupport.h"
15 #include "Hexagon.h"
16 #include "HexagonInstrInfo.h"
17 #include "HexagonMachineFunctionInfo.h"
18 #include "HexagonRegisterInfo.h"
19 #include "HexagonSubtarget.h"
20 #include "HexagonTargetMachine.h"
21 #include "llvm/ADT/DenseMap.h"
22 #include "llvm/ADT/DenseSet.h"
23 #include "llvm/CodeGen/MachineBasicBlock.h"
24 #include "llvm/CodeGen/MachineFunction.h"
25 #include "llvm/CodeGen/MachineFunctionPass.h"
26 #include "llvm/CodeGen/MachineInstr.h"
27 #include "llvm/CodeGen/MachineInstrBuilder.h"
28 #include "llvm/CodeGen/Passes.h"
29 #include "llvm/Support/CodeGen.h"
30 #include "llvm/Support/CommandLine.h"
31 #include "llvm/Support/Debug.h"
32 #include "llvm/Support/raw_ostream.h"
33 #include "llvm/Target/TargetRegisterInfo.h"
34
35 using namespace llvm;
36
37 #define DEBUG_TYPE "hexagon-copy-combine"
38
39 static
40 cl::opt<bool> IsCombinesDisabled("disable-merge-into-combines",
41                                  cl::Hidden, cl::ZeroOrMore,
42                                  cl::init(false),
43                                  cl::desc("Disable merging into combines"));
44 static
45 cl::opt<unsigned>
46 MaxNumOfInstsBetweenNewValueStoreAndTFR("max-num-inst-between-tfr-and-nv-store",
47                    cl::Hidden, cl::init(4),
48                    cl::desc("Maximum distance between a tfr feeding a store we "
49                             "consider the store still to be newifiable"));
50
51 namespace llvm {
52   void initializeHexagonCopyToCombinePass(PassRegistry&);
53 }
54
55
56 namespace {
57
58 class HexagonCopyToCombine : public MachineFunctionPass  {
59   const HexagonInstrInfo *TII;
60   const TargetRegisterInfo *TRI;
61   bool ShouldCombineAggressively;
62
63   DenseSet<MachineInstr *> PotentiallyNewifiableTFR;
64 public:
65   static char ID;
66
67   HexagonCopyToCombine() : MachineFunctionPass(ID) {
68     initializeHexagonCopyToCombinePass(*PassRegistry::getPassRegistry());
69   }
70
71   void getAnalysisUsage(AnalysisUsage &AU) const override {
72     MachineFunctionPass::getAnalysisUsage(AU);
73   }
74
75   const char *getPassName() const override {
76     return "Hexagon Copy-To-Combine Pass";
77   }
78
79   bool runOnMachineFunction(MachineFunction &Fn) override;
80
81 private:
82   MachineInstr *findPairable(MachineInstr *I1, bool &DoInsertAtI1);
83
84   void findPotentialNewifiableTFRs(MachineBasicBlock &);
85
86   void combine(MachineInstr *I1, MachineInstr *I2,
87                MachineBasicBlock::iterator &MI, bool DoInsertAtI1);
88
89   bool isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2,
90                             unsigned I1DestReg, unsigned I2DestReg,
91                             bool &DoInsertAtI1);
92
93   void emitCombineRR(MachineBasicBlock::iterator &Before, unsigned DestReg,
94                      MachineOperand &HiOperand, MachineOperand &LoOperand);
95
96   void emitCombineRI(MachineBasicBlock::iterator &Before, unsigned DestReg,
97                      MachineOperand &HiOperand, MachineOperand &LoOperand);
98
99   void emitCombineIR(MachineBasicBlock::iterator &Before, unsigned DestReg,
100                      MachineOperand &HiOperand, MachineOperand &LoOperand);
101
102   void emitCombineII(MachineBasicBlock::iterator &Before, unsigned DestReg,
103                      MachineOperand &HiOperand, MachineOperand &LoOperand);
104 };
105
106 } // End anonymous namespace.
107
108 char HexagonCopyToCombine::ID = 0;
109
110 INITIALIZE_PASS(HexagonCopyToCombine, "hexagon-copy-combine",
111                 "Hexagon Copy-To-Combine Pass", false, false)
112
113 static bool isCombinableInstType(MachineInstr *MI,
114                                  const HexagonInstrInfo *TII,
115                                  bool ShouldCombineAggressively) {
116   switch(MI->getOpcode()) {
117   case Hexagon::TFR: {
118     // A COPY instruction can be combined if its arguments are IntRegs (32bit).
119     assert(MI->getOperand(0).isReg() && MI->getOperand(1).isReg());
120
121     unsigned DestReg = MI->getOperand(0).getReg();
122     unsigned SrcReg = MI->getOperand(1).getReg();
123     return Hexagon::IntRegsRegClass.contains(DestReg) &&
124       Hexagon::IntRegsRegClass.contains(SrcReg);
125   }
126
127   case Hexagon::TFRI: {
128     // A transfer-immediate can be combined if its argument is a signed 8bit
129     // value.
130     assert(MI->getOperand(0).isReg() && MI->getOperand(1).isImm());
131     unsigned DestReg = MI->getOperand(0).getReg();
132
133     // Only combine constant extended TFRI if we are in aggressive mode.
134     return Hexagon::IntRegsRegClass.contains(DestReg) &&
135       (ShouldCombineAggressively || isInt<8>(MI->getOperand(1).getImm()));
136   }
137
138   case Hexagon::TFRI_V4: {
139     if (!ShouldCombineAggressively)
140       return false;
141     assert(MI->getOperand(0).isReg() && MI->getOperand(1).isGlobal());
142
143     // Ensure that TargetFlags are MO_NO_FLAG for a global. This is a
144     // workaround for an ABI bug that prevents GOT relocations on combine
145     // instructions
146     if (MI->getOperand(1).getTargetFlags() != HexagonII::MO_NO_FLAG)
147       return false;
148
149     unsigned DestReg = MI->getOperand(0).getReg();
150     return Hexagon::IntRegsRegClass.contains(DestReg);
151   }
152
153   default:
154     break;
155   }
156
157   return false;
158 }
159
160 static bool isGreaterThan8BitTFRI(MachineInstr *I) {
161   return I->getOpcode() == Hexagon::TFRI &&
162     !isInt<8>(I->getOperand(1).getImm());
163 }
164 static bool isGreaterThan6BitTFRI(MachineInstr *I) {
165   return I->getOpcode() == Hexagon::TFRI &&
166     !isUInt<6>(I->getOperand(1).getImm());
167 }
168
169 /// areCombinableOperations - Returns true if the two instruction can be merge
170 /// into a combine (ignoring register constraints).
171 static bool areCombinableOperations(const TargetRegisterInfo *TRI,
172                                     MachineInstr *HighRegInst,
173                                     MachineInstr *LowRegInst) {
174   assert((HighRegInst->getOpcode() == Hexagon::TFR ||
175           HighRegInst->getOpcode() == Hexagon::TFRI ||
176           HighRegInst->getOpcode() == Hexagon::TFRI_V4) &&
177          (LowRegInst->getOpcode() == Hexagon::TFR ||
178           LowRegInst->getOpcode() == Hexagon::TFRI ||
179           LowRegInst->getOpcode() == Hexagon::TFRI_V4) &&
180          "Assume individual instructions are of a combinable type");
181
182   const HexagonRegisterInfo *QRI =
183     static_cast<const HexagonRegisterInfo *>(TRI);
184
185   // V4 added some combine variations (mixed immediate and register source
186   // operands), if we are on < V4 we can only combine 2 register-to-register
187   // moves and 2 immediate-to-register moves. We also don't have
188   // constant-extenders.
189   if (!QRI->Subtarget.hasV4TOps())
190     return HighRegInst->getOpcode() == LowRegInst->getOpcode() &&
191       !isGreaterThan8BitTFRI(HighRegInst) &&
192       !isGreaterThan6BitTFRI(LowRegInst);
193
194   // There is no combine of two constant extended values.
195   if ((HighRegInst->getOpcode() == Hexagon::TFRI_V4 ||
196        isGreaterThan8BitTFRI(HighRegInst)) &&
197       (LowRegInst->getOpcode() == Hexagon::TFRI_V4 ||
198        isGreaterThan6BitTFRI(LowRegInst)))
199     return false;
200
201   return true;
202 }
203
204 static bool isEvenReg(unsigned Reg) {
205   assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
206          Hexagon::IntRegsRegClass.contains(Reg));
207   return (Reg - Hexagon::R0) % 2 == 0;
208 }
209
210 static void removeKillInfo(MachineInstr *MI, unsigned RegNotKilled) {
211   for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
212     MachineOperand &Op = MI->getOperand(I);
213     if (!Op.isReg() || Op.getReg() != RegNotKilled || !Op.isKill())
214       continue;
215     Op.setIsKill(false);
216   }
217 }
218
219 /// isUnsafeToMoveAcross - Returns true if it is unsafe to move a copy
220 /// instruction from \p UseReg to \p DestReg over the instruction \p I.
221 static bool isUnsafeToMoveAcross(MachineInstr *I, unsigned UseReg,
222                                   unsigned DestReg,
223                                   const TargetRegisterInfo *TRI) {
224   return (UseReg && (I->modifiesRegister(UseReg, TRI))) ||
225           I->modifiesRegister(DestReg, TRI) ||
226           I->readsRegister(DestReg, TRI) ||
227           I->hasUnmodeledSideEffects() ||
228           I->isInlineAsm() || I->isDebugValue();
229 }
230
231 /// isSafeToMoveTogether - Returns true if it is safe to move I1 next to I2 such
232 /// that the two instructions can be paired in a combine.
233 bool HexagonCopyToCombine::isSafeToMoveTogether(MachineInstr *I1,
234                                                 MachineInstr *I2,
235                                                 unsigned I1DestReg,
236                                                 unsigned I2DestReg,
237                                                 bool &DoInsertAtI1) {
238
239   bool IsImmUseReg = I2->getOperand(1).isImm() || I2->getOperand(1).isGlobal();
240   unsigned I2UseReg = IsImmUseReg ? 0 : I2->getOperand(1).getReg();
241
242   // It is not safe to move I1 and I2 into one combine if I2 has a true
243   // dependence on I1.
244   if (I2UseReg && I1->modifiesRegister(I2UseReg, TRI))
245     return false;
246
247   bool isSafe = true;
248
249   // First try to move I2 towards I1.
250   {
251     // A reverse_iterator instantiated like below starts before I2, and I1
252     // respectively.
253     // Look at instructions I in between I2 and (excluding) I1.
254     MachineBasicBlock::reverse_iterator I(I2),
255       End = --(MachineBasicBlock::reverse_iterator(I1));
256     // At 03 we got better results (dhrystone!) by being more conservative.
257     if (!ShouldCombineAggressively)
258       End = MachineBasicBlock::reverse_iterator(I1);
259     // If I2 kills its operand and we move I2 over an instruction that also
260     // uses I2's use reg we need to modify that (first) instruction to now kill
261     // this reg.
262     unsigned KilledOperand = 0;
263     if (I2->killsRegister(I2UseReg))
264       KilledOperand = I2UseReg;
265     MachineInstr *KillingInstr = nullptr;
266
267     for (; I != End; ++I) {
268       // If the intervening instruction I:
269       //   * modifies I2's use reg
270       //   * modifies I2's def reg
271       //   * reads I2's def reg
272       //   * or has unmodelled side effects
273       // we can't move I2 across it.
274       if (isUnsafeToMoveAcross(&*I, I2UseReg, I2DestReg, TRI)) {
275         isSafe = false;
276         break;
277       }
278
279       // Update first use of the killed operand.
280       if (!KillingInstr && KilledOperand &&
281           I->readsRegister(KilledOperand, TRI))
282         KillingInstr = &*I;
283     }
284     if (isSafe) {
285       // Update the intermediate instruction to with the kill flag.
286       if (KillingInstr) {
287         bool Added = KillingInstr->addRegisterKilled(KilledOperand, TRI, true);
288         (void)Added; // suppress compiler warning
289         assert(Added && "Must successfully update kill flag");
290         removeKillInfo(I2, KilledOperand);
291       }
292       DoInsertAtI1 = true;
293       return true;
294     }
295   }
296
297   // Try to move I1 towards I2.
298   {
299     // Look at instructions I in between I1 and (excluding) I2.
300     MachineBasicBlock::iterator I(I1), End(I2);
301     // At O3 we got better results (dhrystone) by being more conservative here.
302     if (!ShouldCombineAggressively)
303       End = std::next(MachineBasicBlock::iterator(I2));
304     IsImmUseReg = I1->getOperand(1).isImm() || I1->getOperand(1).isGlobal();
305     unsigned I1UseReg = IsImmUseReg ? 0 : I1->getOperand(1).getReg();
306     // Track killed operands. If we move across an instruction that kills our
307     // operand, we need to update the kill information on the moved I1. It kills
308     // the operand now.
309     MachineInstr *KillingInstr = nullptr;
310     unsigned KilledOperand = 0;
311
312     while(++I != End) {
313       // If the intervening instruction I:
314       //   * modifies I1's use reg
315       //   * modifies I1's def reg
316       //   * reads I1's def reg
317       //   * or has unmodelled side effects
318       //   We introduce this special case because llvm has no api to remove a
319       //   kill flag for a register (a removeRegisterKilled() analogous to
320       //   addRegisterKilled) that handles aliased register correctly.
321       //   * or has a killed aliased register use of I1's use reg
322       //           %D4<def> = TFRI64 16
323       //           %R6<def> = TFR %R9
324       //           %R8<def> = KILL %R8, %D4<imp-use,kill>
325       //      If we want to move R6 = across the KILL instruction we would have
326       //      to remove the %D4<imp-use,kill> operand. For now, we are
327       //      conservative and disallow the move.
328       // we can't move I1 across it.
329       if (isUnsafeToMoveAcross(I, I1UseReg, I1DestReg, TRI) ||
330           // Check for an aliased register kill. Bail out if we see one.
331           (!I->killsRegister(I1UseReg) && I->killsRegister(I1UseReg, TRI)))
332         return false;
333
334       // Check for an exact kill (registers match).
335       if (I1UseReg && I->killsRegister(I1UseReg)) {
336         assert(!KillingInstr && "Should only see one killing instruction");
337         KilledOperand = I1UseReg;
338         KillingInstr = &*I;
339       }
340     }
341     if (KillingInstr) {
342       removeKillInfo(KillingInstr, KilledOperand);
343       // Update I1 to set the kill flag. This flag will later be picked up by
344       // the new COMBINE instruction.
345       bool Added = I1->addRegisterKilled(KilledOperand, TRI);
346       (void)Added; // suppress compiler warning
347       assert(Added && "Must successfully update kill flag");
348     }
349     DoInsertAtI1 = false;
350   }
351
352   return true;
353 }
354
355 /// findPotentialNewifiableTFRs - Finds tranfers that feed stores that could be
356 /// newified. (A use of a 64 bit register define can not be newified)
357 void
358 HexagonCopyToCombine::findPotentialNewifiableTFRs(MachineBasicBlock &BB) {
359   DenseMap<unsigned, MachineInstr *> LastDef;
360   for (MachineBasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I) {
361     MachineInstr *MI = I;
362     // Mark TFRs that feed a potential new value store as such.
363     if(TII->mayBeNewStore(MI)) {
364       // Look for uses of TFR instructions.
365       for (unsigned OpdIdx = 0, OpdE = MI->getNumOperands(); OpdIdx != OpdE;
366            ++OpdIdx) {
367         MachineOperand &Op = MI->getOperand(OpdIdx);
368
369         // Skip over anything except register uses.
370         if (!Op.isReg() || !Op.isUse() || !Op.getReg())
371           continue;
372
373         // Look for the defining instruction.
374         unsigned Reg = Op.getReg();
375         MachineInstr *DefInst = LastDef[Reg];
376         if (!DefInst)
377           continue;
378         if (!isCombinableInstType(DefInst, TII, ShouldCombineAggressively))
379           continue;
380
381         // Only close newifiable stores should influence the decision.
382         MachineBasicBlock::iterator It(DefInst);
383         unsigned NumInstsToDef = 0;
384         while (&*It++ != MI)
385           ++NumInstsToDef;
386
387         if (NumInstsToDef > MaxNumOfInstsBetweenNewValueStoreAndTFR)
388           continue;
389
390         PotentiallyNewifiableTFR.insert(DefInst);
391       }
392       // Skip to next instruction.
393       continue;
394     }
395
396     // Put instructions that last defined integer or double registers into the
397     // map.
398     for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
399       MachineOperand &Op = MI->getOperand(I);
400       if (!Op.isReg() || !Op.isDef() || !Op.getReg())
401         continue;
402       unsigned Reg = Op.getReg();
403       if (Hexagon::DoubleRegsRegClass.contains(Reg)) {
404         for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
405           LastDef[*SubRegs] = MI;
406         }
407       } else if (Hexagon::IntRegsRegClass.contains(Reg))
408         LastDef[Reg] = MI;
409     }
410   }
411 }
412
413 bool HexagonCopyToCombine::runOnMachineFunction(MachineFunction &MF) {
414
415   if (IsCombinesDisabled) return false;
416
417   bool HasChanged = false;
418
419   // Get target info.
420   TRI = MF.getTarget().getSubtargetImpl()->getRegisterInfo();
421   TII = static_cast<const HexagonInstrInfo *>(
422       MF.getTarget().getSubtargetImpl()->getInstrInfo());
423
424   // Combine aggressively (for code size)
425   ShouldCombineAggressively =
426     MF.getTarget().getOptLevel() <= CodeGenOpt::Default;
427
428   // Traverse basic blocks.
429   for (MachineFunction::iterator BI = MF.begin(), BE = MF.end(); BI != BE;
430        ++BI) {
431     PotentiallyNewifiableTFR.clear();
432     findPotentialNewifiableTFRs(*BI);
433
434     // Traverse instructions in basic block.
435     for(MachineBasicBlock::iterator MI = BI->begin(), End = BI->end();
436         MI != End;) {
437       MachineInstr *I1 = MI++;
438       // Don't combine a TFR whose user could be newified (instructions that
439       // define double registers can not be newified - Programmer's Ref Manual
440       // 5.4.2 New-value stores).
441       if (ShouldCombineAggressively && PotentiallyNewifiableTFR.count(I1))
442         continue;
443
444       // Ignore instructions that are not combinable.
445       if (!isCombinableInstType(I1, TII, ShouldCombineAggressively))
446         continue;
447
448       // Find a second instruction that can be merged into a combine
449       // instruction.
450       bool DoInsertAtI1 = false;
451       MachineInstr *I2 = findPairable(I1, DoInsertAtI1);
452       if (I2) {
453         HasChanged = true;
454         combine(I1, I2, MI, DoInsertAtI1);
455       }
456     }
457   }
458
459   return HasChanged;
460 }
461
462 /// findPairable - Returns an instruction that can be merged with \p I1 into a
463 /// COMBINE instruction or 0 if no such instruction can be found. Returns true
464 /// in \p DoInsertAtI1 if the combine must be inserted at instruction \p I1
465 /// false if the combine must be inserted at the returned instruction.
466 MachineInstr *HexagonCopyToCombine::findPairable(MachineInstr *I1,
467                                                  bool &DoInsertAtI1) {
468   MachineBasicBlock::iterator I2 = std::next(MachineBasicBlock::iterator(I1));
469   unsigned I1DestReg = I1->getOperand(0).getReg();
470
471   for (MachineBasicBlock::iterator End = I1->getParent()->end(); I2 != End;
472        ++I2) {
473     // Bail out early if we see a second definition of I1DestReg.
474     if (I2->modifiesRegister(I1DestReg, TRI))
475       break;
476
477     // Ignore non-combinable instructions.
478     if (!isCombinableInstType(I2, TII, ShouldCombineAggressively))
479       continue;
480
481     // Don't combine a TFR whose user could be newified.
482     if (ShouldCombineAggressively && PotentiallyNewifiableTFR.count(I2))
483       continue;
484
485     unsigned I2DestReg = I2->getOperand(0).getReg();
486
487     // Check that registers are adjacent and that the first destination register
488     // is even.
489     bool IsI1LowReg = (I2DestReg - I1DestReg) == 1;
490     bool IsI2LowReg = (I1DestReg - I2DestReg) == 1;
491     unsigned FirstRegIndex = IsI1LowReg ? I1DestReg : I2DestReg;
492     if ((!IsI1LowReg && !IsI2LowReg) || !isEvenReg(FirstRegIndex))
493       continue;
494
495     // Check that the two instructions are combinable. V4 allows more
496     // instructions to be merged into a combine.
497     // The order matters because in a TFRI we might can encode a int8 as the
498     // hi reg operand but only a uint6 as the low reg operand.
499     if ((IsI2LowReg && !areCombinableOperations(TRI, I1, I2)) ||
500         (IsI1LowReg && !areCombinableOperations(TRI, I2, I1)))
501       break;
502
503     if (isSafeToMoveTogether(I1, I2, I1DestReg, I2DestReg,
504                              DoInsertAtI1))
505       return I2;
506
507     // Not safe. Stop searching.
508     break;
509   }
510   return nullptr;
511 }
512
513 void HexagonCopyToCombine::combine(MachineInstr *I1, MachineInstr *I2,
514                                    MachineBasicBlock::iterator &MI,
515                                    bool DoInsertAtI1) {
516   // We are going to delete I2. If MI points to I2 advance it to the next
517   // instruction.
518   if ((MachineInstr *)MI == I2) ++MI;
519
520   // Figure out whether I1 or I2 goes into the lowreg part.
521   unsigned I1DestReg = I1->getOperand(0).getReg();
522   unsigned I2DestReg = I2->getOperand(0).getReg();
523   bool IsI1Loreg = (I2DestReg - I1DestReg) == 1;
524   unsigned LoRegDef = IsI1Loreg ? I1DestReg : I2DestReg;
525
526   // Get the double word register.
527   unsigned DoubleRegDest =
528     TRI->getMatchingSuperReg(LoRegDef, Hexagon::subreg_loreg,
529                              &Hexagon::DoubleRegsRegClass);
530   assert(DoubleRegDest != 0 && "Expect a valid register");
531
532
533   // Setup source operands.
534   MachineOperand &LoOperand = IsI1Loreg ? I1->getOperand(1) :
535     I2->getOperand(1);
536   MachineOperand &HiOperand = IsI1Loreg ? I2->getOperand(1) :
537     I1->getOperand(1);
538
539   // Figure out which source is a register and which a constant.
540   bool IsHiReg = HiOperand.isReg();
541   bool IsLoReg = LoOperand.isReg();
542
543   MachineBasicBlock::iterator InsertPt(DoInsertAtI1 ? I1 : I2);
544   // Emit combine.
545   if (IsHiReg && IsLoReg)
546     emitCombineRR(InsertPt, DoubleRegDest, HiOperand, LoOperand);
547   else if (IsHiReg)
548     emitCombineRI(InsertPt, DoubleRegDest, HiOperand, LoOperand);
549   else if (IsLoReg)
550     emitCombineIR(InsertPt, DoubleRegDest, HiOperand, LoOperand);
551   else
552     emitCombineII(InsertPt, DoubleRegDest, HiOperand, LoOperand);
553
554   I1->eraseFromParent();
555   I2->eraseFromParent();
556 }
557
558 void HexagonCopyToCombine::emitCombineII(MachineBasicBlock::iterator &InsertPt,
559                                          unsigned DoubleDestReg,
560                                          MachineOperand &HiOperand,
561                                          MachineOperand &LoOperand) {
562   DebugLoc DL = InsertPt->getDebugLoc();
563   MachineBasicBlock *BB = InsertPt->getParent();
564
565   // Handle  globals.
566   if (HiOperand.isGlobal()) {
567     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_Ii), DoubleDestReg)
568       .addGlobalAddress(HiOperand.getGlobal(), HiOperand.getOffset(),
569                         HiOperand.getTargetFlags())
570       .addImm(LoOperand.getImm());
571     return;
572   }
573   if (LoOperand.isGlobal()) {
574     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_iI_V4), DoubleDestReg)
575       .addImm(HiOperand.getImm())
576       .addGlobalAddress(LoOperand.getGlobal(), LoOperand.getOffset(),
577                         LoOperand.getTargetFlags());
578     return;
579   }
580
581   // Handle constant extended immediates.
582   if (!isInt<8>(HiOperand.getImm())) {
583     assert(isInt<8>(LoOperand.getImm()));
584     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_Ii), DoubleDestReg)
585       .addImm(HiOperand.getImm())
586       .addImm(LoOperand.getImm());
587     return;
588   }
589
590   if (!isUInt<6>(LoOperand.getImm())) {
591     assert(isInt<8>(HiOperand.getImm()));
592     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_iI_V4), DoubleDestReg)
593       .addImm(HiOperand.getImm())
594       .addImm(LoOperand.getImm());
595     return;
596   }
597
598   // Insert new combine instruction.
599   //  DoubleRegDest = combine #HiImm, #LoImm
600   BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_Ii), DoubleDestReg)
601     .addImm(HiOperand.getImm())
602     .addImm(LoOperand.getImm());
603 }
604
605 void HexagonCopyToCombine::emitCombineIR(MachineBasicBlock::iterator &InsertPt,
606                                          unsigned DoubleDestReg,
607                                          MachineOperand &HiOperand,
608                                          MachineOperand &LoOperand) {
609   unsigned LoReg = LoOperand.getReg();
610   unsigned LoRegKillFlag = getKillRegState(LoOperand.isKill());
611
612   DebugLoc DL = InsertPt->getDebugLoc();
613   MachineBasicBlock *BB = InsertPt->getParent();
614
615   // Handle global.
616   if (HiOperand.isGlobal()) {
617     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_Ir_V4), DoubleDestReg)
618       .addGlobalAddress(HiOperand.getGlobal(), HiOperand.getOffset(),
619                         HiOperand.getTargetFlags())
620       .addReg(LoReg, LoRegKillFlag);
621     return;
622   }
623   // Insert new combine instruction.
624   //  DoubleRegDest = combine #HiImm, LoReg
625   BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_Ir_V4), DoubleDestReg)
626     .addImm(HiOperand.getImm())
627     .addReg(LoReg, LoRegKillFlag);
628 }
629
630 void HexagonCopyToCombine::emitCombineRI(MachineBasicBlock::iterator &InsertPt,
631                                          unsigned DoubleDestReg,
632                                          MachineOperand &HiOperand,
633                                          MachineOperand &LoOperand) {
634   unsigned HiRegKillFlag = getKillRegState(HiOperand.isKill());
635   unsigned HiReg = HiOperand.getReg();
636
637   DebugLoc DL = InsertPt->getDebugLoc();
638   MachineBasicBlock *BB = InsertPt->getParent();
639
640   // Handle global.
641   if (LoOperand.isGlobal()) {
642     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_rI_V4), DoubleDestReg)
643       .addReg(HiReg, HiRegKillFlag)
644       .addGlobalAddress(LoOperand.getGlobal(), LoOperand.getOffset(),
645                         LoOperand.getTargetFlags());
646     return;
647   }
648
649   // Insert new combine instruction.
650   //  DoubleRegDest = combine HiReg, #LoImm
651   BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_rI_V4), DoubleDestReg)
652     .addReg(HiReg, HiRegKillFlag)
653     .addImm(LoOperand.getImm());
654 }
655
656 void HexagonCopyToCombine::emitCombineRR(MachineBasicBlock::iterator &InsertPt,
657                                          unsigned DoubleDestReg,
658                                          MachineOperand &HiOperand,
659                                          MachineOperand &LoOperand) {
660   unsigned LoRegKillFlag = getKillRegState(LoOperand.isKill());
661   unsigned HiRegKillFlag = getKillRegState(HiOperand.isKill());
662   unsigned LoReg = LoOperand.getReg();
663   unsigned HiReg = HiOperand.getReg();
664
665   DebugLoc DL = InsertPt->getDebugLoc();
666   MachineBasicBlock *BB = InsertPt->getParent();
667
668   // Insert new combine instruction.
669   //  DoubleRegDest = combine HiReg, LoReg
670   BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_rr), DoubleDestReg)
671     .addReg(HiReg, HiRegKillFlag)
672     .addReg(LoReg, LoRegKillFlag);
673 }
674
675 FunctionPass *llvm::createHexagonCopyToCombine() {
676   return new HexagonCopyToCombine();
677 }