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