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