c0e3ac69bcb2597c73a6848053f40e28b55de462
[oota-llvm.git] / lib / Target / ARM / Thumb2SizeReduction.cpp
1 //===-- Thumb2SizeReduction.cpp - Thumb2 code size reduction pass -*- C++ -*-=//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #define DEBUG_TYPE "t2-reduce-size"
11 #include "ARM.h"
12 #include "ARMBaseRegisterInfo.h"
13 #include "ARMBaseInstrInfo.h"
14 #include "ARMSubtarget.h"
15 #include "Thumb2InstrInfo.h"
16 #include "MCTargetDesc/ARMAddressingModes.h"
17 #include "llvm/CodeGen/MachineInstr.h"
18 #include "llvm/CodeGen/MachineInstrBuilder.h"
19 #include "llvm/CodeGen/MachineFunctionPass.h"
20 #include "llvm/Support/CommandLine.h"
21 #include "llvm/Support/Debug.h"
22 #include "llvm/Support/raw_ostream.h"
23 #include "llvm/ADT/DenseMap.h"
24 #include "llvm/ADT/Statistic.h"
25 using namespace llvm;
26
27 STATISTIC(NumNarrows,  "Number of 32-bit instrs reduced to 16-bit ones");
28 STATISTIC(Num2Addrs,   "Number of 32-bit instrs reduced to 2addr 16-bit ones");
29 STATISTIC(NumLdSts,    "Number of 32-bit load / store reduced to 16-bit ones");
30
31 static cl::opt<int> ReduceLimit("t2-reduce-limit",
32                                 cl::init(-1), cl::Hidden);
33 static cl::opt<int> ReduceLimit2Addr("t2-reduce-limit2",
34                                      cl::init(-1), cl::Hidden);
35 static cl::opt<int> ReduceLimitLdSt("t2-reduce-limit3",
36                                      cl::init(-1), cl::Hidden);
37
38 namespace {
39   /// ReduceTable - A static table with information on mapping from wide
40   /// opcodes to narrow
41   struct ReduceEntry {
42     unsigned WideOpc;      // Wide opcode
43     unsigned NarrowOpc1;   // Narrow opcode to transform to
44     unsigned NarrowOpc2;   // Narrow opcode when it's two-address
45     uint8_t  Imm1Limit;    // Limit of immediate field (bits)
46     uint8_t  Imm2Limit;    // Limit of immediate field when it's two-address
47     unsigned LowRegs1 : 1; // Only possible if low-registers are used
48     unsigned LowRegs2 : 1; // Only possible if low-registers are used (2addr)
49     unsigned PredCC1  : 2; // 0 - If predicated, cc is on and vice versa.
50                            // 1 - No cc field.
51                            // 2 - Always set CPSR.
52     unsigned PredCC2  : 2;
53     unsigned PartFlag : 1; // 16-bit instruction does partial flag update
54     unsigned Special  : 1; // Needs to be dealt with specially
55   };
56
57   static const ReduceEntry ReduceTable[] = {
58     // Wide,        Narrow1,      Narrow2,     imm1,imm2,  lo1, lo2, P/C, PF, S
59     { ARM::t2ADCrr, 0,            ARM::tADC,     0,   0,    0,   1,  0,0, 0,0 },
60     { ARM::t2ADDri, ARM::tADDi3,  ARM::tADDi8,   3,   8,    1,   1,  0,0, 0,1 },
61     { ARM::t2ADDrr, ARM::tADDrr,  ARM::tADDhirr, 0,   0,    1,   0,  0,1, 0,0 },
62     { ARM::t2ADDSri,ARM::tADDi3,  ARM::tADDi8,   3,   8,    1,   1,  2,2, 0,1 },
63     { ARM::t2ADDSrr,ARM::tADDrr,  0,             0,   0,    1,   0,  2,0, 0,1 },
64     { ARM::t2ANDrr, 0,            ARM::tAND,     0,   0,    0,   1,  0,0, 1,0 },
65     { ARM::t2ASRri, ARM::tASRri,  0,             5,   0,    1,   0,  0,0, 1,0 },
66     { ARM::t2ASRrr, 0,            ARM::tASRrr,   0,   0,    0,   1,  0,0, 1,0 },
67     { ARM::t2BICrr, 0,            ARM::tBIC,     0,   0,    0,   1,  0,0, 1,0 },
68     //FIXME: Disable CMN, as CCodes are backwards from compare expectations
69     //{ ARM::t2CMNrr, ARM::tCMN,  0,             0,   0,    1,   0,  2,0, 0,0 },
70     { ARM::t2CMPri, ARM::tCMPi8,  0,             8,   0,    1,   0,  2,0, 0,0 },
71     { ARM::t2CMPrr, ARM::tCMPhir, 0,             0,   0,    0,   0,  2,0, 0,1 },
72     { ARM::t2EORrr, 0,            ARM::tEOR,     0,   0,    0,   1,  0,0, 1,0 },
73     // FIXME: adr.n immediate offset must be multiple of 4.
74     //{ ARM::t2LEApcrelJT,ARM::tLEApcrelJT, 0,   0,   0,    1,   0,  1,0, 0,0 },
75     { ARM::t2LSLri, ARM::tLSLri,  0,             5,   0,    1,   0,  0,0, 1,0 },
76     { ARM::t2LSLrr, 0,            ARM::tLSLrr,   0,   0,    0,   1,  0,0, 1,0 },
77     { ARM::t2LSRri, ARM::tLSRri,  0,             5,   0,    1,   0,  0,0, 1,0 },
78     { ARM::t2LSRrr, 0,            ARM::tLSRrr,   0,   0,    0,   1,  0,0, 1,0 },
79     // FIXME: tMOVi8 and tMVN also partially update CPSR but they are less
80     // likely to cause issue in the loop. As a size / performance workaround,
81     // they are not marked as such.
82     { ARM::t2MOVi,  ARM::tMOVi8,  0,             8,   0,    1,   0,  0,0, 0,0 },
83     { ARM::t2MOVi16,ARM::tMOVi8,  0,             8,   0,    1,   0,  0,0, 0,1 },
84     // FIXME: Do we need the 16-bit 'S' variant?
85     { ARM::t2MOVr,ARM::tMOVr,     0,             0,   0,    0,   0,  1,0, 0,0 },
86     { ARM::t2MUL,   0,            ARM::tMUL,     0,   0,    0,   1,  0,0, 1,0 },
87     { ARM::t2MVNr,  ARM::tMVN,    0,             0,   0,    1,   0,  0,0, 0,0 },
88     { ARM::t2ORRrr, 0,            ARM::tORR,     0,   0,    0,   1,  0,0, 1,0 },
89     { ARM::t2REV,   ARM::tREV,    0,             0,   0,    1,   0,  1,0, 0,0 },
90     { ARM::t2REV16, ARM::tREV16,  0,             0,   0,    1,   0,  1,0, 0,0 },
91     { ARM::t2REVSH, ARM::tREVSH,  0,             0,   0,    1,   0,  1,0, 0,0 },
92     { ARM::t2RORrr, 0,            ARM::tROR,     0,   0,    0,   1,  0,0, 1,0 },
93     { ARM::t2RSBri, ARM::tRSB,    0,             0,   0,    1,   0,  0,0, 0,1 },
94     { ARM::t2RSBSri,ARM::tRSB,    0,             0,   0,    1,   0,  2,0, 0,1 },
95     { ARM::t2SBCrr, 0,            ARM::tSBC,     0,   0,    0,   1,  0,0, 0,0 },
96     { ARM::t2SUBri, ARM::tSUBi3,  ARM::tSUBi8,   3,   8,    1,   1,  0,0, 0,0 },
97     { ARM::t2SUBrr, ARM::tSUBrr,  0,             0,   0,    1,   0,  0,0, 0,0 },
98     { ARM::t2SUBSri,ARM::tSUBi3,  ARM::tSUBi8,   3,   8,    1,   1,  2,2, 0,0 },
99     { ARM::t2SUBSrr,ARM::tSUBrr,  0,             0,   0,    1,   0,  2,0, 0,0 },
100     { ARM::t2SXTB,  ARM::tSXTB,   0,             0,   0,    1,   0,  1,0, 0,1 },
101     { ARM::t2SXTH,  ARM::tSXTH,   0,             0,   0,    1,   0,  1,0, 0,1 },
102     { ARM::t2TSTrr, ARM::tTST,    0,             0,   0,    1,   0,  2,0, 0,0 },
103     { ARM::t2UXTB,  ARM::tUXTB,   0,             0,   0,    1,   0,  1,0, 0,1 },
104     { ARM::t2UXTH,  ARM::tUXTH,   0,             0,   0,    1,   0,  1,0, 0,1 },
105
106     // FIXME: Clean this up after splitting each Thumb load / store opcode
107     // into multiple ones.
108     { ARM::t2LDRi12,ARM::tLDRi,   ARM::tLDRspi,  5,   8,    1,   0,  0,0, 0,1 },
109     { ARM::t2LDRs,  ARM::tLDRr,   0,             0,   0,    1,   0,  0,0, 0,1 },
110     { ARM::t2LDRBi12,ARM::tLDRBi, 0,             5,   0,    1,   0,  0,0, 0,1 },
111     { ARM::t2LDRBs, ARM::tLDRBr,  0,             0,   0,    1,   0,  0,0, 0,1 },
112     { ARM::t2LDRHi12,ARM::tLDRHi, 0,             5,   0,    1,   0,  0,0, 0,1 },
113     { ARM::t2LDRHs, ARM::tLDRHr,  0,             0,   0,    1,   0,  0,0, 0,1 },
114     { ARM::t2LDRSBs,ARM::tLDRSB,  0,             0,   0,    1,   0,  0,0, 0,1 },
115     { ARM::t2LDRSHs,ARM::tLDRSH,  0,             0,   0,    1,   0,  0,0, 0,1 },
116     { ARM::t2STRi12,ARM::tSTRi,   ARM::tSTRspi,  5,   8,    1,   0,  0,0, 0,1 },
117     { ARM::t2STRs,  ARM::tSTRr,   0,             0,   0,    1,   0,  0,0, 0,1 },
118     { ARM::t2STRBi12,ARM::tSTRBi, 0,             5,   0,    1,   0,  0,0, 0,1 },
119     { ARM::t2STRBs, ARM::tSTRBr,  0,             0,   0,    1,   0,  0,0, 0,1 },
120     { ARM::t2STRHi12,ARM::tSTRHi, 0,             5,   0,    1,   0,  0,0, 0,1 },
121     { ARM::t2STRHs, ARM::tSTRHr,  0,             0,   0,    1,   0,  0,0, 0,1 },
122
123     { ARM::t2LDMIA, ARM::tLDMIA,  0,             0,   0,    1,   1,  1,1, 0,1 },
124     { ARM::t2LDMIA_RET,0,         ARM::tPOP_RET, 0,   0,    1,   1,  1,1, 0,1 },
125     { ARM::t2LDMIA_UPD,ARM::tLDMIA_UPD,ARM::tPOP,0,   0,    1,   1,  1,1, 0,1 },
126     // ARM::t2STM (with no basereg writeback) has no Thumb1 equivalent
127     { ARM::t2STMIA_UPD,ARM::tSTMIA_UPD, 0,       0,   0,    1,   1,  1,1, 0,1 },
128     { ARM::t2STMDB_UPD, 0,        ARM::tPUSH,    0,   0,    1,   1,  1,1, 0,1 },
129   };
130
131   class Thumb2SizeReduce : public MachineFunctionPass {
132   public:
133     static char ID;
134     Thumb2SizeReduce();
135
136     const Thumb2InstrInfo *TII;
137     const ARMSubtarget *STI;
138
139     virtual bool runOnMachineFunction(MachineFunction &MF);
140
141     virtual const char *getPassName() const {
142       return "Thumb2 instruction size reduction pass";
143     }
144
145   private:
146     /// ReduceOpcodeMap - Maps wide opcode to index of entry in ReduceTable.
147     DenseMap<unsigned, unsigned> ReduceOpcodeMap;
148
149     bool canAddPseudoFlagDep(MachineInstr *Def, MachineInstr *Use,
150                              bool IsSelfLoop);
151
152     bool VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
153                          bool is2Addr, ARMCC::CondCodes Pred,
154                          bool LiveCPSR, bool &HasCC, bool &CCDead);
155
156     bool ReduceLoadStore(MachineBasicBlock &MBB, MachineInstr *MI,
157                          const ReduceEntry &Entry);
158
159     bool ReduceSpecial(MachineBasicBlock &MBB, MachineInstr *MI,
160                        const ReduceEntry &Entry, bool LiveCPSR,
161                        MachineInstr *CPSRDef, bool IsSelfLoop);
162
163     /// ReduceTo2Addr - Reduce a 32-bit instruction to a 16-bit two-address
164     /// instruction.
165     bool ReduceTo2Addr(MachineBasicBlock &MBB, MachineInstr *MI,
166                        const ReduceEntry &Entry,
167                        bool LiveCPSR, MachineInstr *CPSRDef,
168                        bool IsSelfLoop);
169
170     /// ReduceToNarrow - Reduce a 32-bit instruction to a 16-bit
171     /// non-two-address instruction.
172     bool ReduceToNarrow(MachineBasicBlock &MBB, MachineInstr *MI,
173                         const ReduceEntry &Entry,
174                         bool LiveCPSR, MachineInstr *CPSRDef,
175                         bool IsSelfLoop);
176
177     /// ReduceMBB - Reduce width of instructions in the specified basic block.
178     bool ReduceMBB(MachineBasicBlock &MBB);
179   };
180   char Thumb2SizeReduce::ID = 0;
181 }
182
183 Thumb2SizeReduce::Thumb2SizeReduce() : MachineFunctionPass(ID) {
184   for (unsigned i = 0, e = array_lengthof(ReduceTable); i != e; ++i) {
185     unsigned FromOpc = ReduceTable[i].WideOpc;
186     if (!ReduceOpcodeMap.insert(std::make_pair(FromOpc, i)).second)
187       assert(false && "Duplicated entries?");
188   }
189 }
190
191 static bool HasImplicitCPSRDef(const MCInstrDesc &MCID) {
192   for (const unsigned *Regs = MCID.ImplicitDefs; *Regs; ++Regs)
193     if (*Regs == ARM::CPSR)
194       return true;
195   return false;
196 }
197
198 /// canAddPseudoFlagDep - For A9 (and other out-of-order) implementations,
199 /// the 's' 16-bit instruction partially update CPSR. Abort the
200 /// transformation to avoid adding false dependency on last CPSR setting
201 /// instruction which hurts the ability for out-of-order execution engine
202 /// to do register renaming magic.
203 /// This function checks if there is a read-of-write dependency between the
204 /// last instruction that defines the CPSR and the current instruction. If there
205 /// is, then there is no harm done since the instruction cannot be retired
206 /// before the CPSR setting instruction anyway.
207 /// Note, we are not doing full dependency analysis here for the sake of compile
208 /// time. We're not looking for cases like:
209 /// r0 = muls ...
210 /// r1 = add.w r0, ...
211 /// ...
212 ///    = mul.w r1
213 /// In this case it would have been ok to narrow the mul.w to muls since there
214 /// are indirect RAW dependency between the muls and the mul.w
215 bool
216 Thumb2SizeReduce::canAddPseudoFlagDep(MachineInstr *Def, MachineInstr *Use,
217                                       bool FirstInSelfLoop) {
218   // FIXME: Disable check for -Oz (aka OptimizeForSizeHarder).
219   if (!STI->avoidCPSRPartialUpdate())
220     return false;
221
222   if (!Def)
223     // If this BB loops back to itself, conservatively avoid narrowing the
224     // first instruction that does partial flag update.
225     return FirstInSelfLoop;
226
227   SmallSet<unsigned, 2> Defs;
228   for (unsigned i = 0, e = Def->getNumOperands(); i != e; ++i) {
229     const MachineOperand &MO = Def->getOperand(i);
230     if (!MO.isReg() || MO.isUndef() || MO.isUse())
231       continue;
232     unsigned Reg = MO.getReg();
233     if (Reg == 0 || Reg == ARM::CPSR)
234       continue;
235     Defs.insert(Reg);
236   }
237
238   for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
239     const MachineOperand &MO = Use->getOperand(i);
240     if (!MO.isReg() || MO.isUndef() || MO.isDef())
241       continue;
242     unsigned Reg = MO.getReg();
243     if (Defs.count(Reg))
244       return false;
245   }
246
247   // No read-after-write dependency. The narrowing will add false dependency.
248   return true;
249 }
250
251 bool
252 Thumb2SizeReduce::VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
253                                   bool is2Addr, ARMCC::CondCodes Pred,
254                                   bool LiveCPSR, bool &HasCC, bool &CCDead) {
255   if ((is2Addr  && Entry.PredCC2 == 0) ||
256       (!is2Addr && Entry.PredCC1 == 0)) {
257     if (Pred == ARMCC::AL) {
258       // Not predicated, must set CPSR.
259       if (!HasCC) {
260         // Original instruction was not setting CPSR, but CPSR is not
261         // currently live anyway. It's ok to set it. The CPSR def is
262         // dead though.
263         if (!LiveCPSR) {
264           HasCC = true;
265           CCDead = true;
266           return true;
267         }
268         return false;
269       }
270     } else {
271       // Predicated, must not set CPSR.
272       if (HasCC)
273         return false;
274     }
275   } else if ((is2Addr  && Entry.PredCC2 == 2) ||
276              (!is2Addr && Entry.PredCC1 == 2)) {
277     /// Old opcode has an optional def of CPSR.
278     if (HasCC)
279       return true;
280     // If old opcode does not implicitly define CPSR, then it's not ok since
281     // these new opcodes' CPSR def is not meant to be thrown away. e.g. CMP.
282     if (!HasImplicitCPSRDef(MI->getDesc()))
283       return false;
284     HasCC = true;
285   } else {
286     // 16-bit instruction does not set CPSR.
287     if (HasCC)
288       return false;
289   }
290
291   return true;
292 }
293
294 static bool VerifyLowRegs(MachineInstr *MI) {
295   unsigned Opc = MI->getOpcode();
296   bool isPCOk = (Opc == ARM::t2LDMIA_RET || Opc == ARM::t2LDMIA     ||
297                  Opc == ARM::t2LDMDB     || Opc == ARM::t2LDMIA_UPD ||
298                  Opc == ARM::t2LDMDB_UPD);
299   bool isLROk = (Opc == ARM::t2STMIA_UPD || Opc == ARM::t2STMDB_UPD);
300   bool isSPOk = isPCOk || isLROk;
301   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
302     const MachineOperand &MO = MI->getOperand(i);
303     if (!MO.isReg() || MO.isImplicit())
304       continue;
305     unsigned Reg = MO.getReg();
306     if (Reg == 0 || Reg == ARM::CPSR)
307       continue;
308     if (isPCOk && Reg == ARM::PC)
309       continue;
310     if (isLROk && Reg == ARM::LR)
311       continue;
312     if (Reg == ARM::SP) {
313       if (isSPOk)
314         continue;
315       if (i == 1 && (Opc == ARM::t2LDRi12 || Opc == ARM::t2STRi12))
316         // Special case for these ldr / str with sp as base register.
317         continue;
318     }
319     if (!isARMLowRegister(Reg))
320       return false;
321   }
322   return true;
323 }
324
325 bool
326 Thumb2SizeReduce::ReduceLoadStore(MachineBasicBlock &MBB, MachineInstr *MI,
327                                   const ReduceEntry &Entry) {
328   if (ReduceLimitLdSt != -1 && ((int)NumLdSts >= ReduceLimitLdSt))
329     return false;
330
331   unsigned Scale = 1;
332   bool HasImmOffset = false;
333   bool HasShift = false;
334   bool HasOffReg = true;
335   bool isLdStMul = false;
336   unsigned Opc = Entry.NarrowOpc1;
337   unsigned OpNum = 3; // First 'rest' of operands.
338   uint8_t  ImmLimit = Entry.Imm1Limit;
339
340   switch (Entry.WideOpc) {
341   default:
342     llvm_unreachable("Unexpected Thumb2 load / store opcode!");
343   case ARM::t2LDRi12:
344   case ARM::t2STRi12:
345     if (MI->getOperand(1).getReg() == ARM::SP) {
346       Opc = Entry.NarrowOpc2;
347       ImmLimit = Entry.Imm2Limit;
348       HasOffReg = false;
349     }
350
351     Scale = 4;
352     HasImmOffset = true;
353     HasOffReg = false;
354     break;
355   case ARM::t2LDRBi12:
356   case ARM::t2STRBi12:
357     HasImmOffset = true;
358     HasOffReg = false;
359     break;
360   case ARM::t2LDRHi12:
361   case ARM::t2STRHi12:
362     Scale = 2;
363     HasImmOffset = true;
364     HasOffReg = false;
365     break;
366   case ARM::t2LDRs:
367   case ARM::t2LDRBs:
368   case ARM::t2LDRHs:
369   case ARM::t2LDRSBs:
370   case ARM::t2LDRSHs:
371   case ARM::t2STRs:
372   case ARM::t2STRBs:
373   case ARM::t2STRHs:
374     HasShift = true;
375     OpNum = 4;
376     break;
377   case ARM::t2LDMIA:
378   case ARM::t2LDMDB: {
379     unsigned BaseReg = MI->getOperand(0).getReg();
380     if (!isARMLowRegister(BaseReg) || Entry.WideOpc != ARM::t2LDMIA)
381       return false;
382
383     // For the non-writeback version (this one), the base register must be
384     // one of the registers being loaded.
385     bool isOK = false;
386     for (unsigned i = 4; i < MI->getNumOperands(); ++i) {
387       if (MI->getOperand(i).getReg() == BaseReg) {
388         isOK = true;
389         break;
390       }
391     }
392
393     if (!isOK)
394       return false;
395
396     OpNum = 0;
397     isLdStMul = true;
398     break;
399   }
400   case ARM::t2LDMIA_RET: {
401     unsigned BaseReg = MI->getOperand(1).getReg();
402     if (BaseReg != ARM::SP)
403       return false;
404     Opc = Entry.NarrowOpc2; // tPOP_RET
405     OpNum = 2;
406     isLdStMul = true;
407     break;
408   }
409   case ARM::t2LDMIA_UPD:
410   case ARM::t2LDMDB_UPD:
411   case ARM::t2STMIA_UPD:
412   case ARM::t2STMDB_UPD: {
413     OpNum = 0;
414
415     unsigned BaseReg = MI->getOperand(1).getReg();
416     if (BaseReg == ARM::SP &&
417         (Entry.WideOpc == ARM::t2LDMIA_UPD ||
418          Entry.WideOpc == ARM::t2STMDB_UPD)) {
419       Opc = Entry.NarrowOpc2; // tPOP or tPUSH
420       OpNum = 2;
421     } else if (!isARMLowRegister(BaseReg) ||
422                (Entry.WideOpc != ARM::t2LDMIA_UPD &&
423                 Entry.WideOpc != ARM::t2STMIA_UPD)) {
424       return false;
425     }
426
427     isLdStMul = true;
428     break;
429   }
430   }
431
432   unsigned OffsetReg = 0;
433   bool OffsetKill = false;
434   if (HasShift) {
435     OffsetReg  = MI->getOperand(2).getReg();
436     OffsetKill = MI->getOperand(2).isKill();
437
438     if (MI->getOperand(3).getImm())
439       // Thumb1 addressing mode doesn't support shift.
440       return false;
441   }
442
443   unsigned OffsetImm = 0;
444   if (HasImmOffset) {
445     OffsetImm = MI->getOperand(2).getImm();
446     unsigned MaxOffset = ((1 << ImmLimit) - 1) * Scale;
447
448     if ((OffsetImm & (Scale - 1)) || OffsetImm > MaxOffset)
449       // Make sure the immediate field fits.
450       return false;
451   }
452
453   // Add the 16-bit load / store instruction.
454   DebugLoc dl = MI->getDebugLoc();
455   MachineInstrBuilder MIB = BuildMI(MBB, *MI, dl, TII->get(Opc));
456   if (!isLdStMul) {
457     MIB.addOperand(MI->getOperand(0));
458     MIB.addOperand(MI->getOperand(1));
459
460     if (HasImmOffset)
461       MIB.addImm(OffsetImm / Scale);
462
463     assert((!HasShift || OffsetReg) && "Invalid so_reg load / store address!");
464
465     if (HasOffReg)
466       MIB.addReg(OffsetReg, getKillRegState(OffsetKill));
467   }
468
469   // Transfer the rest of operands.
470   for (unsigned e = MI->getNumOperands(); OpNum != e; ++OpNum)
471     MIB.addOperand(MI->getOperand(OpNum));
472
473   // Transfer memoperands.
474   MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
475
476   // Transfer MI flags.
477   MIB.setMIFlags(MI->getFlags());
478
479   DEBUG(errs() << "Converted 32-bit: " << *MI << "       to 16-bit: " << *MIB);
480
481   MBB.erase(MI);
482   ++NumLdSts;
483   return true;
484 }
485
486 bool
487 Thumb2SizeReduce::ReduceSpecial(MachineBasicBlock &MBB, MachineInstr *MI,
488                                 const ReduceEntry &Entry,
489                                 bool LiveCPSR, MachineInstr *CPSRDef,
490                                 bool IsSelfLoop) {
491   unsigned Opc = MI->getOpcode();
492   if (Opc == ARM::t2ADDri) {
493     // If the source register is SP, try to reduce to tADDrSPi, otherwise
494     // it's a normal reduce.
495     if (MI->getOperand(1).getReg() != ARM::SP) {
496       if (ReduceTo2Addr(MBB, MI, Entry, LiveCPSR, CPSRDef, IsSelfLoop))
497         return true;
498       return ReduceToNarrow(MBB, MI, Entry, LiveCPSR, CPSRDef, IsSelfLoop);
499     }
500     // Try to reduce to tADDrSPi.
501     unsigned Imm = MI->getOperand(2).getImm();
502     // The immediate must be in range, the destination register must be a low
503     // reg, the predicate must be "always" and the condition flags must not
504     // be being set.
505     if (Imm & 3 || Imm > 1020)
506       return false;
507     if (!isARMLowRegister(MI->getOperand(0).getReg()))
508       return false;
509     if (MI->getOperand(3).getImm() != ARMCC::AL)
510       return false;
511     const MCInstrDesc &MCID = MI->getDesc();
512     if (MCID.hasOptionalDef() &&
513         MI->getOperand(MCID.getNumOperands()-1).getReg() == ARM::CPSR)
514       return false;
515
516     MachineInstrBuilder MIB = BuildMI(MBB, *MI, MI->getDebugLoc(),
517                                       TII->get(ARM::tADDrSPi))
518       .addOperand(MI->getOperand(0))
519       .addOperand(MI->getOperand(1))
520       .addImm(Imm / 4); // The tADDrSPi has an implied scale by four.
521     AddDefaultPred(MIB);
522
523     // Transfer MI flags.
524     MIB.setMIFlags(MI->getFlags());
525
526     DEBUG(errs() << "Converted 32-bit: " << *MI << "       to 16-bit: " <<*MIB);
527
528     MBB.erase(MI);
529     ++NumNarrows;
530     return true;
531   }
532
533   if (Entry.LowRegs1 && !VerifyLowRegs(MI))
534     return false;
535
536   if (MI->mayLoad() || MI->mayStore())
537     return ReduceLoadStore(MBB, MI, Entry);
538
539   switch (Opc) {
540   default: break;
541   case ARM::t2ADDSri:
542   case ARM::t2ADDSrr: {
543     unsigned PredReg = 0;
544     if (getInstrPredicate(MI, PredReg) == ARMCC::AL) {
545       switch (Opc) {
546       default: break;
547       case ARM::t2ADDSri: {
548         if (ReduceTo2Addr(MBB, MI, Entry, LiveCPSR, CPSRDef, IsSelfLoop))
549           return true;
550         // fallthrough
551       }
552       case ARM::t2ADDSrr:
553         return ReduceToNarrow(MBB, MI, Entry, LiveCPSR, CPSRDef, IsSelfLoop);
554       }
555     }
556     break;
557   }
558   case ARM::t2RSBri:
559   case ARM::t2RSBSri:
560   case ARM::t2SXTB:
561   case ARM::t2SXTH:
562   case ARM::t2UXTB:
563   case ARM::t2UXTH:
564     if (MI->getOperand(2).getImm() == 0)
565       return ReduceToNarrow(MBB, MI, Entry, LiveCPSR, CPSRDef, IsSelfLoop);
566     break;
567   case ARM::t2MOVi16:
568     // Can convert only 'pure' immediate operands, not immediates obtained as
569     // globals' addresses.
570     if (MI->getOperand(1).isImm())
571       return ReduceToNarrow(MBB, MI, Entry, LiveCPSR, CPSRDef, IsSelfLoop);
572     break;
573   case ARM::t2CMPrr: {
574     // Try to reduce to the lo-reg only version first. Why there are two
575     // versions of the instruction is a mystery.
576     // It would be nice to just have two entries in the master table that
577     // are prioritized, but the table assumes a unique entry for each
578     // source insn opcode. So for now, we hack a local entry record to use.
579     static const ReduceEntry NarrowEntry =
580       { ARM::t2CMPrr,ARM::tCMPr, 0, 0, 0, 1, 1,2, 0, 0,1 };
581     if (ReduceToNarrow(MBB, MI, NarrowEntry, LiveCPSR, CPSRDef, IsSelfLoop))
582       return true;
583     return ReduceToNarrow(MBB, MI, Entry, LiveCPSR, CPSRDef, IsSelfLoop);
584   }
585   }
586   return false;
587 }
588
589 bool
590 Thumb2SizeReduce::ReduceTo2Addr(MachineBasicBlock &MBB, MachineInstr *MI,
591                                 const ReduceEntry &Entry,
592                                 bool LiveCPSR, MachineInstr *CPSRDef,
593                                 bool IsSelfLoop) {
594
595   if (ReduceLimit2Addr != -1 && ((int)Num2Addrs >= ReduceLimit2Addr))
596     return false;
597
598   unsigned Reg0 = MI->getOperand(0).getReg();
599   unsigned Reg1 = MI->getOperand(1).getReg();
600   if (Reg0 != Reg1) {
601     // Try to commute the operands to make it a 2-address instruction.
602     unsigned CommOpIdx1, CommOpIdx2;
603     if (!TII->findCommutedOpIndices(MI, CommOpIdx1, CommOpIdx2) ||
604         CommOpIdx1 != 1 || MI->getOperand(CommOpIdx2).getReg() != Reg0)
605       return false;
606     MachineInstr *CommutedMI = TII->commuteInstruction(MI);
607     if (!CommutedMI)
608       return false;
609   }
610   if (Entry.LowRegs2 && !isARMLowRegister(Reg0))
611     return false;
612   if (Entry.Imm2Limit) {
613     unsigned Imm = MI->getOperand(2).getImm();
614     unsigned Limit = (1 << Entry.Imm2Limit) - 1;
615     if (Imm > Limit)
616       return false;
617   } else {
618     unsigned Reg2 = MI->getOperand(2).getReg();
619     if (Entry.LowRegs2 && !isARMLowRegister(Reg2))
620       return false;
621   }
622
623   // Check if it's possible / necessary to transfer the predicate.
624   const MCInstrDesc &NewMCID = TII->get(Entry.NarrowOpc2);
625   unsigned PredReg = 0;
626   ARMCC::CondCodes Pred = getInstrPredicate(MI, PredReg);
627   bool SkipPred = false;
628   if (Pred != ARMCC::AL) {
629     if (!NewMCID.isPredicable())
630       // Can't transfer predicate, fail.
631       return false;
632   } else {
633     SkipPred = !NewMCID.isPredicable();
634   }
635
636   bool HasCC = false;
637   bool CCDead = false;
638   const MCInstrDesc &MCID = MI->getDesc();
639   if (MCID.hasOptionalDef()) {
640     unsigned NumOps = MCID.getNumOperands();
641     HasCC = (MI->getOperand(NumOps-1).getReg() == ARM::CPSR);
642     if (HasCC && MI->getOperand(NumOps-1).isDead())
643       CCDead = true;
644   }
645   if (!VerifyPredAndCC(MI, Entry, true, Pred, LiveCPSR, HasCC, CCDead))
646     return false;
647
648   // Avoid adding a false dependency on partial flag update by some 16-bit
649   // instructions which has the 's' bit set.
650   if (Entry.PartFlag && NewMCID.hasOptionalDef() && HasCC &&
651       canAddPseudoFlagDep(CPSRDef, MI, IsSelfLoop))
652     return false;
653
654   // Add the 16-bit instruction.
655   DebugLoc dl = MI->getDebugLoc();
656   MachineInstrBuilder MIB = BuildMI(MBB, *MI, dl, NewMCID);
657   MIB.addOperand(MI->getOperand(0));
658   if (NewMCID.hasOptionalDef()) {
659     if (HasCC)
660       AddDefaultT1CC(MIB, CCDead);
661     else
662       AddNoT1CC(MIB);
663   }
664
665   // Transfer the rest of operands.
666   unsigned NumOps = MCID.getNumOperands();
667   for (unsigned i = 1, e = MI->getNumOperands(); i != e; ++i) {
668     if (i < NumOps && MCID.OpInfo[i].isOptionalDef())
669       continue;
670     if (SkipPred && MCID.OpInfo[i].isPredicate())
671       continue;
672     MIB.addOperand(MI->getOperand(i));
673   }
674
675   // Transfer MI flags.
676   MIB.setMIFlags(MI->getFlags());
677
678   DEBUG(errs() << "Converted 32-bit: " << *MI << "       to 16-bit: " << *MIB);
679
680   MBB.erase(MI);
681   ++Num2Addrs;
682   return true;
683 }
684
685 bool
686 Thumb2SizeReduce::ReduceToNarrow(MachineBasicBlock &MBB, MachineInstr *MI,
687                                  const ReduceEntry &Entry,
688                                  bool LiveCPSR, MachineInstr *CPSRDef,
689                                  bool IsSelfLoop) {
690   if (ReduceLimit != -1 && ((int)NumNarrows >= ReduceLimit))
691     return false;
692
693   unsigned Limit = ~0U;
694   if (Entry.Imm1Limit)
695     Limit = (1 << Entry.Imm1Limit) - 1;
696
697   const MCInstrDesc &MCID = MI->getDesc();
698   for (unsigned i = 0, e = MCID.getNumOperands(); i != e; ++i) {
699     if (MCID.OpInfo[i].isPredicate())
700       continue;
701     const MachineOperand &MO = MI->getOperand(i);
702     if (MO.isReg()) {
703       unsigned Reg = MO.getReg();
704       if (!Reg || Reg == ARM::CPSR)
705         continue;
706       if (Entry.LowRegs1 && !isARMLowRegister(Reg))
707         return false;
708     } else if (MO.isImm() &&
709                !MCID.OpInfo[i].isPredicate()) {
710       if (((unsigned)MO.getImm()) > Limit)
711         return false;
712     }
713   }
714
715   // Check if it's possible / necessary to transfer the predicate.
716   const MCInstrDesc &NewMCID = TII->get(Entry.NarrowOpc1);
717   unsigned PredReg = 0;
718   ARMCC::CondCodes Pred = getInstrPredicate(MI, PredReg);
719   bool SkipPred = false;
720   if (Pred != ARMCC::AL) {
721     if (!NewMCID.isPredicable())
722       // Can't transfer predicate, fail.
723       return false;
724   } else {
725     SkipPred = !NewMCID.isPredicable();
726   }
727
728   bool HasCC = false;
729   bool CCDead = false;
730   if (MCID.hasOptionalDef()) {
731     unsigned NumOps = MCID.getNumOperands();
732     HasCC = (MI->getOperand(NumOps-1).getReg() == ARM::CPSR);
733     if (HasCC && MI->getOperand(NumOps-1).isDead())
734       CCDead = true;
735   }
736   if (!VerifyPredAndCC(MI, Entry, false, Pred, LiveCPSR, HasCC, CCDead))
737     return false;
738
739   // Avoid adding a false dependency on partial flag update by some 16-bit
740   // instructions which has the 's' bit set.
741   if (Entry.PartFlag && NewMCID.hasOptionalDef() && HasCC &&
742       canAddPseudoFlagDep(CPSRDef, MI, IsSelfLoop))
743     return false;
744
745   // Add the 16-bit instruction.
746   DebugLoc dl = MI->getDebugLoc();
747   MachineInstrBuilder MIB = BuildMI(MBB, *MI, dl, NewMCID);
748   MIB.addOperand(MI->getOperand(0));
749   if (NewMCID.hasOptionalDef()) {
750     if (HasCC)
751       AddDefaultT1CC(MIB, CCDead);
752     else
753       AddNoT1CC(MIB);
754   }
755
756   // Transfer the rest of operands.
757   unsigned NumOps = MCID.getNumOperands();
758   for (unsigned i = 1, e = MI->getNumOperands(); i != e; ++i) {
759     if (i < NumOps && MCID.OpInfo[i].isOptionalDef())
760       continue;
761     if ((MCID.getOpcode() == ARM::t2RSBSri ||
762          MCID.getOpcode() == ARM::t2RSBri ||
763          MCID.getOpcode() == ARM::t2SXTB ||
764          MCID.getOpcode() == ARM::t2SXTH ||
765          MCID.getOpcode() == ARM::t2UXTB ||
766          MCID.getOpcode() == ARM::t2UXTH) && i == 2)
767       // Skip the zero immediate operand, it's now implicit.
768       continue;
769     bool isPred = (i < NumOps && MCID.OpInfo[i].isPredicate());
770     if (SkipPred && isPred)
771         continue;
772     const MachineOperand &MO = MI->getOperand(i);
773     if (MO.isReg() && MO.isImplicit() && MO.getReg() == ARM::CPSR)
774       // Skip implicit def of CPSR. Either it's modeled as an optional
775       // def now or it's already an implicit def on the new instruction.
776       continue;
777     MIB.addOperand(MO);
778   }
779   if (!MCID.isPredicable() && NewMCID.isPredicable())
780     AddDefaultPred(MIB);
781
782   // Transfer MI flags.
783   MIB.setMIFlags(MI->getFlags());
784
785   DEBUG(errs() << "Converted 32-bit: " << *MI << "       to 16-bit: " << *MIB);
786
787   MBB.erase(MI);
788   ++NumNarrows;
789   return true;
790 }
791
792 static bool UpdateCPSRDef(MachineInstr &MI, bool LiveCPSR, bool &DefCPSR) {
793   bool HasDef = false;
794   for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
795     const MachineOperand &MO = MI.getOperand(i);
796     if (!MO.isReg() || MO.isUndef() || MO.isUse())
797       continue;
798     if (MO.getReg() != ARM::CPSR)
799       continue;
800
801     DefCPSR = true;
802     if (!MO.isDead())
803       HasDef = true;
804   }
805
806   return HasDef || LiveCPSR;
807 }
808
809 static bool UpdateCPSRUse(MachineInstr &MI, bool LiveCPSR) {
810   for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
811     const MachineOperand &MO = MI.getOperand(i);
812     if (!MO.isReg() || MO.isUndef() || MO.isDef())
813       continue;
814     if (MO.getReg() != ARM::CPSR)
815       continue;
816     assert(LiveCPSR && "CPSR liveness tracking is wrong!");
817     if (MO.isKill()) {
818       LiveCPSR = false;
819       break;
820     }
821   }
822
823   return LiveCPSR;
824 }
825
826 bool Thumb2SizeReduce::ReduceMBB(MachineBasicBlock &MBB) {
827   bool Modified = false;
828
829   // Yes, CPSR could be livein.
830   bool LiveCPSR = MBB.isLiveIn(ARM::CPSR);
831   MachineInstr *CPSRDef = 0;
832
833   // If this BB loops back to itself, conservatively avoid narrowing the
834   // first instruction that does partial flag update.
835   bool IsSelfLoop = MBB.isSuccessor(&MBB);
836   MachineBasicBlock::iterator MII = MBB.begin(), E = MBB.end();
837   MachineBasicBlock::iterator NextMII;
838   for (; MII != E; MII = NextMII) {
839     NextMII = llvm::next(MII);
840
841     MachineInstr *MI = &*MII;
842     LiveCPSR = UpdateCPSRUse(*MI, LiveCPSR);
843
844     unsigned Opcode = MI->getOpcode();
845     DenseMap<unsigned, unsigned>::iterator OPI = ReduceOpcodeMap.find(Opcode);
846     if (OPI != ReduceOpcodeMap.end()) {
847       const ReduceEntry &Entry = ReduceTable[OPI->second];
848       // Ignore "special" cases for now.
849       if (Entry.Special) {
850         if (ReduceSpecial(MBB, MI, Entry, LiveCPSR, CPSRDef, IsSelfLoop)) {
851           Modified = true;
852           MachineBasicBlock::iterator I = prior(NextMII);
853           MI = &*I;
854         }
855         goto ProcessNext;
856       }
857
858       // Try to transform to a 16-bit two-address instruction.
859       if (Entry.NarrowOpc2 &&
860           ReduceTo2Addr(MBB, MI, Entry, LiveCPSR, CPSRDef, IsSelfLoop)) {
861         Modified = true;
862         MachineBasicBlock::iterator I = prior(NextMII);
863         MI = &*I;
864         goto ProcessNext;
865       }
866
867       // Try to transform to a 16-bit non-two-address instruction.
868       if (Entry.NarrowOpc1 &&
869           ReduceToNarrow(MBB, MI, Entry, LiveCPSR, CPSRDef, IsSelfLoop)) {
870         Modified = true;
871         MachineBasicBlock::iterator I = prior(NextMII);
872         MI = &*I;
873       }
874     }
875
876   ProcessNext:
877     bool DefCPSR = false;
878     LiveCPSR = UpdateCPSRDef(*MI, LiveCPSR, DefCPSR);
879     if (MI->isCall()) {
880       // Calls don't really set CPSR.
881       CPSRDef = 0;
882       IsSelfLoop = false;
883     } else if (DefCPSR) {
884       // This is the last CPSR defining instruction.
885       CPSRDef = MI;
886       IsSelfLoop = false;
887     }
888   }
889
890   return Modified;
891 }
892
893 bool Thumb2SizeReduce::runOnMachineFunction(MachineFunction &MF) {
894   const TargetMachine &TM = MF.getTarget();
895   TII = static_cast<const Thumb2InstrInfo*>(TM.getInstrInfo());
896   STI = &TM.getSubtarget<ARMSubtarget>();
897
898   bool Modified = false;
899   for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
900     Modified |= ReduceMBB(*I);
901   return Modified;
902 }
903
904 /// createThumb2SizeReductionPass - Returns an instance of the Thumb2 size
905 /// reduction pass.
906 FunctionPass *llvm::createThumb2SizeReductionPass() {
907   return new Thumb2SizeReduce();
908 }