dd63523291237aa5d02480c7d37d5cdee08ccf5a
[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 #define DEBUG_TYPE "hexagon-copy-combine"
15
16 #include "llvm/PassSupport.h"
17 #include "llvm/ADT/DenseSet.h"
18 #include "llvm/ADT/DenseMap.h"
19 #include "llvm/CodeGen/Passes.h"
20 #include "llvm/CodeGen/MachineBasicBlock.h"
21 #include "llvm/CodeGen/MachineFunction.h"
22 #include "llvm/CodeGen/MachineFunctionPass.h"
23 #include "llvm/CodeGen/MachineInstr.h"
24 #include "llvm/CodeGen/MachineInstrBuilder.h"
25 #include "llvm/Target/TargetRegisterInfo.h"
26 #include "llvm/Support/CodeGen.h"
27 #include "llvm/Support/CommandLine.h"
28 #include "llvm/Support/Debug.h"
29 #include "llvm/Support/raw_ostream.h"
30
31 #include "Hexagon.h"
32 #include "HexagonInstrInfo.h"
33 #include "HexagonRegisterInfo.h"
34 #include "HexagonSubtarget.h"
35 #include "HexagonTargetMachine.h"
36 #include "HexagonMachineFunctionInfo.h"
37
38 using namespace llvm;
39
40 static
41 cl::opt<bool> IsCombinesDisabled("disable-merge-into-combines",
42                                  cl::Hidden, cl::ZeroOrMore,
43                                  cl::init(false),
44                                  cl::desc("Disable merging into combines"));
45 static
46 cl::opt<unsigned>
47 MaxNumOfInstsBetweenNewValueStoreAndTFR("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
52 namespace llvm {
53   void initializeHexagonCopyToCombinePass(PassRegistry&);
54 }
55
56
57 namespace {
58
59 class HexagonCopyToCombine : public MachineFunctionPass  {
60   const HexagonInstrInfo *TII;
61   const TargetRegisterInfo *TRI;
62   bool ShouldCombineAggressively;
63
64   DenseSet<MachineInstr *> PotentiallyNewifiableTFR;
65 public:
66   static char ID;
67
68   HexagonCopyToCombine() : MachineFunctionPass(ID) {
69     initializeHexagonCopyToCombinePass(*PassRegistry::getPassRegistry());
70   }
71
72   virtual void getAnalysisUsage(AnalysisUsage &AU) const {
73     MachineFunctionPass::getAnalysisUsage(AU);
74   }
75
76   const char *getPassName() const {
77     return "Hexagon Copy-To-Combine Pass";
78   }
79
80   virtual bool runOnMachineFunction(MachineFunction &Fn);
81
82 private:
83   MachineInstr *findPairable(MachineInstr *I1, bool &DoInsertAtI1);
84
85   void findPotentialNewifiableTFRs(MachineBasicBlock &);
86
87   void combine(MachineInstr *I1, MachineInstr *I2,
88                MachineBasicBlock::iterator &MI, bool DoInsertAtI1);
89
90   bool isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2,
91                             unsigned I1DestReg, unsigned I2DestReg,
92                             bool &DoInsertAtI1);
93
94   void emitCombineRR(MachineBasicBlock::iterator &Before, unsigned DestReg,
95                      MachineOperand &HiOperand, MachineOperand &LoOperand);
96
97   void emitCombineRI(MachineBasicBlock::iterator &Before, unsigned DestReg,
98                      MachineOperand &HiOperand, MachineOperand &LoOperand);
99
100   void emitCombineIR(MachineBasicBlock::iterator &Before, unsigned DestReg,
101                      MachineOperand &HiOperand, MachineOperand &LoOperand);
102
103   void emitCombineII(MachineBasicBlock::iterator &Before, unsigned DestReg,
104                      MachineOperand &HiOperand, MachineOperand &LoOperand);
105 };
106
107 } // End anonymous namespace.
108
109 char HexagonCopyToCombine::ID = 0;
110
111 INITIALIZE_PASS(HexagonCopyToCombine, "hexagon-copy-combine",
112                 "Hexagon Copy-To-Combine Pass", false, false)
113
114 static bool isCombinableInstType(MachineInstr *MI,
115                                  const HexagonInstrInfo *TII,
116                                  bool ShouldCombineAggressively) {
117   switch(MI->getOpcode()) {
118   case Hexagon::TFR: {
119     // A COPY instruction can be combined if its arguments are IntRegs (32bit).
120     assert(MI->getOperand(0).isReg() && MI->getOperand(1).isReg());
121
122     unsigned DestReg = MI->getOperand(0).getReg();
123     unsigned SrcReg = MI->getOperand(1).getReg();
124     return Hexagon::IntRegsRegClass.contains(DestReg) &&
125       Hexagon::IntRegsRegClass.contains(SrcReg);
126   }
127
128   case Hexagon::TFRI: {
129     // A transfer-immediate can be combined if its argument is a signed 8bit
130     // value.
131     assert(MI->getOperand(0).isReg() && MI->getOperand(1).isImm());
132     unsigned DestReg = MI->getOperand(0).getReg();
133
134     // Only combine constant extended TFRI if we are in aggressive mode.
135     return Hexagon::IntRegsRegClass.contains(DestReg) &&
136       (ShouldCombineAggressively || isInt<8>(MI->getOperand(1).getImm()));
137   }
138
139   case Hexagon::TFRI_V4: {
140     if (!ShouldCombineAggressively)
141       return false;
142     assert(MI->getOperand(0).isReg() && MI->getOperand(1).isGlobal());
143
144     // Ensure that TargetFlags are MO_NO_FLAG for a global. This is a
145     // workaround for an ABI bug that prevents GOT relocations on combine
146     // instructions
147     if (MI->getOperand(1).getTargetFlags() != HexagonII::MO_NO_FLAG)
148       return false;
149
150     unsigned DestReg = MI->getOperand(0).getReg();
151     return Hexagon::IntRegsRegClass.contains(DestReg);
152   }
153
154   default:
155     break;
156   }
157
158   return false;
159 }
160
161 static bool isGreaterThan8BitTFRI(MachineInstr *I) {
162   return I->getOpcode() == Hexagon::TFRI &&
163     !isInt<8>(I->getOperand(1).getImm());
164 }
165 static bool isGreaterThan6BitTFRI(MachineInstr *I) {
166   return I->getOpcode() == Hexagon::TFRI &&
167     !isUInt<6>(I->getOperand(1).getImm());
168 }
169
170 /// areCombinableOperations - Returns true if the two instruction can be merge
171 /// into a combine (ignoring register constraints).
172 static bool areCombinableOperations(const TargetRegisterInfo *TRI,
173                                     MachineInstr *HighRegInst,
174                                     MachineInstr *LowRegInst) {
175   assert((HighRegInst->getOpcode() == Hexagon::TFR ||
176           HighRegInst->getOpcode() == Hexagon::TFRI ||
177           HighRegInst->getOpcode() == Hexagon::TFRI_V4) &&
178          (LowRegInst->getOpcode() == Hexagon::TFR ||
179           LowRegInst->getOpcode() == Hexagon::TFRI ||
180           LowRegInst->getOpcode() == Hexagon::TFRI_V4) &&
181          "Assume individual instructions are of a combinable type");
182
183   const HexagonRegisterInfo *QRI =
184     static_cast<const HexagonRegisterInfo *>(TRI);
185
186   // V4 added some combine variations (mixed immediate and register source
187   // operands), if we are on < V4 we can only combine 2 register-to-register
188   // moves and 2 immediate-to-register moves. We also don't have
189   // constant-extenders.
190   if (!QRI->Subtarget.hasV4TOps())
191     return HighRegInst->getOpcode() == LowRegInst->getOpcode() &&
192       !isGreaterThan8BitTFRI(HighRegInst) &&
193       !isGreaterThan6BitTFRI(LowRegInst);
194
195   // There is no combine of two constant extended values.
196   if ((HighRegInst->getOpcode() == Hexagon::TFRI_V4 ||
197        isGreaterThan8BitTFRI(HighRegInst)) &&
198       (LowRegInst->getOpcode() == Hexagon::TFRI_V4 ||
199        isGreaterThan6BitTFRI(LowRegInst)))
200     return false;
201
202   return true;
203 }
204
205 static bool isEvenReg(unsigned Reg) {
206   assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
207          Hexagon::IntRegsRegClass.contains(Reg));
208   return (Reg - Hexagon::R0) % 2 == 0;
209 }
210
211 static void removeKillInfo(MachineInstr *MI, unsigned RegNotKilled) {
212   for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
213     MachineOperand &Op = MI->getOperand(I);
214     if (!Op.isReg() || Op.getReg() != RegNotKilled || !Op.isKill())
215       continue;
216     Op.setIsKill(false);
217   }
218 }
219
220 /// isUnsafeToMoveAccross - Returns true if it is unsafe to move a copy
221 /// instruction from \p UseReg to \p DestReg over the instruction \p I.
222 bool isUnsafeToMoveAccross(MachineInstr *I, unsigned UseReg, 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 = 0;
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 (isUnsafeToMoveAccross(&*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; // supress 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 = llvm::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 accross 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 = 0;
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 (isUnsafeToMoveAccross(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 == 0 && "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; // supress 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().getRegisterInfo();
421   TII = static_cast<const HexagonInstrInfo *>(MF.getTarget().getInstrInfo());
422
423   // Combine aggressively (for code size)
424   ShouldCombineAggressively =
425     MF.getTarget().getOptLevel() <= CodeGenOpt::Default;
426
427   // Traverse basic blocks.
428   for (MachineFunction::iterator BI = MF.begin(), BE = MF.end(); BI != BE;
429        ++BI) {
430     PotentiallyNewifiableTFR.clear();
431     findPotentialNewifiableTFRs(*BI);
432
433     // Traverse instructions in basic block.
434     for(MachineBasicBlock::iterator MI = BI->begin(), End = BI->end();
435         MI != End;) {
436       MachineInstr *I1 = MI++;
437       // Don't combine a TFR whose user could be newified (instructions that
438       // define double registers can not be newified - Programmer's Ref Manual
439       // 5.4.2 New-value stores).
440       if (ShouldCombineAggressively && PotentiallyNewifiableTFR.count(I1))
441         continue;
442
443       // Ignore instructions that are not combinable.
444       if (!isCombinableInstType(I1, TII, ShouldCombineAggressively))
445         continue;
446
447       // Find a second instruction that can be merged into a combine
448       // instruction.
449       bool DoInsertAtI1 = false;
450       MachineInstr *I2 = findPairable(I1, DoInsertAtI1);
451       if (I2) {
452         HasChanged = true;
453         combine(I1, I2, MI, DoInsertAtI1);
454       }
455     }
456   }
457
458   return HasChanged;
459 }
460
461 /// findPairable - Returns an instruction that can be merged with \p I1 into a
462 /// COMBINE instruction or 0 if no such instruction can be found. Returns true
463 /// in \p DoInsertAtI1 if the combine must be inserted at instruction \p I1
464 /// false if the combine must be inserted at the returned instruction.
465 MachineInstr *HexagonCopyToCombine::findPairable(MachineInstr *I1,
466                                                  bool &DoInsertAtI1) {
467   MachineBasicBlock::iterator I2 = llvm::next(MachineBasicBlock::iterator(I1));
468   unsigned I1DestReg = I1->getOperand(0).getReg();
469
470   for (MachineBasicBlock::iterator End = I1->getParent()->end(); I2 != End;
471        ++I2) {
472     // Bail out early if we see a second definition of I1DestReg.
473     if (I2->modifiesRegister(I1DestReg, TRI))
474       break;
475
476     // Ignore non-combinable instructions.
477     if (!isCombinableInstType(I2, TII, ShouldCombineAggressively))
478       continue;
479
480     // Don't combine a TFR whose user could be newified.
481     if (ShouldCombineAggressively && PotentiallyNewifiableTFR.count(I2))
482       continue;
483
484     unsigned I2DestReg = I2->getOperand(0).getReg();
485
486     // Check that registers are adjacent and that the first destination register
487     // is even.
488     bool IsI1LowReg = (I2DestReg - I1DestReg) == 1;
489     bool IsI2LowReg = (I1DestReg - I2DestReg) == 1;
490     unsigned FirstRegIndex = IsI1LowReg ? I1DestReg : I2DestReg;
491     if ((!IsI1LowReg && !IsI2LowReg) || !isEvenReg(FirstRegIndex))
492       continue;
493
494     // Check that the two instructions are combinable. V4 allows more
495     // instructions to be merged into a combine.
496     // The order matters because in a TFRI we might can encode a int8 as the
497     // hi reg operand but only a uint6 as the low reg operand.
498     if ((IsI2LowReg && !areCombinableOperations(TRI, I1, I2)) ||
499         (IsI1LowReg && !areCombinableOperations(TRI, I2, I1)))
500       break;
501
502     if (isSafeToMoveTogether(I1, I2, I1DestReg, I2DestReg,
503                              DoInsertAtI1))
504       return I2;
505
506     // Not safe. Stop searching.
507     break;
508   }
509   return 0;
510 }
511
512 void HexagonCopyToCombine::combine(MachineInstr *I1, MachineInstr *I2,
513                                    MachineBasicBlock::iterator &MI,
514                                    bool DoInsertAtI1) {
515   // We are going to delete I2. If MI points to I2 advance it to the next
516   // instruction.
517   if ((MachineInstr *)MI == I2) ++MI;
518
519   // Figure out whether I1 or I2 goes into the lowreg part.
520   unsigned I1DestReg = I1->getOperand(0).getReg();
521   unsigned I2DestReg = I2->getOperand(0).getReg();
522   bool IsI1Loreg = (I2DestReg - I1DestReg) == 1;
523   unsigned LoRegDef = IsI1Loreg ? I1DestReg : I2DestReg;
524
525   // Get the double word register.
526   unsigned DoubleRegDest =
527     TRI->getMatchingSuperReg(LoRegDef, Hexagon::subreg_loreg,
528                              &Hexagon::DoubleRegsRegClass);
529   assert(DoubleRegDest != 0 && "Expect a valid register");
530
531
532   // Setup source operands.
533   MachineOperand &LoOperand = IsI1Loreg ? I1->getOperand(1) :
534     I2->getOperand(1);
535   MachineOperand &HiOperand = IsI1Loreg ? I2->getOperand(1) :
536     I1->getOperand(1);
537
538   // Figure out which source is a register and which a constant.
539   bool IsHiReg = HiOperand.isReg();
540   bool IsLoReg = LoOperand.isReg();
541
542   MachineBasicBlock::iterator InsertPt(DoInsertAtI1 ? I1 : I2);
543   // Emit combine.
544   if (IsHiReg && IsLoReg)
545     emitCombineRR(InsertPt, DoubleRegDest, HiOperand, LoOperand);
546   else if (IsHiReg)
547     emitCombineRI(InsertPt, DoubleRegDest, HiOperand, LoOperand);
548   else if (IsLoReg)
549     emitCombineIR(InsertPt, DoubleRegDest, HiOperand, LoOperand);
550   else
551     emitCombineII(InsertPt, DoubleRegDest, HiOperand, LoOperand);
552
553   I1->eraseFromParent();
554   I2->eraseFromParent();
555 }
556
557 void HexagonCopyToCombine::emitCombineII(MachineBasicBlock::iterator &InsertPt,
558                                          unsigned DoubleDestReg,
559                                          MachineOperand &HiOperand,
560                                          MachineOperand &LoOperand) {
561   DebugLoc DL = InsertPt->getDebugLoc();
562   MachineBasicBlock *BB = InsertPt->getParent();
563
564   // Handle  globals.
565   if (HiOperand.isGlobal()) {
566     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_Ii), DoubleDestReg)
567       .addGlobalAddress(HiOperand.getGlobal(), HiOperand.getOffset(),
568                         HiOperand.getTargetFlags())
569       .addImm(LoOperand.getImm());
570     return;
571   }
572   if (LoOperand.isGlobal()) {
573     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_iI_V4), DoubleDestReg)
574       .addImm(HiOperand.getImm())
575       .addGlobalAddress(LoOperand.getGlobal(), LoOperand.getOffset(),
576                         LoOperand.getTargetFlags());
577     return;
578   }
579
580   // Handle constant extended immediates.
581   if (!isInt<8>(HiOperand.getImm())) {
582     assert(isInt<8>(LoOperand.getImm()));
583     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_Ii), DoubleDestReg)
584       .addImm(HiOperand.getImm())
585       .addImm(LoOperand.getImm());
586     return;
587   }
588
589   if (!isUInt<6>(LoOperand.getImm())) {
590     assert(isInt<8>(HiOperand.getImm()));
591     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_iI_V4), DoubleDestReg)
592       .addImm(HiOperand.getImm())
593       .addImm(LoOperand.getImm());
594     return;
595   }
596
597   // Insert new combine instruction.
598   //  DoubleRegDest = combine #HiImm, #LoImm
599   BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_Ii), DoubleDestReg)
600     .addImm(HiOperand.getImm())
601     .addImm(LoOperand.getImm());
602 }
603
604 void HexagonCopyToCombine::emitCombineIR(MachineBasicBlock::iterator &InsertPt,
605                                          unsigned DoubleDestReg,
606                                          MachineOperand &HiOperand,
607                                          MachineOperand &LoOperand) {
608   unsigned LoReg = LoOperand.getReg();
609   unsigned LoRegKillFlag = getKillRegState(LoOperand.isKill());
610
611   DebugLoc DL = InsertPt->getDebugLoc();
612   MachineBasicBlock *BB = InsertPt->getParent();
613
614   // Handle global.
615   if (HiOperand.isGlobal()) {
616     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_Ir_V4), DoubleDestReg)
617       .addGlobalAddress(HiOperand.getGlobal(), HiOperand.getOffset(),
618                         HiOperand.getTargetFlags())
619       .addReg(LoReg, LoRegKillFlag);
620     return;
621   }
622   // Insert new combine instruction.
623   //  DoubleRegDest = combine #HiImm, LoReg
624   BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_Ir_V4), DoubleDestReg)
625     .addImm(HiOperand.getImm())
626     .addReg(LoReg, LoRegKillFlag);
627 }
628
629 void HexagonCopyToCombine::emitCombineRI(MachineBasicBlock::iterator &InsertPt,
630                                          unsigned DoubleDestReg,
631                                          MachineOperand &HiOperand,
632                                          MachineOperand &LoOperand) {
633   unsigned HiRegKillFlag = getKillRegState(HiOperand.isKill());
634   unsigned HiReg = HiOperand.getReg();
635
636   DebugLoc DL = InsertPt->getDebugLoc();
637   MachineBasicBlock *BB = InsertPt->getParent();
638
639   // Handle global.
640   if (LoOperand.isGlobal()) {
641     BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_rI_V4), DoubleDestReg)
642       .addReg(HiReg, HiRegKillFlag)
643       .addGlobalAddress(LoOperand.getGlobal(), LoOperand.getOffset(),
644                         LoOperand.getTargetFlags());
645     return;
646   }
647
648   // Insert new combine instruction.
649   //  DoubleRegDest = combine HiReg, #LoImm
650   BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_rI_V4), DoubleDestReg)
651     .addReg(HiReg, HiRegKillFlag)
652     .addImm(LoOperand.getImm());
653 }
654
655 void HexagonCopyToCombine::emitCombineRR(MachineBasicBlock::iterator &InsertPt,
656                                          unsigned DoubleDestReg,
657                                          MachineOperand &HiOperand,
658                                          MachineOperand &LoOperand) {
659   unsigned LoRegKillFlag = getKillRegState(LoOperand.isKill());
660   unsigned HiRegKillFlag = getKillRegState(HiOperand.isKill());
661   unsigned LoReg = LoOperand.getReg();
662   unsigned HiReg = HiOperand.getReg();
663
664   DebugLoc DL = InsertPt->getDebugLoc();
665   MachineBasicBlock *BB = InsertPt->getParent();
666
667   // Insert new combine instruction.
668   //  DoubleRegDest = combine HiReg, LoReg
669   BuildMI(*BB, InsertPt, DL, TII->get(Hexagon::COMBINE_rr), DoubleDestReg)
670     .addReg(HiReg, HiRegKillFlag)
671     .addReg(LoReg, LoRegKillFlag);
672 }
673
674 FunctionPass *llvm::createHexagonCopyToCombine() {
675   return new HexagonCopyToCombine();
676 }