Change ARM ld/st multiple instructions to have variant instructions for
[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 "ARMAddressingModes.h"
13 #include "ARMBaseRegisterInfo.h"
14 #include "ARMBaseInstrInfo.h"
15 #include "Thumb2InstrInfo.h"
16 #include "llvm/CodeGen/MachineInstr.h"
17 #include "llvm/CodeGen/MachineInstrBuilder.h"
18 #include "llvm/CodeGen/MachineFunctionPass.h"
19 #include "llvm/Support/CommandLine.h"
20 #include "llvm/Support/Debug.h"
21 #include "llvm/Support/raw_ostream.h"
22 #include "llvm/ADT/DenseMap.h"
23 #include "llvm/ADT/Statistic.h"
24 using namespace llvm;
25
26 STATISTIC(NumNarrows,  "Number of 32-bit instrs reduced to 16-bit ones");
27 STATISTIC(Num2Addrs,   "Number of 32-bit instrs reduced to 2addr 16-bit ones");
28 STATISTIC(NumLdSts,    "Number of 32-bit load / store reduced to 16-bit ones");
29
30 static cl::opt<int> ReduceLimit("t2-reduce-limit",
31                                 cl::init(-1), cl::Hidden);
32 static cl::opt<int> ReduceLimit2Addr("t2-reduce-limit2",
33                                      cl::init(-1), cl::Hidden);
34 static cl::opt<int> ReduceLimitLdSt("t2-reduce-limit3",
35                                      cl::init(-1), cl::Hidden);
36
37 namespace {
38   /// ReduceTable - A static table with information on mapping from wide
39   /// opcodes to narrow
40   struct ReduceEntry {
41     unsigned WideOpc;      // Wide opcode
42     unsigned NarrowOpc1;   // Narrow opcode to transform to
43     unsigned NarrowOpc2;   // Narrow opcode when it's two-address
44     uint8_t  Imm1Limit;    // Limit of immediate field (bits)
45     uint8_t  Imm2Limit;    // Limit of immediate field when it's two-address
46     unsigned LowRegs1 : 1; // Only possible if low-registers are used
47     unsigned LowRegs2 : 1; // Only possible if low-registers are used (2addr)
48     unsigned PredCC1  : 2; // 0 - If predicated, cc is on and vice versa.
49                            // 1 - No cc field.
50                            // 2 - Always set CPSR.
51     unsigned PredCC2  : 2;
52     unsigned Special  : 1; // Needs to be dealt with specially
53   };
54
55   static const ReduceEntry ReduceTable[] = {
56     // Wide,        Narrow1,      Narrow2,     imm1,imm2,  lo1, lo2, P/C, S
57     { ARM::t2ADCrr, 0,            ARM::tADC,     0,   0,    0,   1,  0,0, 0 },
58     { ARM::t2ADDri, ARM::tADDi3,  ARM::tADDi8,   3,   8,    1,   1,  0,0, 0 },
59     { ARM::t2ADDrr, ARM::tADDrr,  ARM::tADDhirr, 0,   0,    1,   0,  0,1, 0 },
60     // Note: immediate scale is 4.
61     { ARM::t2ADDrSPi,ARM::tADDrSPi,0,            8,   0,    1,   0,  1,0, 0 },
62     { ARM::t2ADDSri,ARM::tADDi3,  ARM::tADDi8,   3,   8,    1,   1,  2,2, 1 },
63     { ARM::t2ADDSrr,ARM::tADDrr,  0,             0,   0,    1,   0,  2,0, 1 },
64     { ARM::t2ANDrr, 0,            ARM::tAND,     0,   0,    0,   1,  0,0, 0 },
65     { ARM::t2ASRri, ARM::tASRri,  0,             5,   0,    1,   0,  0,0, 0 },
66     { ARM::t2ASRrr, 0,            ARM::tASRrr,   0,   0,    0,   1,  0,0, 0 },
67     { ARM::t2BICrr, 0,            ARM::tBIC,     0,   0,    0,   1,  0,0, 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 },
70     { ARM::t2CMPri, ARM::tCMPi8,  0,             8,   0,    1,   0,  2,0, 0 },
71     { ARM::t2CMPrr, ARM::tCMPhir, 0,             0,   0,    0,   0,  2,0, 0 },
72     { ARM::t2CMPzri,ARM::tCMPzi8, 0,             8,   0,    1,   0,  2,0, 0 },
73     { ARM::t2CMPzrr,ARM::tCMPzhir,0,             0,   0,    0,   0,  2,0, 0 },
74     { ARM::t2EORrr, 0,            ARM::tEOR,     0,   0,    0,   1,  0,0, 0 },
75     // FIXME: adr.n immediate offset must be multiple of 4.
76     //{ ARM::t2LEApcrelJT,ARM::tLEApcrelJT, 0,     0,   0,    1,   0,  1,0, 0 },
77     { ARM::t2LSLri, ARM::tLSLri,  0,             5,   0,    1,   0,  0,0, 0 },
78     { ARM::t2LSLrr, 0,            ARM::tLSLrr,   0,   0,    0,   1,  0,0, 0 },
79     { ARM::t2LSRri, ARM::tLSRri,  0,             5,   0,    1,   0,  0,0, 0 },
80     { ARM::t2LSRrr, 0,            ARM::tLSRrr,   0,   0,    0,   1,  0,0, 0 },
81     { ARM::t2MOVi,  ARM::tMOVi8,  0,             8,   0,    1,   0,  0,0, 0 },
82     { ARM::t2MOVi16,ARM::tMOVi8,  0,             8,   0,    1,   0,  0,0, 1 },
83     // FIXME: Do we need the 16-bit 'S' variant?
84     { ARM::t2MOVr,ARM::tMOVgpr2gpr,0,            0,   0,    0,   0,  1,0, 0 },
85     { ARM::t2MOVCCr,0,            ARM::tMOVCCr,  0,   0,    0,   0,  0,1, 0 },
86     { ARM::t2MOVCCi,0,            ARM::tMOVCCi,  0,   8,    0,   1,  0,1, 0 },
87     { ARM::t2MUL,   0,            ARM::tMUL,     0,   0,    0,   1,  0,0, 0 },
88     { ARM::t2MVNr,  ARM::tMVN,    0,             0,   0,    1,   0,  0,0, 0 },
89     { ARM::t2ORRrr, 0,            ARM::tORR,     0,   0,    0,   1,  0,0, 0 },
90     { ARM::t2REV,   ARM::tREV,    0,             0,   0,    1,   0,  1,0, 0 },
91     { ARM::t2REV16, ARM::tREV16,  0,             0,   0,    1,   0,  1,0, 0 },
92     { ARM::t2REVSH, ARM::tREVSH,  0,             0,   0,    1,   0,  1,0, 0 },
93     { ARM::t2RORrr, 0,            ARM::tROR,     0,   0,    0,   1,  0,0, 0 },
94     { ARM::t2RSBri, ARM::tRSB,    0,             0,   0,    1,   0,  0,0, 1 },
95     { ARM::t2RSBSri,ARM::tRSB,    0,             0,   0,    1,   0,  2,0, 1 },
96     { ARM::t2SBCrr, 0,            ARM::tSBC,     0,   0,    0,   1,  0,0, 0 },
97     { ARM::t2SUBri, ARM::tSUBi3,  ARM::tSUBi8,   3,   8,    1,   1,  0,0, 0 },
98     { ARM::t2SUBrr, ARM::tSUBrr,  0,             0,   0,    1,   0,  0,0, 0 },
99     { ARM::t2SUBSri,ARM::tSUBi3,  ARM::tSUBi8,   3,   8,    1,   1,  2,2, 0 },
100     { ARM::t2SUBSrr,ARM::tSUBrr,  0,             0,   0,    1,   0,  2,0, 0 },
101     { ARM::t2SXTBr, ARM::tSXTB,   0,             0,   0,    1,   0,  1,0, 0 },
102     { ARM::t2SXTHr, ARM::tSXTH,   0,             0,   0,    1,   0,  1,0, 0 },
103     { ARM::t2TSTrr, ARM::tTST,    0,             0,   0,    1,   0,  2,0, 0 },
104     { ARM::t2UXTBr, ARM::tUXTB,   0,             0,   0,    1,   0,  1,0, 0 },
105     { ARM::t2UXTHr, ARM::tUXTH,   0,             0,   0,    1,   0,  1,0, 0 },
106
107     // FIXME: Clean this up after splitting each Thumb load / store opcode
108     // into multiple ones.
109     { ARM::t2LDRi12,ARM::tLDR,    ARM::tLDRspi,  5,   8,    1,   0,  0,0, 1 },
110     { ARM::t2LDRs,  ARM::tLDR,    0,             0,   0,    1,   0,  0,0, 1 },
111     { ARM::t2LDRBi12,ARM::tLDRB,  0,             5,   0,    1,   0,  0,0, 1 },
112     { ARM::t2LDRBs, ARM::tLDRB,   0,             0,   0,    1,   0,  0,0, 1 },
113     { ARM::t2LDRHi12,ARM::tLDRH,  0,             5,   0,    1,   0,  0,0, 1 },
114     { ARM::t2LDRHs, ARM::tLDRH,   0,             0,   0,    1,   0,  0,0, 1 },
115     { ARM::t2LDRSBs,ARM::tLDRSB,  0,             0,   0,    1,   0,  0,0, 1 },
116     { ARM::t2LDRSHs,ARM::tLDRSH,  0,             0,   0,    1,   0,  0,0, 1 },
117     { ARM::t2STRi12,ARM::tSTR,    ARM::tSTRspi,  5,   8,    1,   0,  0,0, 1 },
118     { ARM::t2STRs,  ARM::tSTR,    0,             0,   0,    1,   0,  0,0, 1 },
119     { ARM::t2STRBi12,ARM::tSTRB,  0,             5,   0,    1,   0,  0,0, 1 },
120     { ARM::t2STRBs, ARM::tSTRB,   0,             0,   0,    1,   0,  0,0, 1 },
121     { ARM::t2STRHi12,ARM::tSTRH,  0,             5,   0,    1,   0,  0,0, 1 },
122     { ARM::t2STRHs, ARM::tSTRH,   0,             0,   0,    1,   0,  0,0, 1 },
123
124     { ARM::t2LDM,   ARM::tLDM,    0,             0,   0,    1,   1,  1,1, 1 },
125     { ARM::t2LDM_RET,0,           ARM::tPOP_RET, 0,   0,    1,   1,  1,1, 1 },
126     { ARM::t2LDM_UPD,ARM::tLDM_UPD,ARM::tPOP,    0,   0,    1,   1,  1,1, 1 },
127     // ARM::t2STM (with no basereg writeback) has no Thumb1 equivalent
128     { ARM::t2STM_UPD,ARM::tSTM_UPD,ARM::tPUSH,   0,   0,    1,   1,  1,1, 1 },
129   };
130
131   class Thumb2SizeReduce : public MachineFunctionPass {
132   public:
133     static char ID;
134     Thumb2SizeReduce();
135
136     const Thumb2InstrInfo *TII;
137
138     virtual bool runOnMachineFunction(MachineFunction &MF);
139
140     virtual const char *getPassName() const {
141       return "Thumb2 instruction size reduction pass";
142     }
143
144   private:
145     /// ReduceOpcodeMap - Maps wide opcode to index of entry in ReduceTable.
146     DenseMap<unsigned, unsigned> ReduceOpcodeMap;
147
148     bool VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
149                          bool is2Addr, ARMCC::CondCodes Pred,
150                          bool LiveCPSR, bool &HasCC, bool &CCDead);
151
152     bool ReduceLoadStore(MachineBasicBlock &MBB, MachineInstr *MI,
153                          const ReduceEntry &Entry);
154
155     bool ReduceSpecial(MachineBasicBlock &MBB, MachineInstr *MI,
156                        const ReduceEntry &Entry, bool LiveCPSR);
157
158     /// ReduceTo2Addr - Reduce a 32-bit instruction to a 16-bit two-address
159     /// instruction.
160     bool ReduceTo2Addr(MachineBasicBlock &MBB, MachineInstr *MI,
161                        const ReduceEntry &Entry,
162                        bool LiveCPSR);
163
164     /// ReduceToNarrow - Reduce a 32-bit instruction to a 16-bit
165     /// non-two-address instruction.
166     bool ReduceToNarrow(MachineBasicBlock &MBB, MachineInstr *MI,
167                         const ReduceEntry &Entry,
168                         bool LiveCPSR);
169
170     /// ReduceMBB - Reduce width of instructions in the specified basic block.
171     bool ReduceMBB(MachineBasicBlock &MBB);
172   };
173   char Thumb2SizeReduce::ID = 0;
174 }
175
176 Thumb2SizeReduce::Thumb2SizeReduce() : MachineFunctionPass(&ID) {
177   for (unsigned i = 0, e = array_lengthof(ReduceTable); i != e; ++i) {
178     unsigned FromOpc = ReduceTable[i].WideOpc;
179     if (!ReduceOpcodeMap.insert(std::make_pair(FromOpc, i)).second)
180       assert(false && "Duplicated entries?");
181   }
182 }
183
184 static bool HasImplicitCPSRDef(const TargetInstrDesc &TID) {
185   for (const unsigned *Regs = TID.ImplicitDefs; *Regs; ++Regs)
186     if (*Regs == ARM::CPSR)
187       return true;
188   return false;
189 }
190
191 bool
192 Thumb2SizeReduce::VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
193                                   bool is2Addr, ARMCC::CondCodes Pred,
194                                   bool LiveCPSR, bool &HasCC, bool &CCDead) {
195   if ((is2Addr  && Entry.PredCC2 == 0) ||
196       (!is2Addr && Entry.PredCC1 == 0)) {
197     if (Pred == ARMCC::AL) {
198       // Not predicated, must set CPSR.
199       if (!HasCC) {
200         // Original instruction was not setting CPSR, but CPSR is not
201         // currently live anyway. It's ok to set it. The CPSR def is
202         // dead though.
203         if (!LiveCPSR) {
204           HasCC = true;
205           CCDead = true;
206           return true;
207         }
208         return false;
209       }
210     } else {
211       // Predicated, must not set CPSR.
212       if (HasCC)
213         return false;
214     }
215   } else if ((is2Addr  && Entry.PredCC2 == 2) ||
216              (!is2Addr && Entry.PredCC1 == 2)) {
217     /// Old opcode has an optional def of CPSR.
218     if (HasCC)
219       return true;
220     // If both old opcode does not implicit CPSR def, then it's not ok since
221     // these new opcodes CPSR def is not meant to be thrown away. e.g. CMP.
222     if (!HasImplicitCPSRDef(MI->getDesc()))
223       return false;
224     HasCC = true;
225   } else {
226     // 16-bit instruction does not set CPSR.
227     if (HasCC)
228       return false;
229   }
230
231   return true;
232 }
233
234 static bool VerifyLowRegs(MachineInstr *MI) {
235   unsigned Opc = MI->getOpcode();
236   bool isPCOk = (Opc == ARM::t2LDM_RET || Opc == ARM::t2LDM ||
237                  Opc == ARM::t2LDM_UPD);
238   bool isLROk = (Opc == ARM::t2STM_UPD);
239   bool isSPOk = isPCOk || isLROk || (Opc == ARM::t2ADDrSPi);
240   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
241     const MachineOperand &MO = MI->getOperand(i);
242     if (!MO.isReg() || MO.isImplicit())
243       continue;
244     unsigned Reg = MO.getReg();
245     if (Reg == 0 || Reg == ARM::CPSR)
246       continue;
247     if (isPCOk && Reg == ARM::PC)
248       continue;
249     if (isLROk && Reg == ARM::LR)
250       continue;
251     if (Reg == ARM::SP) {
252       if (isSPOk)
253         continue;
254       if (i == 1 && (Opc == ARM::t2LDRi12 || Opc == ARM::t2STRi12))
255         // Special case for these ldr / str with sp as base register.
256         continue;
257     }
258     if (!isARMLowRegister(Reg))
259       return false;
260   }
261   return true;
262 }
263
264 bool
265 Thumb2SizeReduce::ReduceLoadStore(MachineBasicBlock &MBB, MachineInstr *MI,
266                                   const ReduceEntry &Entry) {
267   if (ReduceLimitLdSt != -1 && ((int)NumLdSts >= ReduceLimitLdSt))
268     return false;
269
270   unsigned Scale = 1;
271   bool HasImmOffset = false;
272   bool HasShift = false;
273   bool HasOffReg = true;
274   bool isLdStMul = false;
275   unsigned Opc = Entry.NarrowOpc1;
276   unsigned OpNum = 3; // First 'rest' of operands.
277   uint8_t  ImmLimit = Entry.Imm1Limit;
278   switch (Entry.WideOpc) {
279   default:
280     llvm_unreachable("Unexpected Thumb2 load / store opcode!");
281   case ARM::t2LDRi12:
282   case ARM::t2STRi12: {
283     unsigned BaseReg = MI->getOperand(1).getReg();
284     if (BaseReg == ARM::SP) {
285       Opc = Entry.NarrowOpc2;
286       ImmLimit = Entry.Imm2Limit;
287       HasOffReg = false;
288     }
289     Scale = 4;
290     HasImmOffset = true;
291     break;
292   }
293   case ARM::t2LDRBi12:
294   case ARM::t2STRBi12:
295     HasImmOffset = true;
296     break;
297   case ARM::t2LDRHi12:
298   case ARM::t2STRHi12:
299     Scale = 2;
300     HasImmOffset = true;
301     break;
302   case ARM::t2LDRs:
303   case ARM::t2LDRBs:
304   case ARM::t2LDRHs:
305   case ARM::t2LDRSBs:
306   case ARM::t2LDRSHs:
307   case ARM::t2STRs:
308   case ARM::t2STRBs:
309   case ARM::t2STRHs:
310     HasShift = true;
311     OpNum = 4;
312     break;
313   case ARM::t2LDM: {
314     unsigned BaseReg = MI->getOperand(0).getReg();
315     ARM_AM::AMSubMode Mode = ARM_AM::getAM4SubMode(MI->getOperand(1).getImm());
316     if (!isARMLowRegister(BaseReg) || Mode != ARM_AM::ia)
317       return false;
318     OpNum = 0;
319     isLdStMul = true;
320     break;
321   }
322   case ARM::t2LDM_RET: {
323     unsigned BaseReg = MI->getOperand(1).getReg();
324     if (BaseReg != ARM::SP)
325       return false;
326     Opc = Entry.NarrowOpc2; // tPOP_RET
327     OpNum = 3;
328     isLdStMul = true;
329     break;
330   }
331   case ARM::t2LDM_UPD:
332   case ARM::t2STM_UPD: {
333     OpNum = 0;
334     unsigned BaseReg = MI->getOperand(1).getReg();
335     ARM_AM::AMSubMode Mode = ARM_AM::getAM4SubMode(MI->getOperand(2).getImm());
336     if (BaseReg == ARM::SP &&
337         (Entry.WideOpc == ARM::t2LDM_UPD && Mode == ARM_AM::ia) ||
338         (Entry.WideOpc == ARM::t2STM_UPD && Mode == ARM_AM::db)) {
339       Opc = Entry.NarrowOpc2; // tPOP or tPUSH
340       OpNum = 3;
341     } else if (!isARMLowRegister(BaseReg) || Mode != ARM_AM::ia) {
342       return false;
343     }
344     isLdStMul = true;
345     break;
346   }
347   }
348
349   unsigned OffsetReg = 0;
350   bool OffsetKill = false;
351   if (HasShift) {
352     OffsetReg  = MI->getOperand(2).getReg();
353     OffsetKill = MI->getOperand(2).isKill();
354     if (MI->getOperand(3).getImm())
355       // Thumb1 addressing mode doesn't support shift.
356       return false;
357   }
358
359   unsigned OffsetImm = 0;
360   if (HasImmOffset) {
361     OffsetImm = MI->getOperand(2).getImm();
362     unsigned MaxOffset = ((1 << ImmLimit) - 1) * Scale;
363     if ((OffsetImm & (Scale-1)) || OffsetImm > MaxOffset)
364       // Make sure the immediate field fits.
365       return false;
366   }
367
368   // Add the 16-bit load / store instruction.
369   // FIXME: Thumb1 addressing mode encode both immediate and register offset.
370   DebugLoc dl = MI->getDebugLoc();
371   MachineInstrBuilder MIB = BuildMI(MBB, *MI, dl, TII->get(Opc));
372   if (!isLdStMul) {
373     MIB.addOperand(MI->getOperand(0)).addOperand(MI->getOperand(1));
374     if (Opc != ARM::tLDRSB && Opc != ARM::tLDRSH) {
375       // tLDRSB and tLDRSH do not have an immediate offset field. On the other
376       // hand, it must have an offset register.
377       // FIXME: Remove this special case.
378       MIB.addImm(OffsetImm/Scale);
379     }
380     assert((!HasShift || OffsetReg) && "Invalid so_reg load / store address!");
381
382     if (HasOffReg)
383       MIB.addReg(OffsetReg, getKillRegState(OffsetKill));
384   }
385
386   // Transfer the rest of operands.
387   for (unsigned e = MI->getNumOperands(); OpNum != e; ++OpNum)
388     MIB.addOperand(MI->getOperand(OpNum));
389
390   // Transfer memoperands.
391   (*MIB).setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
392
393   DEBUG(errs() << "Converted 32-bit: " << *MI << "       to 16-bit: " << *MIB);
394
395   MBB.erase(MI);
396   ++NumLdSts;
397   return true;
398 }
399
400 bool
401 Thumb2SizeReduce::ReduceSpecial(MachineBasicBlock &MBB, MachineInstr *MI,
402                                 const ReduceEntry &Entry,
403                                 bool LiveCPSR) {
404   if (Entry.LowRegs1 && !VerifyLowRegs(MI))
405     return false;
406
407   const TargetInstrDesc &TID = MI->getDesc();
408   if (TID.mayLoad() || TID.mayStore())
409     return ReduceLoadStore(MBB, MI, Entry);
410
411   unsigned Opc = MI->getOpcode();
412   switch (Opc) {
413   default: break;
414   case ARM::t2ADDSri: 
415   case ARM::t2ADDSrr: {
416     unsigned PredReg = 0;
417     if (getInstrPredicate(MI, PredReg) == ARMCC::AL) {
418       switch (Opc) {
419       default: break;
420       case ARM::t2ADDSri: {
421         if (ReduceTo2Addr(MBB, MI, Entry, LiveCPSR))
422           return true;
423         // fallthrough
424       }
425       case ARM::t2ADDSrr:
426         return ReduceToNarrow(MBB, MI, Entry, LiveCPSR);
427       }
428     }
429     break;
430   }
431   case ARM::t2RSBri:
432   case ARM::t2RSBSri:
433     if (MI->getOperand(2).getImm() == 0)
434       return ReduceToNarrow(MBB, MI, Entry, LiveCPSR);
435     break;
436   case ARM::t2MOVi16:
437     // Can convert only 'pure' immediate operands, not immediates obtained as
438     // globals' addresses.
439     if (MI->getOperand(1).isImm())
440       return ReduceToNarrow(MBB, MI, Entry, LiveCPSR);
441     break;
442   }
443   return false;
444 }
445
446 bool
447 Thumb2SizeReduce::ReduceTo2Addr(MachineBasicBlock &MBB, MachineInstr *MI,
448                                 const ReduceEntry &Entry,
449                                 bool LiveCPSR) {
450
451   if (ReduceLimit2Addr != -1 && ((int)Num2Addrs >= ReduceLimit2Addr))
452     return false;
453
454   const TargetInstrDesc &TID = MI->getDesc();
455   unsigned Reg0 = MI->getOperand(0).getReg();
456   unsigned Reg1 = MI->getOperand(1).getReg();
457   if (Reg0 != Reg1)
458     return false;
459   if (Entry.LowRegs2 && !isARMLowRegister(Reg0))
460     return false;
461   if (Entry.Imm2Limit) {
462     unsigned Imm = MI->getOperand(2).getImm();
463     unsigned Limit = (1 << Entry.Imm2Limit) - 1;
464     if (Imm > Limit)
465       return false;
466   } else {
467     unsigned Reg2 = MI->getOperand(2).getReg();
468     if (Entry.LowRegs2 && !isARMLowRegister(Reg2))
469       return false;
470   }
471
472   // Check if it's possible / necessary to transfer the predicate.
473   const TargetInstrDesc &NewTID = TII->get(Entry.NarrowOpc2);
474   unsigned PredReg = 0;
475   ARMCC::CondCodes Pred = getInstrPredicate(MI, PredReg);
476   bool SkipPred = false;
477   if (Pred != ARMCC::AL) {
478     if (!NewTID.isPredicable())
479       // Can't transfer predicate, fail.
480       return false;
481   } else {
482     SkipPred = !NewTID.isPredicable();
483   }
484
485   bool HasCC = false;
486   bool CCDead = false;
487   if (TID.hasOptionalDef()) {
488     unsigned NumOps = TID.getNumOperands();
489     HasCC = (MI->getOperand(NumOps-1).getReg() == ARM::CPSR);
490     if (HasCC && MI->getOperand(NumOps-1).isDead())
491       CCDead = true;
492   }
493   if (!VerifyPredAndCC(MI, Entry, true, Pred, LiveCPSR, HasCC, CCDead))
494     return false;
495
496   // Add the 16-bit instruction.
497   DebugLoc dl = MI->getDebugLoc();
498   MachineInstrBuilder MIB = BuildMI(MBB, *MI, dl, NewTID);
499   MIB.addOperand(MI->getOperand(0));
500   if (NewTID.hasOptionalDef()) {
501     if (HasCC)
502       AddDefaultT1CC(MIB, CCDead);
503     else
504       AddNoT1CC(MIB);
505   }
506
507   // Transfer the rest of operands.
508   unsigned NumOps = TID.getNumOperands();
509   for (unsigned i = 1, e = MI->getNumOperands(); i != e; ++i) {
510     if (i < NumOps && TID.OpInfo[i].isOptionalDef())
511       continue;
512     if (SkipPred && TID.OpInfo[i].isPredicate())
513       continue;
514     MIB.addOperand(MI->getOperand(i));
515   }
516
517   DEBUG(errs() << "Converted 32-bit: " << *MI << "       to 16-bit: " << *MIB);
518
519   MBB.erase(MI);
520   ++Num2Addrs;
521   return true;
522 }
523
524 bool
525 Thumb2SizeReduce::ReduceToNarrow(MachineBasicBlock &MBB, MachineInstr *MI,
526                                  const ReduceEntry &Entry,
527                                  bool LiveCPSR) {
528   if (ReduceLimit != -1 && ((int)NumNarrows >= ReduceLimit))
529     return false;
530
531   unsigned Limit = ~0U;
532   unsigned Scale = (Entry.WideOpc == ARM::t2ADDrSPi) ? 4 : 1;
533   if (Entry.Imm1Limit)
534     Limit = ((1 << Entry.Imm1Limit) - 1) * Scale;
535
536   const TargetInstrDesc &TID = MI->getDesc();
537   for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) {
538     if (TID.OpInfo[i].isPredicate())
539       continue;
540     const MachineOperand &MO = MI->getOperand(i);
541     if (MO.isReg()) {
542       unsigned Reg = MO.getReg();
543       if (!Reg || Reg == ARM::CPSR)
544         continue;
545       if (Entry.WideOpc == ARM::t2ADDrSPi && Reg == ARM::SP)
546         continue;
547       if (Entry.LowRegs1 && !isARMLowRegister(Reg))
548         return false;
549     } else if (MO.isImm() &&
550                !TID.OpInfo[i].isPredicate()) {
551       if (((unsigned)MO.getImm()) > Limit || (MO.getImm() & (Scale-1)) != 0)
552         return false;
553     }
554   }
555
556   // Check if it's possible / necessary to transfer the predicate.
557   const TargetInstrDesc &NewTID = TII->get(Entry.NarrowOpc1);
558   unsigned PredReg = 0;
559   ARMCC::CondCodes Pred = getInstrPredicate(MI, PredReg);
560   bool SkipPred = false;
561   if (Pred != ARMCC::AL) {
562     if (!NewTID.isPredicable())
563       // Can't transfer predicate, fail.
564       return false;
565   } else {
566     SkipPred = !NewTID.isPredicable();
567   }
568
569   bool HasCC = false;
570   bool CCDead = false;
571   if (TID.hasOptionalDef()) {
572     unsigned NumOps = TID.getNumOperands();
573     HasCC = (MI->getOperand(NumOps-1).getReg() == ARM::CPSR);
574     if (HasCC && MI->getOperand(NumOps-1).isDead())
575       CCDead = true;
576   }
577   if (!VerifyPredAndCC(MI, Entry, false, Pred, LiveCPSR, HasCC, CCDead))
578     return false;
579
580   // Add the 16-bit instruction.
581   DebugLoc dl = MI->getDebugLoc();
582   MachineInstrBuilder MIB = BuildMI(MBB, *MI, dl, NewTID);
583   MIB.addOperand(MI->getOperand(0));
584   if (NewTID.hasOptionalDef()) {
585     if (HasCC)
586       AddDefaultT1CC(MIB, CCDead);
587     else
588       AddNoT1CC(MIB);
589   }
590
591   // Transfer the rest of operands.
592   unsigned NumOps = TID.getNumOperands();
593   for (unsigned i = 1, e = MI->getNumOperands(); i != e; ++i) {
594     if (i < NumOps && TID.OpInfo[i].isOptionalDef())
595       continue;
596     if ((TID.getOpcode() == ARM::t2RSBSri ||
597          TID.getOpcode() == ARM::t2RSBri) && i == 2)
598       // Skip the zero immediate operand, it's now implicit.
599       continue;
600     bool isPred = (i < NumOps && TID.OpInfo[i].isPredicate());
601     if (SkipPred && isPred)
602         continue;
603     const MachineOperand &MO = MI->getOperand(i);
604     if (Scale > 1 && !isPred && MO.isImm())
605       MIB.addImm(MO.getImm() / Scale);
606     else {
607       if (MO.isReg() && MO.isImplicit() && MO.getReg() == ARM::CPSR)
608         // Skip implicit def of CPSR. Either it's modeled as an optional
609         // def now or it's already an implicit def on the new instruction.
610         continue;
611       MIB.addOperand(MO);
612     }
613   }
614   if (!TID.isPredicable() && NewTID.isPredicable())
615     AddDefaultPred(MIB);
616
617   DEBUG(errs() << "Converted 32-bit: " << *MI << "       to 16-bit: " << *MIB);
618
619   MBB.erase(MI);
620   ++NumNarrows;
621   return true;
622 }
623
624 static bool UpdateCPSRDef(MachineInstr &MI, bool LiveCPSR) {
625   bool HasDef = false;
626   for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
627     const MachineOperand &MO = MI.getOperand(i);
628     if (!MO.isReg() || MO.isUndef() || MO.isUse())
629       continue;
630     if (MO.getReg() != ARM::CPSR)
631       continue;
632     if (!MO.isDead())
633       HasDef = true;
634   }
635
636   return HasDef || LiveCPSR;
637 }
638
639 static bool UpdateCPSRUse(MachineInstr &MI, bool LiveCPSR) {
640   for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
641     const MachineOperand &MO = MI.getOperand(i);
642     if (!MO.isReg() || MO.isUndef() || MO.isDef())
643       continue;
644     if (MO.getReg() != ARM::CPSR)
645       continue;
646     assert(LiveCPSR && "CPSR liveness tracking is wrong!");
647     if (MO.isKill()) {
648       LiveCPSR = false;
649       break;
650     }
651   }
652
653   return LiveCPSR;
654 }
655
656 bool Thumb2SizeReduce::ReduceMBB(MachineBasicBlock &MBB) {
657   bool Modified = false;
658
659   bool LiveCPSR = false;
660   // Yes, CPSR could be livein.
661   for (MachineBasicBlock::const_livein_iterator I = MBB.livein_begin(),
662          E = MBB.livein_end(); I != E; ++I) {
663     if (*I == ARM::CPSR) {
664       LiveCPSR = true;
665       break;
666     }
667   }
668
669   MachineBasicBlock::iterator MII = MBB.begin(), E = MBB.end();
670   MachineBasicBlock::iterator NextMII;
671   for (; MII != E; MII = NextMII) {
672     NextMII = llvm::next(MII);
673
674     MachineInstr *MI = &*MII;
675     LiveCPSR = UpdateCPSRUse(*MI, LiveCPSR);
676
677     unsigned Opcode = MI->getOpcode();
678     DenseMap<unsigned, unsigned>::iterator OPI = ReduceOpcodeMap.find(Opcode);
679     if (OPI != ReduceOpcodeMap.end()) {
680       const ReduceEntry &Entry = ReduceTable[OPI->second];
681       // Ignore "special" cases for now.
682       if (Entry.Special) {
683         if (ReduceSpecial(MBB, MI, Entry, LiveCPSR)) {
684           Modified = true;
685           MachineBasicBlock::iterator I = prior(NextMII);
686           MI = &*I;
687         }
688         goto ProcessNext;
689       }
690
691       // Try to transform to a 16-bit two-address instruction.
692       if (Entry.NarrowOpc2 && ReduceTo2Addr(MBB, MI, Entry, LiveCPSR)) {
693         Modified = true;
694         MachineBasicBlock::iterator I = prior(NextMII);
695         MI = &*I;
696         goto ProcessNext;
697       }
698
699       // Try to transform ro a 16-bit non-two-address instruction.
700       if (Entry.NarrowOpc1 && ReduceToNarrow(MBB, MI, Entry, LiveCPSR)) {
701         Modified = true;
702         MachineBasicBlock::iterator I = prior(NextMII);
703         MI = &*I;
704       }
705     }
706
707   ProcessNext:
708     LiveCPSR = UpdateCPSRDef(*MI, LiveCPSR);
709   }
710
711   return Modified;
712 }
713
714 bool Thumb2SizeReduce::runOnMachineFunction(MachineFunction &MF) {
715   const TargetMachine &TM = MF.getTarget();
716   TII = static_cast<const Thumb2InstrInfo*>(TM.getInstrInfo());
717
718   bool Modified = false;
719   for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
720     Modified |= ReduceMBB(*I);
721   return Modified;
722 }
723
724 /// createThumb2SizeReductionPass - Returns an instance of the Thumb2 size
725 /// reduction pass.
726 FunctionPass *llvm::createThumb2SizeReductionPass() {
727   return new Thumb2SizeReduce();
728 }