4931add3ba139692d2d6c5fa4fbb778786ad654f
[oota-llvm.git] / lib / Target / ARM / ARMISelLowering.cpp
1 //===-- ARMISelLowering.cpp - ARM DAG Lowering Implementation -------------===//
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 defines the interfaces that ARM uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "ARM.h"
16 #include "ARMAddressingModes.h"
17 #include "ARMConstantPoolValue.h"
18 #include "ARMISelLowering.h"
19 #include "ARMMachineFunctionInfo.h"
20 #include "ARMPerfectShuffle.h"
21 #include "ARMRegisterInfo.h"
22 #include "ARMSubtarget.h"
23 #include "ARMTargetMachine.h"
24 #include "ARMTargetObjectFile.h"
25 #include "llvm/CallingConv.h"
26 #include "llvm/Constants.h"
27 #include "llvm/Function.h"
28 #include "llvm/GlobalValue.h"
29 #include "llvm/Instruction.h"
30 #include "llvm/Intrinsics.h"
31 #include "llvm/Type.h"
32 #include "llvm/CodeGen/CallingConvLower.h"
33 #include "llvm/CodeGen/MachineBasicBlock.h"
34 #include "llvm/CodeGen/MachineFrameInfo.h"
35 #include "llvm/CodeGen/MachineFunction.h"
36 #include "llvm/CodeGen/MachineInstrBuilder.h"
37 #include "llvm/CodeGen/MachineRegisterInfo.h"
38 #include "llvm/CodeGen/PseudoSourceValue.h"
39 #include "llvm/CodeGen/SelectionDAG.h"
40 #include "llvm/Target/TargetOptions.h"
41 #include "llvm/ADT/VectorExtras.h"
42 #include "llvm/Support/CommandLine.h"
43 #include "llvm/Support/ErrorHandling.h"
44 #include "llvm/Support/MathExtras.h"
45 #include "llvm/Support/raw_ostream.h"
46 #include <sstream>
47 using namespace llvm;
48
49 static bool CC_ARM_APCS_Custom_f64(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
50                                    CCValAssign::LocInfo &LocInfo,
51                                    ISD::ArgFlagsTy &ArgFlags,
52                                    CCState &State);
53 static bool CC_ARM_AAPCS_Custom_f64(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
54                                     CCValAssign::LocInfo &LocInfo,
55                                     ISD::ArgFlagsTy &ArgFlags,
56                                     CCState &State);
57 static bool RetCC_ARM_APCS_Custom_f64(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
58                                       CCValAssign::LocInfo &LocInfo,
59                                       ISD::ArgFlagsTy &ArgFlags,
60                                       CCState &State);
61 static bool RetCC_ARM_AAPCS_Custom_f64(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
62                                        CCValAssign::LocInfo &LocInfo,
63                                        ISD::ArgFlagsTy &ArgFlags,
64                                        CCState &State);
65
66 void ARMTargetLowering::addTypeForNEON(EVT VT, EVT PromotedLdStVT,
67                                        EVT PromotedBitwiseVT) {
68   if (VT != PromotedLdStVT) {
69     setOperationAction(ISD::LOAD, VT.getSimpleVT(), Promote);
70     AddPromotedToType (ISD::LOAD, VT.getSimpleVT(),
71                        PromotedLdStVT.getSimpleVT());
72
73     setOperationAction(ISD::STORE, VT.getSimpleVT(), Promote);
74     AddPromotedToType (ISD::STORE, VT.getSimpleVT(),
75                        PromotedLdStVT.getSimpleVT());
76   }
77
78   EVT ElemTy = VT.getVectorElementType();
79   if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
80     setOperationAction(ISD::VSETCC, VT.getSimpleVT(), Custom);
81   if (ElemTy == MVT::i8 || ElemTy == MVT::i16)
82     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT.getSimpleVT(), Custom);
83   if (ElemTy != MVT::i32) {
84     setOperationAction(ISD::SINT_TO_FP, VT.getSimpleVT(), Expand);
85     setOperationAction(ISD::UINT_TO_FP, VT.getSimpleVT(), Expand);
86     setOperationAction(ISD::FP_TO_SINT, VT.getSimpleVT(), Expand);
87     setOperationAction(ISD::FP_TO_UINT, VT.getSimpleVT(), Expand);
88   }
89   setOperationAction(ISD::BUILD_VECTOR, VT.getSimpleVT(), Custom);
90   setOperationAction(ISD::VECTOR_SHUFFLE, VT.getSimpleVT(), Custom);
91   setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Custom);
92   setOperationAction(ISD::EXTRACT_SUBVECTOR, VT.getSimpleVT(), Expand);
93   if (VT.isInteger()) {
94     setOperationAction(ISD::SHL, VT.getSimpleVT(), Custom);
95     setOperationAction(ISD::SRA, VT.getSimpleVT(), Custom);
96     setOperationAction(ISD::SRL, VT.getSimpleVT(), Custom);
97   }
98
99   // Promote all bit-wise operations.
100   if (VT.isInteger() && VT != PromotedBitwiseVT) {
101     setOperationAction(ISD::AND, VT.getSimpleVT(), Promote);
102     AddPromotedToType (ISD::AND, VT.getSimpleVT(),
103                        PromotedBitwiseVT.getSimpleVT());
104     setOperationAction(ISD::OR,  VT.getSimpleVT(), Promote);
105     AddPromotedToType (ISD::OR,  VT.getSimpleVT(),
106                        PromotedBitwiseVT.getSimpleVT());
107     setOperationAction(ISD::XOR, VT.getSimpleVT(), Promote);
108     AddPromotedToType (ISD::XOR, VT.getSimpleVT(),
109                        PromotedBitwiseVT.getSimpleVT());
110   }
111
112   // Neon does not support vector divide/remainder operations.
113   setOperationAction(ISD::SDIV, VT.getSimpleVT(), Expand);
114   setOperationAction(ISD::UDIV, VT.getSimpleVT(), Expand);
115   setOperationAction(ISD::FDIV, VT.getSimpleVT(), Expand);
116   setOperationAction(ISD::SREM, VT.getSimpleVT(), Expand);
117   setOperationAction(ISD::UREM, VT.getSimpleVT(), Expand);
118   setOperationAction(ISD::FREM, VT.getSimpleVT(), Expand);
119 }
120
121 void ARMTargetLowering::addDRTypeForNEON(EVT VT) {
122   addRegisterClass(VT, ARM::DPRRegisterClass);
123   addTypeForNEON(VT, MVT::f64, MVT::v2i32);
124 }
125
126 void ARMTargetLowering::addQRTypeForNEON(EVT VT) {
127   addRegisterClass(VT, ARM::QPRRegisterClass);
128   addTypeForNEON(VT, MVT::v2f64, MVT::v4i32);
129 }
130
131 static TargetLoweringObjectFile *createTLOF(TargetMachine &TM) {
132   if (TM.getSubtarget<ARMSubtarget>().isTargetDarwin())
133     return new TargetLoweringObjectFileMachO();
134   return new ARMElfTargetObjectFile();
135 }
136
137 ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
138     : TargetLowering(TM, createTLOF(TM)) {
139   Subtarget = &TM.getSubtarget<ARMSubtarget>();
140
141   if (Subtarget->isTargetDarwin()) {
142     // Uses VFP for Thumb libfuncs if available.
143     if (Subtarget->isThumb() && Subtarget->hasVFP2()) {
144       // Single-precision floating-point arithmetic.
145       setLibcallName(RTLIB::ADD_F32, "__addsf3vfp");
146       setLibcallName(RTLIB::SUB_F32, "__subsf3vfp");
147       setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp");
148       setLibcallName(RTLIB::DIV_F32, "__divsf3vfp");
149
150       // Double-precision floating-point arithmetic.
151       setLibcallName(RTLIB::ADD_F64, "__adddf3vfp");
152       setLibcallName(RTLIB::SUB_F64, "__subdf3vfp");
153       setLibcallName(RTLIB::MUL_F64, "__muldf3vfp");
154       setLibcallName(RTLIB::DIV_F64, "__divdf3vfp");
155
156       // Single-precision comparisons.
157       setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp");
158       setLibcallName(RTLIB::UNE_F32, "__nesf2vfp");
159       setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp");
160       setLibcallName(RTLIB::OLE_F32, "__lesf2vfp");
161       setLibcallName(RTLIB::OGE_F32, "__gesf2vfp");
162       setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp");
163       setLibcallName(RTLIB::UO_F32,  "__unordsf2vfp");
164       setLibcallName(RTLIB::O_F32,   "__unordsf2vfp");
165
166       setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
167       setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE);
168       setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
169       setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
170       setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
171       setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
172       setCmpLibcallCC(RTLIB::UO_F32,  ISD::SETNE);
173       setCmpLibcallCC(RTLIB::O_F32,   ISD::SETEQ);
174
175       // Double-precision comparisons.
176       setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp");
177       setLibcallName(RTLIB::UNE_F64, "__nedf2vfp");
178       setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp");
179       setLibcallName(RTLIB::OLE_F64, "__ledf2vfp");
180       setLibcallName(RTLIB::OGE_F64, "__gedf2vfp");
181       setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp");
182       setLibcallName(RTLIB::UO_F64,  "__unorddf2vfp");
183       setLibcallName(RTLIB::O_F64,   "__unorddf2vfp");
184
185       setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
186       setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE);
187       setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
188       setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
189       setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
190       setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
191       setCmpLibcallCC(RTLIB::UO_F64,  ISD::SETNE);
192       setCmpLibcallCC(RTLIB::O_F64,   ISD::SETEQ);
193
194       // Floating-point to integer conversions.
195       // i64 conversions are done via library routines even when generating VFP
196       // instructions, so use the same ones.
197       setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp");
198       setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp");
199       setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp");
200       setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp");
201
202       // Conversions between floating types.
203       setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp");
204       setLibcallName(RTLIB::FPEXT_F32_F64,   "__extendsfdf2vfp");
205
206       // Integer to floating-point conversions.
207       // i64 conversions are done via library routines even when generating VFP
208       // instructions, so use the same ones.
209       // FIXME: There appears to be some naming inconsistency in ARM libgcc:
210       // e.g., __floatunsidf vs. __floatunssidfvfp.
211       setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp");
212       setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp");
213       setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp");
214       setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp");
215     }
216   }
217
218   // These libcalls are not available in 32-bit.
219   setLibcallName(RTLIB::SHL_I128, 0);
220   setLibcallName(RTLIB::SRL_I128, 0);
221   setLibcallName(RTLIB::SRA_I128, 0);
222
223   // Libcalls should use the AAPCS base standard ABI, even if hard float
224   // is in effect, as per the ARM RTABI specification, section 4.1.2.
225   if (Subtarget->isAAPCS_ABI()) {
226     for (int i = 0; i < RTLIB::UNKNOWN_LIBCALL; ++i) {
227       setLibcallCallingConv(static_cast<RTLIB::Libcall>(i),
228                             CallingConv::ARM_AAPCS);
229     }
230   }
231
232   if (Subtarget->isThumb1Only())
233     addRegisterClass(MVT::i32, ARM::tGPRRegisterClass);
234   else
235     addRegisterClass(MVT::i32, ARM::GPRRegisterClass);
236   if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only()) {
237     addRegisterClass(MVT::f32, ARM::SPRRegisterClass);
238     addRegisterClass(MVT::f64, ARM::DPRRegisterClass);
239
240     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
241   }
242
243   if (Subtarget->hasNEON()) {
244     addDRTypeForNEON(MVT::v2f32);
245     addDRTypeForNEON(MVT::v8i8);
246     addDRTypeForNEON(MVT::v4i16);
247     addDRTypeForNEON(MVT::v2i32);
248     addDRTypeForNEON(MVT::v1i64);
249
250     addQRTypeForNEON(MVT::v4f32);
251     addQRTypeForNEON(MVT::v2f64);
252     addQRTypeForNEON(MVT::v16i8);
253     addQRTypeForNEON(MVT::v8i16);
254     addQRTypeForNEON(MVT::v4i32);
255     addQRTypeForNEON(MVT::v2i64);
256
257     // v2f64 is legal so that QR subregs can be extracted as f64 elements, but
258     // neither Neon nor VFP support any arithmetic operations on it.
259     setOperationAction(ISD::FADD, MVT::v2f64, Expand);
260     setOperationAction(ISD::FSUB, MVT::v2f64, Expand);
261     setOperationAction(ISD::FMUL, MVT::v2f64, Expand);
262     setOperationAction(ISD::FDIV, MVT::v2f64, Expand);
263     setOperationAction(ISD::FREM, MVT::v2f64, Expand);
264     setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand);
265     setOperationAction(ISD::VSETCC, MVT::v2f64, Expand);
266     setOperationAction(ISD::FNEG, MVT::v2f64, Expand);
267     setOperationAction(ISD::FABS, MVT::v2f64, Expand);
268     setOperationAction(ISD::FSQRT, MVT::v2f64, Expand);
269     setOperationAction(ISD::FSIN, MVT::v2f64, Expand);
270     setOperationAction(ISD::FCOS, MVT::v2f64, Expand);
271     setOperationAction(ISD::FPOWI, MVT::v2f64, Expand);
272     setOperationAction(ISD::FPOW, MVT::v2f64, Expand);
273     setOperationAction(ISD::FLOG, MVT::v2f64, Expand);
274     setOperationAction(ISD::FLOG2, MVT::v2f64, Expand);
275     setOperationAction(ISD::FLOG10, MVT::v2f64, Expand);
276     setOperationAction(ISD::FEXP, MVT::v2f64, Expand);
277     setOperationAction(ISD::FEXP2, MVT::v2f64, Expand);
278     setOperationAction(ISD::FCEIL, MVT::v2f64, Expand);
279     setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand);
280     setOperationAction(ISD::FRINT, MVT::v2f64, Expand);
281     setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand);
282     setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand);
283
284     // Neon does not support some operations on v1i64 and v2i64 types.
285     setOperationAction(ISD::MUL, MVT::v1i64, Expand);
286     setOperationAction(ISD::MUL, MVT::v2i64, Expand);
287     setOperationAction(ISD::VSETCC, MVT::v1i64, Expand);
288     setOperationAction(ISD::VSETCC, MVT::v2i64, Expand);
289
290     setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
291     setTargetDAGCombine(ISD::SHL);
292     setTargetDAGCombine(ISD::SRL);
293     setTargetDAGCombine(ISD::SRA);
294     setTargetDAGCombine(ISD::SIGN_EXTEND);
295     setTargetDAGCombine(ISD::ZERO_EXTEND);
296     setTargetDAGCombine(ISD::ANY_EXTEND);
297   }
298
299   computeRegisterProperties();
300
301   // ARM does not have f32 extending load.
302   setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
303
304   // ARM does not have i1 sign extending load.
305   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
306
307   // ARM supports all 4 flavors of integer indexed load / store.
308   if (!Subtarget->isThumb1Only()) {
309     for (unsigned im = (unsigned)ISD::PRE_INC;
310          im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
311       setIndexedLoadAction(im,  MVT::i1,  Legal);
312       setIndexedLoadAction(im,  MVT::i8,  Legal);
313       setIndexedLoadAction(im,  MVT::i16, Legal);
314       setIndexedLoadAction(im,  MVT::i32, Legal);
315       setIndexedStoreAction(im, MVT::i1,  Legal);
316       setIndexedStoreAction(im, MVT::i8,  Legal);
317       setIndexedStoreAction(im, MVT::i16, Legal);
318       setIndexedStoreAction(im, MVT::i32, Legal);
319     }
320   }
321
322   // i64 operation support.
323   if (Subtarget->isThumb1Only()) {
324     setOperationAction(ISD::MUL,     MVT::i64, Expand);
325     setOperationAction(ISD::MULHU,   MVT::i32, Expand);
326     setOperationAction(ISD::MULHS,   MVT::i32, Expand);
327     setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
328     setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
329   } else {
330     setOperationAction(ISD::MUL,     MVT::i64, Expand);
331     setOperationAction(ISD::MULHU,   MVT::i32, Expand);
332     if (!Subtarget->hasV6Ops())
333       setOperationAction(ISD::MULHS, MVT::i32, Expand);
334   }
335   setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
336   setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
337   setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
338   setOperationAction(ISD::SRL,       MVT::i64, Custom);
339   setOperationAction(ISD::SRA,       MVT::i64, Custom);
340
341   // ARM does not have ROTL.
342   setOperationAction(ISD::ROTL,  MVT::i32, Expand);
343   setOperationAction(ISD::CTTZ,  MVT::i32, Expand);
344   setOperationAction(ISD::CTPOP, MVT::i32, Expand);
345   if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only())
346     setOperationAction(ISD::CTLZ, MVT::i32, Expand);
347
348   // Only ARMv6 has BSWAP.
349   if (!Subtarget->hasV6Ops())
350     setOperationAction(ISD::BSWAP, MVT::i32, Expand);
351
352   // These are expanded into libcalls.
353   setOperationAction(ISD::SDIV,  MVT::i32, Expand);
354   setOperationAction(ISD::UDIV,  MVT::i32, Expand);
355   setOperationAction(ISD::SREM,  MVT::i32, Expand);
356   setOperationAction(ISD::UREM,  MVT::i32, Expand);
357   setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
358   setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
359
360   setOperationAction(ISD::GlobalAddress, MVT::i32,   Custom);
361   setOperationAction(ISD::ConstantPool,  MVT::i32,   Custom);
362   setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
363   setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
364   setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
365
366   // Use the default implementation.
367   setOperationAction(ISD::VASTART,            MVT::Other, Custom);
368   setOperationAction(ISD::VAARG,              MVT::Other, Expand);
369   setOperationAction(ISD::VACOPY,             MVT::Other, Expand);
370   setOperationAction(ISD::VAEND,              MVT::Other, Expand);
371   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
372   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
373   setOperationAction(ISD::EHSELECTION,        MVT::i32,   Expand);
374   // FIXME: Shouldn't need this, since no register is used, but the legalizer
375   // doesn't yet know how to not do that for SjLj.
376   setExceptionSelectorRegister(ARM::R0);
377   if (Subtarget->isThumb())
378     setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
379   else
380     setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
381   setOperationAction(ISD::MEMBARRIER,         MVT::Other, Custom);
382
383   if (!Subtarget->hasV6Ops() && !Subtarget->isThumb2()) {
384     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
385     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8,  Expand);
386   }
387   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
388
389   if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only())
390     // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR iff target supports vfp2.
391     setOperationAction(ISD::BIT_CONVERT, MVT::i64, Custom);
392
393   // We want to custom lower some of our intrinsics.
394   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
395
396   setOperationAction(ISD::SETCC,     MVT::i32, Expand);
397   setOperationAction(ISD::SETCC,     MVT::f32, Expand);
398   setOperationAction(ISD::SETCC,     MVT::f64, Expand);
399   setOperationAction(ISD::SELECT,    MVT::i32, Expand);
400   setOperationAction(ISD::SELECT,    MVT::f32, Expand);
401   setOperationAction(ISD::SELECT,    MVT::f64, Expand);
402   setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
403   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
404   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
405
406   setOperationAction(ISD::BRCOND,    MVT::Other, Expand);
407   setOperationAction(ISD::BR_CC,     MVT::i32,   Custom);
408   setOperationAction(ISD::BR_CC,     MVT::f32,   Custom);
409   setOperationAction(ISD::BR_CC,     MVT::f64,   Custom);
410   setOperationAction(ISD::BR_JT,     MVT::Other, Custom);
411
412   // We don't support sin/cos/fmod/copysign/pow
413   setOperationAction(ISD::FSIN,      MVT::f64, Expand);
414   setOperationAction(ISD::FSIN,      MVT::f32, Expand);
415   setOperationAction(ISD::FCOS,      MVT::f32, Expand);
416   setOperationAction(ISD::FCOS,      MVT::f64, Expand);
417   setOperationAction(ISD::FREM,      MVT::f64, Expand);
418   setOperationAction(ISD::FREM,      MVT::f32, Expand);
419   if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only()) {
420     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
421     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
422   }
423   setOperationAction(ISD::FPOW,      MVT::f64, Expand);
424   setOperationAction(ISD::FPOW,      MVT::f32, Expand);
425
426   // int <-> fp are custom expanded into bit_convert + ARMISD ops.
427   if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only()) {
428     setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
429     setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
430     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
431     setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
432   }
433
434   // We have target-specific dag combine patterns for the following nodes:
435   // ARMISD::VMOVRRD  - No need to call setTargetDAGCombine
436   setTargetDAGCombine(ISD::ADD);
437   setTargetDAGCombine(ISD::SUB);
438
439   setStackPointerRegisterToSaveRestore(ARM::SP);
440   setSchedulingPreference(SchedulingForRegPressure);
441
442   // FIXME: If-converter should use instruction latency to determine
443   // profitability rather than relying on fixed limits.
444   if (Subtarget->getCPUString() == "generic") {
445     // Generic (and overly aggressive) if-conversion limits.
446     setIfCvtBlockSizeLimit(10);
447     setIfCvtDupBlockSizeLimit(2);
448   } else if (Subtarget->hasV6Ops()) {
449     setIfCvtBlockSizeLimit(2);
450     setIfCvtDupBlockSizeLimit(1);
451   } else {
452     setIfCvtBlockSizeLimit(3);
453     setIfCvtDupBlockSizeLimit(2);
454   }
455
456   maxStoresPerMemcpy = 1;   //// temporary - rewrite interface to use type
457   // Do not enable CodePlacementOpt for now: it currently runs after the
458   // ARMConstantIslandPass and messes up branch relaxation and placement
459   // of constant islands.
460   // benefitFromCodePlacementOpt = true;
461 }
462
463 const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
464   switch (Opcode) {
465   default: return 0;
466   case ARMISD::Wrapper:       return "ARMISD::Wrapper";
467   case ARMISD::WrapperJT:     return "ARMISD::WrapperJT";
468   case ARMISD::CALL:          return "ARMISD::CALL";
469   case ARMISD::CALL_PRED:     return "ARMISD::CALL_PRED";
470   case ARMISD::CALL_NOLINK:   return "ARMISD::CALL_NOLINK";
471   case ARMISD::tCALL:         return "ARMISD::tCALL";
472   case ARMISD::BRCOND:        return "ARMISD::BRCOND";
473   case ARMISD::BR_JT:         return "ARMISD::BR_JT";
474   case ARMISD::BR2_JT:        return "ARMISD::BR2_JT";
475   case ARMISD::RET_FLAG:      return "ARMISD::RET_FLAG";
476   case ARMISD::PIC_ADD:       return "ARMISD::PIC_ADD";
477   case ARMISD::CMP:           return "ARMISD::CMP";
478   case ARMISD::CMPZ:          return "ARMISD::CMPZ";
479   case ARMISD::CMPFP:         return "ARMISD::CMPFP";
480   case ARMISD::CMPFPw0:       return "ARMISD::CMPFPw0";
481   case ARMISD::FMSTAT:        return "ARMISD::FMSTAT";
482   case ARMISD::CMOV:          return "ARMISD::CMOV";
483   case ARMISD::CNEG:          return "ARMISD::CNEG";
484
485   case ARMISD::FTOSI:         return "ARMISD::FTOSI";
486   case ARMISD::FTOUI:         return "ARMISD::FTOUI";
487   case ARMISD::SITOF:         return "ARMISD::SITOF";
488   case ARMISD::UITOF:         return "ARMISD::UITOF";
489
490   case ARMISD::SRL_FLAG:      return "ARMISD::SRL_FLAG";
491   case ARMISD::SRA_FLAG:      return "ARMISD::SRA_FLAG";
492   case ARMISD::RRX:           return "ARMISD::RRX";
493
494   case ARMISD::VMOVRRD:         return "ARMISD::VMOVRRD";
495   case ARMISD::VMOVDRR:         return "ARMISD::VMOVDRR";
496
497   case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP";
498   case ARMISD::EH_SJLJ_LONGJMP:return "ARMISD::EH_SJLJ_LONGJMP";
499
500   case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
501
502   case ARMISD::DYN_ALLOC:     return "ARMISD::DYN_ALLOC";
503
504   case ARMISD::MEMBARRIER:    return "ARMISD::MEMBARRIER";
505   case ARMISD::SYNCBARRIER:   return "ARMISD::SYNCBARRIER";
506
507   case ARMISD::VCEQ:          return "ARMISD::VCEQ";
508   case ARMISD::VCGE:          return "ARMISD::VCGE";
509   case ARMISD::VCGEU:         return "ARMISD::VCGEU";
510   case ARMISD::VCGT:          return "ARMISD::VCGT";
511   case ARMISD::VCGTU:         return "ARMISD::VCGTU";
512   case ARMISD::VTST:          return "ARMISD::VTST";
513
514   case ARMISD::VSHL:          return "ARMISD::VSHL";
515   case ARMISD::VSHRs:         return "ARMISD::VSHRs";
516   case ARMISD::VSHRu:         return "ARMISD::VSHRu";
517   case ARMISD::VSHLLs:        return "ARMISD::VSHLLs";
518   case ARMISD::VSHLLu:        return "ARMISD::VSHLLu";
519   case ARMISD::VSHLLi:        return "ARMISD::VSHLLi";
520   case ARMISD::VSHRN:         return "ARMISD::VSHRN";
521   case ARMISD::VRSHRs:        return "ARMISD::VRSHRs";
522   case ARMISD::VRSHRu:        return "ARMISD::VRSHRu";
523   case ARMISD::VRSHRN:        return "ARMISD::VRSHRN";
524   case ARMISD::VQSHLs:        return "ARMISD::VQSHLs";
525   case ARMISD::VQSHLu:        return "ARMISD::VQSHLu";
526   case ARMISD::VQSHLsu:       return "ARMISD::VQSHLsu";
527   case ARMISD::VQSHRNs:       return "ARMISD::VQSHRNs";
528   case ARMISD::VQSHRNu:       return "ARMISD::VQSHRNu";
529   case ARMISD::VQSHRNsu:      return "ARMISD::VQSHRNsu";
530   case ARMISD::VQRSHRNs:      return "ARMISD::VQRSHRNs";
531   case ARMISD::VQRSHRNu:      return "ARMISD::VQRSHRNu";
532   case ARMISD::VQRSHRNsu:     return "ARMISD::VQRSHRNsu";
533   case ARMISD::VGETLANEu:     return "ARMISD::VGETLANEu";
534   case ARMISD::VGETLANEs:     return "ARMISD::VGETLANEs";
535   case ARMISD::VDUP:          return "ARMISD::VDUP";
536   case ARMISD::VDUPLANE:      return "ARMISD::VDUPLANE";
537   case ARMISD::VEXT:          return "ARMISD::VEXT";
538   case ARMISD::VREV64:        return "ARMISD::VREV64";
539   case ARMISD::VREV32:        return "ARMISD::VREV32";
540   case ARMISD::VREV16:        return "ARMISD::VREV16";
541   case ARMISD::VZIP:          return "ARMISD::VZIP";
542   case ARMISD::VUZP:          return "ARMISD::VUZP";
543   case ARMISD::VTRN:          return "ARMISD::VTRN";
544   }
545 }
546
547 /// getFunctionAlignment - Return the Log2 alignment of this function.
548 unsigned ARMTargetLowering::getFunctionAlignment(const Function *F) const {
549   return getTargetMachine().getSubtarget<ARMSubtarget>().isThumb() ? 0 : 1;
550 }
551
552 //===----------------------------------------------------------------------===//
553 // Lowering Code
554 //===----------------------------------------------------------------------===//
555
556 /// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
557 static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
558   switch (CC) {
559   default: llvm_unreachable("Unknown condition code!");
560   case ISD::SETNE:  return ARMCC::NE;
561   case ISD::SETEQ:  return ARMCC::EQ;
562   case ISD::SETGT:  return ARMCC::GT;
563   case ISD::SETGE:  return ARMCC::GE;
564   case ISD::SETLT:  return ARMCC::LT;
565   case ISD::SETLE:  return ARMCC::LE;
566   case ISD::SETUGT: return ARMCC::HI;
567   case ISD::SETUGE: return ARMCC::HS;
568   case ISD::SETULT: return ARMCC::LO;
569   case ISD::SETULE: return ARMCC::LS;
570   }
571 }
572
573 /// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC.
574 static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
575                         ARMCC::CondCodes &CondCode2) {
576   CondCode2 = ARMCC::AL;
577   switch (CC) {
578   default: llvm_unreachable("Unknown FP condition!");
579   case ISD::SETEQ:
580   case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
581   case ISD::SETGT:
582   case ISD::SETOGT: CondCode = ARMCC::GT; break;
583   case ISD::SETGE:
584   case ISD::SETOGE: CondCode = ARMCC::GE; break;
585   case ISD::SETOLT: CondCode = ARMCC::MI; break;
586   case ISD::SETOLE: CondCode = ARMCC::LS; break;
587   case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
588   case ISD::SETO:   CondCode = ARMCC::VC; break;
589   case ISD::SETUO:  CondCode = ARMCC::VS; break;
590   case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
591   case ISD::SETUGT: CondCode = ARMCC::HI; break;
592   case ISD::SETUGE: CondCode = ARMCC::PL; break;
593   case ISD::SETLT:
594   case ISD::SETULT: CondCode = ARMCC::LT; break;
595   case ISD::SETLE:
596   case ISD::SETULE: CondCode = ARMCC::LE; break;
597   case ISD::SETNE:
598   case ISD::SETUNE: CondCode = ARMCC::NE; break;
599   }
600 }
601
602 //===----------------------------------------------------------------------===//
603 //                      Calling Convention Implementation
604 //===----------------------------------------------------------------------===//
605
606 #include "ARMGenCallingConv.inc"
607
608 // APCS f64 is in register pairs, possibly split to stack
609 static bool f64AssignAPCS(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
610                           CCValAssign::LocInfo &LocInfo,
611                           CCState &State, bool CanFail) {
612   static const unsigned RegList[] = { ARM::R0, ARM::R1, ARM::R2, ARM::R3 };
613
614   // Try to get the first register.
615   if (unsigned Reg = State.AllocateReg(RegList, 4))
616     State.addLoc(CCValAssign::getCustomReg(ValNo, ValVT, Reg, LocVT, LocInfo));
617   else {
618     // For the 2nd half of a v2f64, do not fail.
619     if (CanFail)
620       return false;
621
622     // Put the whole thing on the stack.
623     State.addLoc(CCValAssign::getCustomMem(ValNo, ValVT,
624                                            State.AllocateStack(8, 4),
625                                            LocVT, LocInfo));
626     return true;
627   }
628
629   // Try to get the second register.
630   if (unsigned Reg = State.AllocateReg(RegList, 4))
631     State.addLoc(CCValAssign::getCustomReg(ValNo, ValVT, Reg, LocVT, LocInfo));
632   else
633     State.addLoc(CCValAssign::getCustomMem(ValNo, ValVT,
634                                            State.AllocateStack(4, 4),
635                                            LocVT, LocInfo));
636   return true;
637 }
638
639 static bool CC_ARM_APCS_Custom_f64(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
640                                    CCValAssign::LocInfo &LocInfo,
641                                    ISD::ArgFlagsTy &ArgFlags,
642                                    CCState &State) {
643   if (!f64AssignAPCS(ValNo, ValVT, LocVT, LocInfo, State, true))
644     return false;
645   if (LocVT == MVT::v2f64 &&
646       !f64AssignAPCS(ValNo, ValVT, LocVT, LocInfo, State, false))
647     return false;
648   return true;  // we handled it
649 }
650
651 // AAPCS f64 is in aligned register pairs
652 static bool f64AssignAAPCS(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
653                            CCValAssign::LocInfo &LocInfo,
654                            CCState &State, bool CanFail) {
655   static const unsigned HiRegList[] = { ARM::R0, ARM::R2 };
656   static const unsigned LoRegList[] = { ARM::R1, ARM::R3 };
657
658   unsigned Reg = State.AllocateReg(HiRegList, LoRegList, 2);
659   if (Reg == 0) {
660     // For the 2nd half of a v2f64, do not just fail.
661     if (CanFail)
662       return false;
663
664     // Put the whole thing on the stack.
665     State.addLoc(CCValAssign::getCustomMem(ValNo, ValVT,
666                                            State.AllocateStack(8, 8),
667                                            LocVT, LocInfo));
668     return true;
669   }
670
671   unsigned i;
672   for (i = 0; i < 2; ++i)
673     if (HiRegList[i] == Reg)
674       break;
675
676   State.addLoc(CCValAssign::getCustomReg(ValNo, ValVT, Reg, LocVT, LocInfo));
677   State.addLoc(CCValAssign::getCustomReg(ValNo, ValVT, LoRegList[i],
678                                          LocVT, LocInfo));
679   return true;
680 }
681
682 static bool CC_ARM_AAPCS_Custom_f64(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
683                                     CCValAssign::LocInfo &LocInfo,
684                                     ISD::ArgFlagsTy &ArgFlags,
685                                     CCState &State) {
686   if (!f64AssignAAPCS(ValNo, ValVT, LocVT, LocInfo, State, true))
687     return false;
688   if (LocVT == MVT::v2f64 &&
689       !f64AssignAAPCS(ValNo, ValVT, LocVT, LocInfo, State, false))
690     return false;
691   return true;  // we handled it
692 }
693
694 static bool f64RetAssign(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
695                          CCValAssign::LocInfo &LocInfo, CCState &State) {
696   static const unsigned HiRegList[] = { ARM::R0, ARM::R2 };
697   static const unsigned LoRegList[] = { ARM::R1, ARM::R3 };
698
699   unsigned Reg = State.AllocateReg(HiRegList, LoRegList, 2);
700   if (Reg == 0)
701     return false; // we didn't handle it
702
703   unsigned i;
704   for (i = 0; i < 2; ++i)
705     if (HiRegList[i] == Reg)
706       break;
707
708   State.addLoc(CCValAssign::getCustomReg(ValNo, ValVT, Reg, LocVT, LocInfo));
709   State.addLoc(CCValAssign::getCustomReg(ValNo, ValVT, LoRegList[i],
710                                          LocVT, LocInfo));
711   return true;
712 }
713
714 static bool RetCC_ARM_APCS_Custom_f64(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
715                                       CCValAssign::LocInfo &LocInfo,
716                                       ISD::ArgFlagsTy &ArgFlags,
717                                       CCState &State) {
718   if (!f64RetAssign(ValNo, ValVT, LocVT, LocInfo, State))
719     return false;
720   if (LocVT == MVT::v2f64 && !f64RetAssign(ValNo, ValVT, LocVT, LocInfo, State))
721     return false;
722   return true;  // we handled it
723 }
724
725 static bool RetCC_ARM_AAPCS_Custom_f64(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
726                                        CCValAssign::LocInfo &LocInfo,
727                                        ISD::ArgFlagsTy &ArgFlags,
728                                        CCState &State) {
729   return RetCC_ARM_APCS_Custom_f64(ValNo, ValVT, LocVT, LocInfo, ArgFlags,
730                                    State);
731 }
732
733 /// CCAssignFnForNode - Selects the correct CCAssignFn for a the
734 /// given CallingConvention value.
735 CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC,
736                                                  bool Return,
737                                                  bool isVarArg) const {
738   switch (CC) {
739   default:
740     llvm_unreachable("Unsupported calling convention");
741   case CallingConv::C:
742   case CallingConv::Fast:
743     // Use target triple & subtarget features to do actual dispatch.
744     if (Subtarget->isAAPCS_ABI()) {
745       if (Subtarget->hasVFP2() &&
746           FloatABIType == FloatABI::Hard && !isVarArg)
747         return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
748       else
749         return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
750     } else
751         return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
752   case CallingConv::ARM_AAPCS_VFP:
753     return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
754   case CallingConv::ARM_AAPCS:
755     return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
756   case CallingConv::ARM_APCS:
757     return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
758   }
759 }
760
761 /// LowerCallResult - Lower the result values of a call into the
762 /// appropriate copies out of appropriate physical registers.
763 SDValue
764 ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
765                                    CallingConv::ID CallConv, bool isVarArg,
766                                    const SmallVectorImpl<ISD::InputArg> &Ins,
767                                    DebugLoc dl, SelectionDAG &DAG,
768                                    SmallVectorImpl<SDValue> &InVals) {
769
770   // Assign locations to each value returned by this call.
771   SmallVector<CCValAssign, 16> RVLocs;
772   CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
773                  RVLocs, *DAG.getContext());
774   CCInfo.AnalyzeCallResult(Ins,
775                            CCAssignFnForNode(CallConv, /* Return*/ true,
776                                              isVarArg));
777
778   // Copy all of the result registers out of their specified physreg.
779   for (unsigned i = 0; i != RVLocs.size(); ++i) {
780     CCValAssign VA = RVLocs[i];
781
782     SDValue Val;
783     if (VA.needsCustom()) {
784       // Handle f64 or half of a v2f64.
785       SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
786                                       InFlag);
787       Chain = Lo.getValue(1);
788       InFlag = Lo.getValue(2);
789       VA = RVLocs[++i]; // skip ahead to next loc
790       SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
791                                       InFlag);
792       Chain = Hi.getValue(1);
793       InFlag = Hi.getValue(2);
794       Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
795
796       if (VA.getLocVT() == MVT::v2f64) {
797         SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
798         Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
799                           DAG.getConstant(0, MVT::i32));
800
801         VA = RVLocs[++i]; // skip ahead to next loc
802         Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
803         Chain = Lo.getValue(1);
804         InFlag = Lo.getValue(2);
805         VA = RVLocs[++i]; // skip ahead to next loc
806         Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
807         Chain = Hi.getValue(1);
808         InFlag = Hi.getValue(2);
809         Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
810         Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
811                           DAG.getConstant(1, MVT::i32));
812       }
813     } else {
814       Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(),
815                                InFlag);
816       Chain = Val.getValue(1);
817       InFlag = Val.getValue(2);
818     }
819
820     switch (VA.getLocInfo()) {
821     default: llvm_unreachable("Unknown loc info!");
822     case CCValAssign::Full: break;
823     case CCValAssign::BCvt:
824       Val = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), Val);
825       break;
826     }
827
828     InVals.push_back(Val);
829   }
830
831   return Chain;
832 }
833
834 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
835 /// by "Src" to address "Dst" of size "Size".  Alignment information is
836 /// specified by the specific parameter attribute.  The copy will be passed as
837 /// a byval function parameter.
838 /// Sometimes what we are copying is the end of a larger object, the part that
839 /// does not fit in registers.
840 static SDValue
841 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
842                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
843                           DebugLoc dl) {
844   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
845   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
846                        /*AlwaysInline=*/false, NULL, 0, NULL, 0);
847 }
848
849 /// LowerMemOpCallTo - Store the argument to the stack.
850 SDValue
851 ARMTargetLowering::LowerMemOpCallTo(SDValue Chain,
852                                     SDValue StackPtr, SDValue Arg,
853                                     DebugLoc dl, SelectionDAG &DAG,
854                                     const CCValAssign &VA,
855                                     ISD::ArgFlagsTy Flags) {
856   unsigned LocMemOffset = VA.getLocMemOffset();
857   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
858   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
859   if (Flags.isByVal()) {
860     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
861   }
862   return DAG.getStore(Chain, dl, Arg, PtrOff,
863                       PseudoSourceValue::getStack(), LocMemOffset);
864 }
865
866 void ARMTargetLowering::PassF64ArgInRegs(DebugLoc dl, SelectionDAG &DAG,
867                                          SDValue Chain, SDValue &Arg,
868                                          RegsToPassVector &RegsToPass,
869                                          CCValAssign &VA, CCValAssign &NextVA,
870                                          SDValue &StackPtr,
871                                          SmallVector<SDValue, 8> &MemOpChains,
872                                          ISD::ArgFlagsTy Flags) {
873
874   SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
875                               DAG.getVTList(MVT::i32, MVT::i32), Arg);
876   RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd));
877
878   if (NextVA.isRegLoc())
879     RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1)));
880   else {
881     assert(NextVA.isMemLoc());
882     if (StackPtr.getNode() == 0)
883       StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
884
885     MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1),
886                                            dl, DAG, NextVA,
887                                            Flags));
888   }
889 }
890
891 /// LowerCall - Lowering a call into a callseq_start <-
892 /// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
893 /// nodes.
894 SDValue
895 ARMTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
896                              CallingConv::ID CallConv, bool isVarArg,
897                              bool isTailCall,
898                              const SmallVectorImpl<ISD::OutputArg> &Outs,
899                              const SmallVectorImpl<ISD::InputArg> &Ins,
900                              DebugLoc dl, SelectionDAG &DAG,
901                              SmallVectorImpl<SDValue> &InVals) {
902
903   // Analyze operands of the call, assigning locations to each operand.
904   SmallVector<CCValAssign, 16> ArgLocs;
905   CCState CCInfo(CallConv, isVarArg, getTargetMachine(), ArgLocs,
906                  *DAG.getContext());
907   CCInfo.AnalyzeCallOperands(Outs,
908                              CCAssignFnForNode(CallConv, /* Return*/ false,
909                                                isVarArg));
910
911   // Get a count of how many bytes are to be pushed on the stack.
912   unsigned NumBytes = CCInfo.getNextStackOffset();
913
914   // Adjust the stack pointer for the new arguments...
915   // These operations are automatically eliminated by the prolog/epilog pass
916   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
917
918   SDValue StackPtr = DAG.getRegister(ARM::SP, MVT::i32);
919
920   RegsToPassVector RegsToPass;
921   SmallVector<SDValue, 8> MemOpChains;
922
923   // Walk the register/memloc assignments, inserting copies/loads.  In the case
924   // of tail call optimization, arguments are handled later.
925   for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
926        i != e;
927        ++i, ++realArgIdx) {
928     CCValAssign &VA = ArgLocs[i];
929     SDValue Arg = Outs[realArgIdx].Val;
930     ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
931
932     // Promote the value if needed.
933     switch (VA.getLocInfo()) {
934     default: llvm_unreachable("Unknown loc info!");
935     case CCValAssign::Full: break;
936     case CCValAssign::SExt:
937       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
938       break;
939     case CCValAssign::ZExt:
940       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
941       break;
942     case CCValAssign::AExt:
943       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
944       break;
945     case CCValAssign::BCvt:
946       Arg = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), Arg);
947       break;
948     }
949
950     // f64 and v2f64 might be passed in i32 pairs and must be split into pieces
951     if (VA.needsCustom()) {
952       if (VA.getLocVT() == MVT::v2f64) {
953         SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
954                                   DAG.getConstant(0, MVT::i32));
955         SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
956                                   DAG.getConstant(1, MVT::i32));
957
958         PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass,
959                          VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
960
961         VA = ArgLocs[++i]; // skip ahead to next loc
962         if (VA.isRegLoc()) {
963           PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass,
964                            VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
965         } else {
966           assert(VA.isMemLoc());
967           if (StackPtr.getNode() == 0)
968             StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
969
970           MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1,
971                                                  dl, DAG, VA, Flags));
972         }
973       } else {
974         PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i],
975                          StackPtr, MemOpChains, Flags);
976       }
977     } else if (VA.isRegLoc()) {
978       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
979     } else {
980       assert(VA.isMemLoc());
981       if (StackPtr.getNode() == 0)
982         StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
983
984       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
985                                              dl, DAG, VA, Flags));
986     }
987   }
988
989   if (!MemOpChains.empty())
990     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
991                         &MemOpChains[0], MemOpChains.size());
992
993   // Build a sequence of copy-to-reg nodes chained together with token chain
994   // and flag operands which copy the outgoing args into the appropriate regs.
995   SDValue InFlag;
996   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
997     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
998                              RegsToPass[i].second, InFlag);
999     InFlag = Chain.getValue(1);
1000   }
1001
1002   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1003   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1004   // node so that legalize doesn't hack it.
1005   bool isDirect = false;
1006   bool isARMFunc = false;
1007   bool isLocalARMFunc = false;
1008   MachineFunction &MF = DAG.getMachineFunction();
1009   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1010   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1011     GlobalValue *GV = G->getGlobal();
1012     isDirect = true;
1013     bool isExt = GV->isDeclaration() || GV->isWeakForLinker();
1014     bool isStub = (isExt && Subtarget->isTargetDarwin()) &&
1015                    getTargetMachine().getRelocationModel() != Reloc::Static;
1016     isARMFunc = !Subtarget->isThumb() || isStub;
1017     // ARM call to a local ARM function is predicable.
1018     isLocalARMFunc = !Subtarget->isThumb() && !isExt;
1019     // tBX takes a register source operand.
1020     if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
1021       unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1022       ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV,
1023                                                            ARMPCLabelIndex,
1024                                                            ARMCP::CPValue, 4);
1025       SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1026       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1027       Callee = DAG.getLoad(getPointerTy(), dl,
1028                            DAG.getEntryNode(), CPAddr,
1029                            PseudoSourceValue::getConstantPool(), 0);
1030       SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
1031       Callee = DAG.getNode(ARMISD::PIC_ADD, dl,
1032                            getPointerTy(), Callee, PICLabel);
1033    } else
1034       Callee = DAG.getTargetGlobalAddress(GV, getPointerTy());
1035   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1036     isDirect = true;
1037     bool isStub = Subtarget->isTargetDarwin() &&
1038                   getTargetMachine().getRelocationModel() != Reloc::Static;
1039     isARMFunc = !Subtarget->isThumb() || isStub;
1040     // tBX takes a register source operand.
1041     const char *Sym = S->getSymbol();
1042     if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
1043       unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1044       ARMConstantPoolValue *CPV = new ARMConstantPoolValue(*DAG.getContext(),
1045                                                        Sym, ARMPCLabelIndex, 4);
1046       SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1047       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1048       Callee = DAG.getLoad(getPointerTy(), dl,
1049                            DAG.getEntryNode(), CPAddr,
1050                            PseudoSourceValue::getConstantPool(), 0);
1051       SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
1052       Callee = DAG.getNode(ARMISD::PIC_ADD, dl,
1053                            getPointerTy(), Callee, PICLabel);
1054     } else
1055       Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy());
1056   }
1057
1058   // FIXME: handle tail calls differently.
1059   unsigned CallOpc;
1060   if (Subtarget->isThumb()) {
1061     if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps())
1062       CallOpc = ARMISD::CALL_NOLINK;
1063     else
1064       CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
1065   } else {
1066     CallOpc = (isDirect || Subtarget->hasV5TOps())
1067       ? (isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL)
1068       : ARMISD::CALL_NOLINK;
1069   }
1070   if (CallOpc == ARMISD::CALL_NOLINK && !Subtarget->isThumb1Only()) {
1071     // implicit def LR - LR mustn't be allocated as GRP:$dst of CALL_NOLINK
1072     Chain = DAG.getCopyToReg(Chain, dl, ARM::LR, DAG.getUNDEF(MVT::i32),InFlag);
1073     InFlag = Chain.getValue(1);
1074   }
1075
1076   std::vector<SDValue> Ops;
1077   Ops.push_back(Chain);
1078   Ops.push_back(Callee);
1079
1080   // Add argument registers to the end of the list so that they are known live
1081   // into the call.
1082   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1083     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1084                                   RegsToPass[i].second.getValueType()));
1085
1086   if (InFlag.getNode())
1087     Ops.push_back(InFlag);
1088   // Returns a chain and a flag for retval copy to use.
1089   Chain = DAG.getNode(CallOpc, dl, DAG.getVTList(MVT::Other, MVT::Flag),
1090                       &Ops[0], Ops.size());
1091   InFlag = Chain.getValue(1);
1092
1093   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1094                              DAG.getIntPtrConstant(0, true), InFlag);
1095   if (!Ins.empty())
1096     InFlag = Chain.getValue(1);
1097
1098   // Handle result values, copying them out of physregs into vregs that we
1099   // return.
1100   return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins,
1101                          dl, DAG, InVals);
1102 }
1103
1104 SDValue
1105 ARMTargetLowering::LowerReturn(SDValue Chain,
1106                                CallingConv::ID CallConv, bool isVarArg,
1107                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1108                                DebugLoc dl, SelectionDAG &DAG) {
1109
1110   // CCValAssign - represent the assignment of the return value to a location.
1111   SmallVector<CCValAssign, 16> RVLocs;
1112
1113   // CCState - Info about the registers and stack slots.
1114   CCState CCInfo(CallConv, isVarArg, getTargetMachine(), RVLocs,
1115                  *DAG.getContext());
1116
1117   // Analyze outgoing return values.
1118   CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true,
1119                                                isVarArg));
1120
1121   // If this is the first return lowered for this function, add
1122   // the regs to the liveout set for the function.
1123   if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
1124     for (unsigned i = 0; i != RVLocs.size(); ++i)
1125       if (RVLocs[i].isRegLoc())
1126         DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
1127   }
1128
1129   SDValue Flag;
1130
1131   // Copy the result values into the output registers.
1132   for (unsigned i = 0, realRVLocIdx = 0;
1133        i != RVLocs.size();
1134        ++i, ++realRVLocIdx) {
1135     CCValAssign &VA = RVLocs[i];
1136     assert(VA.isRegLoc() && "Can only return in registers!");
1137
1138     SDValue Arg = Outs[realRVLocIdx].Val;
1139
1140     switch (VA.getLocInfo()) {
1141     default: llvm_unreachable("Unknown loc info!");
1142     case CCValAssign::Full: break;
1143     case CCValAssign::BCvt:
1144       Arg = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), Arg);
1145       break;
1146     }
1147
1148     if (VA.needsCustom()) {
1149       if (VA.getLocVT() == MVT::v2f64) {
1150         // Extract the first half and return it in two registers.
1151         SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1152                                    DAG.getConstant(0, MVT::i32));
1153         SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl,
1154                                        DAG.getVTList(MVT::i32, MVT::i32), Half);
1155
1156         Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), HalfGPRs, Flag);
1157         Flag = Chain.getValue(1);
1158         VA = RVLocs[++i]; // skip ahead to next loc
1159         Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
1160                                  HalfGPRs.getValue(1), Flag);
1161         Flag = Chain.getValue(1);
1162         VA = RVLocs[++i]; // skip ahead to next loc
1163
1164         // Extract the 2nd half and fall through to handle it as an f64 value.
1165         Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1166                           DAG.getConstant(1, MVT::i32));
1167       }
1168       // Legalize ret f64 -> ret 2 x i32.  We always have fmrrd if f64 is
1169       // available.
1170       SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
1171                                   DAG.getVTList(MVT::i32, MVT::i32), &Arg, 1);
1172       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), fmrrd, Flag);
1173       Flag = Chain.getValue(1);
1174       VA = RVLocs[++i]; // skip ahead to next loc
1175       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), fmrrd.getValue(1),
1176                                Flag);
1177     } else
1178       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
1179
1180     // Guarantee that all emitted copies are
1181     // stuck together, avoiding something bad.
1182     Flag = Chain.getValue(1);
1183   }
1184
1185   SDValue result;
1186   if (Flag.getNode())
1187     result = DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, Chain, Flag);
1188   else // Return Void
1189     result = DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, Chain);
1190
1191   return result;
1192 }
1193
1194 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
1195 // their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is
1196 // one of the above mentioned nodes. It has to be wrapped because otherwise
1197 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
1198 // be used to form addressing mode. These wrapped nodes will be selected
1199 // into MOVi.
1200 static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
1201   EVT PtrVT = Op.getValueType();
1202   // FIXME there is no actual debug info here
1203   DebugLoc dl = Op.getDebugLoc();
1204   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
1205   SDValue Res;
1206   if (CP->isMachineConstantPoolEntry())
1207     Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
1208                                     CP->getAlignment());
1209   else
1210     Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
1211                                     CP->getAlignment());
1212   return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res);
1213 }
1214
1215 SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) {
1216   MachineFunction &MF = DAG.getMachineFunction();
1217   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1218   unsigned ARMPCLabelIndex = 0;
1219   DebugLoc DL = Op.getDebugLoc();
1220   EVT PtrVT = getPointerTy();
1221   BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
1222   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
1223   SDValue CPAddr;
1224   if (RelocM == Reloc::Static) {
1225     CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4);
1226   } else {
1227     unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
1228     ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1229     ARMConstantPoolValue *CPV = new ARMConstantPoolValue(BA, ARMPCLabelIndex,
1230                                                          ARMCP::CPBlockAddress,
1231                                                          PCAdj);
1232     CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
1233   }
1234   CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr);
1235   SDValue Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr,
1236                                PseudoSourceValue::getConstantPool(), 0);
1237   if (RelocM == Reloc::Static)
1238     return Result;
1239   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
1240   return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel);
1241 }
1242
1243 // Lower ISD::GlobalTLSAddress using the "general dynamic" model
1244 SDValue
1245 ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
1246                                                  SelectionDAG &DAG) {
1247   DebugLoc dl = GA->getDebugLoc();
1248   EVT PtrVT = getPointerTy();
1249   unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
1250   MachineFunction &MF = DAG.getMachineFunction();
1251   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1252   unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1253   ARMConstantPoolValue *CPV =
1254     new ARMConstantPoolValue(GA->getGlobal(), ARMPCLabelIndex,
1255                              ARMCP::CPValue, PCAdj, "tlsgd", true);
1256   SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4);
1257   Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument);
1258   Argument = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument,
1259                          PseudoSourceValue::getConstantPool(), 0);
1260   SDValue Chain = Argument.getValue(1);
1261
1262   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
1263   Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel);
1264
1265   // call __tls_get_addr.
1266   ArgListTy Args;
1267   ArgListEntry Entry;
1268   Entry.Node = Argument;
1269   Entry.Ty = (const Type *) Type::getInt32Ty(*DAG.getContext());
1270   Args.push_back(Entry);
1271   // FIXME: is there useful debug info available here?
1272   std::pair<SDValue, SDValue> CallResult =
1273     LowerCallTo(Chain, (const Type *) Type::getInt32Ty(*DAG.getContext()),
1274                 false, false, false, false,
1275                 0, CallingConv::C, false, /*isReturnValueUsed=*/true,
1276                 DAG.getExternalSymbol("__tls_get_addr", PtrVT), Args, DAG, dl);
1277   return CallResult.first;
1278 }
1279
1280 // Lower ISD::GlobalTLSAddress using the "initial exec" or
1281 // "local exec" model.
1282 SDValue
1283 ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
1284                                         SelectionDAG &DAG) {
1285   GlobalValue *GV = GA->getGlobal();
1286   DebugLoc dl = GA->getDebugLoc();
1287   SDValue Offset;
1288   SDValue Chain = DAG.getEntryNode();
1289   EVT PtrVT = getPointerTy();
1290   // Get the Thread Pointer
1291   SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
1292
1293   if (GV->isDeclaration()) {
1294     MachineFunction &MF = DAG.getMachineFunction();
1295     ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1296     unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1297     // Initial exec model.
1298     unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
1299     ARMConstantPoolValue *CPV =
1300       new ARMConstantPoolValue(GA->getGlobal(), ARMPCLabelIndex,
1301                                ARMCP::CPValue, PCAdj, "gottpoff", true);
1302     Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
1303     Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
1304     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
1305                          PseudoSourceValue::getConstantPool(), 0);
1306     Chain = Offset.getValue(1);
1307
1308     SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
1309     Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel);
1310
1311     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
1312                          PseudoSourceValue::getConstantPool(), 0);
1313   } else {
1314     // local exec model
1315     ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, "tpoff");
1316     Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
1317     Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
1318     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
1319                          PseudoSourceValue::getConstantPool(), 0);
1320   }
1321
1322   // The address of the thread local variable is the add of the thread
1323   // pointer with the offset of the variable.
1324   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
1325 }
1326
1327 SDValue
1328 ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
1329   // TODO: implement the "local dynamic" model
1330   assert(Subtarget->isTargetELF() &&
1331          "TLS not implemented for non-ELF targets");
1332   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
1333   // If the relocation model is PIC, use the "General Dynamic" TLS Model,
1334   // otherwise use the "Local Exec" TLS Model
1335   if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
1336     return LowerToTLSGeneralDynamicModel(GA, DAG);
1337   else
1338     return LowerToTLSExecModels(GA, DAG);
1339 }
1340
1341 SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
1342                                                  SelectionDAG &DAG) {
1343   EVT PtrVT = getPointerTy();
1344   DebugLoc dl = Op.getDebugLoc();
1345   GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
1346   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
1347   if (RelocM == Reloc::PIC_) {
1348     bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility();
1349     ARMConstantPoolValue *CPV =
1350       new ARMConstantPoolValue(GV, UseGOTOFF ? "GOTOFF" : "GOT");
1351     SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
1352     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1353     SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
1354                                  CPAddr,
1355                                  PseudoSourceValue::getConstantPool(), 0);
1356     SDValue Chain = Result.getValue(1);
1357     SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
1358     Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result, GOT);
1359     if (!UseGOTOFF)
1360       Result = DAG.getLoad(PtrVT, dl, Chain, Result,
1361                            PseudoSourceValue::getGOT(), 0);
1362     return Result;
1363   } else {
1364     // If we have T2 ops, we can materialize the address directly via movt/movw
1365     // pair. This is always cheaper.
1366     if (Subtarget->useMovt()) {
1367       return DAG.getNode(ARMISD::Wrapper, dl, PtrVT,
1368                          DAG.getTargetGlobalAddress(GV, PtrVT));
1369     } else {
1370       SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
1371       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1372       return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
1373                          PseudoSourceValue::getConstantPool(), 0);
1374     }
1375   }
1376 }
1377
1378 SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op,
1379                                                     SelectionDAG &DAG) {
1380   MachineFunction &MF = DAG.getMachineFunction();
1381   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1382   unsigned ARMPCLabelIndex = 0;
1383   EVT PtrVT = getPointerTy();
1384   DebugLoc dl = Op.getDebugLoc();
1385   GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
1386   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
1387   SDValue CPAddr;
1388   if (RelocM == Reloc::Static)
1389     CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
1390   else {
1391     ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1392     unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb()?4:8);
1393     ARMConstantPoolValue *CPV =
1394       new ARMConstantPoolValue(GV, ARMPCLabelIndex, ARMCP::CPValue, PCAdj);
1395     CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
1396   }
1397   CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1398
1399   SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
1400                                PseudoSourceValue::getConstantPool(), 0);
1401   SDValue Chain = Result.getValue(1);
1402
1403   if (RelocM == Reloc::PIC_) {
1404     SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
1405     Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
1406   }
1407
1408   if (Subtarget->GVIsIndirectSymbol(GV, RelocM))
1409     Result = DAG.getLoad(PtrVT, dl, Chain, Result,
1410                          PseudoSourceValue::getGOT(), 0);
1411
1412   return Result;
1413 }
1414
1415 SDValue ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op,
1416                                                     SelectionDAG &DAG){
1417   assert(Subtarget->isTargetELF() &&
1418          "GLOBAL OFFSET TABLE not implemented for non-ELF targets");
1419   MachineFunction &MF = DAG.getMachineFunction();
1420   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1421   unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1422   EVT PtrVT = getPointerTy();
1423   DebugLoc dl = Op.getDebugLoc();
1424   unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
1425   ARMConstantPoolValue *CPV = new ARMConstantPoolValue(*DAG.getContext(),
1426                                                        "_GLOBAL_OFFSET_TABLE_",
1427                                                        ARMPCLabelIndex, PCAdj);
1428   SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
1429   CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1430   SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
1431                                PseudoSourceValue::getConstantPool(), 0);
1432   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
1433   return DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
1434 }
1435
1436 SDValue
1437 ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
1438   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1439   DebugLoc dl = Op.getDebugLoc();
1440   switch (IntNo) {
1441   default: return SDValue();    // Don't custom lower most intrinsics.
1442   case Intrinsic::arm_thread_pointer: {
1443     EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1444     return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
1445   }
1446   case Intrinsic::eh_sjlj_lsda: {
1447     MachineFunction &MF = DAG.getMachineFunction();
1448     ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1449     unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1450     EVT PtrVT = getPointerTy();
1451     DebugLoc dl = Op.getDebugLoc();
1452     Reloc::Model RelocM = getTargetMachine().getRelocationModel();
1453     SDValue CPAddr;
1454     unsigned PCAdj = (RelocM != Reloc::PIC_)
1455       ? 0 : (Subtarget->isThumb() ? 4 : 8);
1456     ARMConstantPoolValue *CPV =
1457       new ARMConstantPoolValue(MF.getFunction(), ARMPCLabelIndex,
1458                                ARMCP::CPLSDA, PCAdj);
1459     CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
1460     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1461     SDValue Result =
1462       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
1463                   PseudoSourceValue::getConstantPool(), 0);
1464     SDValue Chain = Result.getValue(1);
1465
1466     if (RelocM == Reloc::PIC_) {
1467       SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
1468       Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
1469     }
1470     return Result;
1471   }
1472   case Intrinsic::eh_sjlj_setjmp:
1473     return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl, MVT::i32, Op.getOperand(1));
1474   }
1475 }
1476
1477 static SDValue LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) {
1478   DebugLoc dl = Op.getDebugLoc();
1479   SDValue Op5 = Op.getOperand(5);
1480   SDValue Res;
1481   unsigned isDeviceBarrier = cast<ConstantSDNode>(Op5)->getZExtValue();
1482   if (isDeviceBarrier) {
1483     Res = DAG.getNode(ARMISD::SYNCBARRIER, dl, MVT::Other,
1484                               Op.getOperand(0));
1485   } else {
1486     Res = DAG.getNode(ARMISD::MEMBARRIER, dl, MVT::Other,
1487                               Op.getOperand(0));
1488   }
1489   return Res;
1490 }
1491
1492 static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG,
1493                             unsigned VarArgsFrameIndex) {
1494   // vastart just stores the address of the VarArgsFrameIndex slot into the
1495   // memory location argument.
1496   DebugLoc dl = Op.getDebugLoc();
1497   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1498   SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
1499   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
1500   return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
1501 }
1502
1503 SDValue
1504 ARMTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) {
1505   SDNode *Node = Op.getNode();
1506   DebugLoc dl = Node->getDebugLoc();
1507   EVT VT = Node->getValueType(0);
1508   SDValue Chain = Op.getOperand(0);
1509   SDValue Size  = Op.getOperand(1);
1510   SDValue Align = Op.getOperand(2);
1511
1512   // Chain the dynamic stack allocation so that it doesn't modify the stack
1513   // pointer when other instructions are using the stack.
1514   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
1515
1516   unsigned AlignVal = cast<ConstantSDNode>(Align)->getZExtValue();
1517   unsigned StackAlign = getTargetMachine().getFrameInfo()->getStackAlignment();
1518   if (AlignVal > StackAlign)
1519     // Do this now since selection pass cannot introduce new target
1520     // independent node.
1521     Align = DAG.getConstant(-(uint64_t)AlignVal, VT);
1522
1523   // In Thumb1 mode, there isn't a "sub r, sp, r" instruction, we will end up
1524   // using a "add r, sp, r" instead. Negate the size now so we don't have to
1525   // do even more horrible hack later.
1526   MachineFunction &MF = DAG.getMachineFunction();
1527   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1528   if (AFI->isThumb1OnlyFunction()) {
1529     bool Negate = true;
1530     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Size);
1531     if (C) {
1532       uint32_t Val = C->getZExtValue();
1533       if (Val <= 508 && ((Val & 3) == 0))
1534         Negate = false;
1535     }
1536     if (Negate)
1537       Size = DAG.getNode(ISD::SUB, dl, VT, DAG.getConstant(0, VT), Size);
1538   }
1539
1540   SDVTList VTList = DAG.getVTList(VT, MVT::Other);
1541   SDValue Ops1[] = { Chain, Size, Align };
1542   SDValue Res = DAG.getNode(ARMISD::DYN_ALLOC, dl, VTList, Ops1, 3);
1543   Chain = Res.getValue(1);
1544   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1545                              DAG.getIntPtrConstant(0, true), SDValue());
1546   SDValue Ops2[] = { Res, Chain };
1547   return DAG.getMergeValues(Ops2, 2, dl);
1548 }
1549
1550 SDValue
1551 ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
1552                                         SDValue &Root, SelectionDAG &DAG,
1553                                         DebugLoc dl) {
1554   MachineFunction &MF = DAG.getMachineFunction();
1555   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1556
1557   TargetRegisterClass *RC;
1558   if (AFI->isThumb1OnlyFunction())
1559     RC = ARM::tGPRRegisterClass;
1560   else
1561     RC = ARM::GPRRegisterClass;
1562
1563   // Transform the arguments stored in physical registers into virtual ones.
1564   unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
1565   SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
1566
1567   SDValue ArgValue2;
1568   if (NextVA.isMemLoc()) {
1569     unsigned ArgSize = NextVA.getLocVT().getSizeInBits()/8;
1570     MachineFrameInfo *MFI = MF.getFrameInfo();
1571     int FI = MFI->CreateFixedObject(ArgSize, NextVA.getLocMemOffset(),
1572                                     true, false);
1573
1574     // Create load node to retrieve arguments from the stack.
1575     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1576     ArgValue2 = DAG.getLoad(MVT::i32, dl, Root, FIN,
1577                             PseudoSourceValue::getFixedStack(FI), 0);
1578   } else {
1579     Reg = MF.addLiveIn(NextVA.getLocReg(), RC);
1580     ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
1581   }
1582
1583   return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2);
1584 }
1585
1586 SDValue
1587 ARMTargetLowering::LowerFormalArguments(SDValue Chain,
1588                                         CallingConv::ID CallConv, bool isVarArg,
1589                                         const SmallVectorImpl<ISD::InputArg>
1590                                           &Ins,
1591                                         DebugLoc dl, SelectionDAG &DAG,
1592                                         SmallVectorImpl<SDValue> &InVals) {
1593
1594   MachineFunction &MF = DAG.getMachineFunction();
1595   MachineFrameInfo *MFI = MF.getFrameInfo();
1596
1597   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1598
1599   // Assign locations to all of the incoming arguments.
1600   SmallVector<CCValAssign, 16> ArgLocs;
1601   CCState CCInfo(CallConv, isVarArg, getTargetMachine(), ArgLocs,
1602                  *DAG.getContext());
1603   CCInfo.AnalyzeFormalArguments(Ins,
1604                                 CCAssignFnForNode(CallConv, /* Return*/ false,
1605                                                   isVarArg));
1606
1607   SmallVector<SDValue, 16> ArgValues;
1608
1609   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1610     CCValAssign &VA = ArgLocs[i];
1611
1612     // Arguments stored in registers.
1613     if (VA.isRegLoc()) {
1614       EVT RegVT = VA.getLocVT();
1615
1616       SDValue ArgValue;
1617       if (VA.needsCustom()) {
1618         // f64 and vector types are split up into multiple registers or
1619         // combinations of registers and stack slots.
1620         RegVT = MVT::i32;
1621
1622         if (VA.getLocVT() == MVT::v2f64) {
1623           SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
1624                                                    Chain, DAG, dl);
1625           VA = ArgLocs[++i]; // skip ahead to next loc
1626           SDValue ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
1627                                                    Chain, DAG, dl);
1628           ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
1629           ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
1630                                  ArgValue, ArgValue1, DAG.getIntPtrConstant(0));
1631           ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
1632                                  ArgValue, ArgValue2, DAG.getIntPtrConstant(1));
1633         } else
1634           ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl);
1635
1636       } else {
1637         TargetRegisterClass *RC;
1638
1639         if (RegVT == MVT::f32)
1640           RC = ARM::SPRRegisterClass;
1641         else if (RegVT == MVT::f64)
1642           RC = ARM::DPRRegisterClass;
1643         else if (RegVT == MVT::v2f64)
1644           RC = ARM::QPRRegisterClass;
1645         else if (RegVT == MVT::i32)
1646           RC = (AFI->isThumb1OnlyFunction() ?
1647                 ARM::tGPRRegisterClass : ARM::GPRRegisterClass);
1648         else
1649           llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
1650
1651         // Transform the arguments in physical registers into virtual ones.
1652         unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
1653         ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
1654       }
1655
1656       // If this is an 8 or 16-bit value, it is really passed promoted
1657       // to 32 bits.  Insert an assert[sz]ext to capture this, then
1658       // truncate to the right size.
1659       switch (VA.getLocInfo()) {
1660       default: llvm_unreachable("Unknown loc info!");
1661       case CCValAssign::Full: break;
1662       case CCValAssign::BCvt:
1663         ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue);
1664         break;
1665       case CCValAssign::SExt:
1666         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
1667                                DAG.getValueType(VA.getValVT()));
1668         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
1669         break;
1670       case CCValAssign::ZExt:
1671         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
1672                                DAG.getValueType(VA.getValVT()));
1673         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
1674         break;
1675       }
1676
1677       InVals.push_back(ArgValue);
1678
1679     } else { // VA.isRegLoc()
1680
1681       // sanity check
1682       assert(VA.isMemLoc());
1683       assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered");
1684
1685       unsigned ArgSize = VA.getLocVT().getSizeInBits()/8;
1686       int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
1687                                       true, false);
1688
1689       // Create load nodes to retrieve arguments from the stack.
1690       SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1691       InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
1692                                    PseudoSourceValue::getFixedStack(FI), 0));
1693     }
1694   }
1695
1696   // varargs
1697   if (isVarArg) {
1698     static const unsigned GPRArgRegs[] = {
1699       ARM::R0, ARM::R1, ARM::R2, ARM::R3
1700     };
1701
1702     unsigned NumGPRs = CCInfo.getFirstUnallocated
1703       (GPRArgRegs, sizeof(GPRArgRegs) / sizeof(GPRArgRegs[0]));
1704
1705     unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
1706     unsigned VARegSize = (4 - NumGPRs) * 4;
1707     unsigned VARegSaveSize = (VARegSize + Align - 1) & ~(Align - 1);
1708     unsigned ArgOffset = CCInfo.getNextStackOffset();
1709     if (VARegSaveSize) {
1710       // If this function is vararg, store any remaining integer argument regs
1711       // to their spots on the stack so that they may be loaded by deferencing
1712       // the result of va_next.
1713       AFI->setVarArgsRegSaveSize(VARegSaveSize);
1714       VarArgsFrameIndex = MFI->CreateFixedObject(VARegSaveSize, ArgOffset +
1715                                                  VARegSaveSize - VARegSize,
1716                                                  true, false);
1717       SDValue FIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
1718
1719       SmallVector<SDValue, 4> MemOps;
1720       for (; NumGPRs < 4; ++NumGPRs) {
1721         TargetRegisterClass *RC;
1722         if (AFI->isThumb1OnlyFunction())
1723           RC = ARM::tGPRRegisterClass;
1724         else
1725           RC = ARM::GPRRegisterClass;
1726
1727         unsigned VReg = MF.addLiveIn(GPRArgRegs[NumGPRs], RC);
1728         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
1729         SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
1730                         PseudoSourceValue::getFixedStack(VarArgsFrameIndex), 0);
1731         MemOps.push_back(Store);
1732         FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
1733                           DAG.getConstant(4, getPointerTy()));
1734       }
1735       if (!MemOps.empty())
1736         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1737                             &MemOps[0], MemOps.size());
1738     } else
1739       // This will point to the next argument passed via stack.
1740       VarArgsFrameIndex = MFI->CreateFixedObject(4, ArgOffset, true, false);
1741   }
1742
1743   return Chain;
1744 }
1745
1746 /// isFloatingPointZero - Return true if this is +0.0.
1747 static bool isFloatingPointZero(SDValue Op) {
1748   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
1749     return CFP->getValueAPF().isPosZero();
1750   else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
1751     // Maybe this has already been legalized into the constant pool?
1752     if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
1753       SDValue WrapperOp = Op.getOperand(1).getOperand(0);
1754       if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
1755         if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
1756           return CFP->getValueAPF().isPosZero();
1757     }
1758   }
1759   return false;
1760 }
1761
1762 /// Returns appropriate ARM CMP (cmp) and corresponding condition code for
1763 /// the given operands.
1764 SDValue
1765 ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
1766                              SDValue &ARMCC, SelectionDAG &DAG, DebugLoc dl) {
1767   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
1768     unsigned C = RHSC->getZExtValue();
1769     if (!isLegalICmpImmediate(C)) {
1770       // Constant does not fit, try adjusting it by one?
1771       switch (CC) {
1772       default: break;
1773       case ISD::SETLT:
1774       case ISD::SETGE:
1775         if (isLegalICmpImmediate(C-1)) {
1776           CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
1777           RHS = DAG.getConstant(C-1, MVT::i32);
1778         }
1779         break;
1780       case ISD::SETULT:
1781       case ISD::SETUGE:
1782         if (C > 0 && isLegalICmpImmediate(C-1)) {
1783           CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
1784           RHS = DAG.getConstant(C-1, MVT::i32);
1785         }
1786         break;
1787       case ISD::SETLE:
1788       case ISD::SETGT:
1789         if (isLegalICmpImmediate(C+1)) {
1790           CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
1791           RHS = DAG.getConstant(C+1, MVT::i32);
1792         }
1793         break;
1794       case ISD::SETULE:
1795       case ISD::SETUGT:
1796         if (C < 0xffffffff && isLegalICmpImmediate(C+1)) {
1797           CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
1798           RHS = DAG.getConstant(C+1, MVT::i32);
1799         }
1800         break;
1801       }
1802     }
1803   }
1804
1805   ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
1806   ARMISD::NodeType CompareType;
1807   switch (CondCode) {
1808   default:
1809     CompareType = ARMISD::CMP;
1810     break;
1811   case ARMCC::EQ:
1812   case ARMCC::NE:
1813     // Uses only Z Flag
1814     CompareType = ARMISD::CMPZ;
1815     break;
1816   }
1817   ARMCC = DAG.getConstant(CondCode, MVT::i32);
1818   return DAG.getNode(CompareType, dl, MVT::Flag, LHS, RHS);
1819 }
1820
1821 /// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
1822 static SDValue getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG,
1823                          DebugLoc dl) {
1824   SDValue Cmp;
1825   if (!isFloatingPointZero(RHS))
1826     Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Flag, LHS, RHS);
1827   else
1828     Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Flag, LHS);
1829   return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Flag, Cmp);
1830 }
1831
1832 SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) {
1833   EVT VT = Op.getValueType();
1834   SDValue LHS = Op.getOperand(0);
1835   SDValue RHS = Op.getOperand(1);
1836   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
1837   SDValue TrueVal = Op.getOperand(2);
1838   SDValue FalseVal = Op.getOperand(3);
1839   DebugLoc dl = Op.getDebugLoc();
1840
1841   if (LHS.getValueType() == MVT::i32) {
1842     SDValue ARMCC;
1843     SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
1844     SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMCC, DAG, dl);
1845     return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMCC, CCR,Cmp);
1846   }
1847
1848   ARMCC::CondCodes CondCode, CondCode2;
1849   FPCCToARMCC(CC, CondCode, CondCode2);
1850
1851   SDValue ARMCC = DAG.getConstant(CondCode, MVT::i32);
1852   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
1853   SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
1854   SDValue Result = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal,
1855                                  ARMCC, CCR, Cmp);
1856   if (CondCode2 != ARMCC::AL) {
1857     SDValue ARMCC2 = DAG.getConstant(CondCode2, MVT::i32);
1858     // FIXME: Needs another CMP because flag can have but one use.
1859     SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl);
1860     Result = DAG.getNode(ARMISD::CMOV, dl, VT,
1861                          Result, TrueVal, ARMCC2, CCR, Cmp2);
1862   }
1863   return Result;
1864 }
1865
1866 SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) {
1867   SDValue  Chain = Op.getOperand(0);
1868   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
1869   SDValue    LHS = Op.getOperand(2);
1870   SDValue    RHS = Op.getOperand(3);
1871   SDValue   Dest = Op.getOperand(4);
1872   DebugLoc dl = Op.getDebugLoc();
1873
1874   if (LHS.getValueType() == MVT::i32) {
1875     SDValue ARMCC;
1876     SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
1877     SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMCC, DAG, dl);
1878     return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
1879                        Chain, Dest, ARMCC, CCR,Cmp);
1880   }
1881
1882   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
1883   ARMCC::CondCodes CondCode, CondCode2;
1884   FPCCToARMCC(CC, CondCode, CondCode2);
1885
1886   SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
1887   SDValue ARMCC = DAG.getConstant(CondCode, MVT::i32);
1888   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
1889   SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Flag);
1890   SDValue Ops[] = { Chain, Dest, ARMCC, CCR, Cmp };
1891   SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops, 5);
1892   if (CondCode2 != ARMCC::AL) {
1893     ARMCC = DAG.getConstant(CondCode2, MVT::i32);
1894     SDValue Ops[] = { Res, Dest, ARMCC, CCR, Res.getValue(1) };
1895     Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops, 5);
1896   }
1897   return Res;
1898 }
1899
1900 SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) {
1901   SDValue Chain = Op.getOperand(0);
1902   SDValue Table = Op.getOperand(1);
1903   SDValue Index = Op.getOperand(2);
1904   DebugLoc dl = Op.getDebugLoc();
1905
1906   EVT PTy = getPointerTy();
1907   JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
1908   ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>();
1909   SDValue UId = DAG.getConstant(AFI->createJumpTableUId(), PTy);
1910   SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
1911   Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI, UId);
1912   Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, PTy));
1913   SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
1914   if (Subtarget->isThumb2()) {
1915     // Thumb2 uses a two-level jump. That is, it jumps into the jump table
1916     // which does another jump to the destination. This also makes it easier
1917     // to translate it to TBB / TBH later.
1918     // FIXME: This might not work if the function is extremely large.
1919     return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain,
1920                        Addr, Op.getOperand(2), JTI, UId);
1921   }
1922   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
1923     Addr = DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr,
1924                        PseudoSourceValue::getJumpTable(), 0);
1925     Chain = Addr.getValue(1);
1926     Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table);
1927     return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
1928   } else {
1929     Addr = DAG.getLoad(PTy, dl, Chain, Addr,
1930                        PseudoSourceValue::getJumpTable(), 0);
1931     Chain = Addr.getValue(1);
1932     return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
1933   }
1934 }
1935
1936 static SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
1937   DebugLoc dl = Op.getDebugLoc();
1938   unsigned Opc =
1939     Op.getOpcode() == ISD::FP_TO_SINT ? ARMISD::FTOSI : ARMISD::FTOUI;
1940   Op = DAG.getNode(Opc, dl, MVT::f32, Op.getOperand(0));
1941   return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
1942 }
1943
1944 static SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
1945   EVT VT = Op.getValueType();
1946   DebugLoc dl = Op.getDebugLoc();
1947   unsigned Opc =
1948     Op.getOpcode() == ISD::SINT_TO_FP ? ARMISD::SITOF : ARMISD::UITOF;
1949
1950   Op = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Op.getOperand(0));
1951   return DAG.getNode(Opc, dl, VT, Op);
1952 }
1953
1954 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
1955   // Implement fcopysign with a fabs and a conditional fneg.
1956   SDValue Tmp0 = Op.getOperand(0);
1957   SDValue Tmp1 = Op.getOperand(1);
1958   DebugLoc dl = Op.getDebugLoc();
1959   EVT VT = Op.getValueType();
1960   EVT SrcVT = Tmp1.getValueType();
1961   SDValue AbsVal = DAG.getNode(ISD::FABS, dl, VT, Tmp0);
1962   SDValue Cmp = getVFPCmp(Tmp1, DAG.getConstantFP(0.0, SrcVT), DAG, dl);
1963   SDValue ARMCC = DAG.getConstant(ARMCC::LT, MVT::i32);
1964   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
1965   return DAG.getNode(ARMISD::CNEG, dl, VT, AbsVal, AbsVal, ARMCC, CCR, Cmp);
1966 }
1967
1968 SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
1969   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
1970   MFI->setFrameAddressIsTaken(true);
1971   EVT VT = Op.getValueType();
1972   DebugLoc dl = Op.getDebugLoc();  // FIXME probably not meaningful
1973   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1974   unsigned FrameReg = (Subtarget->isThumb() || Subtarget->isTargetDarwin())
1975     ? ARM::R7 : ARM::R11;
1976   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
1977   while (Depth--)
1978     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0);
1979   return FrameAddr;
1980 }
1981
1982 SDValue
1983 ARMTargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
1984                                            SDValue Chain,
1985                                            SDValue Dst, SDValue Src,
1986                                            SDValue Size, unsigned Align,
1987                                            bool AlwaysInline,
1988                                          const Value *DstSV, uint64_t DstSVOff,
1989                                          const Value *SrcSV, uint64_t SrcSVOff){
1990   // Do repeated 4-byte loads and stores. To be improved.
1991   // This requires 4-byte alignment.
1992   if ((Align & 3) != 0)
1993     return SDValue();
1994   // This requires the copy size to be a constant, preferrably
1995   // within a subtarget-specific limit.
1996   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
1997   if (!ConstantSize)
1998     return SDValue();
1999   uint64_t SizeVal = ConstantSize->getZExtValue();
2000   if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
2001     return SDValue();
2002
2003   unsigned BytesLeft = SizeVal & 3;
2004   unsigned NumMemOps = SizeVal >> 2;
2005   unsigned EmittedNumMemOps = 0;
2006   EVT VT = MVT::i32;
2007   unsigned VTSize = 4;
2008   unsigned i = 0;
2009   const unsigned MAX_LOADS_IN_LDM = 6;
2010   SDValue TFOps[MAX_LOADS_IN_LDM];
2011   SDValue Loads[MAX_LOADS_IN_LDM];
2012   uint64_t SrcOff = 0, DstOff = 0;
2013
2014   // Emit up to MAX_LOADS_IN_LDM loads, then a TokenFactor barrier, then the
2015   // same number of stores.  The loads and stores will get combined into
2016   // ldm/stm later on.
2017   while (EmittedNumMemOps < NumMemOps) {
2018     for (i = 0;
2019          i < MAX_LOADS_IN_LDM && EmittedNumMemOps + i < NumMemOps; ++i) {
2020       Loads[i] = DAG.getLoad(VT, dl, Chain,
2021                              DAG.getNode(ISD::ADD, dl, MVT::i32, Src,
2022                                          DAG.getConstant(SrcOff, MVT::i32)),
2023                              SrcSV, SrcSVOff + SrcOff);
2024       TFOps[i] = Loads[i].getValue(1);
2025       SrcOff += VTSize;
2026     }
2027     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
2028
2029     for (i = 0;
2030          i < MAX_LOADS_IN_LDM && EmittedNumMemOps + i < NumMemOps; ++i) {
2031       TFOps[i] = DAG.getStore(Chain, dl, Loads[i],
2032                            DAG.getNode(ISD::ADD, dl, MVT::i32, Dst,
2033                                        DAG.getConstant(DstOff, MVT::i32)),
2034                            DstSV, DstSVOff + DstOff);
2035       DstOff += VTSize;
2036     }
2037     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
2038
2039     EmittedNumMemOps += i;
2040   }
2041
2042   if (BytesLeft == 0)
2043     return Chain;
2044
2045   // Issue loads / stores for the trailing (1 - 3) bytes.
2046   unsigned BytesLeftSave = BytesLeft;
2047   i = 0;
2048   while (BytesLeft) {
2049     if (BytesLeft >= 2) {
2050       VT = MVT::i16;
2051       VTSize = 2;
2052     } else {
2053       VT = MVT::i8;
2054       VTSize = 1;
2055     }
2056
2057     Loads[i] = DAG.getLoad(VT, dl, Chain,
2058                            DAG.getNode(ISD::ADD, dl, MVT::i32, Src,
2059                                        DAG.getConstant(SrcOff, MVT::i32)),
2060                            SrcSV, SrcSVOff + SrcOff);
2061     TFOps[i] = Loads[i].getValue(1);
2062     ++i;
2063     SrcOff += VTSize;
2064     BytesLeft -= VTSize;
2065   }
2066   Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
2067
2068   i = 0;
2069   BytesLeft = BytesLeftSave;
2070   while (BytesLeft) {
2071     if (BytesLeft >= 2) {
2072       VT = MVT::i16;
2073       VTSize = 2;
2074     } else {
2075       VT = MVT::i8;
2076       VTSize = 1;
2077     }
2078
2079     TFOps[i] = DAG.getStore(Chain, dl, Loads[i],
2080                             DAG.getNode(ISD::ADD, dl, MVT::i32, Dst,
2081                                         DAG.getConstant(DstOff, MVT::i32)),
2082                             DstSV, DstSVOff + DstOff);
2083     ++i;
2084     DstOff += VTSize;
2085     BytesLeft -= VTSize;
2086   }
2087   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
2088 }
2089
2090 static SDValue ExpandBIT_CONVERT(SDNode *N, SelectionDAG &DAG) {
2091   SDValue Op = N->getOperand(0);
2092   DebugLoc dl = N->getDebugLoc();
2093   if (N->getValueType(0) == MVT::f64) {
2094     // Turn i64->f64 into VMOVDRR.
2095     SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
2096                              DAG.getConstant(0, MVT::i32));
2097     SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
2098                              DAG.getConstant(1, MVT::i32));
2099     return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
2100   }
2101
2102   // Turn f64->i64 into VMOVRRD.
2103   SDValue Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
2104                             DAG.getVTList(MVT::i32, MVT::i32), &Op, 1);
2105
2106   // Merge the pieces into a single i64 value.
2107   return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1));
2108 }
2109
2110 /// getZeroVector - Returns a vector of specified type with all zero elements.
2111 ///
2112 static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
2113   assert(VT.isVector() && "Expected a vector type");
2114
2115   // Zero vectors are used to represent vector negation and in those cases
2116   // will be implemented with the NEON VNEG instruction.  However, VNEG does
2117   // not support i64 elements, so sometimes the zero vectors will need to be
2118   // explicitly constructed.  For those cases, and potentially other uses in
2119   // the future, always build zero vectors as <16 x i8> or <8 x i8> bitcasted
2120   // to their dest type.  This ensures they get CSE'd.
2121   SDValue Vec;
2122   SDValue Cst = DAG.getTargetConstant(0, MVT::i8);
2123   SmallVector<SDValue, 8> Ops;
2124   MVT TVT;
2125
2126   if (VT.getSizeInBits() == 64) {
2127     Ops.assign(8, Cst); TVT = MVT::v8i8;
2128   } else {
2129     Ops.assign(16, Cst); TVT = MVT::v16i8;
2130   }
2131   Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, TVT, &Ops[0], Ops.size());
2132
2133   return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
2134 }
2135
2136 /// getOnesVector - Returns a vector of specified type with all bits set.
2137 ///
2138 static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
2139   assert(VT.isVector() && "Expected a vector type");
2140
2141   // Always build ones vectors as <16 x i8> or <8 x i8> bitcasted to their
2142   // dest type. This ensures they get CSE'd.
2143   SDValue Vec;
2144   SDValue Cst = DAG.getTargetConstant(0xFF, MVT::i8);
2145   SmallVector<SDValue, 8> Ops;
2146   MVT TVT;
2147
2148   if (VT.getSizeInBits() == 64) {
2149     Ops.assign(8, Cst); TVT = MVT::v8i8;
2150   } else {
2151     Ops.assign(16, Cst); TVT = MVT::v16i8;
2152   }
2153   Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, TVT, &Ops[0], Ops.size());
2154
2155   return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
2156 }
2157
2158 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
2159 /// i32 values and take a 2 x i32 value to shift plus a shift amount.
2160 SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op, SelectionDAG &DAG) {
2161   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
2162   EVT VT = Op.getValueType();
2163   unsigned VTBits = VT.getSizeInBits();
2164   DebugLoc dl = Op.getDebugLoc();
2165   SDValue ShOpLo = Op.getOperand(0);
2166   SDValue ShOpHi = Op.getOperand(1);
2167   SDValue ShAmt  = Op.getOperand(2);
2168   SDValue ARMCC;
2169   unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
2170
2171   assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
2172
2173   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
2174                                  DAG.getConstant(VTBits, MVT::i32), ShAmt);
2175   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
2176   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
2177                                    DAG.getConstant(VTBits, MVT::i32));
2178   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
2179   SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
2180   SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
2181
2182   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
2183   SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
2184                           ARMCC, DAG, dl);
2185   SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
2186   SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMCC,
2187                            CCR, Cmp);
2188
2189   SDValue Ops[2] = { Lo, Hi };
2190   return DAG.getMergeValues(Ops, 2, dl);
2191 }
2192
2193 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
2194 /// i32 values and take a 2 x i32 value to shift plus a shift amount.
2195 SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op, SelectionDAG &DAG) {
2196   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
2197   EVT VT = Op.getValueType();
2198   unsigned VTBits = VT.getSizeInBits();
2199   DebugLoc dl = Op.getDebugLoc();
2200   SDValue ShOpLo = Op.getOperand(0);
2201   SDValue ShOpHi = Op.getOperand(1);
2202   SDValue ShAmt  = Op.getOperand(2);
2203   SDValue ARMCC;
2204
2205   assert(Op.getOpcode() == ISD::SHL_PARTS);
2206   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
2207                                  DAG.getConstant(VTBits, MVT::i32), ShAmt);
2208   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
2209   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
2210                                    DAG.getConstant(VTBits, MVT::i32));
2211   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
2212   SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
2213
2214   SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
2215   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
2216   SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
2217                           ARMCC, DAG, dl);
2218   SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
2219   SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMCC,
2220                            CCR, Cmp);
2221
2222   SDValue Ops[2] = { Lo, Hi };
2223   return DAG.getMergeValues(Ops, 2, dl);
2224 }
2225
2226 static SDValue LowerShift(SDNode *N, SelectionDAG &DAG,
2227                           const ARMSubtarget *ST) {
2228   EVT VT = N->getValueType(0);
2229   DebugLoc dl = N->getDebugLoc();
2230
2231   // Lower vector shifts on NEON to use VSHL.
2232   if (VT.isVector()) {
2233     assert(ST->hasNEON() && "unexpected vector shift");
2234
2235     // Left shifts translate directly to the vshiftu intrinsic.
2236     if (N->getOpcode() == ISD::SHL)
2237       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
2238                          DAG.getConstant(Intrinsic::arm_neon_vshiftu, MVT::i32),
2239                          N->getOperand(0), N->getOperand(1));
2240
2241     assert((N->getOpcode() == ISD::SRA ||
2242             N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode");
2243
2244     // NEON uses the same intrinsics for both left and right shifts.  For
2245     // right shifts, the shift amounts are negative, so negate the vector of
2246     // shift amounts.
2247     EVT ShiftVT = N->getOperand(1).getValueType();
2248     SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT,
2249                                        getZeroVector(ShiftVT, DAG, dl),
2250                                        N->getOperand(1));
2251     Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ?
2252                                Intrinsic::arm_neon_vshifts :
2253                                Intrinsic::arm_neon_vshiftu);
2254     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
2255                        DAG.getConstant(vshiftInt, MVT::i32),
2256                        N->getOperand(0), NegatedCount);
2257   }
2258
2259   // We can get here for a node like i32 = ISD::SHL i32, i64
2260   if (VT != MVT::i64)
2261     return SDValue();
2262
2263   assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) &&
2264          "Unknown shift to lower!");
2265
2266   // We only lower SRA, SRL of 1 here, all others use generic lowering.
2267   if (!isa<ConstantSDNode>(N->getOperand(1)) ||
2268       cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 1)
2269     return SDValue();
2270
2271   // If we are in thumb mode, we don't have RRX.
2272   if (ST->isThumb1Only()) return SDValue();
2273
2274   // Okay, we have a 64-bit SRA or SRL of 1.  Lower this to an RRX expr.
2275   SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
2276                              DAG.getConstant(0, MVT::i32));
2277   SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
2278                              DAG.getConstant(1, MVT::i32));
2279
2280   // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
2281   // captures the result into a carry flag.
2282   unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
2283   Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Flag), &Hi, 1);
2284
2285   // The low part is an ARMISD::RRX operand, which shifts the carry in.
2286   Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1));
2287
2288   // Merge the pieces into a single i64 value.
2289  return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
2290 }
2291
2292 static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
2293   SDValue TmpOp0, TmpOp1;
2294   bool Invert = false;
2295   bool Swap = false;
2296   unsigned Opc = 0;
2297
2298   SDValue Op0 = Op.getOperand(0);
2299   SDValue Op1 = Op.getOperand(1);
2300   SDValue CC = Op.getOperand(2);
2301   EVT VT = Op.getValueType();
2302   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
2303   DebugLoc dl = Op.getDebugLoc();
2304
2305   if (Op.getOperand(1).getValueType().isFloatingPoint()) {
2306     switch (SetCCOpcode) {
2307     default: llvm_unreachable("Illegal FP comparison"); break;
2308     case ISD::SETUNE:
2309     case ISD::SETNE:  Invert = true; // Fallthrough
2310     case ISD::SETOEQ:
2311     case ISD::SETEQ:  Opc = ARMISD::VCEQ; break;
2312     case ISD::SETOLT:
2313     case ISD::SETLT: Swap = true; // Fallthrough
2314     case ISD::SETOGT:
2315     case ISD::SETGT:  Opc = ARMISD::VCGT; break;
2316     case ISD::SETOLE:
2317     case ISD::SETLE:  Swap = true; // Fallthrough
2318     case ISD::SETOGE:
2319     case ISD::SETGE: Opc = ARMISD::VCGE; break;
2320     case ISD::SETUGE: Swap = true; // Fallthrough
2321     case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
2322     case ISD::SETUGT: Swap = true; // Fallthrough
2323     case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
2324     case ISD::SETUEQ: Invert = true; // Fallthrough
2325     case ISD::SETONE:
2326       // Expand this to (OLT | OGT).
2327       TmpOp0 = Op0;
2328       TmpOp1 = Op1;
2329       Opc = ISD::OR;
2330       Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
2331       Op1 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp0, TmpOp1);
2332       break;
2333     case ISD::SETUO: Invert = true; // Fallthrough
2334     case ISD::SETO:
2335       // Expand this to (OLT | OGE).
2336       TmpOp0 = Op0;
2337       TmpOp1 = Op1;
2338       Opc = ISD::OR;
2339       Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
2340       Op1 = DAG.getNode(ARMISD::VCGE, dl, VT, TmpOp0, TmpOp1);
2341       break;
2342     }
2343   } else {
2344     // Integer comparisons.
2345     switch (SetCCOpcode) {
2346     default: llvm_unreachable("Illegal integer comparison"); break;
2347     case ISD::SETNE:  Invert = true;
2348     case ISD::SETEQ:  Opc = ARMISD::VCEQ; break;
2349     case ISD::SETLT:  Swap = true;
2350     case ISD::SETGT:  Opc = ARMISD::VCGT; break;
2351     case ISD::SETLE:  Swap = true;
2352     case ISD::SETGE:  Opc = ARMISD::VCGE; break;
2353     case ISD::SETULT: Swap = true;
2354     case ISD::SETUGT: Opc = ARMISD::VCGTU; break;
2355     case ISD::SETULE: Swap = true;
2356     case ISD::SETUGE: Opc = ARMISD::VCGEU; break;
2357     }
2358
2359     // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero).
2360     if (Opc == ARMISD::VCEQ) {
2361
2362       SDValue AndOp;
2363       if (ISD::isBuildVectorAllZeros(Op1.getNode()))
2364         AndOp = Op0;
2365       else if (ISD::isBuildVectorAllZeros(Op0.getNode()))
2366         AndOp = Op1;
2367
2368       // Ignore bitconvert.
2369       if (AndOp.getNode() && AndOp.getOpcode() == ISD::BIT_CONVERT)
2370         AndOp = AndOp.getOperand(0);
2371
2372       if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) {
2373         Opc = ARMISD::VTST;
2374         Op0 = DAG.getNode(ISD::BIT_CONVERT, dl, VT, AndOp.getOperand(0));
2375         Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, VT, AndOp.getOperand(1));
2376         Invert = !Invert;
2377       }
2378     }
2379   }
2380
2381   if (Swap)
2382     std::swap(Op0, Op1);
2383
2384   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
2385
2386   if (Invert)
2387     Result = DAG.getNOT(dl, Result, VT);
2388
2389   return Result;
2390 }
2391
2392 /// isVMOVSplat - Check if the specified splat value corresponds to an immediate
2393 /// VMOV instruction, and if so, return the constant being splatted.
2394 static SDValue isVMOVSplat(uint64_t SplatBits, uint64_t SplatUndef,
2395                            unsigned SplatBitSize, SelectionDAG &DAG) {
2396   switch (SplatBitSize) {
2397   case 8:
2398     // Any 1-byte value is OK.
2399     assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
2400     return DAG.getTargetConstant(SplatBits, MVT::i8);
2401
2402   case 16:
2403     // NEON's 16-bit VMOV supports splat values where only one byte is nonzero.
2404     if ((SplatBits & ~0xff) == 0 ||
2405         (SplatBits & ~0xff00) == 0)
2406       return DAG.getTargetConstant(SplatBits, MVT::i16);
2407     break;
2408
2409   case 32:
2410     // NEON's 32-bit VMOV supports splat values where:
2411     // * only one byte is nonzero, or
2412     // * the least significant byte is 0xff and the second byte is nonzero, or
2413     // * the least significant 2 bytes are 0xff and the third is nonzero.
2414     if ((SplatBits & ~0xff) == 0 ||
2415         (SplatBits & ~0xff00) == 0 ||
2416         (SplatBits & ~0xff0000) == 0 ||
2417         (SplatBits & ~0xff000000) == 0)
2418       return DAG.getTargetConstant(SplatBits, MVT::i32);
2419
2420     if ((SplatBits & ~0xffff) == 0 &&
2421         ((SplatBits | SplatUndef) & 0xff) == 0xff)
2422       return DAG.getTargetConstant(SplatBits | 0xff, MVT::i32);
2423
2424     if ((SplatBits & ~0xffffff) == 0 &&
2425         ((SplatBits | SplatUndef) & 0xffff) == 0xffff)
2426       return DAG.getTargetConstant(SplatBits | 0xffff, MVT::i32);
2427
2428     // Note: there are a few 32-bit splat values (specifically: 00ffff00,
2429     // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not
2430     // VMOV.I32.  A (very) minor optimization would be to replicate the value
2431     // and fall through here to test for a valid 64-bit splat.  But, then the
2432     // caller would also need to check and handle the change in size.
2433     break;
2434
2435   case 64: {
2436     // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff.
2437     uint64_t BitMask = 0xff;
2438     uint64_t Val = 0;
2439     for (int ByteNum = 0; ByteNum < 8; ++ByteNum) {
2440       if (((SplatBits | SplatUndef) & BitMask) == BitMask)
2441         Val |= BitMask;
2442       else if ((SplatBits & BitMask) != 0)
2443         return SDValue();
2444       BitMask <<= 8;
2445     }
2446     return DAG.getTargetConstant(Val, MVT::i64);
2447   }
2448
2449   default:
2450     llvm_unreachable("unexpected size for isVMOVSplat");
2451     break;
2452   }
2453
2454   return SDValue();
2455 }
2456
2457 /// getVMOVImm - If this is a build_vector of constants which can be
2458 /// formed by using a VMOV instruction of the specified element size,
2459 /// return the constant being splatted.  The ByteSize field indicates the
2460 /// number of bytes of each element [1248].
2461 SDValue ARM::getVMOVImm(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
2462   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N);
2463   APInt SplatBits, SplatUndef;
2464   unsigned SplatBitSize;
2465   bool HasAnyUndefs;
2466   if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
2467                                       HasAnyUndefs, ByteSize * 8))
2468     return SDValue();
2469
2470   if (SplatBitSize > ByteSize * 8)
2471     return SDValue();
2472
2473   return isVMOVSplat(SplatBits.getZExtValue(), SplatUndef.getZExtValue(),
2474                      SplatBitSize, DAG);
2475 }
2476
2477 static bool isVEXTMask(const SmallVectorImpl<int> &M, EVT VT,
2478                        bool &ReverseVEXT, unsigned &Imm) {
2479   unsigned NumElts = VT.getVectorNumElements();
2480   ReverseVEXT = false;
2481   Imm = M[0];
2482
2483   // If this is a VEXT shuffle, the immediate value is the index of the first
2484   // element.  The other shuffle indices must be the successive elements after
2485   // the first one.
2486   unsigned ExpectedElt = Imm;
2487   for (unsigned i = 1; i < NumElts; ++i) {
2488     // Increment the expected index.  If it wraps around, it may still be
2489     // a VEXT but the source vectors must be swapped.
2490     ExpectedElt += 1;
2491     if (ExpectedElt == NumElts * 2) {
2492       ExpectedElt = 0;
2493       ReverseVEXT = true;
2494     }
2495
2496     if (ExpectedElt != static_cast<unsigned>(M[i]))
2497       return false;
2498   }
2499
2500   // Adjust the index value if the source operands will be swapped.
2501   if (ReverseVEXT)
2502     Imm -= NumElts;
2503
2504   return true;
2505 }
2506
2507 /// isVREVMask - Check if a vector shuffle corresponds to a VREV
2508 /// instruction with the specified blocksize.  (The order of the elements
2509 /// within each block of the vector is reversed.)
2510 static bool isVREVMask(const SmallVectorImpl<int> &M, EVT VT,
2511                        unsigned BlockSize) {
2512   assert((BlockSize==16 || BlockSize==32 || BlockSize==64) &&
2513          "Only possible block sizes for VREV are: 16, 32, 64");
2514
2515   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
2516   if (EltSz == 64)
2517     return false;
2518
2519   unsigned NumElts = VT.getVectorNumElements();
2520   unsigned BlockElts = M[0] + 1;
2521
2522   if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
2523     return false;
2524
2525   for (unsigned i = 0; i < NumElts; ++i) {
2526     if ((unsigned) M[i] !=
2527         (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts))
2528       return false;
2529   }
2530
2531   return true;
2532 }
2533
2534 static bool isVTRNMask(const SmallVectorImpl<int> &M, EVT VT,
2535                        unsigned &WhichResult) {
2536   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
2537   if (EltSz == 64)
2538     return false;
2539
2540   unsigned NumElts = VT.getVectorNumElements();
2541   WhichResult = (M[0] == 0 ? 0 : 1);
2542   for (unsigned i = 0; i < NumElts; i += 2) {
2543     if ((unsigned) M[i] != i + WhichResult ||
2544         (unsigned) M[i+1] != i + NumElts + WhichResult)
2545       return false;
2546   }
2547   return true;
2548 }
2549
2550 /// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of
2551 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
2552 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
2553 static bool isVTRN_v_undef_Mask(const SmallVectorImpl<int> &M, EVT VT,
2554                                 unsigned &WhichResult) {
2555   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
2556   if (EltSz == 64)
2557     return false;
2558
2559   unsigned NumElts = VT.getVectorNumElements();
2560   WhichResult = (M[0] == 0 ? 0 : 1);
2561   for (unsigned i = 0; i < NumElts; i += 2) {
2562     if ((unsigned) M[i] != i + WhichResult ||
2563         (unsigned) M[i+1] != i + WhichResult)
2564       return false;
2565   }
2566   return true;
2567 }
2568
2569 static bool isVUZPMask(const SmallVectorImpl<int> &M, EVT VT,
2570                        unsigned &WhichResult) {
2571   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
2572   if (EltSz == 64)
2573     return false;
2574
2575   unsigned NumElts = VT.getVectorNumElements();
2576   WhichResult = (M[0] == 0 ? 0 : 1);
2577   for (unsigned i = 0; i != NumElts; ++i) {
2578     if ((unsigned) M[i] != 2 * i + WhichResult)
2579       return false;
2580   }
2581
2582   // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
2583   if (VT.is64BitVector() && EltSz == 32)
2584     return false;
2585
2586   return true;
2587 }
2588
2589 /// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of
2590 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
2591 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
2592 static bool isVUZP_v_undef_Mask(const SmallVectorImpl<int> &M, EVT VT,
2593                                 unsigned &WhichResult) {
2594   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
2595   if (EltSz == 64)
2596     return false;
2597
2598   unsigned Half = VT.getVectorNumElements() / 2;
2599   WhichResult = (M[0] == 0 ? 0 : 1);
2600   for (unsigned j = 0; j != 2; ++j) {
2601     unsigned Idx = WhichResult;
2602     for (unsigned i = 0; i != Half; ++i) {
2603       if ((unsigned) M[i + j * Half] != Idx)
2604         return false;
2605       Idx += 2;
2606     }
2607   }
2608
2609   // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
2610   if (VT.is64BitVector() && EltSz == 32)
2611     return false;
2612
2613   return true;
2614 }
2615
2616 static bool isVZIPMask(const SmallVectorImpl<int> &M, EVT VT,
2617                        unsigned &WhichResult) {
2618   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
2619   if (EltSz == 64)
2620     return false;
2621
2622   unsigned NumElts = VT.getVectorNumElements();
2623   WhichResult = (M[0] == 0 ? 0 : 1);
2624   unsigned Idx = WhichResult * NumElts / 2;
2625   for (unsigned i = 0; i != NumElts; i += 2) {
2626     if ((unsigned) M[i] != Idx ||
2627         (unsigned) M[i+1] != Idx + NumElts)
2628       return false;
2629     Idx += 1;
2630   }
2631
2632   // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
2633   if (VT.is64BitVector() && EltSz == 32)
2634     return false;
2635
2636   return true;
2637 }
2638
2639 /// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of
2640 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
2641 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
2642 static bool isVZIP_v_undef_Mask(const SmallVectorImpl<int> &M, EVT VT,
2643                                 unsigned &WhichResult) {
2644   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
2645   if (EltSz == 64)
2646     return false;
2647
2648   unsigned NumElts = VT.getVectorNumElements();
2649   WhichResult = (M[0] == 0 ? 0 : 1);
2650   unsigned Idx = WhichResult * NumElts / 2;
2651   for (unsigned i = 0; i != NumElts; i += 2) {
2652     if ((unsigned) M[i] != Idx ||
2653         (unsigned) M[i+1] != Idx)
2654       return false;
2655     Idx += 1;
2656   }
2657
2658   // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
2659   if (VT.is64BitVector() && EltSz == 32)
2660     return false;
2661
2662   return true;
2663 }
2664
2665
2666 static SDValue BuildSplat(SDValue Val, EVT VT, SelectionDAG &DAG, DebugLoc dl) {
2667   // Canonicalize all-zeros and all-ones vectors.
2668   ConstantSDNode *ConstVal = cast<ConstantSDNode>(Val.getNode());
2669   if (ConstVal->isNullValue())
2670     return getZeroVector(VT, DAG, dl);
2671   if (ConstVal->isAllOnesValue())
2672     return getOnesVector(VT, DAG, dl);
2673
2674   EVT CanonicalVT;
2675   if (VT.is64BitVector()) {
2676     switch (Val.getValueType().getSizeInBits()) {
2677     case 8:  CanonicalVT = MVT::v8i8; break;
2678     case 16: CanonicalVT = MVT::v4i16; break;
2679     case 32: CanonicalVT = MVT::v2i32; break;
2680     case 64: CanonicalVT = MVT::v1i64; break;
2681     default: llvm_unreachable("unexpected splat element type"); break;
2682     }
2683   } else {
2684     assert(VT.is128BitVector() && "unknown splat vector size");
2685     switch (Val.getValueType().getSizeInBits()) {
2686     case 8:  CanonicalVT = MVT::v16i8; break;
2687     case 16: CanonicalVT = MVT::v8i16; break;
2688     case 32: CanonicalVT = MVT::v4i32; break;
2689     case 64: CanonicalVT = MVT::v2i64; break;
2690     default: llvm_unreachable("unexpected splat element type"); break;
2691     }
2692   }
2693
2694   // Build a canonical splat for this value.
2695   SmallVector<SDValue, 8> Ops;
2696   Ops.assign(CanonicalVT.getVectorNumElements(), Val);
2697   SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT, &Ops[0],
2698                             Ops.size());
2699   return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Res);
2700 }
2701
2702 // If this is a case we can't handle, return null and let the default
2703 // expansion code take care of it.
2704 static SDValue LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
2705   BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
2706   DebugLoc dl = Op.getDebugLoc();
2707   EVT VT = Op.getValueType();
2708
2709   APInt SplatBits, SplatUndef;
2710   unsigned SplatBitSize;
2711   bool HasAnyUndefs;
2712   if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
2713     if (SplatBitSize <= 64) {
2714       SDValue Val = isVMOVSplat(SplatBits.getZExtValue(),
2715                                 SplatUndef.getZExtValue(), SplatBitSize, DAG);
2716       if (Val.getNode())
2717         return BuildSplat(Val, VT, DAG, dl);
2718     }
2719   }
2720
2721   // If there are only 2 elements in a 128-bit vector, insert them into an
2722   // undef vector.  This handles the common case for 128-bit vector argument
2723   // passing, where the insertions should be translated to subreg accesses
2724   // with no real instructions.
2725   if (VT.is128BitVector() && Op.getNumOperands() == 2) {
2726     SDValue Val = DAG.getUNDEF(VT);
2727     SDValue Op0 = Op.getOperand(0);
2728     SDValue Op1 = Op.getOperand(1);
2729     if (Op0.getOpcode() != ISD::UNDEF)
2730       Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Val, Op0,
2731                         DAG.getIntPtrConstant(0));
2732     if (Op1.getOpcode() != ISD::UNDEF)
2733       Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Val, Op1,
2734                         DAG.getIntPtrConstant(1));
2735     return Val;
2736   }
2737
2738   return SDValue();
2739 }
2740
2741 /// isShuffleMaskLegal - Targets can use this to indicate that they only
2742 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
2743 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
2744 /// are assumed to be legal.
2745 bool
2746 ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
2747                                       EVT VT) const {
2748   if (VT.getVectorNumElements() == 4 &&
2749       (VT.is128BitVector() || VT.is64BitVector())) {
2750     unsigned PFIndexes[4];
2751     for (unsigned i = 0; i != 4; ++i) {
2752       if (M[i] < 0)
2753         PFIndexes[i] = 8;
2754       else
2755         PFIndexes[i] = M[i];
2756     }
2757
2758     // Compute the index in the perfect shuffle table.
2759     unsigned PFTableIndex =
2760       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
2761     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
2762     unsigned Cost = (PFEntry >> 30);
2763
2764     if (Cost <= 4)
2765       return true;
2766   }
2767
2768   bool ReverseVEXT;
2769   unsigned Imm, WhichResult;
2770
2771   return (ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
2772           isVREVMask(M, VT, 64) ||
2773           isVREVMask(M, VT, 32) ||
2774           isVREVMask(M, VT, 16) ||
2775           isVEXTMask(M, VT, ReverseVEXT, Imm) ||
2776           isVTRNMask(M, VT, WhichResult) ||
2777           isVUZPMask(M, VT, WhichResult) ||
2778           isVZIPMask(M, VT, WhichResult) ||
2779           isVTRN_v_undef_Mask(M, VT, WhichResult) ||
2780           isVUZP_v_undef_Mask(M, VT, WhichResult) ||
2781           isVZIP_v_undef_Mask(M, VT, WhichResult));
2782 }
2783
2784 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
2785 /// the specified operations to build the shuffle.
2786 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
2787                                       SDValue RHS, SelectionDAG &DAG,
2788                                       DebugLoc dl) {
2789   unsigned OpNum = (PFEntry >> 26) & 0x0F;
2790   unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
2791   unsigned RHSID = (PFEntry >>  0) & ((1 << 13)-1);
2792
2793   enum {
2794     OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
2795     OP_VREV,
2796     OP_VDUP0,
2797     OP_VDUP1,
2798     OP_VDUP2,
2799     OP_VDUP3,
2800     OP_VEXT1,
2801     OP_VEXT2,
2802     OP_VEXT3,
2803     OP_VUZPL, // VUZP, left result
2804     OP_VUZPR, // VUZP, right result
2805     OP_VZIPL, // VZIP, left result
2806     OP_VZIPR, // VZIP, right result
2807     OP_VTRNL, // VTRN, left result
2808     OP_VTRNR  // VTRN, right result
2809   };
2810
2811   if (OpNum == OP_COPY) {
2812     if (LHSID == (1*9+2)*9+3) return LHS;
2813     assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
2814     return RHS;
2815   }
2816
2817   SDValue OpLHS, OpRHS;
2818   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
2819   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
2820   EVT VT = OpLHS.getValueType();
2821
2822   switch (OpNum) {
2823   default: llvm_unreachable("Unknown shuffle opcode!");
2824   case OP_VREV:
2825     return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS);
2826   case OP_VDUP0:
2827   case OP_VDUP1:
2828   case OP_VDUP2:
2829   case OP_VDUP3:
2830     return DAG.getNode(ARMISD::VDUPLANE, dl, VT,
2831                        OpLHS, DAG.getConstant(OpNum-OP_VDUP0, MVT::i32));
2832   case OP_VEXT1:
2833   case OP_VEXT2:
2834   case OP_VEXT3:
2835     return DAG.getNode(ARMISD::VEXT, dl, VT,
2836                        OpLHS, OpRHS,
2837                        DAG.getConstant(OpNum-OP_VEXT1+1, MVT::i32));
2838   case OP_VUZPL:
2839   case OP_VUZPR:
2840     return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
2841                        OpLHS, OpRHS).getValue(OpNum-OP_VUZPL);
2842   case OP_VZIPL:
2843   case OP_VZIPR:
2844     return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
2845                        OpLHS, OpRHS).getValue(OpNum-OP_VZIPL);
2846   case OP_VTRNL:
2847   case OP_VTRNR:
2848     return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
2849                        OpLHS, OpRHS).getValue(OpNum-OP_VTRNL);
2850   }
2851 }
2852
2853 static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
2854   SDValue V1 = Op.getOperand(0);
2855   SDValue V2 = Op.getOperand(1);
2856   DebugLoc dl = Op.getDebugLoc();
2857   EVT VT = Op.getValueType();
2858   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
2859   SmallVector<int, 8> ShuffleMask;
2860
2861   // Convert shuffles that are directly supported on NEON to target-specific
2862   // DAG nodes, instead of keeping them as shuffles and matching them again
2863   // during code selection.  This is more efficient and avoids the possibility
2864   // of inconsistencies between legalization and selection.
2865   // FIXME: floating-point vectors should be canonicalized to integer vectors
2866   // of the same time so that they get CSEd properly.
2867   SVN->getMask(ShuffleMask);
2868
2869   if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) {
2870     int Lane = SVN->getSplatIndex();
2871     // If this is undef splat, generate it via "just" vdup, if possible.
2872     if (Lane == -1) Lane = 0;
2873
2874     if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) {
2875       return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
2876     }
2877     return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1,
2878                        DAG.getConstant(Lane, MVT::i32));
2879   }
2880
2881   bool ReverseVEXT;
2882   unsigned Imm;
2883   if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) {
2884     if (ReverseVEXT)
2885       std::swap(V1, V2);
2886     return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2,
2887                        DAG.getConstant(Imm, MVT::i32));
2888   }
2889
2890   if (isVREVMask(ShuffleMask, VT, 64))
2891     return DAG.getNode(ARMISD::VREV64, dl, VT, V1);
2892   if (isVREVMask(ShuffleMask, VT, 32))
2893     return DAG.getNode(ARMISD::VREV32, dl, VT, V1);
2894   if (isVREVMask(ShuffleMask, VT, 16))
2895     return DAG.getNode(ARMISD::VREV16, dl, VT, V1);
2896
2897   // Check for Neon shuffles that modify both input vectors in place.
2898   // If both results are used, i.e., if there are two shuffles with the same
2899   // source operands and with masks corresponding to both results of one of
2900   // these operations, DAG memoization will ensure that a single node is
2901   // used for both shuffles.
2902   unsigned WhichResult;
2903   if (isVTRNMask(ShuffleMask, VT, WhichResult))
2904     return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
2905                        V1, V2).getValue(WhichResult);
2906   if (isVUZPMask(ShuffleMask, VT, WhichResult))
2907     return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
2908                        V1, V2).getValue(WhichResult);
2909   if (isVZIPMask(ShuffleMask, VT, WhichResult))
2910     return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
2911                        V1, V2).getValue(WhichResult);
2912
2913   if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult))
2914     return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
2915                        V1, V1).getValue(WhichResult);
2916   if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult))
2917     return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
2918                        V1, V1).getValue(WhichResult);
2919   if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult))
2920     return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
2921                        V1, V1).getValue(WhichResult);
2922
2923   // If the shuffle is not directly supported and it has 4 elements, use
2924   // the PerfectShuffle-generated table to synthesize it from other shuffles.
2925   if (VT.getVectorNumElements() == 4 &&
2926       (VT.is128BitVector() || VT.is64BitVector())) {
2927     unsigned PFIndexes[4];
2928     for (unsigned i = 0; i != 4; ++i) {
2929       if (ShuffleMask[i] < 0)
2930         PFIndexes[i] = 8;
2931       else
2932         PFIndexes[i] = ShuffleMask[i];
2933     }
2934
2935     // Compute the index in the perfect shuffle table.
2936     unsigned PFTableIndex =
2937       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
2938
2939     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
2940     unsigned Cost = (PFEntry >> 30);
2941
2942     if (Cost <= 4)
2943       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
2944   }
2945
2946   return SDValue();
2947 }
2948
2949 static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
2950   EVT VT = Op.getValueType();
2951   DebugLoc dl = Op.getDebugLoc();
2952   SDValue Vec = Op.getOperand(0);
2953   SDValue Lane = Op.getOperand(1);
2954   assert(VT == MVT::i32 &&
2955          Vec.getValueType().getVectorElementType().getSizeInBits() < 32 &&
2956          "unexpected type for custom-lowering vector extract");
2957   return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane);
2958 }
2959
2960 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
2961   // The only time a CONCAT_VECTORS operation can have legal types is when
2962   // two 64-bit vectors are concatenated to a 128-bit vector.
2963   assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 &&
2964          "unexpected CONCAT_VECTORS");
2965   DebugLoc dl = Op.getDebugLoc();
2966   SDValue Val = DAG.getUNDEF(MVT::v2f64);
2967   SDValue Op0 = Op.getOperand(0);
2968   SDValue Op1 = Op.getOperand(1);
2969   if (Op0.getOpcode() != ISD::UNDEF)
2970     Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
2971                       DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f64, Op0),
2972                       DAG.getIntPtrConstant(0));
2973   if (Op1.getOpcode() != ISD::UNDEF)
2974     Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
2975                       DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f64, Op1),
2976                       DAG.getIntPtrConstant(1));
2977   return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Val);
2978 }
2979
2980 SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
2981   switch (Op.getOpcode()) {
2982   default: llvm_unreachable("Don't know how to custom lower this!");
2983   case ISD::ConstantPool:  return LowerConstantPool(Op, DAG);
2984   case ISD::BlockAddress:  return LowerBlockAddress(Op, DAG);
2985   case ISD::GlobalAddress:
2986     return Subtarget->isTargetDarwin() ? LowerGlobalAddressDarwin(Op, DAG) :
2987       LowerGlobalAddressELF(Op, DAG);
2988   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
2989   case ISD::SELECT_CC:     return LowerSELECT_CC(Op, DAG);
2990   case ISD::BR_CC:         return LowerBR_CC(Op, DAG);
2991   case ISD::BR_JT:         return LowerBR_JT(Op, DAG);
2992   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
2993   case ISD::VASTART:       return LowerVASTART(Op, DAG, VarArgsFrameIndex);
2994   case ISD::MEMBARRIER:    return LowerMEMBARRIER(Op, DAG);
2995   case ISD::SINT_TO_FP:
2996   case ISD::UINT_TO_FP:    return LowerINT_TO_FP(Op, DAG);
2997   case ISD::FP_TO_SINT:
2998   case ISD::FP_TO_UINT:    return LowerFP_TO_INT(Op, DAG);
2999   case ISD::FCOPYSIGN:     return LowerFCOPYSIGN(Op, DAG);
3000   case ISD::RETURNADDR:    break;
3001   case ISD::FRAMEADDR:     return LowerFRAMEADDR(Op, DAG);
3002   case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
3003   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
3004   case ISD::BIT_CONVERT:   return ExpandBIT_CONVERT(Op.getNode(), DAG);
3005   case ISD::SHL:
3006   case ISD::SRL:
3007   case ISD::SRA:           return LowerShift(Op.getNode(), DAG, Subtarget);
3008   case ISD::SHL_PARTS:     return LowerShiftLeftParts(Op, DAG);
3009   case ISD::SRL_PARTS:
3010   case ISD::SRA_PARTS:     return LowerShiftRightParts(Op, DAG);
3011   case ISD::VSETCC:        return LowerVSETCC(Op, DAG);
3012   case ISD::BUILD_VECTOR:  return LowerBUILD_VECTOR(Op, DAG);
3013   case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
3014   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
3015   case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
3016   }
3017   return SDValue();
3018 }
3019
3020 /// ReplaceNodeResults - Replace the results of node with an illegal result
3021 /// type with new values built out of custom code.
3022 void ARMTargetLowering::ReplaceNodeResults(SDNode *N,
3023                                            SmallVectorImpl<SDValue>&Results,
3024                                            SelectionDAG &DAG) {
3025   switch (N->getOpcode()) {
3026   default:
3027     llvm_unreachable("Don't know how to custom expand this!");
3028     return;
3029   case ISD::BIT_CONVERT:
3030     Results.push_back(ExpandBIT_CONVERT(N, DAG));
3031     return;
3032   case ISD::SRL:
3033   case ISD::SRA: {
3034     SDValue Res = LowerShift(N, DAG, Subtarget);
3035     if (Res.getNode())
3036       Results.push_back(Res);
3037     return;
3038   }
3039   }
3040 }
3041
3042 //===----------------------------------------------------------------------===//
3043 //                           ARM Scheduler Hooks
3044 //===----------------------------------------------------------------------===//
3045
3046 MachineBasicBlock *
3047 ARMTargetLowering::EmitAtomicCmpSwap(MachineInstr *MI,
3048                                      MachineBasicBlock *BB,
3049                                      unsigned Size) const {
3050   unsigned dest    = MI->getOperand(0).getReg();
3051   unsigned ptr     = MI->getOperand(1).getReg();
3052   unsigned oldval  = MI->getOperand(2).getReg();
3053   unsigned newval  = MI->getOperand(3).getReg();
3054   unsigned scratch = BB->getParent()->getRegInfo()
3055     .createVirtualRegister(ARM::GPRRegisterClass);
3056   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
3057   DebugLoc dl = MI->getDebugLoc();
3058   bool isThumb2 = Subtarget->isThumb2();
3059
3060   unsigned ldrOpc, strOpc;
3061   switch (Size) {
3062   default: llvm_unreachable("unsupported size for AtomicCmpSwap!");
3063   case 1:
3064     ldrOpc = isThumb2 ? ARM::t2LDREXB : ARM::LDREXB;
3065     strOpc = isThumb2 ? ARM::t2LDREXB : ARM::STREXB;
3066     break;
3067   case 2:
3068     ldrOpc = isThumb2 ? ARM::t2LDREXH : ARM::LDREXH;
3069     strOpc = isThumb2 ? ARM::t2STREXH : ARM::STREXH;
3070     break;
3071   case 4:
3072     ldrOpc = isThumb2 ? ARM::t2LDREX : ARM::LDREX;
3073     strOpc = isThumb2 ? ARM::t2STREX : ARM::STREX;
3074     break;
3075   }
3076
3077   MachineFunction *MF = BB->getParent();
3078   const BasicBlock *LLVM_BB = BB->getBasicBlock();
3079   MachineFunction::iterator It = BB;
3080   ++It; // insert the new blocks after the current block
3081
3082   MachineBasicBlock *loop1MBB = MF->CreateMachineBasicBlock(LLVM_BB);
3083   MachineBasicBlock *loop2MBB = MF->CreateMachineBasicBlock(LLVM_BB);
3084   MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
3085   MF->insert(It, loop1MBB);
3086   MF->insert(It, loop2MBB);
3087   MF->insert(It, exitMBB);
3088   exitMBB->transferSuccessors(BB);
3089
3090   //  thisMBB:
3091   //   ...
3092   //   fallthrough --> loop1MBB
3093   BB->addSuccessor(loop1MBB);
3094
3095   // loop1MBB:
3096   //   ldrex dest, [ptr]
3097   //   cmp dest, oldval
3098   //   bne exitMBB
3099   BB = loop1MBB;
3100   AddDefaultPred(BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr));
3101   AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
3102                  .addReg(dest).addReg(oldval));
3103   BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
3104     .addMBB(exitMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
3105   BB->addSuccessor(loop2MBB);
3106   BB->addSuccessor(exitMBB);
3107
3108   // loop2MBB:
3109   //   strex scratch, newval, [ptr]
3110   //   cmp scratch, #0
3111   //   bne loop1MBB
3112   BB = loop2MBB;
3113   AddDefaultPred(BuildMI(BB, dl, TII->get(strOpc), scratch).addReg(newval)
3114                  .addReg(ptr));
3115   AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
3116                  .addReg(scratch).addImm(0));
3117   BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
3118     .addMBB(loop1MBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
3119   BB->addSuccessor(loop1MBB);
3120   BB->addSuccessor(exitMBB);
3121
3122   //  exitMBB:
3123   //   ...
3124   BB = exitMBB;
3125   return BB;
3126 }
3127
3128 MachineBasicBlock *
3129 ARMTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
3130                                     unsigned Size, unsigned BinOpcode) const {
3131   // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
3132   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
3133
3134   const BasicBlock *LLVM_BB = BB->getBasicBlock();
3135   MachineFunction *F = BB->getParent();
3136   MachineFunction::iterator It = BB;
3137   ++It;
3138
3139   unsigned dest = MI->getOperand(0).getReg();
3140   unsigned ptr = MI->getOperand(1).getReg();
3141   unsigned incr = MI->getOperand(2).getReg();
3142   DebugLoc dl = MI->getDebugLoc();
3143   bool isThumb2 = Subtarget->isThumb2();
3144   unsigned ldrOpc, strOpc;
3145   switch (Size) {
3146   default: llvm_unreachable("unsupported size for AtomicCmpSwap!");
3147   case 1:
3148     ldrOpc = isThumb2 ? ARM::t2LDREXB : ARM::LDREXB;
3149     strOpc = isThumb2 ? ARM::t2LDREXB : ARM::STREXB;
3150     break;
3151   case 2:
3152     ldrOpc = isThumb2 ? ARM::t2LDREXH : ARM::LDREXH;
3153     strOpc = isThumb2 ? ARM::t2STREXH : ARM::STREXH;
3154     break;
3155   case 4:
3156     ldrOpc = isThumb2 ? ARM::t2LDREX : ARM::LDREX;
3157     strOpc = isThumb2 ? ARM::t2STREX : ARM::STREX;
3158     break;
3159   }
3160
3161   MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
3162   MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
3163   F->insert(It, loopMBB);
3164   F->insert(It, exitMBB);
3165   exitMBB->transferSuccessors(BB);
3166
3167   MachineRegisterInfo &RegInfo = F->getRegInfo();
3168   unsigned scratch = RegInfo.createVirtualRegister(ARM::GPRRegisterClass);
3169   unsigned scratch2 = (!BinOpcode) ? incr :
3170     RegInfo.createVirtualRegister(ARM::GPRRegisterClass);
3171
3172   //  thisMBB:
3173   //   ...
3174   //   fallthrough --> loopMBB
3175   BB->addSuccessor(loopMBB);
3176
3177   //  loopMBB:
3178   //   ldrex dest, ptr
3179   //   <binop> scratch2, dest, incr
3180   //   strex scratch, scratch2, ptr
3181   //   cmp scratch, #0
3182   //   bne- loopMBB
3183   //   fallthrough --> exitMBB
3184   BB = loopMBB;
3185   AddDefaultPred(BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr));
3186   if (BinOpcode)
3187     AddDefaultPred(BuildMI(BB, dl, TII->get(BinOpcode), scratch2).
3188                    addReg(dest).addReg(incr)).addReg(0);
3189
3190   AddDefaultPred(BuildMI(BB, dl, TII->get(strOpc), scratch).addReg(scratch2)
3191                  .addReg(ptr));
3192   AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
3193                  .addReg(scratch).addImm(0));
3194   BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
3195     .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
3196
3197   BB->addSuccessor(loopMBB);
3198   BB->addSuccessor(exitMBB);
3199
3200   //  exitMBB:
3201   //   ...
3202   BB = exitMBB;
3203   return BB;
3204 }
3205
3206 MachineBasicBlock *
3207 ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
3208                                                MachineBasicBlock *BB,
3209                    DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) const {
3210   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
3211   DebugLoc dl = MI->getDebugLoc();
3212   bool isThumb2 = Subtarget->isThumb2();
3213   switch (MI->getOpcode()) {
3214   default:
3215     MI->dump();
3216     llvm_unreachable("Unexpected instr type to insert");
3217
3218   case ARM::ATOMIC_LOAD_ADD_I8:
3219      return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr);
3220   case ARM::ATOMIC_LOAD_ADD_I16:
3221      return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr);
3222   case ARM::ATOMIC_LOAD_ADD_I32:
3223      return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr);
3224
3225   case ARM::ATOMIC_LOAD_AND_I8:
3226      return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr);
3227   case ARM::ATOMIC_LOAD_AND_I16:
3228      return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr);
3229   case ARM::ATOMIC_LOAD_AND_I32:
3230      return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr);
3231
3232   case ARM::ATOMIC_LOAD_OR_I8:
3233      return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr);
3234   case ARM::ATOMIC_LOAD_OR_I16:
3235      return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr);
3236   case ARM::ATOMIC_LOAD_OR_I32:
3237      return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr);
3238
3239   case ARM::ATOMIC_LOAD_XOR_I8:
3240      return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2EORrr : ARM::EORrr);
3241   case ARM::ATOMIC_LOAD_XOR_I16:
3242      return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2EORrr : ARM::EORrr);
3243   case ARM::ATOMIC_LOAD_XOR_I32:
3244      return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2EORrr : ARM::EORrr);
3245
3246   case ARM::ATOMIC_LOAD_NAND_I8:
3247      return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2BICrr : ARM::BICrr);
3248   case ARM::ATOMIC_LOAD_NAND_I16:
3249      return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2BICrr : ARM::BICrr);
3250   case ARM::ATOMIC_LOAD_NAND_I32:
3251      return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2BICrr : ARM::BICrr);
3252
3253   case ARM::ATOMIC_LOAD_SUB_I8:
3254      return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr);
3255   case ARM::ATOMIC_LOAD_SUB_I16:
3256      return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr);
3257   case ARM::ATOMIC_LOAD_SUB_I32:
3258      return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr);
3259
3260   case ARM::ATOMIC_SWAP_I8:  return EmitAtomicBinary(MI, BB, 1, 0);
3261   case ARM::ATOMIC_SWAP_I16: return EmitAtomicBinary(MI, BB, 2, 0);
3262   case ARM::ATOMIC_SWAP_I32: return EmitAtomicBinary(MI, BB, 4, 0);
3263
3264   case ARM::ATOMIC_CMP_SWAP_I8:  return EmitAtomicCmpSwap(MI, BB, 1);
3265   case ARM::ATOMIC_CMP_SWAP_I16: return EmitAtomicCmpSwap(MI, BB, 2);
3266   case ARM::ATOMIC_CMP_SWAP_I32: return EmitAtomicCmpSwap(MI, BB, 4);
3267
3268   case ARM::tMOVCCr_pseudo: {
3269     // To "insert" a SELECT_CC instruction, we actually have to insert the
3270     // diamond control-flow pattern.  The incoming instruction knows the
3271     // destination vreg to set, the condition code register to branch on, the
3272     // true/false values to select between, and a branch opcode to use.
3273     const BasicBlock *LLVM_BB = BB->getBasicBlock();
3274     MachineFunction::iterator It = BB;
3275     ++It;
3276
3277     //  thisMBB:
3278     //  ...
3279     //   TrueVal = ...
3280     //   cmpTY ccX, r1, r2
3281     //   bCC copy1MBB
3282     //   fallthrough --> copy0MBB
3283     MachineBasicBlock *thisMBB  = BB;
3284     MachineFunction *F = BB->getParent();
3285     MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
3286     MachineBasicBlock *sinkMBB  = F->CreateMachineBasicBlock(LLVM_BB);
3287     BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB)
3288       .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
3289     F->insert(It, copy0MBB);
3290     F->insert(It, sinkMBB);
3291     // Update machine-CFG edges by first adding all successors of the current
3292     // block to the new block which will contain the Phi node for the select.
3293     // Also inform sdisel of the edge changes.
3294     for (MachineBasicBlock::succ_iterator I = BB->succ_begin(), 
3295            E = BB->succ_end(); I != E; ++I) {
3296       EM->insert(std::make_pair(*I, sinkMBB));
3297       sinkMBB->addSuccessor(*I);
3298     }
3299     // Next, remove all successors of the current block, and add the true
3300     // and fallthrough blocks as its successors.
3301     while (!BB->succ_empty())
3302       BB->removeSuccessor(BB->succ_begin());
3303     BB->addSuccessor(copy0MBB);
3304     BB->addSuccessor(sinkMBB);
3305
3306     //  copy0MBB:
3307     //   %FalseValue = ...
3308     //   # fallthrough to sinkMBB
3309     BB = copy0MBB;
3310
3311     // Update machine-CFG edges
3312     BB->addSuccessor(sinkMBB);
3313
3314     //  sinkMBB:
3315     //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
3316     //  ...
3317     BB = sinkMBB;
3318     BuildMI(BB, dl, TII->get(ARM::PHI), MI->getOperand(0).getReg())
3319       .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
3320       .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
3321
3322     F->DeleteMachineInstr(MI);   // The pseudo instruction is gone now.
3323     return BB;
3324   }
3325
3326   case ARM::tANDsp:
3327   case ARM::tADDspr_:
3328   case ARM::tSUBspi_:
3329   case ARM::t2SUBrSPi_:
3330   case ARM::t2SUBrSPi12_:
3331   case ARM::t2SUBrSPs_: {
3332     MachineFunction *MF = BB->getParent();
3333     unsigned DstReg = MI->getOperand(0).getReg();
3334     unsigned SrcReg = MI->getOperand(1).getReg();
3335     bool DstIsDead = MI->getOperand(0).isDead();
3336     bool SrcIsKill = MI->getOperand(1).isKill();
3337
3338     if (SrcReg != ARM::SP) {
3339       // Copy the source to SP from virtual register.
3340       const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(SrcReg);
3341       unsigned CopyOpc = (RC == ARM::tGPRRegisterClass)
3342         ? ARM::tMOVtgpr2gpr : ARM::tMOVgpr2gpr;
3343       BuildMI(BB, dl, TII->get(CopyOpc), ARM::SP)
3344         .addReg(SrcReg, getKillRegState(SrcIsKill));
3345     }
3346
3347     unsigned OpOpc = 0;
3348     bool NeedPred = false, NeedCC = false, NeedOp3 = false;
3349     switch (MI->getOpcode()) {
3350     default:
3351       llvm_unreachable("Unexpected pseudo instruction!");
3352     case ARM::tANDsp:
3353       OpOpc = ARM::tAND;
3354       NeedPred = true;
3355       break;
3356     case ARM::tADDspr_:
3357       OpOpc = ARM::tADDspr;
3358       break;
3359     case ARM::tSUBspi_:
3360       OpOpc = ARM::tSUBspi;
3361       break;
3362     case ARM::t2SUBrSPi_:
3363       OpOpc = ARM::t2SUBrSPi;
3364       NeedPred = true; NeedCC = true;
3365       break;
3366     case ARM::t2SUBrSPi12_:
3367       OpOpc = ARM::t2SUBrSPi12;
3368       NeedPred = true;
3369       break;
3370     case ARM::t2SUBrSPs_:
3371       OpOpc = ARM::t2SUBrSPs;
3372       NeedPred = true; NeedCC = true; NeedOp3 = true;
3373       break;
3374     }
3375     MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(OpOpc), ARM::SP);
3376     if (OpOpc == ARM::tAND)
3377       AddDefaultT1CC(MIB);
3378     MIB.addReg(ARM::SP);
3379     MIB.addOperand(MI->getOperand(2));
3380     if (NeedOp3)
3381       MIB.addOperand(MI->getOperand(3));
3382     if (NeedPred)
3383       AddDefaultPred(MIB);
3384     if (NeedCC)
3385       AddDefaultCC(MIB);
3386
3387     // Copy the result from SP to virtual register.
3388     const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(DstReg);
3389     unsigned CopyOpc = (RC == ARM::tGPRRegisterClass)
3390       ? ARM::tMOVgpr2tgpr : ARM::tMOVgpr2gpr;
3391     BuildMI(BB, dl, TII->get(CopyOpc))
3392       .addReg(DstReg, getDefRegState(true) | getDeadRegState(DstIsDead))
3393       .addReg(ARM::SP);
3394     MF->DeleteMachineInstr(MI);   // The pseudo instruction is gone now.
3395     return BB;
3396   }
3397   }
3398 }
3399
3400 //===----------------------------------------------------------------------===//
3401 //                           ARM Optimization Hooks
3402 //===----------------------------------------------------------------------===//
3403
3404 static
3405 SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp,
3406                             TargetLowering::DAGCombinerInfo &DCI) {
3407   SelectionDAG &DAG = DCI.DAG;
3408   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3409   EVT VT = N->getValueType(0);
3410   unsigned Opc = N->getOpcode();
3411   bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC;
3412   SDValue LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1);
3413   SDValue RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2);
3414   ISD::CondCode CC = ISD::SETCC_INVALID;
3415
3416   if (isSlctCC) {
3417     CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get();
3418   } else {
3419     SDValue CCOp = Slct.getOperand(0);
3420     if (CCOp.getOpcode() == ISD::SETCC)
3421       CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get();
3422   }
3423
3424   bool DoXform = false;
3425   bool InvCC = false;
3426   assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) &&
3427           "Bad input!");
3428
3429   if (LHS.getOpcode() == ISD::Constant &&
3430       cast<ConstantSDNode>(LHS)->isNullValue()) {
3431     DoXform = true;
3432   } else if (CC != ISD::SETCC_INVALID &&
3433              RHS.getOpcode() == ISD::Constant &&
3434              cast<ConstantSDNode>(RHS)->isNullValue()) {
3435     std::swap(LHS, RHS);
3436     SDValue Op0 = Slct.getOperand(0);
3437     EVT OpVT = isSlctCC ? Op0.getValueType() :
3438                           Op0.getOperand(0).getValueType();
3439     bool isInt = OpVT.isInteger();
3440     CC = ISD::getSetCCInverse(CC, isInt);
3441
3442     if (!TLI.isCondCodeLegal(CC, OpVT))
3443       return SDValue();         // Inverse operator isn't legal.
3444
3445     DoXform = true;
3446     InvCC = true;
3447   }
3448
3449   if (DoXform) {
3450     SDValue Result = DAG.getNode(Opc, RHS.getDebugLoc(), VT, OtherOp, RHS);
3451     if (isSlctCC)
3452       return DAG.getSelectCC(N->getDebugLoc(), OtherOp, Result,
3453                              Slct.getOperand(0), Slct.getOperand(1), CC);
3454     SDValue CCOp = Slct.getOperand(0);
3455     if (InvCC)
3456       CCOp = DAG.getSetCC(Slct.getDebugLoc(), CCOp.getValueType(),
3457                           CCOp.getOperand(0), CCOp.getOperand(1), CC);
3458     return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
3459                        CCOp, OtherOp, Result);
3460   }
3461   return SDValue();
3462 }
3463
3464 /// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
3465 static SDValue PerformADDCombine(SDNode *N,
3466                                  TargetLowering::DAGCombinerInfo &DCI) {
3467   // added by evan in r37685 with no testcase.
3468   SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
3469
3470   // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
3471   if (N0.getOpcode() == ISD::SELECT && N0.getNode()->hasOneUse()) {
3472     SDValue Result = combineSelectAndUse(N, N0, N1, DCI);
3473     if (Result.getNode()) return Result;
3474   }
3475   if (N1.getOpcode() == ISD::SELECT && N1.getNode()->hasOneUse()) {
3476     SDValue Result = combineSelectAndUse(N, N1, N0, DCI);
3477     if (Result.getNode()) return Result;
3478   }
3479
3480   return SDValue();
3481 }
3482
3483 /// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB.
3484 static SDValue PerformSUBCombine(SDNode *N,
3485                                  TargetLowering::DAGCombinerInfo &DCI) {
3486   // added by evan in r37685 with no testcase.
3487   SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
3488
3489   // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
3490   if (N1.getOpcode() == ISD::SELECT && N1.getNode()->hasOneUse()) {
3491     SDValue Result = combineSelectAndUse(N, N1, N0, DCI);
3492     if (Result.getNode()) return Result;
3493   }
3494
3495   return SDValue();
3496 }
3497
3498 /// PerformVMOVRRDCombine - Target-specific dag combine xforms for ARMISD::VMOVRRD.
3499 static SDValue PerformVMOVRRDCombine(SDNode *N,
3500                                    TargetLowering::DAGCombinerInfo &DCI) {
3501   // fmrrd(fmdrr x, y) -> x,y
3502   SDValue InDouble = N->getOperand(0);
3503   if (InDouble.getOpcode() == ARMISD::VMOVDRR)
3504     return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1));
3505   return SDValue();
3506 }
3507
3508 /// getVShiftImm - Check if this is a valid build_vector for the immediate
3509 /// operand of a vector shift operation, where all the elements of the
3510 /// build_vector must have the same constant integer value.
3511 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
3512   // Ignore bit_converts.
3513   while (Op.getOpcode() == ISD::BIT_CONVERT)
3514     Op = Op.getOperand(0);
3515   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
3516   APInt SplatBits, SplatUndef;
3517   unsigned SplatBitSize;
3518   bool HasAnyUndefs;
3519   if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
3520                                       HasAnyUndefs, ElementBits) ||
3521       SplatBitSize > ElementBits)
3522     return false;
3523   Cnt = SplatBits.getSExtValue();
3524   return true;
3525 }
3526
3527 /// isVShiftLImm - Check if this is a valid build_vector for the immediate
3528 /// operand of a vector shift left operation.  That value must be in the range:
3529 ///   0 <= Value < ElementBits for a left shift; or
3530 ///   0 <= Value <= ElementBits for a long left shift.
3531 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
3532   assert(VT.isVector() && "vector shift count is not a vector type");
3533   unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
3534   if (! getVShiftImm(Op, ElementBits, Cnt))
3535     return false;
3536   return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
3537 }
3538
3539 /// isVShiftRImm - Check if this is a valid build_vector for the immediate
3540 /// operand of a vector shift right operation.  For a shift opcode, the value
3541 /// is positive, but for an intrinsic the value count must be negative. The
3542 /// absolute value must be in the range:
3543 ///   1 <= |Value| <= ElementBits for a right shift; or
3544 ///   1 <= |Value| <= ElementBits/2 for a narrow right shift.
3545 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic,
3546                          int64_t &Cnt) {
3547   assert(VT.isVector() && "vector shift count is not a vector type");
3548   unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
3549   if (! getVShiftImm(Op, ElementBits, Cnt))
3550     return false;
3551   if (isIntrinsic)
3552     Cnt = -Cnt;
3553   return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits));
3554 }
3555
3556 /// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics.
3557 static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) {
3558   unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
3559   switch (IntNo) {
3560   default:
3561     // Don't do anything for most intrinsics.
3562     break;
3563
3564   // Vector shifts: check for immediate versions and lower them.
3565   // Note: This is done during DAG combining instead of DAG legalizing because
3566   // the build_vectors for 64-bit vector element shift counts are generally
3567   // not legal, and it is hard to see their values after they get legalized to
3568   // loads from a constant pool.
3569   case Intrinsic::arm_neon_vshifts:
3570   case Intrinsic::arm_neon_vshiftu:
3571   case Intrinsic::arm_neon_vshiftls:
3572   case Intrinsic::arm_neon_vshiftlu:
3573   case Intrinsic::arm_neon_vshiftn:
3574   case Intrinsic::arm_neon_vrshifts:
3575   case Intrinsic::arm_neon_vrshiftu:
3576   case Intrinsic::arm_neon_vrshiftn:
3577   case Intrinsic::arm_neon_vqshifts:
3578   case Intrinsic::arm_neon_vqshiftu:
3579   case Intrinsic::arm_neon_vqshiftsu:
3580   case Intrinsic::arm_neon_vqshiftns:
3581   case Intrinsic::arm_neon_vqshiftnu:
3582   case Intrinsic::arm_neon_vqshiftnsu:
3583   case Intrinsic::arm_neon_vqrshiftns:
3584   case Intrinsic::arm_neon_vqrshiftnu:
3585   case Intrinsic::arm_neon_vqrshiftnsu: {
3586     EVT VT = N->getOperand(1).getValueType();
3587     int64_t Cnt;
3588     unsigned VShiftOpc = 0;
3589
3590     switch (IntNo) {
3591     case Intrinsic::arm_neon_vshifts:
3592     case Intrinsic::arm_neon_vshiftu:
3593       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) {
3594         VShiftOpc = ARMISD::VSHL;
3595         break;
3596       }
3597       if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) {
3598         VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ?
3599                      ARMISD::VSHRs : ARMISD::VSHRu);
3600         break;
3601       }
3602       return SDValue();
3603
3604     case Intrinsic::arm_neon_vshiftls:
3605     case Intrinsic::arm_neon_vshiftlu:
3606       if (isVShiftLImm(N->getOperand(2), VT, true, Cnt))
3607         break;
3608       llvm_unreachable("invalid shift count for vshll intrinsic");
3609
3610     case Intrinsic::arm_neon_vrshifts:
3611     case Intrinsic::arm_neon_vrshiftu:
3612       if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt))
3613         break;
3614       return SDValue();
3615
3616     case Intrinsic::arm_neon_vqshifts:
3617     case Intrinsic::arm_neon_vqshiftu:
3618       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
3619         break;
3620       return SDValue();
3621
3622     case Intrinsic::arm_neon_vqshiftsu:
3623       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
3624         break;
3625       llvm_unreachable("invalid shift count for vqshlu intrinsic");
3626
3627     case Intrinsic::arm_neon_vshiftn:
3628     case Intrinsic::arm_neon_vrshiftn:
3629     case Intrinsic::arm_neon_vqshiftns:
3630     case Intrinsic::arm_neon_vqshiftnu:
3631     case Intrinsic::arm_neon_vqshiftnsu:
3632     case Intrinsic::arm_neon_vqrshiftns:
3633     case Intrinsic::arm_neon_vqrshiftnu:
3634     case Intrinsic::arm_neon_vqrshiftnsu:
3635       // Narrowing shifts require an immediate right shift.
3636       if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt))
3637         break;
3638       llvm_unreachable("invalid shift count for narrowing vector shift intrinsic");
3639
3640     default:
3641       llvm_unreachable("unhandled vector shift");
3642     }
3643
3644     switch (IntNo) {
3645     case Intrinsic::arm_neon_vshifts:
3646     case Intrinsic::arm_neon_vshiftu:
3647       // Opcode already set above.
3648       break;
3649     case Intrinsic::arm_neon_vshiftls:
3650     case Intrinsic::arm_neon_vshiftlu:
3651       if (Cnt == VT.getVectorElementType().getSizeInBits())
3652         VShiftOpc = ARMISD::VSHLLi;
3653       else
3654         VShiftOpc = (IntNo == Intrinsic::arm_neon_vshiftls ?
3655                      ARMISD::VSHLLs : ARMISD::VSHLLu);
3656       break;
3657     case Intrinsic::arm_neon_vshiftn:
3658       VShiftOpc = ARMISD::VSHRN; break;
3659     case Intrinsic::arm_neon_vrshifts:
3660       VShiftOpc = ARMISD::VRSHRs; break;
3661     case Intrinsic::arm_neon_vrshiftu:
3662       VShiftOpc = ARMISD::VRSHRu; break;
3663     case Intrinsic::arm_neon_vrshiftn:
3664       VShiftOpc = ARMISD::VRSHRN; break;
3665     case Intrinsic::arm_neon_vqshifts:
3666       VShiftOpc = ARMISD::VQSHLs; break;
3667     case Intrinsic::arm_neon_vqshiftu:
3668       VShiftOpc = ARMISD::VQSHLu; break;
3669     case Intrinsic::arm_neon_vqshiftsu:
3670       VShiftOpc = ARMISD::VQSHLsu; break;
3671     case Intrinsic::arm_neon_vqshiftns:
3672       VShiftOpc = ARMISD::VQSHRNs; break;
3673     case Intrinsic::arm_neon_vqshiftnu:
3674       VShiftOpc = ARMISD::VQSHRNu; break;
3675     case Intrinsic::arm_neon_vqshiftnsu:
3676       VShiftOpc = ARMISD::VQSHRNsu; break;
3677     case Intrinsic::arm_neon_vqrshiftns:
3678       VShiftOpc = ARMISD::VQRSHRNs; break;
3679     case Intrinsic::arm_neon_vqrshiftnu:
3680       VShiftOpc = ARMISD::VQRSHRNu; break;
3681     case Intrinsic::arm_neon_vqrshiftnsu:
3682       VShiftOpc = ARMISD::VQRSHRNsu; break;
3683     }
3684
3685     return DAG.getNode(VShiftOpc, N->getDebugLoc(), N->getValueType(0),
3686                        N->getOperand(1), DAG.getConstant(Cnt, MVT::i32));
3687   }
3688
3689   case Intrinsic::arm_neon_vshiftins: {
3690     EVT VT = N->getOperand(1).getValueType();
3691     int64_t Cnt;
3692     unsigned VShiftOpc = 0;
3693
3694     if (isVShiftLImm(N->getOperand(3), VT, false, Cnt))
3695       VShiftOpc = ARMISD::VSLI;
3696     else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt))
3697       VShiftOpc = ARMISD::VSRI;
3698     else {
3699       llvm_unreachable("invalid shift count for vsli/vsri intrinsic");
3700     }
3701
3702     return DAG.getNode(VShiftOpc, N->getDebugLoc(), N->getValueType(0),
3703                        N->getOperand(1), N->getOperand(2),
3704                        DAG.getConstant(Cnt, MVT::i32));
3705   }
3706
3707   case Intrinsic::arm_neon_vqrshifts:
3708   case Intrinsic::arm_neon_vqrshiftu:
3709     // No immediate versions of these to check for.
3710     break;
3711   }
3712
3713   return SDValue();
3714 }
3715
3716 /// PerformShiftCombine - Checks for immediate versions of vector shifts and
3717 /// lowers them.  As with the vector shift intrinsics, this is done during DAG
3718 /// combining instead of DAG legalizing because the build_vectors for 64-bit
3719 /// vector element shift counts are generally not legal, and it is hard to see
3720 /// their values after they get legalized to loads from a constant pool.
3721 static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG,
3722                                    const ARMSubtarget *ST) {
3723   EVT VT = N->getValueType(0);
3724
3725   // Nothing to be done for scalar shifts.
3726   if (! VT.isVector())
3727     return SDValue();
3728
3729   assert(ST->hasNEON() && "unexpected vector shift");
3730   int64_t Cnt;
3731
3732   switch (N->getOpcode()) {
3733   default: llvm_unreachable("unexpected shift opcode");
3734
3735   case ISD::SHL:
3736     if (isVShiftLImm(N->getOperand(1), VT, false, Cnt))
3737       return DAG.getNode(ARMISD::VSHL, N->getDebugLoc(), VT, N->getOperand(0),
3738                          DAG.getConstant(Cnt, MVT::i32));
3739     break;
3740
3741   case ISD::SRA:
3742   case ISD::SRL:
3743     if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) {
3744       unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ?
3745                             ARMISD::VSHRs : ARMISD::VSHRu);
3746       return DAG.getNode(VShiftOpc, N->getDebugLoc(), VT, N->getOperand(0),
3747                          DAG.getConstant(Cnt, MVT::i32));
3748     }
3749   }
3750   return SDValue();
3751 }
3752
3753 /// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND,
3754 /// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND.
3755 static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG,
3756                                     const ARMSubtarget *ST) {
3757   SDValue N0 = N->getOperand(0);
3758
3759   // Check for sign- and zero-extensions of vector extract operations of 8-
3760   // and 16-bit vector elements.  NEON supports these directly.  They are
3761   // handled during DAG combining because type legalization will promote them
3762   // to 32-bit types and it is messy to recognize the operations after that.
3763   if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
3764     SDValue Vec = N0.getOperand(0);
3765     SDValue Lane = N0.getOperand(1);
3766     EVT VT = N->getValueType(0);
3767     EVT EltVT = N0.getValueType();
3768     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3769
3770     if (VT == MVT::i32 &&
3771         (EltVT == MVT::i8 || EltVT == MVT::i16) &&
3772         TLI.isTypeLegal(Vec.getValueType())) {
3773
3774       unsigned Opc = 0;
3775       switch (N->getOpcode()) {
3776       default: llvm_unreachable("unexpected opcode");
3777       case ISD::SIGN_EXTEND:
3778         Opc = ARMISD::VGETLANEs;
3779         break;
3780       case ISD::ZERO_EXTEND:
3781       case ISD::ANY_EXTEND:
3782         Opc = ARMISD::VGETLANEu;
3783         break;
3784       }
3785       return DAG.getNode(Opc, N->getDebugLoc(), VT, Vec, Lane);
3786     }
3787   }
3788
3789   return SDValue();
3790 }
3791
3792 SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N,
3793                                              DAGCombinerInfo &DCI) const {
3794   switch (N->getOpcode()) {
3795   default: break;
3796   case ISD::ADD:      return PerformADDCombine(N, DCI);
3797   case ISD::SUB:      return PerformSUBCombine(N, DCI);
3798   case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI);
3799   case ISD::INTRINSIC_WO_CHAIN:
3800     return PerformIntrinsicCombine(N, DCI.DAG);
3801   case ISD::SHL:
3802   case ISD::SRA:
3803   case ISD::SRL:
3804     return PerformShiftCombine(N, DCI.DAG, Subtarget);
3805   case ISD::SIGN_EXTEND:
3806   case ISD::ZERO_EXTEND:
3807   case ISD::ANY_EXTEND:
3808     return PerformExtendCombine(N, DCI.DAG, Subtarget);
3809   }
3810   return SDValue();
3811 }
3812
3813 bool ARMTargetLowering::allowsUnalignedMemoryAccesses(EVT VT) const {
3814   if (!Subtarget->hasV6Ops())
3815     // Pre-v6 does not support unaligned mem access.
3816     return false;
3817   else if (!Subtarget->hasV6Ops()) {
3818     // v6 may or may not support unaligned mem access.
3819     if (!Subtarget->isTargetDarwin())
3820       return false;
3821   }
3822
3823   switch (VT.getSimpleVT().SimpleTy) {
3824   default:
3825     return false;
3826   case MVT::i8:
3827   case MVT::i16:
3828   case MVT::i32:
3829     return true;
3830   // FIXME: VLD1 etc with standard alignment is legal.
3831   }
3832 }
3833
3834 static bool isLegalT1AddressImmediate(int64_t V, EVT VT) {
3835   if (V < 0)
3836     return false;
3837
3838   unsigned Scale = 1;
3839   switch (VT.getSimpleVT().SimpleTy) {
3840   default: return false;
3841   case MVT::i1:
3842   case MVT::i8:
3843     // Scale == 1;
3844     break;
3845   case MVT::i16:
3846     // Scale == 2;
3847     Scale = 2;
3848     break;
3849   case MVT::i32:
3850     // Scale == 4;
3851     Scale = 4;
3852     break;
3853   }
3854
3855   if ((V & (Scale - 1)) != 0)
3856     return false;
3857   V /= Scale;
3858   return V == (V & ((1LL << 5) - 1));
3859 }
3860
3861 static bool isLegalT2AddressImmediate(int64_t V, EVT VT,
3862                                       const ARMSubtarget *Subtarget) {
3863   bool isNeg = false;
3864   if (V < 0) {
3865     isNeg = true;
3866     V = - V;
3867   }
3868
3869   switch (VT.getSimpleVT().SimpleTy) {
3870   default: return false;
3871   case MVT::i1:
3872   case MVT::i8:
3873   case MVT::i16:
3874   case MVT::i32:
3875     // + imm12 or - imm8
3876     if (isNeg)
3877       return V == (V & ((1LL << 8) - 1));
3878     return V == (V & ((1LL << 12) - 1));
3879   case MVT::f32:
3880   case MVT::f64:
3881     // Same as ARM mode. FIXME: NEON?
3882     if (!Subtarget->hasVFP2())
3883       return false;
3884     if ((V & 3) != 0)
3885       return false;
3886     V >>= 2;
3887     return V == (V & ((1LL << 8) - 1));
3888   }
3889 }
3890
3891 /// isLegalAddressImmediate - Return true if the integer value can be used
3892 /// as the offset of the target addressing mode for load / store of the
3893 /// given type.
3894 static bool isLegalAddressImmediate(int64_t V, EVT VT,
3895                                     const ARMSubtarget *Subtarget) {
3896   if (V == 0)
3897     return true;
3898
3899   if (!VT.isSimple())
3900     return false;
3901
3902   if (Subtarget->isThumb1Only())
3903     return isLegalT1AddressImmediate(V, VT);
3904   else if (Subtarget->isThumb2())
3905     return isLegalT2AddressImmediate(V, VT, Subtarget);
3906
3907   // ARM mode.
3908   if (V < 0)
3909     V = - V;
3910   switch (VT.getSimpleVT().SimpleTy) {
3911   default: return false;
3912   case MVT::i1:
3913   case MVT::i8:
3914   case MVT::i32:
3915     // +- imm12
3916     return V == (V & ((1LL << 12) - 1));
3917   case MVT::i16:
3918     // +- imm8
3919     return V == (V & ((1LL << 8) - 1));
3920   case MVT::f32:
3921   case MVT::f64:
3922     if (!Subtarget->hasVFP2()) // FIXME: NEON?
3923       return false;
3924     if ((V & 3) != 0)
3925       return false;
3926     V >>= 2;
3927     return V == (V & ((1LL << 8) - 1));
3928   }
3929 }
3930
3931 bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM,
3932                                                       EVT VT) const {
3933   int Scale = AM.Scale;
3934   if (Scale < 0)
3935     return false;
3936
3937   switch (VT.getSimpleVT().SimpleTy) {
3938   default: return false;
3939   case MVT::i1:
3940   case MVT::i8:
3941   case MVT::i16:
3942   case MVT::i32:
3943     if (Scale == 1)
3944       return true;
3945     // r + r << imm
3946     Scale = Scale & ~1;
3947     return Scale == 2 || Scale == 4 || Scale == 8;
3948   case MVT::i64:
3949     // r + r
3950     if (((unsigned)AM.HasBaseReg + Scale) <= 2)
3951       return true;
3952     return false;
3953   case MVT::isVoid:
3954     // Note, we allow "void" uses (basically, uses that aren't loads or
3955     // stores), because arm allows folding a scale into many arithmetic
3956     // operations.  This should be made more precise and revisited later.
3957
3958     // Allow r << imm, but the imm has to be a multiple of two.
3959     if (Scale & 1) return false;
3960     return isPowerOf2_32(Scale);
3961   }
3962 }
3963
3964 /// isLegalAddressingMode - Return true if the addressing mode represented
3965 /// by AM is legal for this target, for a load/store of the specified type.
3966 bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM,
3967                                               const Type *Ty) const {
3968   EVT VT = getValueType(Ty, true);
3969   if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget))
3970     return false;
3971
3972   // Can never fold addr of global into load/store.
3973   if (AM.BaseGV)
3974     return false;
3975
3976   switch (AM.Scale) {
3977   case 0:  // no scale reg, must be "r+i" or "r", or "i".
3978     break;
3979   case 1:
3980     if (Subtarget->isThumb1Only())
3981       return false;
3982     // FALL THROUGH.
3983   default:
3984     // ARM doesn't support any R+R*scale+imm addr modes.
3985     if (AM.BaseOffs)
3986       return false;
3987
3988     if (!VT.isSimple())
3989       return false;
3990
3991     if (Subtarget->isThumb2())
3992       return isLegalT2ScaledAddressingMode(AM, VT);
3993
3994     int Scale = AM.Scale;
3995     switch (VT.getSimpleVT().SimpleTy) {
3996     default: return false;
3997     case MVT::i1:
3998     case MVT::i8:
3999     case MVT::i32:
4000       if (Scale < 0) Scale = -Scale;
4001       if (Scale == 1)
4002         return true;
4003       // r + r << imm
4004       return isPowerOf2_32(Scale & ~1);
4005     case MVT::i16:
4006     case MVT::i64:
4007       // r + r
4008       if (((unsigned)AM.HasBaseReg + Scale) <= 2)
4009         return true;
4010       return false;
4011
4012     case MVT::isVoid:
4013       // Note, we allow "void" uses (basically, uses that aren't loads or
4014       // stores), because arm allows folding a scale into many arithmetic
4015       // operations.  This should be made more precise and revisited later.
4016
4017       // Allow r << imm, but the imm has to be a multiple of two.
4018       if (Scale & 1) return false;
4019       return isPowerOf2_32(Scale);
4020     }
4021     break;
4022   }
4023   return true;
4024 }
4025
4026 /// isLegalICmpImmediate - Return true if the specified immediate is legal
4027 /// icmp immediate, that is the target has icmp instructions which can compare
4028 /// a register against the immediate without having to materialize the
4029 /// immediate into a register.
4030 bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
4031   if (!Subtarget->isThumb())
4032     return ARM_AM::getSOImmVal(Imm) != -1;
4033   if (Subtarget->isThumb2())
4034     return ARM_AM::getT2SOImmVal(Imm) != -1; 
4035   return Imm >= 0 && Imm <= 255;
4036 }
4037
4038 static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT,
4039                                       bool isSEXTLoad, SDValue &Base,
4040                                       SDValue &Offset, bool &isInc,
4041                                       SelectionDAG &DAG) {
4042   if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
4043     return false;
4044
4045   if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
4046     // AddressingMode 3
4047     Base = Ptr->getOperand(0);
4048     if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
4049       int RHSC = (int)RHS->getZExtValue();
4050       if (RHSC < 0 && RHSC > -256) {
4051         assert(Ptr->getOpcode() == ISD::ADD);
4052         isInc = false;
4053         Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
4054         return true;
4055       }
4056     }
4057     isInc = (Ptr->getOpcode() == ISD::ADD);
4058     Offset = Ptr->getOperand(1);
4059     return true;
4060   } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
4061     // AddressingMode 2
4062     if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
4063       int RHSC = (int)RHS->getZExtValue();
4064       if (RHSC < 0 && RHSC > -0x1000) {
4065         assert(Ptr->getOpcode() == ISD::ADD);
4066         isInc = false;
4067         Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
4068         Base = Ptr->getOperand(0);
4069         return true;
4070       }
4071     }
4072
4073     if (Ptr->getOpcode() == ISD::ADD) {
4074       isInc = true;
4075       ARM_AM::ShiftOpc ShOpcVal= ARM_AM::getShiftOpcForNode(Ptr->getOperand(0));
4076       if (ShOpcVal != ARM_AM::no_shift) {
4077         Base = Ptr->getOperand(1);
4078         Offset = Ptr->getOperand(0);
4079       } else {
4080         Base = Ptr->getOperand(0);
4081         Offset = Ptr->getOperand(1);
4082       }
4083       return true;
4084     }
4085
4086     isInc = (Ptr->getOpcode() == ISD::ADD);
4087     Base = Ptr->getOperand(0);
4088     Offset = Ptr->getOperand(1);
4089     return true;
4090   }
4091
4092   // FIXME: Use VLDM / VSTM to emulate indexed FP load / store.
4093   return false;
4094 }
4095
4096 static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT,
4097                                      bool isSEXTLoad, SDValue &Base,
4098                                      SDValue &Offset, bool &isInc,
4099                                      SelectionDAG &DAG) {
4100   if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
4101     return false;
4102
4103   Base = Ptr->getOperand(0);
4104   if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
4105     int RHSC = (int)RHS->getZExtValue();
4106     if (RHSC < 0 && RHSC > -0x100) { // 8 bits.
4107       assert(Ptr->getOpcode() == ISD::ADD);
4108       isInc = false;
4109       Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
4110       return true;
4111     } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero.
4112       isInc = Ptr->getOpcode() == ISD::ADD;
4113       Offset = DAG.getConstant(RHSC, RHS->getValueType(0));
4114       return true;
4115     }
4116   }
4117
4118   return false;
4119 }
4120
4121 /// getPreIndexedAddressParts - returns true by value, base pointer and
4122 /// offset pointer and addressing mode by reference if the node's address
4123 /// can be legally represented as pre-indexed load / store address.
4124 bool
4125 ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
4126                                              SDValue &Offset,
4127                                              ISD::MemIndexedMode &AM,
4128                                              SelectionDAG &DAG) const {
4129   if (Subtarget->isThumb1Only())
4130     return false;
4131
4132   EVT VT;
4133   SDValue Ptr;
4134   bool isSEXTLoad = false;
4135   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
4136     Ptr = LD->getBasePtr();
4137     VT  = LD->getMemoryVT();
4138     isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
4139   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
4140     Ptr = ST->getBasePtr();
4141     VT  = ST->getMemoryVT();
4142   } else
4143     return false;
4144
4145   bool isInc;
4146   bool isLegal = false;
4147   if (Subtarget->isThumb2())
4148     isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
4149                                        Offset, isInc, DAG);
4150   else
4151     isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
4152                                         Offset, isInc, DAG);
4153   if (!isLegal)
4154     return false;
4155
4156   AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
4157   return true;
4158 }
4159
4160 /// getPostIndexedAddressParts - returns true by value, base pointer and
4161 /// offset pointer and addressing mode by reference if this node can be
4162 /// combined with a load / store to form a post-indexed load / store.
4163 bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
4164                                                    SDValue &Base,
4165                                                    SDValue &Offset,
4166                                                    ISD::MemIndexedMode &AM,
4167                                                    SelectionDAG &DAG) const {
4168   if (Subtarget->isThumb1Only())
4169     return false;
4170
4171   EVT VT;
4172   SDValue Ptr;
4173   bool isSEXTLoad = false;
4174   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
4175     VT  = LD->getMemoryVT();
4176     isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
4177   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
4178     VT  = ST->getMemoryVT();
4179   } else
4180     return false;
4181
4182   bool isInc;
4183   bool isLegal = false;
4184   if (Subtarget->isThumb2())
4185     isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
4186                                         isInc, DAG);
4187   else
4188     isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
4189                                         isInc, DAG);
4190   if (!isLegal)
4191     return false;
4192
4193   AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
4194   return true;
4195 }
4196
4197 void ARMTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
4198                                                        const APInt &Mask,
4199                                                        APInt &KnownZero,
4200                                                        APInt &KnownOne,
4201                                                        const SelectionDAG &DAG,
4202                                                        unsigned Depth) const {
4203   KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);
4204   switch (Op.getOpcode()) {
4205   default: break;
4206   case ARMISD::CMOV: {
4207     // Bits are known zero/one if known on the LHS and RHS.
4208     DAG.ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
4209     if (KnownZero == 0 && KnownOne == 0) return;
4210
4211     APInt KnownZeroRHS, KnownOneRHS;
4212     DAG.ComputeMaskedBits(Op.getOperand(1), Mask,
4213                           KnownZeroRHS, KnownOneRHS, Depth+1);
4214     KnownZero &= KnownZeroRHS;
4215     KnownOne  &= KnownOneRHS;
4216     return;
4217   }
4218   }
4219 }
4220
4221 //===----------------------------------------------------------------------===//
4222 //                           ARM Inline Assembly Support
4223 //===----------------------------------------------------------------------===//
4224
4225 /// getConstraintType - Given a constraint letter, return the type of
4226 /// constraint it is for this target.
4227 ARMTargetLowering::ConstraintType
4228 ARMTargetLowering::getConstraintType(const std::string &Constraint) const {
4229   if (Constraint.size() == 1) {
4230     switch (Constraint[0]) {
4231     default:  break;
4232     case 'l': return C_RegisterClass;
4233     case 'w': return C_RegisterClass;
4234     }
4235   }
4236   return TargetLowering::getConstraintType(Constraint);
4237 }
4238
4239 std::pair<unsigned, const TargetRegisterClass*>
4240 ARMTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
4241                                                 EVT VT) const {
4242   if (Constraint.size() == 1) {
4243     // GCC RS6000 Constraint Letters
4244     switch (Constraint[0]) {
4245     case 'l':
4246       if (Subtarget->isThumb1Only())
4247         return std::make_pair(0U, ARM::tGPRRegisterClass);
4248       else
4249         return std::make_pair(0U, ARM::GPRRegisterClass);
4250     case 'r':
4251       return std::make_pair(0U, ARM::GPRRegisterClass);
4252     case 'w':
4253       if (VT == MVT::f32)
4254         return std::make_pair(0U, ARM::SPRRegisterClass);
4255       if (VT == MVT::f64)
4256         return std::make_pair(0U, ARM::DPRRegisterClass);
4257       if (VT.getSizeInBits() == 128)
4258         return std::make_pair(0U, ARM::QPRRegisterClass);
4259       break;
4260     }
4261   }
4262   return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
4263 }
4264
4265 std::vector<unsigned> ARMTargetLowering::
4266 getRegClassForInlineAsmConstraint(const std::string &Constraint,
4267                                   EVT VT) const {
4268   if (Constraint.size() != 1)
4269     return std::vector<unsigned>();
4270
4271   switch (Constraint[0]) {      // GCC ARM Constraint Letters
4272   default: break;
4273   case 'l':
4274     return make_vector<unsigned>(ARM::R0, ARM::R1, ARM::R2, ARM::R3,
4275                                  ARM::R4, ARM::R5, ARM::R6, ARM::R7,
4276                                  0);
4277   case 'r':
4278     return make_vector<unsigned>(ARM::R0, ARM::R1, ARM::R2, ARM::R3,
4279                                  ARM::R4, ARM::R5, ARM::R6, ARM::R7,
4280                                  ARM::R8, ARM::R9, ARM::R10, ARM::R11,
4281                                  ARM::R12, ARM::LR, 0);
4282   case 'w':
4283     if (VT == MVT::f32)
4284       return make_vector<unsigned>(ARM::S0, ARM::S1, ARM::S2, ARM::S3,
4285                                    ARM::S4, ARM::S5, ARM::S6, ARM::S7,
4286                                    ARM::S8, ARM::S9, ARM::S10, ARM::S11,
4287                                    ARM::S12,ARM::S13,ARM::S14,ARM::S15,
4288                                    ARM::S16,ARM::S17,ARM::S18,ARM::S19,
4289                                    ARM::S20,ARM::S21,ARM::S22,ARM::S23,
4290                                    ARM::S24,ARM::S25,ARM::S26,ARM::S27,
4291                                    ARM::S28,ARM::S29,ARM::S30,ARM::S31, 0);
4292     if (VT == MVT::f64)
4293       return make_vector<unsigned>(ARM::D0, ARM::D1, ARM::D2, ARM::D3,
4294                                    ARM::D4, ARM::D5, ARM::D6, ARM::D7,
4295                                    ARM::D8, ARM::D9, ARM::D10,ARM::D11,
4296                                    ARM::D12,ARM::D13,ARM::D14,ARM::D15, 0);
4297     if (VT.getSizeInBits() == 128)
4298       return make_vector<unsigned>(ARM::Q0, ARM::Q1, ARM::Q2, ARM::Q3,
4299                                    ARM::Q4, ARM::Q5, ARM::Q6, ARM::Q7, 0);
4300       break;
4301   }
4302
4303   return std::vector<unsigned>();
4304 }
4305
4306 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
4307 /// vector.  If it is invalid, don't add anything to Ops.
4308 void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
4309                                                      char Constraint,
4310                                                      bool hasMemory,
4311                                                      std::vector<SDValue>&Ops,
4312                                                      SelectionDAG &DAG) const {
4313   SDValue Result(0, 0);
4314
4315   switch (Constraint) {
4316   default: break;
4317   case 'I': case 'J': case 'K': case 'L':
4318   case 'M': case 'N': case 'O':
4319     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
4320     if (!C)
4321       return;
4322
4323     int64_t CVal64 = C->getSExtValue();
4324     int CVal = (int) CVal64;
4325     // None of these constraints allow values larger than 32 bits.  Check
4326     // that the value fits in an int.
4327     if (CVal != CVal64)
4328       return;
4329
4330     switch (Constraint) {
4331       case 'I':
4332         if (Subtarget->isThumb1Only()) {
4333           // This must be a constant between 0 and 255, for ADD
4334           // immediates.
4335           if (CVal >= 0 && CVal <= 255)
4336             break;
4337         } else if (Subtarget->isThumb2()) {
4338           // A constant that can be used as an immediate value in a
4339           // data-processing instruction.
4340           if (ARM_AM::getT2SOImmVal(CVal) != -1)
4341             break;
4342         } else {
4343           // A constant that can be used as an immediate value in a
4344           // data-processing instruction.
4345           if (ARM_AM::getSOImmVal(CVal) != -1)
4346             break;
4347         }
4348         return;
4349
4350       case 'J':
4351         if (Subtarget->isThumb()) {  // FIXME thumb2
4352           // This must be a constant between -255 and -1, for negated ADD
4353           // immediates. This can be used in GCC with an "n" modifier that
4354           // prints the negated value, for use with SUB instructions. It is
4355           // not useful otherwise but is implemented for compatibility.
4356           if (CVal >= -255 && CVal <= -1)
4357             break;
4358         } else {
4359           // This must be a constant between -4095 and 4095. It is not clear
4360           // what this constraint is intended for. Implemented for
4361           // compatibility with GCC.
4362           if (CVal >= -4095 && CVal <= 4095)
4363             break;
4364         }
4365         return;
4366
4367       case 'K':
4368         if (Subtarget->isThumb1Only()) {
4369           // A 32-bit value where only one byte has a nonzero value. Exclude
4370           // zero to match GCC. This constraint is used by GCC internally for
4371           // constants that can be loaded with a move/shift combination.
4372           // It is not useful otherwise but is implemented for compatibility.
4373           if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal))
4374             break;
4375         } else if (Subtarget->isThumb2()) {
4376           // A constant whose bitwise inverse can be used as an immediate
4377           // value in a data-processing instruction. This can be used in GCC
4378           // with a "B" modifier that prints the inverted value, for use with
4379           // BIC and MVN instructions. It is not useful otherwise but is
4380           // implemented for compatibility.
4381           if (ARM_AM::getT2SOImmVal(~CVal) != -1)
4382             break;
4383         } else {
4384           // A constant whose bitwise inverse can be used as an immediate
4385           // value in a data-processing instruction. This can be used in GCC
4386           // with a "B" modifier that prints the inverted value, for use with
4387           // BIC and MVN instructions. It is not useful otherwise but is
4388           // implemented for compatibility.
4389           if (ARM_AM::getSOImmVal(~CVal) != -1)
4390             break;
4391         }
4392         return;
4393
4394       case 'L':
4395         if (Subtarget->isThumb1Only()) {
4396           // This must be a constant between -7 and 7,
4397           // for 3-operand ADD/SUB immediate instructions.
4398           if (CVal >= -7 && CVal < 7)
4399             break;
4400         } else if (Subtarget->isThumb2()) {
4401           // A constant whose negation can be used as an immediate value in a
4402           // data-processing instruction. This can be used in GCC with an "n"
4403           // modifier that prints the negated value, for use with SUB
4404           // instructions. It is not useful otherwise but is implemented for
4405           // compatibility.
4406           if (ARM_AM::getT2SOImmVal(-CVal) != -1)
4407             break;
4408         } else {
4409           // A constant whose negation can be used as an immediate value in a
4410           // data-processing instruction. This can be used in GCC with an "n"
4411           // modifier that prints the negated value, for use with SUB
4412           // instructions. It is not useful otherwise but is implemented for
4413           // compatibility.
4414           if (ARM_AM::getSOImmVal(-CVal) != -1)
4415             break;
4416         }
4417         return;
4418
4419       case 'M':
4420         if (Subtarget->isThumb()) { // FIXME thumb2
4421           // This must be a multiple of 4 between 0 and 1020, for
4422           // ADD sp + immediate.
4423           if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0))
4424             break;
4425         } else {
4426           // A power of two or a constant between 0 and 32.  This is used in
4427           // GCC for the shift amount on shifted register operands, but it is
4428           // useful in general for any shift amounts.
4429           if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0))
4430             break;
4431         }
4432         return;
4433
4434       case 'N':
4435         if (Subtarget->isThumb()) {  // FIXME thumb2
4436           // This must be a constant between 0 and 31, for shift amounts.
4437           if (CVal >= 0 && CVal <= 31)
4438             break;
4439         }
4440         return;
4441
4442       case 'O':
4443         if (Subtarget->isThumb()) {  // FIXME thumb2
4444           // This must be a multiple of 4 between -508 and 508, for
4445           // ADD/SUB sp = sp + immediate.
4446           if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0))
4447             break;
4448         }
4449         return;
4450     }
4451     Result = DAG.getTargetConstant(CVal, Op.getValueType());
4452     break;
4453   }
4454
4455   if (Result.getNode()) {
4456     Ops.push_back(Result);
4457     return;
4458   }
4459   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
4460                                                       Ops, DAG);
4461 }
4462
4463 bool
4464 ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
4465   // The ARM target isn't yet aware of offsets.
4466   return false;
4467 }
4468
4469 int ARM::getVFPf32Imm(const APFloat &FPImm) {
4470   APInt Imm = FPImm.bitcastToAPInt();
4471   uint32_t Sign = Imm.lshr(31).getZExtValue() & 1;
4472   int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127;  // -126 to 127
4473   int64_t Mantissa = Imm.getZExtValue() & 0x7fffff;  // 23 bits
4474
4475   // We can handle 4 bits of mantissa.
4476   // mantissa = (16+UInt(e:f:g:h))/16.
4477   if (Mantissa & 0x7ffff)
4478     return -1;
4479   Mantissa >>= 19;
4480   if ((Mantissa & 0xf) != Mantissa)
4481     return -1;
4482
4483   // We can handle 3 bits of exponent: exp == UInt(NOT(b):c:d)-3
4484   if (Exp < -3 || Exp > 4)
4485     return -1;
4486   Exp = ((Exp+3) & 0x7) ^ 4;
4487
4488   return ((int)Sign << 7) | (Exp << 4) | Mantissa;
4489 }
4490
4491 int ARM::getVFPf64Imm(const APFloat &FPImm) {
4492   APInt Imm = FPImm.bitcastToAPInt();
4493   uint64_t Sign = Imm.lshr(63).getZExtValue() & 1;
4494   int64_t Exp = (Imm.lshr(52).getSExtValue() & 0x7ff) - 1023;   // -1022 to 1023
4495   uint64_t Mantissa = Imm.getZExtValue() & 0xfffffffffffffLL;
4496
4497   // We can handle 4 bits of mantissa.
4498   // mantissa = (16+UInt(e:f:g:h))/16.
4499   if (Mantissa & 0xffffffffffffLL)
4500     return -1;
4501   Mantissa >>= 48;
4502   if ((Mantissa & 0xf) != Mantissa)
4503     return -1;
4504
4505   // We can handle 3 bits of exponent: exp == UInt(NOT(b):c:d)-3
4506   if (Exp < -3 || Exp > 4)
4507     return -1;
4508   Exp = ((Exp+3) & 0x7) ^ 4;
4509
4510   return ((int)Sign << 7) | (Exp << 4) | Mantissa;
4511 }
4512
4513 /// isFPImmLegal - Returns true if the target can instruction select the
4514 /// specified FP immediate natively. If false, the legalizer will
4515 /// materialize the FP immediate as a load from a constant pool.
4516 bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
4517   if (!Subtarget->hasVFP3())
4518     return false;
4519   if (VT == MVT::f32)
4520     return ARM::getVFPf32Imm(Imm) != -1;
4521   if (VT == MVT::f64)
4522     return ARM::getVFPf64Imm(Imm) != -1;
4523   return false;
4524 }