Eliminate ARM::MOVi2pieces. Just use MOVi32imm and expand it to either movi+orr or...
[oota-llvm.git] / lib / Target / ARM / ARMExpandPseudoInsts.cpp
1 //===-- ARMExpandPseudoInsts.cpp - Expand pseudo instructions -----*- 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 // This file contains a pass that expands pseudo instructions into target
11 // instructions to allow proper scheduling, if-conversion, and other late
12 // optimizations. This pass should be run after register allocation but before
13 // the post-regalloc scheduling pass.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #define DEBUG_TYPE "arm-pseudo"
18 #include "ARM.h"
19 #include "ARMAddressingModes.h"
20 #include "ARMBaseInstrInfo.h"
21 #include "ARMBaseRegisterInfo.h"
22 #include "ARMMachineFunctionInfo.h"
23 #include "ARMRegisterInfo.h"
24 #include "llvm/CodeGen/MachineFrameInfo.h"
25 #include "llvm/CodeGen/MachineFunctionPass.h"
26 #include "llvm/CodeGen/MachineInstrBuilder.h"
27 #include "llvm/Target/TargetRegisterInfo.h"
28 #include "llvm/Support/raw_ostream.h" // FIXME: for debug only. remove!
29 using namespace llvm;
30
31 namespace {
32   class ARMExpandPseudo : public MachineFunctionPass {
33   public:
34     static char ID;
35     ARMExpandPseudo() : MachineFunctionPass(ID) {}
36
37     const ARMBaseInstrInfo *TII;
38     const TargetRegisterInfo *TRI;
39     const ARMSubtarget *STI;
40
41     virtual bool runOnMachineFunction(MachineFunction &Fn);
42
43     virtual const char *getPassName() const {
44       return "ARM pseudo instruction expansion pass";
45     }
46
47   private:
48     void TransferImpOps(MachineInstr &OldMI,
49                         MachineInstrBuilder &UseMI, MachineInstrBuilder &DefMI);
50     bool ExpandMBB(MachineBasicBlock &MBB);
51     void ExpandVLD(MachineBasicBlock::iterator &MBBI);
52     void ExpandVST(MachineBasicBlock::iterator &MBBI);
53     void ExpandLaneOp(MachineBasicBlock::iterator &MBBI);
54     void ExpandVTBL(MachineBasicBlock::iterator &MBBI,
55                     unsigned Opc, bool IsExt, unsigned NumRegs);
56   };
57   char ARMExpandPseudo::ID = 0;
58 }
59
60 /// TransferImpOps - Transfer implicit operands on the pseudo instruction to
61 /// the instructions created from the expansion.
62 void ARMExpandPseudo::TransferImpOps(MachineInstr &OldMI,
63                                      MachineInstrBuilder &UseMI,
64                                      MachineInstrBuilder &DefMI) {
65   const TargetInstrDesc &Desc = OldMI.getDesc();
66   for (unsigned i = Desc.getNumOperands(), e = OldMI.getNumOperands();
67        i != e; ++i) {
68     const MachineOperand &MO = OldMI.getOperand(i);
69     assert(MO.isReg() && MO.getReg());
70     if (MO.isUse())
71       UseMI.addOperand(MO);
72     else
73       DefMI.addOperand(MO);
74   }
75 }
76
77 namespace {
78   // Constants for register spacing in NEON load/store instructions.
79   // For quad-register load-lane and store-lane pseudo instructors, the
80   // spacing is initially assumed to be EvenDblSpc, and that is changed to
81   // OddDblSpc depending on the lane number operand.
82   enum NEONRegSpacing {
83     SingleSpc,
84     EvenDblSpc,
85     OddDblSpc
86   };
87
88   // Entries for NEON load/store information table.  The table is sorted by
89   // PseudoOpc for fast binary-search lookups.
90   struct NEONLdStTableEntry {
91     unsigned PseudoOpc;
92     unsigned RealOpc;
93     bool IsLoad;
94     bool HasWriteBack;
95     NEONRegSpacing RegSpacing;
96     unsigned char NumRegs; // D registers loaded or stored
97     unsigned char RegElts; // elements per D register; used for lane ops
98
99     // Comparison methods for binary search of the table.
100     bool operator<(const NEONLdStTableEntry &TE) const {
101       return PseudoOpc < TE.PseudoOpc;
102     }
103     friend bool operator<(const NEONLdStTableEntry &TE, unsigned PseudoOpc) {
104       return TE.PseudoOpc < PseudoOpc;
105     }
106     friend bool LLVM_ATTRIBUTE_UNUSED operator<(unsigned PseudoOpc,
107                                                 const NEONLdStTableEntry &TE) {
108       return PseudoOpc < TE.PseudoOpc;
109     }
110   };
111 }
112
113 static const NEONLdStTableEntry NEONLdStTable[] = {
114 { ARM::VLD1LNq16Pseudo,     ARM::VLD1LNd16,     true, false, EvenDblSpc, 1, 4 },
115 { ARM::VLD1LNq16Pseudo_UPD, ARM::VLD1LNd16_UPD, true, true,  EvenDblSpc, 1, 4 },
116 { ARM::VLD1LNq32Pseudo,     ARM::VLD1LNd32,     true, false, EvenDblSpc, 1, 2 },
117 { ARM::VLD1LNq32Pseudo_UPD, ARM::VLD1LNd32_UPD, true, true,  EvenDblSpc, 1, 2 },
118 { ARM::VLD1LNq8Pseudo,      ARM::VLD1LNd8,      true, false, EvenDblSpc, 1, 8 },
119 { ARM::VLD1LNq8Pseudo_UPD,  ARM::VLD1LNd8_UPD,  true, true,  EvenDblSpc, 1, 8 },
120
121 { ARM::VLD1d64QPseudo,      ARM::VLD1d64Q,     true,  false, SingleSpc,  4, 1 },
122 { ARM::VLD1d64QPseudo_UPD,  ARM::VLD1d64Q_UPD, true,  true,  SingleSpc,  4, 1 },
123 { ARM::VLD1d64TPseudo,      ARM::VLD1d64T,     true,  false, SingleSpc,  3, 1 },
124 { ARM::VLD1d64TPseudo_UPD,  ARM::VLD1d64T_UPD, true,  true,  SingleSpc,  3, 1 },
125
126 { ARM::VLD1q16Pseudo,       ARM::VLD1q16,      true,  false, SingleSpc,  2, 4 },
127 { ARM::VLD1q16Pseudo_UPD,   ARM::VLD1q16_UPD,  true,  true,  SingleSpc,  2, 4 },
128 { ARM::VLD1q32Pseudo,       ARM::VLD1q32,      true,  false, SingleSpc,  2, 2 },
129 { ARM::VLD1q32Pseudo_UPD,   ARM::VLD1q32_UPD,  true,  true,  SingleSpc,  2, 2 },
130 { ARM::VLD1q64Pseudo,       ARM::VLD1q64,      true,  false, SingleSpc,  2, 1 },
131 { ARM::VLD1q64Pseudo_UPD,   ARM::VLD1q64_UPD,  true,  true,  SingleSpc,  2, 1 },
132 { ARM::VLD1q8Pseudo,        ARM::VLD1q8,       true,  false, SingleSpc,  2, 8 },
133 { ARM::VLD1q8Pseudo_UPD,    ARM::VLD1q8_UPD,   true,  true,  SingleSpc,  2, 8 },
134
135 { ARM::VLD2LNd16Pseudo,     ARM::VLD2LNd16,     true, false, SingleSpc,  2, 4 },
136 { ARM::VLD2LNd16Pseudo_UPD, ARM::VLD2LNd16_UPD, true, true,  SingleSpc,  2, 4 },
137 { ARM::VLD2LNd32Pseudo,     ARM::VLD2LNd32,     true, false, SingleSpc,  2, 2 },
138 { ARM::VLD2LNd32Pseudo_UPD, ARM::VLD2LNd32_UPD, true, true,  SingleSpc,  2, 2 },
139 { ARM::VLD2LNd8Pseudo,      ARM::VLD2LNd8,      true, false, SingleSpc,  2, 8 },
140 { ARM::VLD2LNd8Pseudo_UPD,  ARM::VLD2LNd8_UPD,  true, true,  SingleSpc,  2, 8 },
141 { ARM::VLD2LNq16Pseudo,     ARM::VLD2LNq16,     true, false, EvenDblSpc, 2, 4 },
142 { ARM::VLD2LNq16Pseudo_UPD, ARM::VLD2LNq16_UPD, true, true,  EvenDblSpc, 2, 4 },
143 { ARM::VLD2LNq32Pseudo,     ARM::VLD2LNq32,     true, false, EvenDblSpc, 2, 2 },
144 { ARM::VLD2LNq32Pseudo_UPD, ARM::VLD2LNq32_UPD, true, true,  EvenDblSpc, 2, 2 },
145
146 { ARM::VLD2d16Pseudo,       ARM::VLD2d16,      true,  false, SingleSpc,  2, 4 },
147 { ARM::VLD2d16Pseudo_UPD,   ARM::VLD2d16_UPD,  true,  true,  SingleSpc,  2, 4 },
148 { ARM::VLD2d32Pseudo,       ARM::VLD2d32,      true,  false, SingleSpc,  2, 2 },
149 { ARM::VLD2d32Pseudo_UPD,   ARM::VLD2d32_UPD,  true,  true,  SingleSpc,  2, 2 },
150 { ARM::VLD2d8Pseudo,        ARM::VLD2d8,       true,  false, SingleSpc,  2, 8 },
151 { ARM::VLD2d8Pseudo_UPD,    ARM::VLD2d8_UPD,   true,  true,  SingleSpc,  2, 8 },
152
153 { ARM::VLD2q16Pseudo,       ARM::VLD2q16,      true,  false, SingleSpc,  4, 4 },
154 { ARM::VLD2q16Pseudo_UPD,   ARM::VLD2q16_UPD,  true,  true,  SingleSpc,  4, 4 },
155 { ARM::VLD2q32Pseudo,       ARM::VLD2q32,      true,  false, SingleSpc,  4, 2 },
156 { ARM::VLD2q32Pseudo_UPD,   ARM::VLD2q32_UPD,  true,  true,  SingleSpc,  4, 2 },
157 { ARM::VLD2q8Pseudo,        ARM::VLD2q8,       true,  false, SingleSpc,  4, 8 },
158 { ARM::VLD2q8Pseudo_UPD,    ARM::VLD2q8_UPD,   true,  true,  SingleSpc,  4, 8 },
159
160 { ARM::VLD3LNd16Pseudo,     ARM::VLD3LNd16,     true, false, SingleSpc,  3, 4 },
161 { ARM::VLD3LNd16Pseudo_UPD, ARM::VLD3LNd16_UPD, true, true,  SingleSpc,  3, 4 },
162 { ARM::VLD3LNd32Pseudo,     ARM::VLD3LNd32,     true, false, SingleSpc,  3, 2 },
163 { ARM::VLD3LNd32Pseudo_UPD, ARM::VLD3LNd32_UPD, true, true,  SingleSpc,  3, 2 },
164 { ARM::VLD3LNd8Pseudo,      ARM::VLD3LNd8,      true, false, SingleSpc,  3, 8 },
165 { ARM::VLD3LNd8Pseudo_UPD,  ARM::VLD3LNd8_UPD,  true, true,  SingleSpc,  3, 8 },
166 { ARM::VLD3LNq16Pseudo,     ARM::VLD3LNq16,     true, false, EvenDblSpc, 3, 4 },
167 { ARM::VLD3LNq16Pseudo_UPD, ARM::VLD3LNq16_UPD, true, true,  EvenDblSpc, 3, 4 },
168 { ARM::VLD3LNq32Pseudo,     ARM::VLD3LNq32,     true, false, EvenDblSpc, 3, 2 },
169 { ARM::VLD3LNq32Pseudo_UPD, ARM::VLD3LNq32_UPD, true, true,  EvenDblSpc, 3, 2 },
170
171 { ARM::VLD3d16Pseudo,       ARM::VLD3d16,      true,  false, SingleSpc,  3, 4 },
172 { ARM::VLD3d16Pseudo_UPD,   ARM::VLD3d16_UPD,  true,  true,  SingleSpc,  3, 4 },
173 { ARM::VLD3d32Pseudo,       ARM::VLD3d32,      true,  false, SingleSpc,  3, 2 },
174 { ARM::VLD3d32Pseudo_UPD,   ARM::VLD3d32_UPD,  true,  true,  SingleSpc,  3, 2 },
175 { ARM::VLD3d8Pseudo,        ARM::VLD3d8,       true,  false, SingleSpc,  3, 8 },
176 { ARM::VLD3d8Pseudo_UPD,    ARM::VLD3d8_UPD,   true,  true,  SingleSpc,  3, 8 },
177
178 { ARM::VLD3q16Pseudo_UPD,    ARM::VLD3q16_UPD, true,  true,  EvenDblSpc, 3, 4 },
179 { ARM::VLD3q16oddPseudo_UPD, ARM::VLD3q16_UPD, true,  true,  OddDblSpc,  3, 4 },
180 { ARM::VLD3q32Pseudo_UPD,    ARM::VLD3q32_UPD, true,  true,  EvenDblSpc, 3, 2 },
181 { ARM::VLD3q32oddPseudo_UPD, ARM::VLD3q32_UPD, true,  true,  OddDblSpc,  3, 2 },
182 { ARM::VLD3q8Pseudo_UPD,     ARM::VLD3q8_UPD,  true,  true,  EvenDblSpc, 3, 8 },
183 { ARM::VLD3q8oddPseudo_UPD,  ARM::VLD3q8_UPD,  true,  true,  OddDblSpc,  3, 8 },
184
185 { ARM::VLD4LNd16Pseudo,     ARM::VLD4LNd16,     true, false, SingleSpc,  4, 4 },
186 { ARM::VLD4LNd16Pseudo_UPD, ARM::VLD4LNd16_UPD, true, true,  SingleSpc,  4, 4 },
187 { ARM::VLD4LNd32Pseudo,     ARM::VLD4LNd32,     true, false, SingleSpc,  4, 2 },
188 { ARM::VLD4LNd32Pseudo_UPD, ARM::VLD4LNd32_UPD, true, true,  SingleSpc,  4, 2 },
189 { ARM::VLD4LNd8Pseudo,      ARM::VLD4LNd8,      true, false, SingleSpc,  4, 8 },
190 { ARM::VLD4LNd8Pseudo_UPD,  ARM::VLD4LNd8_UPD,  true, true,  SingleSpc,  4, 8 },
191 { ARM::VLD4LNq16Pseudo,     ARM::VLD4LNq16,     true, false, EvenDblSpc, 4, 4 },
192 { ARM::VLD4LNq16Pseudo_UPD, ARM::VLD4LNq16_UPD, true, true,  EvenDblSpc, 4, 4 },
193 { ARM::VLD4LNq32Pseudo,     ARM::VLD4LNq32,     true, false, EvenDblSpc, 4, 2 },
194 { ARM::VLD4LNq32Pseudo_UPD, ARM::VLD4LNq32_UPD, true, true,  EvenDblSpc, 4, 2 },
195
196 { ARM::VLD4d16Pseudo,       ARM::VLD4d16,      true,  false, SingleSpc,  4, 4 },
197 { ARM::VLD4d16Pseudo_UPD,   ARM::VLD4d16_UPD,  true,  true,  SingleSpc,  4, 4 },
198 { ARM::VLD4d32Pseudo,       ARM::VLD4d32,      true,  false, SingleSpc,  4, 2 },
199 { ARM::VLD4d32Pseudo_UPD,   ARM::VLD4d32_UPD,  true,  true,  SingleSpc,  4, 2 },
200 { ARM::VLD4d8Pseudo,        ARM::VLD4d8,       true,  false, SingleSpc,  4, 8 },
201 { ARM::VLD4d8Pseudo_UPD,    ARM::VLD4d8_UPD,   true,  true,  SingleSpc,  4, 8 },
202
203 { ARM::VLD4q16Pseudo_UPD,    ARM::VLD4q16_UPD, true,  true,  EvenDblSpc, 4, 4 },
204 { ARM::VLD4q16oddPseudo_UPD, ARM::VLD4q16_UPD, true,  true,  OddDblSpc,  4, 4 },
205 { ARM::VLD4q32Pseudo_UPD,    ARM::VLD4q32_UPD, true,  true,  EvenDblSpc, 4, 2 },
206 { ARM::VLD4q32oddPseudo_UPD, ARM::VLD4q32_UPD, true,  true,  OddDblSpc,  4, 2 },
207 { ARM::VLD4q8Pseudo_UPD,     ARM::VLD4q8_UPD,  true,  true,  EvenDblSpc, 4, 8 },
208 { ARM::VLD4q8oddPseudo_UPD,  ARM::VLD4q8_UPD,  true,  true,  OddDblSpc,  4, 8 },
209
210 { ARM::VST1LNq16Pseudo,     ARM::VST1LNd16,    false, false, EvenDblSpc, 1, 4 },
211 { ARM::VST1LNq16Pseudo_UPD, ARM::VST1LNd16_UPD,false, true,  EvenDblSpc, 1, 4 },
212 { ARM::VST1LNq32Pseudo,     ARM::VST1LNd32,    false, false, EvenDblSpc, 1, 2 },
213 { ARM::VST1LNq32Pseudo_UPD, ARM::VST1LNd32_UPD,false, true,  EvenDblSpc, 1, 2 },
214 { ARM::VST1LNq8Pseudo,      ARM::VST1LNd8,     false, false, EvenDblSpc, 1, 8 },
215 { ARM::VST1LNq8Pseudo_UPD,  ARM::VST1LNd8_UPD, false, true,  EvenDblSpc, 1, 8 },
216
217 { ARM::VST1d64QPseudo,      ARM::VST1d64Q,     false, false, SingleSpc,  4, 1 },
218 { ARM::VST1d64QPseudo_UPD,  ARM::VST1d64Q_UPD, false, true,  SingleSpc,  4, 1 },
219 { ARM::VST1d64TPseudo,      ARM::VST1d64T,     false, false, SingleSpc,  3, 1 },
220 { ARM::VST1d64TPseudo_UPD,  ARM::VST1d64T_UPD, false, true,  SingleSpc,  3, 1 },
221
222 { ARM::VST1q16Pseudo,       ARM::VST1q16,      false, false, SingleSpc,  2, 4 },
223 { ARM::VST1q16Pseudo_UPD,   ARM::VST1q16_UPD,  false, true,  SingleSpc,  2, 4 },
224 { ARM::VST1q32Pseudo,       ARM::VST1q32,      false, false, SingleSpc,  2, 2 },
225 { ARM::VST1q32Pseudo_UPD,   ARM::VST1q32_UPD,  false, true,  SingleSpc,  2, 2 },
226 { ARM::VST1q64Pseudo,       ARM::VST1q64,      false, false, SingleSpc,  2, 1 },
227 { ARM::VST1q64Pseudo_UPD,   ARM::VST1q64_UPD,  false, true,  SingleSpc,  2, 1 },
228 { ARM::VST1q8Pseudo,        ARM::VST1q8,       false, false, SingleSpc,  2, 8 },
229 { ARM::VST1q8Pseudo_UPD,    ARM::VST1q8_UPD,   false, true,  SingleSpc,  2, 8 },
230
231 { ARM::VST2LNd16Pseudo,     ARM::VST2LNd16,     false, false, SingleSpc, 2, 4 },
232 { ARM::VST2LNd16Pseudo_UPD, ARM::VST2LNd16_UPD, false, true,  SingleSpc, 2, 4 },
233 { ARM::VST2LNd32Pseudo,     ARM::VST2LNd32,     false, false, SingleSpc, 2, 2 },
234 { ARM::VST2LNd32Pseudo_UPD, ARM::VST2LNd32_UPD, false, true,  SingleSpc, 2, 2 },
235 { ARM::VST2LNd8Pseudo,      ARM::VST2LNd8,      false, false, SingleSpc, 2, 8 },
236 { ARM::VST2LNd8Pseudo_UPD,  ARM::VST2LNd8_UPD,  false, true,  SingleSpc, 2, 8 },
237 { ARM::VST2LNq16Pseudo,     ARM::VST2LNq16,     false, false, EvenDblSpc, 2, 4},
238 { ARM::VST2LNq16Pseudo_UPD, ARM::VST2LNq16_UPD, false, true,  EvenDblSpc, 2, 4},
239 { ARM::VST2LNq32Pseudo,     ARM::VST2LNq32,     false, false, EvenDblSpc, 2, 2},
240 { ARM::VST2LNq32Pseudo_UPD, ARM::VST2LNq32_UPD, false, true,  EvenDblSpc, 2, 2},
241
242 { ARM::VST2d16Pseudo,       ARM::VST2d16,      false, false, SingleSpc,  2, 4 },
243 { ARM::VST2d16Pseudo_UPD,   ARM::VST2d16_UPD,  false, true,  SingleSpc,  2, 4 },
244 { ARM::VST2d32Pseudo,       ARM::VST2d32,      false, false, SingleSpc,  2, 2 },
245 { ARM::VST2d32Pseudo_UPD,   ARM::VST2d32_UPD,  false, true,  SingleSpc,  2, 2 },
246 { ARM::VST2d8Pseudo,        ARM::VST2d8,       false, false, SingleSpc,  2, 8 },
247 { ARM::VST2d8Pseudo_UPD,    ARM::VST2d8_UPD,   false, true,  SingleSpc,  2, 8 },
248
249 { ARM::VST2q16Pseudo,       ARM::VST2q16,      false, false, SingleSpc,  4, 4 },
250 { ARM::VST2q16Pseudo_UPD,   ARM::VST2q16_UPD,  false, true,  SingleSpc,  4, 4 },
251 { ARM::VST2q32Pseudo,       ARM::VST2q32,      false, false, SingleSpc,  4, 2 },
252 { ARM::VST2q32Pseudo_UPD,   ARM::VST2q32_UPD,  false, true,  SingleSpc,  4, 2 },
253 { ARM::VST2q8Pseudo,        ARM::VST2q8,       false, false, SingleSpc,  4, 8 },
254 { ARM::VST2q8Pseudo_UPD,    ARM::VST2q8_UPD,   false, true,  SingleSpc,  4, 8 },
255
256 { ARM::VST3LNd16Pseudo,     ARM::VST3LNd16,     false, false, SingleSpc, 3, 4 },
257 { ARM::VST3LNd16Pseudo_UPD, ARM::VST3LNd16_UPD, false, true,  SingleSpc, 3, 4 },
258 { ARM::VST3LNd32Pseudo,     ARM::VST3LNd32,     false, false, SingleSpc, 3, 2 },
259 { ARM::VST3LNd32Pseudo_UPD, ARM::VST3LNd32_UPD, false, true,  SingleSpc, 3, 2 },
260 { ARM::VST3LNd8Pseudo,      ARM::VST3LNd8,      false, false, SingleSpc, 3, 8 },
261 { ARM::VST3LNd8Pseudo_UPD,  ARM::VST3LNd8_UPD,  false, true,  SingleSpc, 3, 8 },
262 { ARM::VST3LNq16Pseudo,     ARM::VST3LNq16,     false, false, EvenDblSpc, 3, 4},
263 { ARM::VST3LNq16Pseudo_UPD, ARM::VST3LNq16_UPD, false, true,  EvenDblSpc, 3, 4},
264 { ARM::VST3LNq32Pseudo,     ARM::VST3LNq32,     false, false, EvenDblSpc, 3, 2},
265 { ARM::VST3LNq32Pseudo_UPD, ARM::VST3LNq32_UPD, false, true,  EvenDblSpc, 3, 2},
266
267 { ARM::VST3d16Pseudo,       ARM::VST3d16,      false, false, SingleSpc,  3, 4 },
268 { ARM::VST3d16Pseudo_UPD,   ARM::VST3d16_UPD,  false, true,  SingleSpc,  3, 4 },
269 { ARM::VST3d32Pseudo,       ARM::VST3d32,      false, false, SingleSpc,  3, 2 },
270 { ARM::VST3d32Pseudo_UPD,   ARM::VST3d32_UPD,  false, true,  SingleSpc,  3, 2 },
271 { ARM::VST3d8Pseudo,        ARM::VST3d8,       false, false, SingleSpc,  3, 8 },
272 { ARM::VST3d8Pseudo_UPD,    ARM::VST3d8_UPD,   false, true,  SingleSpc,  3, 8 },
273
274 { ARM::VST3q16Pseudo_UPD,    ARM::VST3q16_UPD, false, true,  EvenDblSpc, 3, 4 },
275 { ARM::VST3q16oddPseudo_UPD, ARM::VST3q16_UPD, false, true,  OddDblSpc,  3, 4 },
276 { ARM::VST3q32Pseudo_UPD,    ARM::VST3q32_UPD, false, true,  EvenDblSpc, 3, 2 },
277 { ARM::VST3q32oddPseudo_UPD, ARM::VST3q32_UPD, false, true,  OddDblSpc,  3, 2 },
278 { ARM::VST3q8Pseudo_UPD,     ARM::VST3q8_UPD,  false, true,  EvenDblSpc, 3, 8 },
279 { ARM::VST3q8oddPseudo_UPD,  ARM::VST3q8_UPD,  false, true,  OddDblSpc,  3, 8 },
280
281 { ARM::VST4LNd16Pseudo,     ARM::VST4LNd16,     false, false, SingleSpc, 4, 4 },
282 { ARM::VST4LNd16Pseudo_UPD, ARM::VST4LNd16_UPD, false, true,  SingleSpc, 4, 4 },
283 { ARM::VST4LNd32Pseudo,     ARM::VST4LNd32,     false, false, SingleSpc, 4, 2 },
284 { ARM::VST4LNd32Pseudo_UPD, ARM::VST4LNd32_UPD, false, true,  SingleSpc, 4, 2 },
285 { ARM::VST4LNd8Pseudo,      ARM::VST4LNd8,      false, false, SingleSpc, 4, 8 },
286 { ARM::VST4LNd8Pseudo_UPD,  ARM::VST4LNd8_UPD,  false, true,  SingleSpc, 4, 8 },
287 { ARM::VST4LNq16Pseudo,     ARM::VST4LNq16,     false, false, EvenDblSpc, 4, 4},
288 { ARM::VST4LNq16Pseudo_UPD, ARM::VST4LNq16_UPD, false, true,  EvenDblSpc, 4, 4},
289 { ARM::VST4LNq32Pseudo,     ARM::VST4LNq32,     false, false, EvenDblSpc, 4, 2},
290 { ARM::VST4LNq32Pseudo_UPD, ARM::VST4LNq32_UPD, false, true,  EvenDblSpc, 4, 2},
291
292 { ARM::VST4d16Pseudo,       ARM::VST4d16,      false, false, SingleSpc,  4, 4 },
293 { ARM::VST4d16Pseudo_UPD,   ARM::VST4d16_UPD,  false, true,  SingleSpc,  4, 4 },
294 { ARM::VST4d32Pseudo,       ARM::VST4d32,      false, false, SingleSpc,  4, 2 },
295 { ARM::VST4d32Pseudo_UPD,   ARM::VST4d32_UPD,  false, true,  SingleSpc,  4, 2 },
296 { ARM::VST4d8Pseudo,        ARM::VST4d8,       false, false, SingleSpc,  4, 8 },
297 { ARM::VST4d8Pseudo_UPD,    ARM::VST4d8_UPD,   false, true,  SingleSpc,  4, 8 },
298
299 { ARM::VST4q16Pseudo_UPD,    ARM::VST4q16_UPD, false, true,  EvenDblSpc, 4, 4 },
300 { ARM::VST4q16oddPseudo_UPD, ARM::VST4q16_UPD, false, true,  OddDblSpc,  4, 4 },
301 { ARM::VST4q32Pseudo_UPD,    ARM::VST4q32_UPD, false, true,  EvenDblSpc, 4, 2 },
302 { ARM::VST4q32oddPseudo_UPD, ARM::VST4q32_UPD, false, true,  OddDblSpc,  4, 2 },
303 { ARM::VST4q8Pseudo_UPD,     ARM::VST4q8_UPD,  false, true,  EvenDblSpc, 4, 8 },
304 { ARM::VST4q8oddPseudo_UPD , ARM::VST4q8_UPD,  false, true,  OddDblSpc,  4, 8 }
305 };
306
307 /// LookupNEONLdSt - Search the NEONLdStTable for information about a NEON
308 /// load or store pseudo instruction.
309 static const NEONLdStTableEntry *LookupNEONLdSt(unsigned Opcode) {
310   unsigned NumEntries = array_lengthof(NEONLdStTable);
311
312 #ifndef NDEBUG
313   // Make sure the table is sorted.
314   static bool TableChecked = false;
315   if (!TableChecked) {
316     for (unsigned i = 0; i != NumEntries-1; ++i)
317       assert(NEONLdStTable[i] < NEONLdStTable[i+1] &&
318              "NEONLdStTable is not sorted!");
319     TableChecked = true;
320   }
321 #endif
322
323   const NEONLdStTableEntry *I =
324     std::lower_bound(NEONLdStTable, NEONLdStTable + NumEntries, Opcode);
325   if (I != NEONLdStTable + NumEntries && I->PseudoOpc == Opcode)
326     return I;
327   return NULL;
328 }
329
330 /// GetDSubRegs - Get 4 D subregisters of a Q, QQ, or QQQQ register,
331 /// corresponding to the specified register spacing.  Not all of the results
332 /// are necessarily valid, e.g., a Q register only has 2 D subregisters.
333 static void GetDSubRegs(unsigned Reg, NEONRegSpacing RegSpc,
334                         const TargetRegisterInfo *TRI, unsigned &D0,
335                         unsigned &D1, unsigned &D2, unsigned &D3) {
336   if (RegSpc == SingleSpc) {
337     D0 = TRI->getSubReg(Reg, ARM::dsub_0);
338     D1 = TRI->getSubReg(Reg, ARM::dsub_1);
339     D2 = TRI->getSubReg(Reg, ARM::dsub_2);
340     D3 = TRI->getSubReg(Reg, ARM::dsub_3);
341   } else if (RegSpc == EvenDblSpc) {
342     D0 = TRI->getSubReg(Reg, ARM::dsub_0);
343     D1 = TRI->getSubReg(Reg, ARM::dsub_2);
344     D2 = TRI->getSubReg(Reg, ARM::dsub_4);
345     D3 = TRI->getSubReg(Reg, ARM::dsub_6);
346   } else {
347     assert(RegSpc == OddDblSpc && "unknown register spacing");
348     D0 = TRI->getSubReg(Reg, ARM::dsub_1);
349     D1 = TRI->getSubReg(Reg, ARM::dsub_3);
350     D2 = TRI->getSubReg(Reg, ARM::dsub_5);
351     D3 = TRI->getSubReg(Reg, ARM::dsub_7);
352   }
353 }
354
355 /// ExpandVLD - Translate VLD pseudo instructions with Q, QQ or QQQQ register
356 /// operands to real VLD instructions with D register operands.
357 void ARMExpandPseudo::ExpandVLD(MachineBasicBlock::iterator &MBBI) {
358   MachineInstr &MI = *MBBI;
359   MachineBasicBlock &MBB = *MI.getParent();
360
361   const NEONLdStTableEntry *TableEntry = LookupNEONLdSt(MI.getOpcode());
362   assert(TableEntry && TableEntry->IsLoad && "NEONLdStTable lookup failed");
363   NEONRegSpacing RegSpc = TableEntry->RegSpacing;
364   unsigned NumRegs = TableEntry->NumRegs;
365
366   MachineInstrBuilder MIB = BuildMI(MBB, MBBI, MI.getDebugLoc(),
367                                     TII->get(TableEntry->RealOpc));
368   unsigned OpIdx = 0;
369
370   bool DstIsDead = MI.getOperand(OpIdx).isDead();
371   unsigned DstReg = MI.getOperand(OpIdx++).getReg();
372   unsigned D0, D1, D2, D3;
373   GetDSubRegs(DstReg, RegSpc, TRI, D0, D1, D2, D3);
374   MIB.addReg(D0, RegState::Define | getDeadRegState(DstIsDead))
375     .addReg(D1, RegState::Define | getDeadRegState(DstIsDead));
376   if (NumRegs > 2)
377     MIB.addReg(D2, RegState::Define | getDeadRegState(DstIsDead));
378   if (NumRegs > 3)
379     MIB.addReg(D3, RegState::Define | getDeadRegState(DstIsDead));
380
381   if (TableEntry->HasWriteBack)
382     MIB.addOperand(MI.getOperand(OpIdx++));
383
384   // Copy the addrmode6 operands.
385   MIB.addOperand(MI.getOperand(OpIdx++));
386   MIB.addOperand(MI.getOperand(OpIdx++));
387   // Copy the am6offset operand.
388   if (TableEntry->HasWriteBack)
389     MIB.addOperand(MI.getOperand(OpIdx++));
390
391   // For an instruction writing double-spaced subregs, the pseudo instruction
392   // has an extra operand that is a use of the super-register.  Record the
393   // operand index and skip over it.
394   unsigned SrcOpIdx = 0;
395   if (RegSpc == EvenDblSpc || RegSpc == OddDblSpc)
396     SrcOpIdx = OpIdx++;
397
398   // Copy the predicate operands.
399   MIB.addOperand(MI.getOperand(OpIdx++));
400   MIB.addOperand(MI.getOperand(OpIdx++));
401
402   // Copy the super-register source operand used for double-spaced subregs over
403   // to the new instruction as an implicit operand.
404   if (SrcOpIdx != 0) {
405     MachineOperand MO = MI.getOperand(SrcOpIdx);
406     MO.setImplicit(true);
407     MIB.addOperand(MO);
408   }
409   // Add an implicit def for the super-register.
410   MIB.addReg(DstReg, RegState::ImplicitDefine | getDeadRegState(DstIsDead));
411   TransferImpOps(MI, MIB, MIB);
412   MI.eraseFromParent();
413 }
414
415 /// ExpandVST - Translate VST pseudo instructions with Q, QQ or QQQQ register
416 /// operands to real VST instructions with D register operands.
417 void ARMExpandPseudo::ExpandVST(MachineBasicBlock::iterator &MBBI) {
418   MachineInstr &MI = *MBBI;
419   MachineBasicBlock &MBB = *MI.getParent();
420
421   const NEONLdStTableEntry *TableEntry = LookupNEONLdSt(MI.getOpcode());
422   assert(TableEntry && !TableEntry->IsLoad && "NEONLdStTable lookup failed");
423   NEONRegSpacing RegSpc = TableEntry->RegSpacing;
424   unsigned NumRegs = TableEntry->NumRegs;
425
426   MachineInstrBuilder MIB = BuildMI(MBB, MBBI, MI.getDebugLoc(),
427                                     TII->get(TableEntry->RealOpc));
428   unsigned OpIdx = 0;
429   if (TableEntry->HasWriteBack)
430     MIB.addOperand(MI.getOperand(OpIdx++));
431
432   // Copy the addrmode6 operands.
433   MIB.addOperand(MI.getOperand(OpIdx++));
434   MIB.addOperand(MI.getOperand(OpIdx++));
435   // Copy the am6offset operand.
436   if (TableEntry->HasWriteBack)
437     MIB.addOperand(MI.getOperand(OpIdx++));
438
439   bool SrcIsKill = MI.getOperand(OpIdx).isKill();
440   unsigned SrcReg = MI.getOperand(OpIdx++).getReg();
441   unsigned D0, D1, D2, D3;
442   GetDSubRegs(SrcReg, RegSpc, TRI, D0, D1, D2, D3);
443   MIB.addReg(D0).addReg(D1);
444   if (NumRegs > 2)
445     MIB.addReg(D2);
446   if (NumRegs > 3)
447     MIB.addReg(D3);
448
449   // Copy the predicate operands.
450   MIB.addOperand(MI.getOperand(OpIdx++));
451   MIB.addOperand(MI.getOperand(OpIdx++));
452
453   if (SrcIsKill)
454     // Add an implicit kill for the super-reg.
455     (*MIB).addRegisterKilled(SrcReg, TRI, true);
456   TransferImpOps(MI, MIB, MIB);
457   MI.eraseFromParent();
458 }
459
460 /// ExpandLaneOp - Translate VLD*LN and VST*LN instructions with Q, QQ or QQQQ
461 /// register operands to real instructions with D register operands.
462 void ARMExpandPseudo::ExpandLaneOp(MachineBasicBlock::iterator &MBBI) {
463   MachineInstr &MI = *MBBI;
464   MachineBasicBlock &MBB = *MI.getParent();
465
466   const NEONLdStTableEntry *TableEntry = LookupNEONLdSt(MI.getOpcode());
467   assert(TableEntry && "NEONLdStTable lookup failed");
468   NEONRegSpacing RegSpc = TableEntry->RegSpacing;
469   unsigned NumRegs = TableEntry->NumRegs;
470   unsigned RegElts = TableEntry->RegElts;
471
472   MachineInstrBuilder MIB = BuildMI(MBB, MBBI, MI.getDebugLoc(),
473                                     TII->get(TableEntry->RealOpc));
474   unsigned OpIdx = 0;
475   // The lane operand is always the 3rd from last operand, before the 2
476   // predicate operands.
477   unsigned Lane = MI.getOperand(MI.getDesc().getNumOperands() - 3).getImm();
478
479   // Adjust the lane and spacing as needed for Q registers.
480   assert(RegSpc != OddDblSpc && "unexpected register spacing for VLD/VST-lane");
481   if (RegSpc == EvenDblSpc && Lane >= RegElts) {
482     RegSpc = OddDblSpc;
483     Lane -= RegElts;
484   }
485   assert(Lane < RegElts && "out of range lane for VLD/VST-lane");
486
487   unsigned D0, D1, D2, D3;
488   unsigned DstReg = 0;
489   bool DstIsDead = false;
490   if (TableEntry->IsLoad) {
491     DstIsDead = MI.getOperand(OpIdx).isDead();
492     DstReg = MI.getOperand(OpIdx++).getReg();
493     GetDSubRegs(DstReg, RegSpc, TRI, D0, D1, D2, D3);
494     MIB.addReg(D0, RegState::Define | getDeadRegState(DstIsDead));
495     if (NumRegs > 1)
496       MIB.addReg(D1, RegState::Define | getDeadRegState(DstIsDead));
497     if (NumRegs > 2)
498       MIB.addReg(D2, RegState::Define | getDeadRegState(DstIsDead));
499     if (NumRegs > 3)
500       MIB.addReg(D3, RegState::Define | getDeadRegState(DstIsDead));
501   }
502
503   if (TableEntry->HasWriteBack)
504     MIB.addOperand(MI.getOperand(OpIdx++));
505
506   // Copy the addrmode6 operands.
507   MIB.addOperand(MI.getOperand(OpIdx++));
508   MIB.addOperand(MI.getOperand(OpIdx++));
509   // Copy the am6offset operand.
510   if (TableEntry->HasWriteBack)
511     MIB.addOperand(MI.getOperand(OpIdx++));
512
513   // Grab the super-register source.
514   MachineOperand MO = MI.getOperand(OpIdx++);
515   if (!TableEntry->IsLoad)
516     GetDSubRegs(MO.getReg(), RegSpc, TRI, D0, D1, D2, D3);
517
518   // Add the subregs as sources of the new instruction.
519   unsigned SrcFlags = (getUndefRegState(MO.isUndef()) |
520                        getKillRegState(MO.isKill()));
521   MIB.addReg(D0, SrcFlags);
522   if (NumRegs > 1)
523     MIB.addReg(D1, SrcFlags);
524   if (NumRegs > 2)
525     MIB.addReg(D2, SrcFlags);
526   if (NumRegs > 3)
527     MIB.addReg(D3, SrcFlags);
528
529   // Add the lane number operand.
530   MIB.addImm(Lane);
531   OpIdx += 1;
532
533   // Copy the predicate operands.
534   MIB.addOperand(MI.getOperand(OpIdx++));
535   MIB.addOperand(MI.getOperand(OpIdx++));
536
537   // Copy the super-register source to be an implicit source.
538   MO.setImplicit(true);
539   MIB.addOperand(MO);
540   if (TableEntry->IsLoad)
541     // Add an implicit def for the super-register.
542     MIB.addReg(DstReg, RegState::ImplicitDefine | getDeadRegState(DstIsDead));
543   TransferImpOps(MI, MIB, MIB);
544   MI.eraseFromParent();
545 }
546
547 /// ExpandVTBL - Translate VTBL and VTBX pseudo instructions with Q or QQ
548 /// register operands to real instructions with D register operands.
549 void ARMExpandPseudo::ExpandVTBL(MachineBasicBlock::iterator &MBBI,
550                                  unsigned Opc, bool IsExt, unsigned NumRegs) {
551   MachineInstr &MI = *MBBI;
552   MachineBasicBlock &MBB = *MI.getParent();
553
554   MachineInstrBuilder MIB = BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(Opc));
555   unsigned OpIdx = 0;
556
557   // Transfer the destination register operand.
558   MIB.addOperand(MI.getOperand(OpIdx++));
559   if (IsExt)
560     MIB.addOperand(MI.getOperand(OpIdx++));
561
562   bool SrcIsKill = MI.getOperand(OpIdx).isKill();
563   unsigned SrcReg = MI.getOperand(OpIdx++).getReg();
564   unsigned D0, D1, D2, D3;
565   GetDSubRegs(SrcReg, SingleSpc, TRI, D0, D1, D2, D3);
566   MIB.addReg(D0).addReg(D1);
567   if (NumRegs > 2)
568     MIB.addReg(D2);
569   if (NumRegs > 3)
570     MIB.addReg(D3);
571
572   // Copy the other source register operand.
573   MIB.addOperand(MI.getOperand(OpIdx++));
574
575   // Copy the predicate operands.
576   MIB.addOperand(MI.getOperand(OpIdx++));
577   MIB.addOperand(MI.getOperand(OpIdx++));
578
579   if (SrcIsKill)
580     // Add an implicit kill for the super-reg.
581     (*MIB).addRegisterKilled(SrcReg, TRI, true);
582   TransferImpOps(MI, MIB, MIB);
583   MI.eraseFromParent();
584 }
585
586 bool ARMExpandPseudo::ExpandMBB(MachineBasicBlock &MBB) {
587   bool Modified = false;
588
589   MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end();
590   while (MBBI != E) {
591     MachineInstr &MI = *MBBI;
592     MachineBasicBlock::iterator NMBBI = llvm::next(MBBI);
593
594     bool ModifiedOp = true;
595     unsigned Opcode = MI.getOpcode();
596     switch (Opcode) {
597     default:
598       ModifiedOp = false;
599       break;
600
601     case ARM::Int_eh_sjlj_dispatchsetup: {
602       MachineFunction &MF = *MI.getParent()->getParent();
603       const ARMBaseInstrInfo *AII =
604         static_cast<const ARMBaseInstrInfo*>(TII);
605       const ARMBaseRegisterInfo &RI = AII->getRegisterInfo();
606       // For functions using a base pointer, we rematerialize it (via the frame
607       // pointer) here since eh.sjlj.setjmp and eh.sjlj.longjmp don't do it
608       // for us. Otherwise, expand to nothing.
609       if (RI.hasBasePointer(MF)) {
610         ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
611         int32_t NumBytes = AFI->getFramePtrSpillOffset();
612         unsigned FramePtr = RI.getFrameRegister(MF);
613         assert (RI.hasFP(MF) && "base pointer without frame pointer?");
614
615         if (AFI->isThumb2Function()) {
616           llvm::emitT2RegPlusImmediate(MBB, MBBI, MI.getDebugLoc(), ARM::R6,
617                                        FramePtr, -NumBytes, ARMCC::AL, 0, *TII);
618         } else if (AFI->isThumbFunction()) {
619           llvm::emitThumbRegPlusImmediate(MBB, MBBI, ARM::R6,
620                                           FramePtr, -NumBytes,
621                                           *TII, RI, MI.getDebugLoc());
622         } else {
623           llvm::emitARMRegPlusImmediate(MBB, MBBI, MI.getDebugLoc(), ARM::R6,
624                                         FramePtr, -NumBytes, ARMCC::AL, 0,
625                                         *TII);
626         }
627         // If there's dynamic realignment, adjust for it.
628         if (RI.needsStackRealignment(MF)) {
629           MachineFrameInfo  *MFI = MF.getFrameInfo();
630           unsigned MaxAlign = MFI->getMaxAlignment();
631           assert (!AFI->isThumb1OnlyFunction());
632           // Emit bic r6, r6, MaxAlign
633           unsigned bicOpc = AFI->isThumbFunction() ?
634             ARM::t2BICri : ARM::BICri;
635           AddDefaultCC(AddDefaultPred(BuildMI(MBB, MBBI, MI.getDebugLoc(),
636                                               TII->get(bicOpc), ARM::R6)
637                                       .addReg(ARM::R6, RegState::Kill)
638                                       .addImm(MaxAlign-1)));
639         }
640
641       }
642       MI.eraseFromParent();
643       break;
644     }
645
646     case ARM::MOVsrl_flag:
647     case ARM::MOVsra_flag: {
648       // These are just fancy MOVs insructions.
649       AddDefaultPred(BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(ARM::MOVs),
650                              MI.getOperand(0).getReg())
651       .addOperand(MI.getOperand(1))
652       .addReg(0)
653       .addImm(ARM_AM::getSORegOpc((Opcode == ARM::MOVsrl_flag ? ARM_AM::lsr
654                                    : ARM_AM::asr), 1)))
655       .addReg(ARM::CPSR, RegState::Define);
656       MI.eraseFromParent();
657       break;
658     }
659     case ARM::RRX: {
660       // This encodes as "MOVs Rd, Rm, rrx
661       MachineInstrBuilder MIB =
662         AddDefaultPred(BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(ARM::MOVs),
663                                MI.getOperand(0).getReg())
664         .addOperand(MI.getOperand(1))
665         .addOperand(MI.getOperand(1))
666         .addImm(ARM_AM::getSORegOpc(ARM_AM::rrx, 0)))
667         .addReg(0);
668       TransferImpOps(MI, MIB, MIB);
669       MI.eraseFromParent();
670       break;
671     }
672     case ARM::tLDRpci_pic:
673     case ARM::t2LDRpci_pic: {
674       unsigned NewLdOpc = (Opcode == ARM::tLDRpci_pic)
675         ? ARM::tLDRpci : ARM::t2LDRpci;
676       unsigned DstReg = MI.getOperand(0).getReg();
677       bool DstIsDead = MI.getOperand(0).isDead();
678       MachineInstrBuilder MIB1 =
679         AddDefaultPred(BuildMI(MBB, MBBI, MI.getDebugLoc(),
680                                TII->get(NewLdOpc), DstReg)
681                        .addOperand(MI.getOperand(1)));
682       (*MIB1).setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
683       MachineInstrBuilder MIB2 = BuildMI(MBB, MBBI, MI.getDebugLoc(),
684                                          TII->get(ARM::tPICADD))
685         .addReg(DstReg, RegState::Define | getDeadRegState(DstIsDead))
686         .addReg(DstReg)
687         .addOperand(MI.getOperand(2));
688       TransferImpOps(MI, MIB1, MIB2);
689       MI.eraseFromParent();
690       break;
691     }
692
693     case ARM::MOVi32imm:
694     case ARM::t2MOVi32imm: {
695       unsigned PredReg = 0;
696       ARMCC::CondCodes Pred = llvm::getInstrPredicate(&MI, PredReg);
697       unsigned DstReg = MI.getOperand(0).getReg();
698       bool DstIsDead = MI.getOperand(0).isDead();
699       const MachineOperand &MO = MI.getOperand(1);
700       MachineInstrBuilder LO16, HI16;
701
702       if (Opcode == ARM::MOVi32imm && !STI->hasV6T2Ops()) {
703         // Expand into a movi + orr.
704         LO16 = BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(ARM::MOVi), DstReg);
705         HI16 = BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(ARM::ORRri))
706           .addReg(DstReg, RegState::Define | getDeadRegState(DstIsDead))
707           .addReg(DstReg);
708
709         assert (MO.isImm() && "MOVi32imm w/ non-immediate source operand!");
710         unsigned ImmVal = (unsigned)MO.getImm();
711         unsigned SOImmValV1 = ARM_AM::getSOImmTwoPartFirst(ImmVal);
712         unsigned SOImmValV2 = ARM_AM::getSOImmTwoPartSecond(ImmVal);
713         LO16 = LO16.addImm(SOImmValV1);
714         HI16 = HI16.addImm(SOImmValV2);
715         (*LO16).setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
716         (*HI16).setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
717         LO16.addImm(Pred).addReg(PredReg).addReg(0);
718         HI16.addImm(Pred).addReg(PredReg).addReg(0);
719         TransferImpOps(MI, LO16, HI16);
720         MI.eraseFromParent();
721         break;
722       }
723
724       LO16 = BuildMI(MBB, MBBI, MI.getDebugLoc(),
725                      TII->get(Opcode == ARM::MOVi32imm ?
726                               ARM::MOVi16 : ARM::t2MOVi16),
727                      DstReg);
728       HI16 = BuildMI(MBB, MBBI, MI.getDebugLoc(),
729                      TII->get(Opcode == ARM::MOVi32imm ?
730                               ARM::MOVTi16 : ARM::t2MOVTi16))
731         .addReg(DstReg, RegState::Define | getDeadRegState(DstIsDead))
732         .addReg(DstReg);
733
734       if (MO.isImm()) {
735         unsigned Imm = MO.getImm();
736         unsigned Lo16 = Imm & 0xffff;
737         unsigned Hi16 = (Imm >> 16) & 0xffff;
738         LO16 = LO16.addImm(Lo16);
739         HI16 = HI16.addImm(Hi16);
740       } else {
741         const GlobalValue *GV = MO.getGlobal();
742         unsigned TF = MO.getTargetFlags();
743         LO16 = LO16.addGlobalAddress(GV, MO.getOffset(), TF | ARMII::MO_LO16);
744         HI16 = HI16.addGlobalAddress(GV, MO.getOffset(), TF | ARMII::MO_HI16);
745       }
746       (*LO16).setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
747       (*HI16).setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
748       LO16.addImm(Pred).addReg(PredReg);
749       HI16.addImm(Pred).addReg(PredReg);
750       TransferImpOps(MI, LO16, HI16);
751       MI.eraseFromParent();
752       break;
753     }
754
755     case ARM::VMOVQQ: {
756       unsigned DstReg = MI.getOperand(0).getReg();
757       bool DstIsDead = MI.getOperand(0).isDead();
758       unsigned EvenDst = TRI->getSubReg(DstReg, ARM::qsub_0);
759       unsigned OddDst  = TRI->getSubReg(DstReg, ARM::qsub_1);
760       unsigned SrcReg = MI.getOperand(1).getReg();
761       bool SrcIsKill = MI.getOperand(1).isKill();
762       unsigned EvenSrc = TRI->getSubReg(SrcReg, ARM::qsub_0);
763       unsigned OddSrc  = TRI->getSubReg(SrcReg, ARM::qsub_1);
764       MachineInstrBuilder Even =
765         AddDefaultPred(BuildMI(MBB, MBBI, MI.getDebugLoc(),
766                                TII->get(ARM::VMOVQ))
767                      .addReg(EvenDst,
768                              RegState::Define | getDeadRegState(DstIsDead))
769                      .addReg(EvenSrc, getKillRegState(SrcIsKill)));
770       MachineInstrBuilder Odd =
771         AddDefaultPred(BuildMI(MBB, MBBI, MI.getDebugLoc(),
772                                TII->get(ARM::VMOVQ))
773                      .addReg(OddDst,
774                              RegState::Define | getDeadRegState(DstIsDead))
775                      .addReg(OddSrc, getKillRegState(SrcIsKill)));
776       TransferImpOps(MI, Even, Odd);
777       MI.eraseFromParent();
778       break;
779     }
780
781     case ARM::VLDMQ: {
782       MachineInstrBuilder MIB =
783         BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(ARM::VLDMD));
784       unsigned OpIdx = 0;
785       // Grab the Q register destination.
786       bool DstIsDead = MI.getOperand(OpIdx).isDead();
787       unsigned DstReg = MI.getOperand(OpIdx++).getReg();
788       // Copy the addrmode4 operands.
789       MIB.addOperand(MI.getOperand(OpIdx++));
790       MIB.addOperand(MI.getOperand(OpIdx++));
791       // Copy the predicate operands.
792       MIB.addOperand(MI.getOperand(OpIdx++));
793       MIB.addOperand(MI.getOperand(OpIdx++));
794       // Add the destination operands (D subregs).
795       unsigned D0 = TRI->getSubReg(DstReg, ARM::dsub_0);
796       unsigned D1 = TRI->getSubReg(DstReg, ARM::dsub_1);
797       MIB.addReg(D0, RegState::Define | getDeadRegState(DstIsDead))
798         .addReg(D1, RegState::Define | getDeadRegState(DstIsDead));
799       // Add an implicit def for the super-register.
800       MIB.addReg(DstReg, RegState::ImplicitDefine | getDeadRegState(DstIsDead));
801       TransferImpOps(MI, MIB, MIB);
802       MI.eraseFromParent();
803       break;
804     }
805
806     case ARM::VSTMQ: {
807       MachineInstrBuilder MIB =
808         BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(ARM::VSTMD));
809       unsigned OpIdx = 0;
810       // Grab the Q register source.
811       bool SrcIsKill = MI.getOperand(OpIdx).isKill();
812       unsigned SrcReg = MI.getOperand(OpIdx++).getReg();
813       // Copy the addrmode4 operands.
814       MIB.addOperand(MI.getOperand(OpIdx++));
815       MIB.addOperand(MI.getOperand(OpIdx++));
816       // Copy the predicate operands.
817       MIB.addOperand(MI.getOperand(OpIdx++));
818       MIB.addOperand(MI.getOperand(OpIdx++));
819       // Add the source operands (D subregs).
820       unsigned D0 = TRI->getSubReg(SrcReg, ARM::dsub_0);
821       unsigned D1 = TRI->getSubReg(SrcReg, ARM::dsub_1);
822       MIB.addReg(D0).addReg(D1);
823       if (SrcIsKill)
824         // Add an implicit kill for the Q register.
825         (*MIB).addRegisterKilled(SrcReg, TRI, true);
826       TransferImpOps(MI, MIB, MIB);
827       MI.eraseFromParent();
828       break;
829     }
830     case ARM::VDUPfqf:
831     case ARM::VDUPfdf:{
832       unsigned NewOpc = Opcode == ARM::VDUPfqf ? ARM::VDUPLNfq : ARM::VDUPLNfd;
833       MachineInstrBuilder MIB =
834         BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(NewOpc));
835       unsigned OpIdx = 0;
836       unsigned SrcReg = MI.getOperand(1).getReg();
837       unsigned Lane = getARMRegisterNumbering(SrcReg) & 1;
838       unsigned DReg = TRI->getMatchingSuperReg(SrcReg,
839           Lane & 1 ? ARM::ssub_1 : ARM::ssub_0, &ARM::DPR_VFP2RegClass);
840       // The lane is [0,1] for the containing DReg superregister.
841       // Copy the dst/src register operands.
842       MIB.addOperand(MI.getOperand(OpIdx++));
843       MIB.addReg(DReg);
844       ++OpIdx;
845       // Add the lane select operand.
846       MIB.addImm(Lane);
847       // Add the predicate operands.
848       MIB.addOperand(MI.getOperand(OpIdx++));
849       MIB.addOperand(MI.getOperand(OpIdx++));
850
851       TransferImpOps(MI, MIB, MIB);
852       MI.eraseFromParent();
853       break;
854     }
855
856     case ARM::VLD1q8Pseudo:
857     case ARM::VLD1q16Pseudo:
858     case ARM::VLD1q32Pseudo:
859     case ARM::VLD1q64Pseudo:
860     case ARM::VLD1q8Pseudo_UPD:
861     case ARM::VLD1q16Pseudo_UPD:
862     case ARM::VLD1q32Pseudo_UPD:
863     case ARM::VLD1q64Pseudo_UPD:
864     case ARM::VLD2d8Pseudo:
865     case ARM::VLD2d16Pseudo:
866     case ARM::VLD2d32Pseudo:
867     case ARM::VLD2q8Pseudo:
868     case ARM::VLD2q16Pseudo:
869     case ARM::VLD2q32Pseudo:
870     case ARM::VLD2d8Pseudo_UPD:
871     case ARM::VLD2d16Pseudo_UPD:
872     case ARM::VLD2d32Pseudo_UPD:
873     case ARM::VLD2q8Pseudo_UPD:
874     case ARM::VLD2q16Pseudo_UPD:
875     case ARM::VLD2q32Pseudo_UPD:
876     case ARM::VLD3d8Pseudo:
877     case ARM::VLD3d16Pseudo:
878     case ARM::VLD3d32Pseudo:
879     case ARM::VLD1d64TPseudo:
880     case ARM::VLD3d8Pseudo_UPD:
881     case ARM::VLD3d16Pseudo_UPD:
882     case ARM::VLD3d32Pseudo_UPD:
883     case ARM::VLD1d64TPseudo_UPD:
884     case ARM::VLD3q8Pseudo_UPD:
885     case ARM::VLD3q16Pseudo_UPD:
886     case ARM::VLD3q32Pseudo_UPD:
887     case ARM::VLD3q8oddPseudo_UPD:
888     case ARM::VLD3q16oddPseudo_UPD:
889     case ARM::VLD3q32oddPseudo_UPD:
890     case ARM::VLD4d8Pseudo:
891     case ARM::VLD4d16Pseudo:
892     case ARM::VLD4d32Pseudo:
893     case ARM::VLD1d64QPseudo:
894     case ARM::VLD4d8Pseudo_UPD:
895     case ARM::VLD4d16Pseudo_UPD:
896     case ARM::VLD4d32Pseudo_UPD:
897     case ARM::VLD1d64QPseudo_UPD:
898     case ARM::VLD4q8Pseudo_UPD:
899     case ARM::VLD4q16Pseudo_UPD:
900     case ARM::VLD4q32Pseudo_UPD:
901     case ARM::VLD4q8oddPseudo_UPD:
902     case ARM::VLD4q16oddPseudo_UPD:
903     case ARM::VLD4q32oddPseudo_UPD:
904       ExpandVLD(MBBI);
905       break;
906
907     case ARM::VST1q8Pseudo:
908     case ARM::VST1q16Pseudo:
909     case ARM::VST1q32Pseudo:
910     case ARM::VST1q64Pseudo:
911     case ARM::VST1q8Pseudo_UPD:
912     case ARM::VST1q16Pseudo_UPD:
913     case ARM::VST1q32Pseudo_UPD:
914     case ARM::VST1q64Pseudo_UPD:
915     case ARM::VST2d8Pseudo:
916     case ARM::VST2d16Pseudo:
917     case ARM::VST2d32Pseudo:
918     case ARM::VST2q8Pseudo:
919     case ARM::VST2q16Pseudo:
920     case ARM::VST2q32Pseudo:
921     case ARM::VST2d8Pseudo_UPD:
922     case ARM::VST2d16Pseudo_UPD:
923     case ARM::VST2d32Pseudo_UPD:
924     case ARM::VST2q8Pseudo_UPD:
925     case ARM::VST2q16Pseudo_UPD:
926     case ARM::VST2q32Pseudo_UPD:
927     case ARM::VST3d8Pseudo:
928     case ARM::VST3d16Pseudo:
929     case ARM::VST3d32Pseudo:
930     case ARM::VST1d64TPseudo:
931     case ARM::VST3d8Pseudo_UPD:
932     case ARM::VST3d16Pseudo_UPD:
933     case ARM::VST3d32Pseudo_UPD:
934     case ARM::VST1d64TPseudo_UPD:
935     case ARM::VST3q8Pseudo_UPD:
936     case ARM::VST3q16Pseudo_UPD:
937     case ARM::VST3q32Pseudo_UPD:
938     case ARM::VST3q8oddPseudo_UPD:
939     case ARM::VST3q16oddPseudo_UPD:
940     case ARM::VST3q32oddPseudo_UPD:
941     case ARM::VST4d8Pseudo:
942     case ARM::VST4d16Pseudo:
943     case ARM::VST4d32Pseudo:
944     case ARM::VST1d64QPseudo:
945     case ARM::VST4d8Pseudo_UPD:
946     case ARM::VST4d16Pseudo_UPD:
947     case ARM::VST4d32Pseudo_UPD:
948     case ARM::VST1d64QPseudo_UPD:
949     case ARM::VST4q8Pseudo_UPD:
950     case ARM::VST4q16Pseudo_UPD:
951     case ARM::VST4q32Pseudo_UPD:
952     case ARM::VST4q8oddPseudo_UPD:
953     case ARM::VST4q16oddPseudo_UPD:
954     case ARM::VST4q32oddPseudo_UPD:
955       ExpandVST(MBBI);
956       break;
957
958     case ARM::VLD1LNq8Pseudo:
959     case ARM::VLD1LNq16Pseudo:
960     case ARM::VLD1LNq32Pseudo:
961     case ARM::VLD1LNq8Pseudo_UPD:
962     case ARM::VLD1LNq16Pseudo_UPD:
963     case ARM::VLD1LNq32Pseudo_UPD:
964     case ARM::VLD2LNd8Pseudo:
965     case ARM::VLD2LNd16Pseudo:
966     case ARM::VLD2LNd32Pseudo:
967     case ARM::VLD2LNq16Pseudo:
968     case ARM::VLD2LNq32Pseudo:
969     case ARM::VLD2LNd8Pseudo_UPD:
970     case ARM::VLD2LNd16Pseudo_UPD:
971     case ARM::VLD2LNd32Pseudo_UPD:
972     case ARM::VLD2LNq16Pseudo_UPD:
973     case ARM::VLD2LNq32Pseudo_UPD:
974     case ARM::VLD3LNd8Pseudo:
975     case ARM::VLD3LNd16Pseudo:
976     case ARM::VLD3LNd32Pseudo:
977     case ARM::VLD3LNq16Pseudo:
978     case ARM::VLD3LNq32Pseudo:
979     case ARM::VLD3LNd8Pseudo_UPD:
980     case ARM::VLD3LNd16Pseudo_UPD:
981     case ARM::VLD3LNd32Pseudo_UPD:
982     case ARM::VLD3LNq16Pseudo_UPD:
983     case ARM::VLD3LNq32Pseudo_UPD:
984     case ARM::VLD4LNd8Pseudo:
985     case ARM::VLD4LNd16Pseudo:
986     case ARM::VLD4LNd32Pseudo:
987     case ARM::VLD4LNq16Pseudo:
988     case ARM::VLD4LNq32Pseudo:
989     case ARM::VLD4LNd8Pseudo_UPD:
990     case ARM::VLD4LNd16Pseudo_UPD:
991     case ARM::VLD4LNd32Pseudo_UPD:
992     case ARM::VLD4LNq16Pseudo_UPD:
993     case ARM::VLD4LNq32Pseudo_UPD:
994     case ARM::VST1LNq8Pseudo:
995     case ARM::VST1LNq16Pseudo:
996     case ARM::VST1LNq32Pseudo:
997     case ARM::VST1LNq8Pseudo_UPD:
998     case ARM::VST1LNq16Pseudo_UPD:
999     case ARM::VST1LNq32Pseudo_UPD:
1000     case ARM::VST2LNd8Pseudo:
1001     case ARM::VST2LNd16Pseudo:
1002     case ARM::VST2LNd32Pseudo:
1003     case ARM::VST2LNq16Pseudo:
1004     case ARM::VST2LNq32Pseudo:
1005     case ARM::VST2LNd8Pseudo_UPD:
1006     case ARM::VST2LNd16Pseudo_UPD:
1007     case ARM::VST2LNd32Pseudo_UPD:
1008     case ARM::VST2LNq16Pseudo_UPD:
1009     case ARM::VST2LNq32Pseudo_UPD:
1010     case ARM::VST3LNd8Pseudo:
1011     case ARM::VST3LNd16Pseudo:
1012     case ARM::VST3LNd32Pseudo:
1013     case ARM::VST3LNq16Pseudo:
1014     case ARM::VST3LNq32Pseudo:
1015     case ARM::VST3LNd8Pseudo_UPD:
1016     case ARM::VST3LNd16Pseudo_UPD:
1017     case ARM::VST3LNd32Pseudo_UPD:
1018     case ARM::VST3LNq16Pseudo_UPD:
1019     case ARM::VST3LNq32Pseudo_UPD:
1020     case ARM::VST4LNd8Pseudo:
1021     case ARM::VST4LNd16Pseudo:
1022     case ARM::VST4LNd32Pseudo:
1023     case ARM::VST4LNq16Pseudo:
1024     case ARM::VST4LNq32Pseudo:
1025     case ARM::VST4LNd8Pseudo_UPD:
1026     case ARM::VST4LNd16Pseudo_UPD:
1027     case ARM::VST4LNd32Pseudo_UPD:
1028     case ARM::VST4LNq16Pseudo_UPD:
1029     case ARM::VST4LNq32Pseudo_UPD:
1030       ExpandLaneOp(MBBI);
1031       break;
1032
1033     case ARM::VTBL2Pseudo:
1034       ExpandVTBL(MBBI, ARM::VTBL2, false, 2); break;
1035     case ARM::VTBL3Pseudo:
1036       ExpandVTBL(MBBI, ARM::VTBL3, false, 3); break;
1037     case ARM::VTBL4Pseudo:
1038       ExpandVTBL(MBBI, ARM::VTBL4, false, 4); break;
1039     case ARM::VTBX2Pseudo:
1040       ExpandVTBL(MBBI, ARM::VTBX2, true, 2); break;
1041     case ARM::VTBX3Pseudo:
1042       ExpandVTBL(MBBI, ARM::VTBX3, true, 3); break;
1043     case ARM::VTBX4Pseudo:
1044       ExpandVTBL(MBBI, ARM::VTBX4, true, 4); break;
1045     }
1046
1047     if (ModifiedOp)
1048       Modified = true;
1049     MBBI = NMBBI;
1050   }
1051
1052   return Modified;
1053 }
1054
1055 bool ARMExpandPseudo::runOnMachineFunction(MachineFunction &MF) {
1056   TII = static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo());
1057   TRI = MF.getTarget().getRegisterInfo();
1058   STI = &MF.getTarget().getSubtarget<ARMSubtarget>();
1059
1060   bool Modified = false;
1061   for (MachineFunction::iterator MFI = MF.begin(), E = MF.end(); MFI != E;
1062        ++MFI)
1063     Modified |= ExpandMBB(*MFI);
1064   return Modified;
1065 }
1066
1067 /// createARMExpandPseudoPass - returns an instance of the pseudo instruction
1068 /// expansion pass.
1069 FunctionPass *llvm::createARMExpandPseudoPass() {
1070   return new ARMExpandPseudo();
1071 }