implement the new addressing mode description hook.
[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 was developed by Evan Cheng and is distributed under
6 // the University of Illinois Open Source 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/Instruction.h"
26 #include "llvm/CodeGen/MachineBasicBlock.h"
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineFunction.h"
29 #include "llvm/CodeGen/MachineInstrBuilder.h"
30 #include "llvm/CodeGen/SelectionDAG.h"
31 #include "llvm/CodeGen/SSARegMap.h"
32 #include "llvm/Target/TargetOptions.h"
33 #include "llvm/ADT/VectorExtras.h"
34 #include "llvm/Support/MathExtras.h"
35 using namespace llvm;
36
37 ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
38     : TargetLowering(TM), ARMPCLabelIndex(0) {
39   Subtarget = &TM.getSubtarget<ARMSubtarget>();
40
41   // Uses VFP for Thumb libfuncs if available.
42   if (!UseSoftFloat && Subtarget->isThumb() && Subtarget->hasVFP2()) {
43     // Single-precision floating-point arithmetic.
44     setLibcallName(RTLIB::ADD_F32, "__addsf3vfp");
45     setLibcallName(RTLIB::SUB_F32, "__subsf3vfp");
46     setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp");
47     setLibcallName(RTLIB::DIV_F32, "__divsf3vfp");
48
49     // Double-precision floating-point arithmetic.
50     setLibcallName(RTLIB::ADD_F64, "__adddf3vfp");
51     setLibcallName(RTLIB::SUB_F64, "__subdf3vfp");
52     setLibcallName(RTLIB::MUL_F64, "__muldf3vfp");
53     setLibcallName(RTLIB::DIV_F64, "__divdf3vfp");
54
55     // Single-precision comparisons.
56     setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp");
57     setLibcallName(RTLIB::UNE_F32, "__nesf2vfp");
58     setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp");
59     setLibcallName(RTLIB::OLE_F32, "__lesf2vfp");
60     setLibcallName(RTLIB::OGE_F32, "__gesf2vfp");
61     setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp");
62     setLibcallName(RTLIB::UO_F32,  "__unordsf2vfp");
63     setLibcallName(RTLIB::O_F32,   "__unordsf2vfp");
64
65     setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
66     setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE);
67     setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
68     setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
69     setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
70     setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
71     setCmpLibcallCC(RTLIB::UO_F32,  ISD::SETNE);
72     setCmpLibcallCC(RTLIB::O_F32,   ISD::SETEQ);
73
74     // Double-precision comparisons.
75     setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp");
76     setLibcallName(RTLIB::UNE_F64, "__nedf2vfp");
77     setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp");
78     setLibcallName(RTLIB::OLE_F64, "__ledf2vfp");
79     setLibcallName(RTLIB::OGE_F64, "__gedf2vfp");
80     setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp");
81     setLibcallName(RTLIB::UO_F64,  "__unorddf2vfp");
82     setLibcallName(RTLIB::O_F64,   "__unorddf2vfp");
83
84     setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
85     setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE);
86     setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
87     setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
88     setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
89     setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
90     setCmpLibcallCC(RTLIB::UO_F64,  ISD::SETNE);
91     setCmpLibcallCC(RTLIB::O_F64,   ISD::SETEQ);
92
93     // Floating-point to integer conversions.
94     // i64 conversions are done via library routines even when generating VFP
95     // instructions, so use the same ones.
96     setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp");
97     setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp");
98     setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp");
99     setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp");
100
101     // Conversions between floating types.
102     setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp");
103     setLibcallName(RTLIB::FPEXT_F32_F64,   "__extendsfdf2vfp");
104
105     // Integer to floating-point conversions.
106     // i64 conversions are done via library routines even when generating VFP
107     // instructions, so use the same ones.
108     // FIXME: There appears to be some naming inconsistency in ARM libgcc: e.g.
109     // __floatunsidf vs. __floatunssidfvfp.
110     setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp");
111     setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp");
112     setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp");
113     setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp");
114   }
115
116   addRegisterClass(MVT::i32, ARM::GPRRegisterClass);
117   if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb()) {
118     addRegisterClass(MVT::f32, ARM::SPRRegisterClass);
119     addRegisterClass(MVT::f64, ARM::DPRRegisterClass);
120   }
121
122   // ARM does not have f32 extending load.
123   setLoadXAction(ISD::EXTLOAD, MVT::f32, Expand);
124
125   // ARM supports all 4 flavors of integer indexed load / store.
126   for (unsigned im = (unsigned)ISD::PRE_INC;
127        im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
128     setIndexedLoadAction(im,  MVT::i1,  Legal);
129     setIndexedLoadAction(im,  MVT::i8,  Legal);
130     setIndexedLoadAction(im,  MVT::i16, Legal);
131     setIndexedLoadAction(im,  MVT::i32, Legal);
132     setIndexedStoreAction(im, MVT::i1,  Legal);
133     setIndexedStoreAction(im, MVT::i8,  Legal);
134     setIndexedStoreAction(im, MVT::i16, Legal);
135     setIndexedStoreAction(im, MVT::i32, Legal);
136   }
137
138   // i64 operation support.
139   if (Subtarget->isThumb()) {
140     setOperationAction(ISD::MUL,     MVT::i64, Expand);
141     setOperationAction(ISD::MULHU,   MVT::i32, Expand);
142     setOperationAction(ISD::MULHS,   MVT::i32, Expand);
143   } else {
144     setOperationAction(ISD::MUL,     MVT::i64, Custom);
145     setOperationAction(ISD::MULHU,   MVT::i32, Custom);
146     if (!Subtarget->hasV6Ops())
147       setOperationAction(ISD::MULHS, MVT::i32, Custom);
148   }
149   setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
150   setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
151   setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
152   setOperationAction(ISD::SRL,       MVT::i64, Custom);
153   setOperationAction(ISD::SRA,       MVT::i64, Custom);
154
155   // ARM does not have ROTL.
156   setOperationAction(ISD::ROTL,  MVT::i32, Expand);
157   setOperationAction(ISD::CTTZ , MVT::i32, Expand);
158   setOperationAction(ISD::CTPOP, MVT::i32, Expand);
159   if (!Subtarget->hasV5TOps() || Subtarget->isThumb())
160     setOperationAction(ISD::CTLZ, MVT::i32, Expand);
161
162   // Only ARMv6 has BSWAP.
163   if (!Subtarget->hasV6Ops())
164     setOperationAction(ISD::BSWAP, MVT::i32, Expand);
165
166   // These are expanded into libcalls.
167   setOperationAction(ISD::SDIV,  MVT::i32, Expand);
168   setOperationAction(ISD::UDIV,  MVT::i32, Expand);
169   setOperationAction(ISD::SREM,  MVT::i32, Expand);
170   setOperationAction(ISD::UREM,  MVT::i32, Expand);
171   
172   // Support label based line numbers.
173   setOperationAction(ISD::LOCATION, MVT::Other, Expand);
174   setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
175   // FIXME - use subtarget debug flags
176   if (!Subtarget->isTargetDarwin())
177     setOperationAction(ISD::LABEL, MVT::Other, Expand);
178
179   setOperationAction(ISD::RET,           MVT::Other, Custom);
180   setOperationAction(ISD::GlobalAddress, MVT::i32,   Custom);
181   setOperationAction(ISD::ConstantPool,  MVT::i32,   Custom);
182
183   // Expand mem operations genericly.
184   setOperationAction(ISD::MEMSET          , MVT::Other, Expand);
185   setOperationAction(ISD::MEMCPY          , MVT::Other, Expand);
186   setOperationAction(ISD::MEMMOVE         , MVT::Other, Expand);
187   
188   // Use the default implementation.
189   setOperationAction(ISD::VASTART           , MVT::Other, Expand);
190   setOperationAction(ISD::VAARG             , MVT::Other, Expand);
191   setOperationAction(ISD::VACOPY            , MVT::Other, Expand);
192   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
193   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand); 
194   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
195   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32  , Expand);
196
197   if (!Subtarget->hasV6Ops()) {
198     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
199     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8,  Expand);
200   }
201   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
202
203   if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb())
204     // Turn f64->i64 into FMRRD iff target supports vfp2.
205     setOperationAction(ISD::BIT_CONVERT, MVT::i64, Custom);
206   
207   setOperationAction(ISD::SETCC    , MVT::i32, Expand);
208   setOperationAction(ISD::SETCC    , MVT::f32, Expand);
209   setOperationAction(ISD::SETCC    , MVT::f64, Expand);
210   setOperationAction(ISD::SELECT   , MVT::i32, Expand);
211   setOperationAction(ISD::SELECT   , MVT::f32, Expand);
212   setOperationAction(ISD::SELECT   , MVT::f64, Expand);
213   setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
214   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
215   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
216
217   setOperationAction(ISD::BRCOND   , MVT::Other, Expand);
218   setOperationAction(ISD::BR_CC    , MVT::i32,   Custom);
219   setOperationAction(ISD::BR_CC    , MVT::f32,   Custom);
220   setOperationAction(ISD::BR_CC    , MVT::f64,   Custom);
221   setOperationAction(ISD::BR_JT    , MVT::Other, Custom);
222
223   setOperationAction(ISD::VASTART,       MVT::Other, Custom);
224   setOperationAction(ISD::VACOPY,        MVT::Other, Expand); 
225   setOperationAction(ISD::VAEND,         MVT::Other, Expand);
226   setOperationAction(ISD::STACKSAVE,     MVT::Other, Expand); 
227   setOperationAction(ISD::STACKRESTORE,  MVT::Other, Expand);
228
229   // FP Constants can't be immediates.
230   setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
231   setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
232
233   // We don't support sin/cos/fmod/copysign
234   setOperationAction(ISD::FSIN     , MVT::f64, Expand);
235   setOperationAction(ISD::FSIN     , MVT::f32, Expand);
236   setOperationAction(ISD::FCOS     , MVT::f32, Expand);
237   setOperationAction(ISD::FCOS     , MVT::f64, Expand);
238   setOperationAction(ISD::FREM     , MVT::f64, Expand);
239   setOperationAction(ISD::FREM     , MVT::f32, Expand);
240   setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
241   setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
242   
243   // int <-> fp are custom expanded into bit_convert + ARMISD ops.
244   setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
245   setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
246   setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
247   setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
248
249   setStackPointerRegisterToSaveRestore(ARM::SP);
250
251   setSchedulingPreference(SchedulingForRegPressure);
252   computeRegisterProperties();
253 }
254
255
256 const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
257   switch (Opcode) {
258   default: return 0;
259   case ARMISD::Wrapper:       return "ARMISD::Wrapper";
260   case ARMISD::WrapperJT:     return "ARMISD::WrapperJT";
261   case ARMISD::CALL:          return "ARMISD::CALL";
262   case ARMISD::CALL_NOLINK:   return "ARMISD::CALL_NOLINK";
263   case ARMISD::tCALL:         return "ARMISD::tCALL";
264   case ARMISD::BRCOND:        return "ARMISD::BRCOND";
265   case ARMISD::BR_JT:         return "ARMISD::BR_JT";
266   case ARMISD::RET_FLAG:      return "ARMISD::RET_FLAG";
267   case ARMISD::PIC_ADD:       return "ARMISD::PIC_ADD";
268   case ARMISD::CMP:           return "ARMISD::CMP";
269   case ARMISD::CMPFP:         return "ARMISD::CMPFP";
270   case ARMISD::CMPFPw0:       return "ARMISD::CMPFPw0";
271   case ARMISD::FMSTAT:        return "ARMISD::FMSTAT";
272   case ARMISD::CMOV:          return "ARMISD::CMOV";
273   case ARMISD::CNEG:          return "ARMISD::CNEG";
274     
275   case ARMISD::FTOSI:         return "ARMISD::FTOSI";
276   case ARMISD::FTOUI:         return "ARMISD::FTOUI";
277   case ARMISD::SITOF:         return "ARMISD::SITOF";
278   case ARMISD::UITOF:         return "ARMISD::UITOF";
279   case ARMISD::MULHILOU:      return "ARMISD::MULHILOU";
280   case ARMISD::MULHILOS:      return "ARMISD::MULHILOS";
281
282   case ARMISD::SRL_FLAG:      return "ARMISD::SRL_FLAG";
283   case ARMISD::SRA_FLAG:      return "ARMISD::SRA_FLAG";
284   case ARMISD::RRX:           return "ARMISD::RRX";
285       
286   case ARMISD::FMRRD:         return "ARMISD::FMRRD";
287   case ARMISD::FMDRR:         return "ARMISD::FMDRR";
288   }
289 }
290
291 //===----------------------------------------------------------------------===//
292 // Lowering Code
293 //===----------------------------------------------------------------------===//
294
295
296 /// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
297 static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
298   switch (CC) {
299   default: assert(0 && "Unknown condition code!");
300   case ISD::SETNE:  return ARMCC::NE;
301   case ISD::SETEQ:  return ARMCC::EQ;
302   case ISD::SETGT:  return ARMCC::GT;
303   case ISD::SETGE:  return ARMCC::GE;
304   case ISD::SETLT:  return ARMCC::LT;
305   case ISD::SETLE:  return ARMCC::LE;
306   case ISD::SETUGT: return ARMCC::HI;
307   case ISD::SETUGE: return ARMCC::HS;
308   case ISD::SETULT: return ARMCC::LO;
309   case ISD::SETULE: return ARMCC::LS;
310   }
311 }
312
313 /// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC. It
314 /// returns true if the operands should be inverted to form the proper
315 /// comparison.
316 static bool FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
317                         ARMCC::CondCodes &CondCode2) {
318   bool Invert = false;
319   CondCode2 = ARMCC::AL;
320   switch (CC) {
321   default: assert(0 && "Unknown FP condition!");
322   case ISD::SETEQ:
323   case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
324   case ISD::SETGT:
325   case ISD::SETOGT: CondCode = ARMCC::GT; break;
326   case ISD::SETGE:
327   case ISD::SETOGE: CondCode = ARMCC::GE; break;
328   case ISD::SETOLT: CondCode = ARMCC::MI; break;
329   case ISD::SETOLE: CondCode = ARMCC::GT; Invert = true; break;
330   case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
331   case ISD::SETO:   CondCode = ARMCC::VC; break;
332   case ISD::SETUO:  CondCode = ARMCC::VS; break;
333   case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
334   case ISD::SETUGT: CondCode = ARMCC::HI; break;
335   case ISD::SETUGE: CondCode = ARMCC::PL; break;
336   case ISD::SETLT:
337   case ISD::SETULT: CondCode = ARMCC::LT; break;
338   case ISD::SETLE:
339   case ISD::SETULE: CondCode = ARMCC::LE; break;
340   case ISD::SETNE:
341   case ISD::SETUNE: CondCode = ARMCC::NE; break;
342   }
343   return Invert;
344 }
345
346 static void
347 HowToPassArgument(MVT::ValueType ObjectVT, unsigned NumGPRs,
348                   unsigned StackOffset, unsigned &NeededGPRs,
349                   unsigned &NeededStackSize, unsigned &GPRPad,
350                   unsigned &StackPad, unsigned Flags) {
351   NeededStackSize = 0;
352   NeededGPRs = 0;
353   StackPad = 0;
354   GPRPad = 0;
355   unsigned align = (Flags >> ISD::ParamFlags::OrigAlignmentOffs);
356   GPRPad = NumGPRs % ((align + 3)/4);
357   StackPad = StackOffset % align;
358   unsigned firstGPR = NumGPRs + GPRPad;
359   switch (ObjectVT) {
360   default: assert(0 && "Unhandled argument type!");
361   case MVT::i32:
362   case MVT::f32:
363     if (firstGPR < 4)
364       NeededGPRs = 1;
365     else
366       NeededStackSize = 4;
367     break;
368   case MVT::i64:
369   case MVT::f64:
370     if (firstGPR < 3)
371       NeededGPRs = 2;
372     else if (firstGPR == 3) {
373       NeededGPRs = 1;
374       NeededStackSize = 4;
375     } else
376       NeededStackSize = 8;
377   }
378 }
379
380 /// LowerCALL - Lowering a ISD::CALL node into a callseq_start <-
381 /// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
382 /// nodes.
383 SDOperand ARMTargetLowering::LowerCALL(SDOperand Op, SelectionDAG &DAG) {
384   MVT::ValueType RetVT= Op.Val->getValueType(0);
385   SDOperand Chain    = Op.getOperand(0);
386   unsigned CallConv  = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
387   assert((CallConv == CallingConv::C ||
388           CallConv == CallingConv::Fast) && "unknown calling convention");
389   SDOperand Callee   = Op.getOperand(4);
390   unsigned NumOps    = (Op.getNumOperands() - 5) / 2;
391   unsigned ArgOffset = 0;   // Frame mechanisms handle retaddr slot
392   unsigned NumGPRs = 0;     // GPRs used for parameter passing.
393
394   // Count how many bytes are to be pushed on the stack.
395   unsigned NumBytes = 0;
396
397   // Add up all the space actually used.
398   for (unsigned i = 0; i < NumOps; ++i) {
399     unsigned ObjSize;
400     unsigned ObjGPRs;
401     unsigned StackPad;
402     unsigned GPRPad;
403     MVT::ValueType ObjectVT = Op.getOperand(5+2*i).getValueType();
404     unsigned Flags = Op.getConstantOperandVal(5+2*i+1);
405     HowToPassArgument(ObjectVT, NumGPRs, NumBytes, ObjGPRs, ObjSize,
406                       GPRPad, StackPad, Flags);
407     NumBytes += ObjSize + StackPad;
408     NumGPRs += ObjGPRs + GPRPad;
409   }
410
411   // Adjust the stack pointer for the new arguments...
412   // These operations are automatically eliminated by the prolog/epilog pass
413   Chain = DAG.getCALLSEQ_START(Chain,
414                                DAG.getConstant(NumBytes, MVT::i32));
415
416   SDOperand StackPtr = DAG.getRegister(ARM::SP, MVT::i32);
417
418   static const unsigned GPRArgRegs[] = {
419     ARM::R0, ARM::R1, ARM::R2, ARM::R3
420   };
421
422   NumGPRs = 0;
423   std::vector<std::pair<unsigned, SDOperand> > RegsToPass;
424   std::vector<SDOperand> MemOpChains;
425   for (unsigned i = 0; i != NumOps; ++i) {
426     SDOperand Arg = Op.getOperand(5+2*i);
427     unsigned Flags = Op.getConstantOperandVal(5+2*i+1);
428     MVT::ValueType ArgVT = Arg.getValueType();
429
430     unsigned ObjSize;
431     unsigned ObjGPRs;
432     unsigned GPRPad;
433     unsigned StackPad;
434     HowToPassArgument(ArgVT, NumGPRs, ArgOffset, ObjGPRs,
435                       ObjSize, GPRPad, StackPad, Flags);
436     NumGPRs += GPRPad;
437     ArgOffset += StackPad;
438     if (ObjGPRs > 0) {
439       switch (ArgVT) {
440       default: assert(0 && "Unexpected ValueType for argument!");
441       case MVT::i32:
442         RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs], Arg));
443         break;
444       case MVT::f32:
445         RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs],
446                                  DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Arg)));
447         break;
448       case MVT::i64: {
449         SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Arg,
450                                    DAG.getConstant(0, getPointerTy()));
451         SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Arg,
452                                    DAG.getConstant(1, getPointerTy()));
453         RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs], Lo));
454         if (ObjGPRs == 2)
455           RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs+1], Hi));
456         else {
457           SDOperand PtrOff= DAG.getConstant(ArgOffset, StackPtr.getValueType());
458           PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
459           MemOpChains.push_back(DAG.getStore(Chain, Hi, PtrOff, NULL, 0));
460         }
461         break;
462       }
463       case MVT::f64: {
464         SDOperand Cvt = DAG.getNode(ARMISD::FMRRD,
465                                     DAG.getVTList(MVT::i32, MVT::i32),
466                                     &Arg, 1);
467         RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs], Cvt));
468         if (ObjGPRs == 2)
469           RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs+1],
470                                               Cvt.getValue(1)));
471         else {
472           SDOperand PtrOff= DAG.getConstant(ArgOffset, StackPtr.getValueType());
473           PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
474           MemOpChains.push_back(DAG.getStore(Chain, Cvt.getValue(1), PtrOff,
475                                              NULL, 0));
476         }
477         break;
478       }
479       }
480     } else {
481       assert(ObjSize != 0);
482       SDOperand PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
483       PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
484       MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
485     }
486
487     NumGPRs += ObjGPRs;
488     ArgOffset += ObjSize;
489   }
490
491   if (!MemOpChains.empty())
492     Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
493                         &MemOpChains[0], MemOpChains.size());
494
495   // Build a sequence of copy-to-reg nodes chained together with token chain
496   // and flag operands which copy the outgoing args into the appropriate regs.
497   SDOperand InFlag;
498   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
499     Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
500                              InFlag);
501     InFlag = Chain.getValue(1);
502   }
503
504   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
505   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
506   // node so that legalize doesn't hack it.
507   bool isDirect = false;
508   bool isARMFunc = false;
509   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
510     GlobalValue *GV = G->getGlobal();
511     isDirect = true;
512     bool isExt = (GV->isDeclaration() || GV->hasWeakLinkage() ||
513                   GV->hasLinkOnceLinkage());
514     bool isStub = (isExt && Subtarget->isTargetDarwin()) &&
515                    getTargetMachine().getRelocationModel() != Reloc::Static;
516     isARMFunc = !Subtarget->isThumb() || isStub;
517     // tBX takes a register source operand.
518     if (isARMFunc && Subtarget->isThumb() && !Subtarget->hasV5TOps()) {
519       ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, ARMPCLabelIndex,
520                                                            ARMCP::CPStub, 4);
521       SDOperand CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 2);
522       CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
523       Callee = DAG.getLoad(getPointerTy(), DAG.getEntryNode(), CPAddr, NULL, 0); 
524       SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
525       Callee = DAG.getNode(ARMISD::PIC_ADD, getPointerTy(), Callee, PICLabel);
526    } else
527       Callee = DAG.getTargetGlobalAddress(GV, getPointerTy());
528   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
529     isDirect = true;
530     bool isStub = Subtarget->isTargetDarwin() &&
531                   getTargetMachine().getRelocationModel() != Reloc::Static;
532     isARMFunc = !Subtarget->isThumb() || isStub;
533     // tBX takes a register source operand.
534     const char *Sym = S->getSymbol();
535     if (isARMFunc && Subtarget->isThumb() && !Subtarget->hasV5TOps()) {
536       ARMConstantPoolValue *CPV = new ARMConstantPoolValue(Sym, ARMPCLabelIndex,
537                                                            ARMCP::CPStub, 4);
538       SDOperand CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 2);
539       CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
540       Callee = DAG.getLoad(getPointerTy(), DAG.getEntryNode(), CPAddr, NULL, 0); 
541       SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
542       Callee = DAG.getNode(ARMISD::PIC_ADD, getPointerTy(), Callee, PICLabel);
543     } else
544       Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy());
545   }
546
547   // FIXME: handle tail calls differently.
548   unsigned CallOpc;
549   if (Subtarget->isThumb()) {
550     if (!Subtarget->hasV5TOps() && (!isDirect || isARMFunc))
551       CallOpc = ARMISD::CALL_NOLINK;
552     else
553       CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
554   } else {
555     CallOpc = (isDirect || Subtarget->hasV5TOps())
556       ? ARMISD::CALL : ARMISD::CALL_NOLINK;
557   }
558   if (CallOpc == ARMISD::CALL_NOLINK && !Subtarget->isThumb()) {
559     // implicit def LR - LR mustn't be allocated as GRP:$dst of CALL_NOLINK
560     Chain = DAG.getCopyToReg(Chain, ARM::LR,
561                              DAG.getNode(ISD::UNDEF, MVT::i32), InFlag);
562     InFlag = Chain.getValue(1);
563   }
564
565   std::vector<MVT::ValueType> NodeTys;
566   NodeTys.push_back(MVT::Other);   // Returns a chain
567   NodeTys.push_back(MVT::Flag);    // Returns a flag for retval copy to use.
568
569   std::vector<SDOperand> Ops;
570   Ops.push_back(Chain);
571   Ops.push_back(Callee);
572
573   // Add argument registers to the end of the list so that they are known live
574   // into the call.
575   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
576     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
577                                   RegsToPass[i].second.getValueType()));
578
579   if (InFlag.Val)
580     Ops.push_back(InFlag);
581   Chain = DAG.getNode(CallOpc, NodeTys, &Ops[0], Ops.size());
582   InFlag = Chain.getValue(1);
583
584   SDOperand CSOps[] = { Chain, DAG.getConstant(NumBytes, MVT::i32), InFlag };
585   Chain = DAG.getNode(ISD::CALLSEQ_END, 
586                       DAG.getNodeValueTypes(MVT::Other, MVT::Flag),
587                       ((RetVT != MVT::Other) ? 2 : 1), CSOps, 3);
588   if (RetVT != MVT::Other)
589     InFlag = Chain.getValue(1);
590
591   std::vector<SDOperand> ResultVals;
592   NodeTys.clear();
593
594   // If the call has results, copy the values out of the ret val registers.
595   switch (RetVT) {
596   default: assert(0 && "Unexpected ret value!");
597   case MVT::Other:
598     break;
599   case MVT::i32:
600     Chain = DAG.getCopyFromReg(Chain, ARM::R0, MVT::i32, InFlag).getValue(1);
601     ResultVals.push_back(Chain.getValue(0));
602     if (Op.Val->getValueType(1) == MVT::i32) {
603       // Returns a i64 value.
604       Chain = DAG.getCopyFromReg(Chain, ARM::R1, MVT::i32,
605                                  Chain.getValue(2)).getValue(1);
606       ResultVals.push_back(Chain.getValue(0));
607       NodeTys.push_back(MVT::i32);
608     }
609     NodeTys.push_back(MVT::i32);
610     break;
611   case MVT::f32:
612     Chain = DAG.getCopyFromReg(Chain, ARM::R0, MVT::i32, InFlag).getValue(1);
613     ResultVals.push_back(DAG.getNode(ISD::BIT_CONVERT, MVT::f32,
614                                      Chain.getValue(0)));
615     NodeTys.push_back(MVT::f32);
616     break;
617   case MVT::f64: {
618     SDOperand Lo = DAG.getCopyFromReg(Chain, ARM::R0, MVT::i32, InFlag);
619     SDOperand Hi = DAG.getCopyFromReg(Lo, ARM::R1, MVT::i32, Lo.getValue(2));
620     ResultVals.push_back(DAG.getNode(ARMISD::FMDRR, MVT::f64, Lo, Hi));
621     NodeTys.push_back(MVT::f64);
622     break;
623   }
624   }
625
626   NodeTys.push_back(MVT::Other);
627
628   if (ResultVals.empty())
629     return Chain;
630
631   ResultVals.push_back(Chain);
632   SDOperand Res = DAG.getNode(ISD::MERGE_VALUES, NodeTys, &ResultVals[0],
633                               ResultVals.size());
634   return Res.getValue(Op.ResNo);
635 }
636
637 static SDOperand LowerRET(SDOperand Op, SelectionDAG &DAG) {
638   SDOperand Copy;
639   SDOperand Chain = Op.getOperand(0);
640   switch(Op.getNumOperands()) {
641   default:
642     assert(0 && "Do not know how to return this many arguments!");
643     abort();
644   case 1: {
645     SDOperand LR = DAG.getRegister(ARM::LR, MVT::i32);
646     return DAG.getNode(ARMISD::RET_FLAG, MVT::Other, Chain);
647   }
648   case 3:
649     Op = Op.getOperand(1);
650     if (Op.getValueType() == MVT::f32) {
651       Op = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
652     } else if (Op.getValueType() == MVT::f64) {
653       // Recursively legalize f64 -> i64.
654       Op = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Op);
655       return DAG.getNode(ISD::RET, MVT::Other, Chain, Op,
656                          DAG.getConstant(0, MVT::i32));
657     }
658     Copy = DAG.getCopyToReg(Chain, ARM::R0, Op, SDOperand());
659     if (DAG.getMachineFunction().liveout_empty())
660       DAG.getMachineFunction().addLiveOut(ARM::R0);
661     break;
662   case 5:
663     Copy = DAG.getCopyToReg(Chain, ARM::R1, Op.getOperand(3), SDOperand());
664     Copy = DAG.getCopyToReg(Copy, ARM::R0, Op.getOperand(1), Copy.getValue(1));
665     // If we haven't noted the R0+R1 are live out, do so now.
666     if (DAG.getMachineFunction().liveout_empty()) {
667       DAG.getMachineFunction().addLiveOut(ARM::R0);
668       DAG.getMachineFunction().addLiveOut(ARM::R1);
669     }
670     break;
671   }
672
673   //We must use RET_FLAG instead of BRIND because BRIND doesn't have a flag
674   return DAG.getNode(ARMISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
675 }
676
677 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as 
678 // their target countpart wrapped in the ARMISD::Wrapper node. Suppose N is
679 // one of the above mentioned nodes. It has to be wrapped because otherwise
680 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
681 // be used to form addressing mode. These wrapped nodes will be selected
682 // into MOVi.
683 static SDOperand LowerConstantPool(SDOperand Op, SelectionDAG &DAG) {
684   MVT::ValueType PtrVT = Op.getValueType();
685   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
686   SDOperand Res;
687   if (CP->isMachineConstantPoolEntry())
688     Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
689                                     CP->getAlignment());
690   else
691     Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
692                                     CP->getAlignment());
693   return DAG.getNode(ARMISD::Wrapper, MVT::i32, Res);
694 }
695
696 /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol
697 /// even in dynamic-no-pic mode.
698 static bool GVIsIndirectSymbol(GlobalValue *GV) {
699   return (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
700           (GV->isDeclaration() && !GV->hasNotBeenReadFromBytecode()));
701 }
702
703 SDOperand ARMTargetLowering::LowerGlobalAddress(SDOperand Op,
704                                                 SelectionDAG &DAG) {
705   MVT::ValueType PtrVT = getPointerTy();
706   GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
707   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
708   bool IsIndirect = Subtarget->isTargetDarwin() && GVIsIndirectSymbol(GV);
709   SDOperand CPAddr;
710   if (RelocM == Reloc::Static)
711     CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 2);
712   else {
713     unsigned PCAdj = (RelocM != Reloc::PIC_)
714       ? 0 : (Subtarget->isThumb() ? 4 : 8);
715     ARMCP::ARMCPKind Kind = IsIndirect ? ARMCP::CPNonLazyPtr
716       : ARMCP::CPValue;
717     ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, ARMPCLabelIndex,
718                                                          Kind, PCAdj);
719     CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 2);
720   }
721   CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
722
723   SDOperand Result = DAG.getLoad(PtrVT, DAG.getEntryNode(), CPAddr, NULL, 0);
724   SDOperand Chain = Result.getValue(1);
725
726   if (RelocM == Reloc::PIC_) {
727     SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
728     Result = DAG.getNode(ARMISD::PIC_ADD, PtrVT, Result, PICLabel);
729   }
730   if (IsIndirect)
731     Result = DAG.getLoad(PtrVT, Chain, Result, NULL, 0);
732
733   return Result;
734 }
735
736 static SDOperand LowerVASTART(SDOperand Op, SelectionDAG &DAG,
737                               unsigned VarArgsFrameIndex) {
738   // vastart just stores the address of the VarArgsFrameIndex slot into the
739   // memory location argument.
740   MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
741   SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
742   SrcValueSDNode *SV = cast<SrcValueSDNode>(Op.getOperand(2));
743   return DAG.getStore(Op.getOperand(0), FR, Op.getOperand(1), SV->getValue(),
744                       SV->getOffset());
745 }
746
747 static SDOperand LowerFORMAL_ARGUMENT(SDOperand Op, SelectionDAG &DAG,
748                                       unsigned *vRegs, unsigned ArgNo,
749                                       unsigned &NumGPRs, unsigned &ArgOffset) {
750   MachineFunction &MF = DAG.getMachineFunction();
751   MVT::ValueType ObjectVT = Op.getValue(ArgNo).getValueType();
752   SDOperand Root = Op.getOperand(0);
753   std::vector<SDOperand> ArgValues;
754   SSARegMap *RegMap = MF.getSSARegMap();
755
756   static const unsigned GPRArgRegs[] = {
757     ARM::R0, ARM::R1, ARM::R2, ARM::R3
758   };
759
760   unsigned ObjSize;
761   unsigned ObjGPRs;
762   unsigned GPRPad;
763   unsigned StackPad;
764   unsigned Flags = Op.getConstantOperandVal(ArgNo + 3);
765   HowToPassArgument(ObjectVT, NumGPRs, ArgOffset, ObjGPRs,
766                     ObjSize, GPRPad, StackPad, Flags);
767   NumGPRs += GPRPad;
768   ArgOffset += StackPad;
769
770   SDOperand ArgValue;
771   if (ObjGPRs == 1) {
772     unsigned VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
773     MF.addLiveIn(GPRArgRegs[NumGPRs], VReg);
774     vRegs[NumGPRs] = VReg;
775     ArgValue = DAG.getCopyFromReg(Root, VReg, MVT::i32);
776     if (ObjectVT == MVT::f32)
777       ArgValue = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, ArgValue);
778   } else if (ObjGPRs == 2) {
779     unsigned VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
780     MF.addLiveIn(GPRArgRegs[NumGPRs], VReg);
781     vRegs[NumGPRs] = VReg;
782     ArgValue = DAG.getCopyFromReg(Root, VReg, MVT::i32);
783
784     VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
785     MF.addLiveIn(GPRArgRegs[NumGPRs+1], VReg);
786     vRegs[NumGPRs+1] = VReg;
787     SDOperand ArgValue2 = DAG.getCopyFromReg(Root, VReg, MVT::i32);
788
789     if (ObjectVT == MVT::i64)
790       ArgValue = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, ArgValue, ArgValue2);
791     else
792       ArgValue = DAG.getNode(ARMISD::FMDRR, MVT::f64, ArgValue, ArgValue2);
793   }
794   NumGPRs += ObjGPRs;
795
796   if (ObjSize) {
797     // If the argument is actually used, emit a load from the right stack
798     // slot.
799     if (!Op.Val->hasNUsesOfValue(0, ArgNo)) {
800       MachineFrameInfo *MFI = MF.getFrameInfo();
801       int FI = MFI->CreateFixedObject(ObjSize, ArgOffset);
802       SDOperand FIN = DAG.getFrameIndex(FI, MVT::i32);
803       if (ObjGPRs == 0)
804         ArgValue = DAG.getLoad(ObjectVT, Root, FIN, NULL, 0);
805       else {
806         SDOperand ArgValue2 =
807           DAG.getLoad(MVT::i32, Root, FIN, NULL, 0);
808         if (ObjectVT == MVT::i64)
809           ArgValue= DAG.getNode(ISD::BUILD_PAIR, MVT::i64, ArgValue, ArgValue2);
810         else
811           ArgValue= DAG.getNode(ARMISD::FMDRR, MVT::f64, ArgValue, ArgValue2);
812       }
813     } else {
814       // Don't emit a dead load.
815       ArgValue = DAG.getNode(ISD::UNDEF, ObjectVT);
816     }
817
818     ArgOffset += ObjSize;   // Move on to the next argument.
819   }
820
821   return ArgValue;
822 }
823
824 SDOperand
825 ARMTargetLowering::LowerFORMAL_ARGUMENTS(SDOperand Op, SelectionDAG &DAG) {
826   std::vector<SDOperand> ArgValues;
827   SDOperand Root = Op.getOperand(0);
828   unsigned ArgOffset = 0;   // Frame mechanisms handle retaddr slot
829   unsigned NumGPRs = 0;     // GPRs used for parameter passing.
830   unsigned VRegs[4];
831
832   unsigned NumArgs = Op.Val->getNumValues()-1;
833   for (unsigned ArgNo = 0; ArgNo < NumArgs; ++ArgNo)
834     ArgValues.push_back(LowerFORMAL_ARGUMENT(Op, DAG, VRegs, ArgNo,
835                                              NumGPRs, ArgOffset));
836
837   bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
838   if (isVarArg) {
839     static const unsigned GPRArgRegs[] = {
840       ARM::R0, ARM::R1, ARM::R2, ARM::R3
841     };
842
843     MachineFunction &MF = DAG.getMachineFunction();
844     SSARegMap *RegMap = MF.getSSARegMap();
845     MachineFrameInfo *MFI = MF.getFrameInfo();
846     ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
847     unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
848     unsigned VARegSize = (4 - NumGPRs) * 4;
849     unsigned VARegSaveSize = (VARegSize + Align - 1) & ~(Align - 1);
850     if (VARegSaveSize) {
851       // If this function is vararg, store any remaining integer argument regs
852       // to their spots on the stack so that they may be loaded by deferencing
853       // the result of va_next.
854       AFI->setVarArgsRegSaveSize(VARegSaveSize);
855       VarArgsFrameIndex = MFI->CreateFixedObject(VARegSaveSize, ArgOffset +
856                                                  VARegSaveSize - VARegSize);
857       SDOperand FIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
858
859       SmallVector<SDOperand, 4> MemOps;
860       for (; NumGPRs < 4; ++NumGPRs) {
861         unsigned VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
862         MF.addLiveIn(GPRArgRegs[NumGPRs], VReg);
863         SDOperand Val = DAG.getCopyFromReg(Root, VReg, MVT::i32);
864         SDOperand Store = DAG.getStore(Val.getValue(1), Val, FIN, NULL, 0);
865         MemOps.push_back(Store);
866         FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
867                           DAG.getConstant(4, getPointerTy()));
868       }
869       if (!MemOps.empty())
870         Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
871                            &MemOps[0], MemOps.size());
872     } else
873       // This will point to the next argument passed via stack.
874       VarArgsFrameIndex = MFI->CreateFixedObject(4, ArgOffset);
875   }
876
877   ArgValues.push_back(Root);
878
879   // Return the new list of results.
880   std::vector<MVT::ValueType> RetVT(Op.Val->value_begin(),
881                                     Op.Val->value_end());
882   return DAG.getNode(ISD::MERGE_VALUES, RetVT, &ArgValues[0], ArgValues.size());
883 }
884
885 /// isFloatingPointZero - Return true if this is +0.0.
886 static bool isFloatingPointZero(SDOperand Op) {
887   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
888     return CFP->isExactlyValue(0.0);
889   else if (ISD::isEXTLoad(Op.Val) || ISD::isNON_EXTLoad(Op.Val)) {
890     // Maybe this has already been legalized into the constant pool?
891     if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
892       SDOperand WrapperOp = Op.getOperand(1).getOperand(0);
893       if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
894         if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
895           return CFP->isExactlyValue(0.0);
896     }
897   }
898   return false;
899 }
900
901 static bool isLegalCmpImmediate(unsigned C, bool isThumb) {
902   return ( isThumb && (C & ~255U) == 0) ||
903          (!isThumb && ARM_AM::getSOImmVal(C) != -1);
904 }
905
906 /// Returns appropriate ARM CMP (cmp) and corresponding condition code for
907 /// the given operands.
908 static SDOperand getARMCmp(SDOperand LHS, SDOperand RHS, ISD::CondCode CC,
909                            SDOperand &ARMCC, SelectionDAG &DAG, bool isThumb) {
910   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.Val)) {
911     unsigned C = RHSC->getValue();
912     if (!isLegalCmpImmediate(C, isThumb)) {
913       // Constant does not fit, try adjusting it by one?
914       switch (CC) {
915       default: break;
916       case ISD::SETLT:
917       case ISD::SETGE:
918         if (isLegalCmpImmediate(C-1, isThumb)) {
919           CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
920           RHS = DAG.getConstant(C-1, MVT::i32);
921         }
922         break;
923       case ISD::SETULT:
924       case ISD::SETUGE:
925         if (C > 0 && isLegalCmpImmediate(C-1, isThumb)) {
926           CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
927           RHS = DAG.getConstant(C-1, MVT::i32);
928         }
929         break;
930       case ISD::SETLE:
931       case ISD::SETGT:
932         if (isLegalCmpImmediate(C+1, isThumb)) {
933           CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
934           RHS = DAG.getConstant(C+1, MVT::i32);
935         }
936         break;
937       case ISD::SETULE:
938       case ISD::SETUGT:
939         if (C < 0xffffffff && isLegalCmpImmediate(C+1, isThumb)) {
940           CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
941           RHS = DAG.getConstant(C+1, MVT::i32);
942         }
943         break;
944       }
945     }
946   }
947
948   ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
949   ARMCC = DAG.getConstant(CondCode, MVT::i32);
950   return DAG.getNode(ARMISD::CMP, MVT::Flag, LHS, RHS);
951 }
952
953 /// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
954 static SDOperand getVFPCmp(SDOperand LHS, SDOperand RHS, SelectionDAG &DAG) {
955   SDOperand Cmp;
956   if (!isFloatingPointZero(RHS))
957     Cmp = DAG.getNode(ARMISD::CMPFP, MVT::Flag, LHS, RHS);
958   else
959     Cmp = DAG.getNode(ARMISD::CMPFPw0, MVT::Flag, LHS);
960   return DAG.getNode(ARMISD::FMSTAT, MVT::Flag, Cmp);
961 }
962
963 static SDOperand LowerSELECT_CC(SDOperand Op, SelectionDAG &DAG,
964                                 const ARMSubtarget *ST) {
965   MVT::ValueType VT = Op.getValueType();
966   SDOperand LHS = Op.getOperand(0);
967   SDOperand RHS = Op.getOperand(1);
968   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
969   SDOperand TrueVal = Op.getOperand(2);
970   SDOperand FalseVal = Op.getOperand(3);
971
972   if (LHS.getValueType() == MVT::i32) {
973     SDOperand ARMCC;
974     SDOperand Cmp = getARMCmp(LHS, RHS, CC, ARMCC, DAG, ST->isThumb());
975     return DAG.getNode(ARMISD::CMOV, VT, FalseVal, TrueVal, ARMCC, Cmp);
976   }
977
978   ARMCC::CondCodes CondCode, CondCode2;
979   if (FPCCToARMCC(CC, CondCode, CondCode2))
980     std::swap(TrueVal, FalseVal);
981
982   SDOperand ARMCC = DAG.getConstant(CondCode, MVT::i32);
983   SDOperand Cmp = getVFPCmp(LHS, RHS, DAG);
984   SDOperand Result = DAG.getNode(ARMISD::CMOV, VT, FalseVal, TrueVal,
985                                  ARMCC, Cmp);
986   if (CondCode2 != ARMCC::AL) {
987     SDOperand ARMCC2 = DAG.getConstant(CondCode2, MVT::i32);
988     // FIXME: Needs another CMP because flag can have but one use.
989     SDOperand Cmp2 = getVFPCmp(LHS, RHS, DAG);
990     Result = DAG.getNode(ARMISD::CMOV, VT, Result, TrueVal, ARMCC2, Cmp2);
991   }
992   return Result;
993 }
994
995 static SDOperand LowerBR_CC(SDOperand Op, SelectionDAG &DAG,
996                             const ARMSubtarget *ST) {
997   SDOperand  Chain = Op.getOperand(0);
998   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
999   SDOperand    LHS = Op.getOperand(2);
1000   SDOperand    RHS = Op.getOperand(3);
1001   SDOperand   Dest = Op.getOperand(4);
1002
1003   if (LHS.getValueType() == MVT::i32) {
1004     SDOperand ARMCC;
1005     SDOperand Cmp = getARMCmp(LHS, RHS, CC, ARMCC, DAG, ST->isThumb());
1006     return DAG.getNode(ARMISD::BRCOND, MVT::Other, Chain, Dest, ARMCC, Cmp);
1007   }
1008
1009   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
1010   ARMCC::CondCodes CondCode, CondCode2;
1011   if (FPCCToARMCC(CC, CondCode, CondCode2))
1012     // Swap the LHS/RHS of the comparison if needed.
1013     std::swap(LHS, RHS);
1014   
1015   SDOperand Cmp = getVFPCmp(LHS, RHS, DAG);
1016   SDOperand ARMCC = DAG.getConstant(CondCode, MVT::i32);
1017   SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Flag);
1018   SDOperand Ops[] = { Chain, Dest, ARMCC, Cmp };
1019   SDOperand Res = DAG.getNode(ARMISD::BRCOND, VTList, Ops, 4);
1020   if (CondCode2 != ARMCC::AL) {
1021     ARMCC = DAG.getConstant(CondCode2, MVT::i32);
1022     SDOperand Ops[] = { Res, Dest, ARMCC, Res.getValue(1) };
1023     Res = DAG.getNode(ARMISD::BRCOND, VTList, Ops, 4);
1024   }
1025   return Res;
1026 }
1027
1028 SDOperand ARMTargetLowering::LowerBR_JT(SDOperand Op, SelectionDAG &DAG) {
1029   SDOperand Chain = Op.getOperand(0);
1030   SDOperand Table = Op.getOperand(1);
1031   SDOperand Index = Op.getOperand(2);
1032
1033   MVT::ValueType PTy = getPointerTy();
1034   JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
1035   ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>();
1036   SDOperand UId =  DAG.getConstant(AFI->createJumpTableUId(), PTy);
1037   SDOperand JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
1038   Table = DAG.getNode(ARMISD::WrapperJT, MVT::i32, JTI, UId);
1039   Index = DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(4, PTy));
1040   SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
1041   bool isPIC = getTargetMachine().getRelocationModel() == Reloc::PIC_;
1042   Addr = DAG.getLoad(isPIC ? MVT::i32 : PTy, Chain, Addr, NULL, 0);
1043   Chain = Addr.getValue(1);
1044   if (isPIC)
1045     Addr = DAG.getNode(ISD::ADD, PTy, Addr, Table);
1046   return DAG.getNode(ARMISD::BR_JT, MVT::Other, Chain, Addr, JTI, UId);
1047 }
1048
1049 static SDOperand LowerFP_TO_INT(SDOperand Op, SelectionDAG &DAG) {
1050   unsigned Opc =
1051     Op.getOpcode() == ISD::FP_TO_SINT ? ARMISD::FTOSI : ARMISD::FTOUI;
1052   Op = DAG.getNode(Opc, MVT::f32, Op.getOperand(0));
1053   return DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
1054 }
1055
1056 static SDOperand LowerINT_TO_FP(SDOperand Op, SelectionDAG &DAG) {
1057   MVT::ValueType VT = Op.getValueType();
1058   unsigned Opc =
1059     Op.getOpcode() == ISD::SINT_TO_FP ? ARMISD::SITOF : ARMISD::UITOF;
1060
1061   Op = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op.getOperand(0));
1062   return DAG.getNode(Opc, VT, Op);
1063 }
1064
1065 static SDOperand LowerFCOPYSIGN(SDOperand Op, SelectionDAG &DAG) {
1066   // Implement fcopysign with a fabs and a conditional fneg.
1067   SDOperand Tmp0 = Op.getOperand(0);
1068   SDOperand Tmp1 = Op.getOperand(1);
1069   MVT::ValueType VT = Op.getValueType();
1070   MVT::ValueType SrcVT = Tmp1.getValueType();
1071   SDOperand AbsVal = DAG.getNode(ISD::FABS, VT, Tmp0);
1072   SDOperand Cmp = getVFPCmp(Tmp1, DAG.getConstantFP(0.0, SrcVT), DAG);
1073   SDOperand ARMCC = DAG.getConstant(ARMCC::LT, MVT::i32);
1074   return DAG.getNode(ARMISD::CNEG, VT, AbsVal, AbsVal, ARMCC, Cmp);
1075 }
1076
1077 static SDOperand LowerBIT_CONVERT(SDOperand Op, SelectionDAG &DAG) {
1078   // Turn f64->i64 into FMRRD.
1079   assert(Op.getValueType() == MVT::i64 &&
1080          Op.getOperand(0).getValueType() == MVT::f64);
1081
1082   Op = Op.getOperand(0);
1083   SDOperand Cvt = DAG.getNode(ARMISD::FMRRD, DAG.getVTList(MVT::i32, MVT::i32),
1084                               &Op, 1);
1085   
1086   // Merge the pieces into a single i64 value.
1087   return DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Cvt, Cvt.getValue(1));
1088 }
1089
1090 static SDOperand LowerMUL(SDOperand Op, SelectionDAG &DAG) {
1091   // FIXME: All this code is target-independent.  Create a new target-indep
1092   // MULHILO node and move this code to the legalizer.
1093   //
1094   assert(Op.getValueType() == MVT::i64 && "Only handles i64 expand right now!");
1095   
1096   SDOperand LL = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op.getOperand(0),
1097                              DAG.getConstant(0, MVT::i32));
1098   SDOperand RL = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op.getOperand(1),
1099                              DAG.getConstant(0, MVT::i32));
1100
1101   const TargetLowering &TL = DAG.getTargetLoweringInfo();
1102   unsigned LHSSB = TL.ComputeNumSignBits(Op.getOperand(0));
1103   unsigned RHSSB = TL.ComputeNumSignBits(Op.getOperand(1));
1104   
1105   SDOperand Lo, Hi;
1106   // Figure out how to lower this multiply.
1107   if (LHSSB >= 33 && RHSSB >= 33) {
1108     // If the input values are both sign extended, we can emit a mulhs+mul.
1109     Lo = DAG.getNode(ISD::MUL, MVT::i32, LL, RL);
1110     Hi = DAG.getNode(ISD::MULHS, MVT::i32, LL, RL);
1111   } else if (LHSSB == 32 && RHSSB == 32 &&
1112              TL.MaskedValueIsZero(Op.getOperand(0), 0xFFFFFFFF00000000ULL) &&
1113              TL.MaskedValueIsZero(Op.getOperand(1), 0xFFFFFFFF00000000ULL)) {
1114     // If the inputs are zero extended, use mulhu.
1115     Lo = DAG.getNode(ISD::MUL, MVT::i32, LL, RL);
1116     Hi = DAG.getNode(ISD::MULHU, MVT::i32, LL, RL);
1117   } else {
1118     SDOperand LH = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op.getOperand(0),
1119                                DAG.getConstant(1, MVT::i32));
1120     SDOperand RH = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op.getOperand(1),
1121                                DAG.getConstant(1, MVT::i32));
1122   
1123     // Lo,Hi = umul LHS, RHS.
1124     SDOperand Ops[] = { LL, RL };
1125     SDOperand UMul64 = DAG.getNode(ARMISD::MULHILOU,
1126                                    DAG.getVTList(MVT::i32, MVT::i32), Ops, 2);
1127     Lo = UMul64;
1128     Hi = UMul64.getValue(1);
1129     RH = DAG.getNode(ISD::MUL, MVT::i32, LL, RH);
1130     LH = DAG.getNode(ISD::MUL, MVT::i32, LH, RL);
1131     Hi = DAG.getNode(ISD::ADD, MVT::i32, Hi, RH);
1132     Hi = DAG.getNode(ISD::ADD, MVT::i32, Hi, LH);
1133   }
1134   
1135   // Merge the pieces into a single i64 value.
1136   return DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Lo, Hi);
1137 }
1138
1139 static SDOperand LowerMULHU(SDOperand Op, SelectionDAG &DAG) {
1140   SDOperand Ops[] = { Op.getOperand(0), Op.getOperand(1) };
1141   return DAG.getNode(ARMISD::MULHILOU,
1142                      DAG.getVTList(MVT::i32, MVT::i32), Ops, 2).getValue(1);
1143 }
1144
1145 static SDOperand LowerMULHS(SDOperand Op, SelectionDAG &DAG) {
1146   SDOperand Ops[] = { Op.getOperand(0), Op.getOperand(1) };
1147   return DAG.getNode(ARMISD::MULHILOS,
1148                      DAG.getVTList(MVT::i32, MVT::i32), Ops, 2).getValue(1);
1149 }
1150
1151 static SDOperand LowerSRx(SDOperand Op, SelectionDAG &DAG,
1152                           const ARMSubtarget *ST) {
1153   assert(Op.getValueType() == MVT::i64 &&
1154          (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SRA) &&
1155          "Unknown shift to lower!");
1156   
1157   // We only lower SRA, SRL of 1 here, all others use generic lowering.
1158   if (!isa<ConstantSDNode>(Op.getOperand(1)) ||
1159       cast<ConstantSDNode>(Op.getOperand(1))->getValue() != 1)
1160     return SDOperand();
1161   
1162   // If we are in thumb mode, we don't have RRX.
1163   if (ST->isThumb()) return SDOperand();
1164   
1165   // Okay, we have a 64-bit SRA or SRL of 1.  Lower this to an RRX expr.
1166   SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op.getOperand(0),
1167                              DAG.getConstant(0, MVT::i32));
1168   SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op.getOperand(0),
1169                              DAG.getConstant(1, MVT::i32));
1170
1171   // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
1172   // captures the result into a carry flag.
1173   unsigned Opc = Op.getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
1174   Hi = DAG.getNode(Opc, DAG.getVTList(MVT::i32, MVT::Flag), &Hi, 1);
1175   
1176   // The low part is an ARMISD::RRX operand, which shifts the carry in.
1177   Lo = DAG.getNode(ARMISD::RRX, MVT::i32, Lo, Hi.getValue(1));
1178   
1179   // Merge the pieces into a single i64 value.
1180   return DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Lo, Hi);
1181 }
1182
1183 SDOperand ARMTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
1184   switch (Op.getOpcode()) {
1185   default: assert(0 && "Don't know how to custom lower this!"); abort();
1186   case ISD::ConstantPool:  return LowerConstantPool(Op, DAG);
1187   case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
1188   case ISD::CALL:          return LowerCALL(Op, DAG);
1189   case ISD::RET:           return LowerRET(Op, DAG);
1190   case ISD::SELECT_CC:     return LowerSELECT_CC(Op, DAG, Subtarget);
1191   case ISD::BR_CC:         return LowerBR_CC(Op, DAG, Subtarget);
1192   case ISD::BR_JT:         return LowerBR_JT(Op, DAG);
1193   case ISD::VASTART:       return LowerVASTART(Op, DAG, VarArgsFrameIndex);
1194   case ISD::SINT_TO_FP:
1195   case ISD::UINT_TO_FP:    return LowerINT_TO_FP(Op, DAG);
1196   case ISD::FP_TO_SINT:
1197   case ISD::FP_TO_UINT:    return LowerFP_TO_INT(Op, DAG);
1198   case ISD::FCOPYSIGN:     return LowerFCOPYSIGN(Op, DAG);
1199   case ISD::BIT_CONVERT:   return LowerBIT_CONVERT(Op, DAG);
1200   case ISD::MUL:           return LowerMUL(Op, DAG);
1201   case ISD::MULHU:         return LowerMULHU(Op, DAG);
1202   case ISD::MULHS:         return LowerMULHS(Op, DAG);
1203   case ISD::SRL:
1204   case ISD::SRA:           return LowerSRx(Op, DAG, Subtarget);
1205   case ISD::FORMAL_ARGUMENTS:
1206     return LowerFORMAL_ARGUMENTS(Op, DAG);
1207   case ISD::RETURNADDR:    break;
1208   case ISD::FRAMEADDR:     break;
1209   }
1210   return SDOperand();
1211 }
1212
1213 //===----------------------------------------------------------------------===//
1214 //                           ARM Scheduler Hooks
1215 //===----------------------------------------------------------------------===//
1216
1217 MachineBasicBlock *
1218 ARMTargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
1219                                            MachineBasicBlock *BB) {
1220   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
1221   switch (MI->getOpcode()) {
1222   default: assert(false && "Unexpected instr type to insert");
1223   case ARM::tMOVCCr: {
1224     // To "insert" a SELECT_CC instruction, we actually have to insert the
1225     // diamond control-flow pattern.  The incoming instruction knows the
1226     // destination vreg to set, the condition code register to branch on, the
1227     // true/false values to select between, and a branch opcode to use.
1228     const BasicBlock *LLVM_BB = BB->getBasicBlock();
1229     ilist<MachineBasicBlock>::iterator It = BB;
1230     ++It;
1231
1232     //  thisMBB:
1233     //  ...
1234     //   TrueVal = ...
1235     //   cmpTY ccX, r1, r2
1236     //   bCC copy1MBB
1237     //   fallthrough --> copy0MBB
1238     MachineBasicBlock *thisMBB  = BB;
1239     MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
1240     MachineBasicBlock *sinkMBB  = new MachineBasicBlock(LLVM_BB);
1241     BuildMI(BB, TII->get(ARM::tBcc)).addMBB(sinkMBB)
1242       .addImm(MI->getOperand(3).getImm());
1243     MachineFunction *F = BB->getParent();
1244     F->getBasicBlockList().insert(It, copy0MBB);
1245     F->getBasicBlockList().insert(It, sinkMBB);
1246     // Update machine-CFG edges by first adding all successors of the current
1247     // block to the new block which will contain the Phi node for the select.
1248     for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
1249         e = BB->succ_end(); i != e; ++i)
1250       sinkMBB->addSuccessor(*i);
1251     // Next, remove all successors of the current block, and add the true
1252     // and fallthrough blocks as its successors.
1253     while(!BB->succ_empty())
1254       BB->removeSuccessor(BB->succ_begin());
1255     BB->addSuccessor(copy0MBB);
1256     BB->addSuccessor(sinkMBB);
1257
1258     //  copy0MBB:
1259     //   %FalseValue = ...
1260     //   # fallthrough to sinkMBB
1261     BB = copy0MBB;
1262
1263     // Update machine-CFG edges
1264     BB->addSuccessor(sinkMBB);
1265
1266     //  sinkMBB:
1267     //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
1268     //  ...
1269     BB = sinkMBB;
1270     BuildMI(BB, TII->get(ARM::PHI), MI->getOperand(0).getReg())
1271       .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
1272       .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
1273
1274     delete MI;   // The pseudo instruction is gone now.
1275     return BB;
1276   }
1277   }
1278 }
1279
1280 //===----------------------------------------------------------------------===//
1281 //                           ARM Optimization Hooks
1282 //===----------------------------------------------------------------------===//
1283
1284 /// isLegalAddressingMode - Return true if the addressing mode represented
1285 /// by AM is legal for this target, for a load/store of the specified type.
1286 bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM, 
1287                                               const Type *Ty) const {
1288   if (!isLegalAddressImmediate(AM.BaseOffs, Ty))
1289     return false;
1290   
1291   // Can never fold addr of global into load/store.
1292   if (AM.BaseGV) 
1293     return false;
1294   
1295   switch (AM.Scale) {
1296   case 0:  // no scale reg, must be "r+i" or "r", or "i".
1297     break;
1298   case 1:
1299     if (Subtarget->isThumb())
1300       return false;
1301
1302   default:
1303     // FIXME: verify.
1304     switch (getValueType(Ty)) {
1305     default: return false;
1306     case MVT::i1:
1307     case MVT::i8:
1308     // TODO: i16?  i64 should be i32, no?
1309     case MVT::i32:
1310       // r + r
1311       if (AM.Scale == 2)
1312         return true;
1313       // r + r << imm
1314       if (!isPowerOf2_32(AM.Scale & ~1))
1315         return false;
1316     }
1317     break;
1318   }
1319   return true;
1320 }
1321
1322 /// isLegalAddressImmediate - Return true if the integer value can be used
1323 /// as the offset of the target addressing mode for load / store of the
1324 /// given type.
1325 bool ARMTargetLowering::isLegalAddressImmediate(int64_t V,const Type *Ty) const{
1326   if (V == 0)
1327     return true;
1328
1329   MVT::ValueType VT = getValueType(Ty);
1330   if (Subtarget->isThumb()) {
1331     if (V < 0)
1332       return false;
1333
1334     unsigned Scale = 1;
1335     switch (VT) {
1336     default: return false;
1337     case MVT::i1:
1338     case MVT::i8:
1339       // Scale == 1;
1340       break;
1341     case MVT::i16:
1342       // Scale == 2;
1343       Scale = 2;
1344       break;
1345     case MVT::i32:
1346       // Scale == 4;
1347       Scale = 4;
1348       break;
1349     }
1350
1351     if ((V & (Scale - 1)) != 0)
1352       return false;
1353     V /= Scale;
1354     return V == V & ((1LL << 5) - 1);
1355   }
1356
1357   if (V < 0)
1358     V = - V;
1359   switch (VT) {
1360   default: return false;
1361   case MVT::i1:
1362   case MVT::i8:
1363   case MVT::i32:
1364     // +- imm12
1365     return V == V & ((1LL << 12) - 1);
1366   case MVT::i16:
1367     // +- imm8
1368     return V == V & ((1LL << 8) - 1);
1369   case MVT::f32:
1370   case MVT::f64:
1371     if (!Subtarget->hasVFP2())
1372       return false;
1373     if ((V % 3) != 0)
1374       return false;
1375     V >>= 2;
1376     return V == V & ((1LL << 8) - 1);
1377   }
1378 }
1379
1380 bool ARMTargetLowering::isLegalAddressImmediate(GlobalValue *GV) const {
1381   return false;
1382 }
1383
1384 /// isLegalAddressScale - Return true if the integer value can be used as
1385 /// the scale of the target addressing mode for load / store of the given
1386 /// type.
1387 bool ARMTargetLowering::isLegalAddressScale(int64_t S, const Type *Ty) const {
1388   if (Subtarget->isThumb())
1389     return false;
1390
1391   MVT::ValueType VT = getValueType(Ty);
1392   switch (VT) {
1393   default: return false;
1394   case MVT::i1:
1395   case MVT::i8:
1396   case MVT::i32:
1397     // r + r
1398     if (S == 2)
1399       return true;
1400     // r + r << imm
1401     S &= ~1;
1402     return isPowerOf2_32(S);
1403   }
1404 }
1405
1406 /// isLegalAddressScaleAndImm - Return true if S works for IsLegalAddressScale
1407 /// and V works for isLegalAddressImmediate _and_ both can be applied
1408 /// simultaneously to the same instruction.
1409 bool ARMTargetLowering::isLegalAddressScaleAndImm(int64_t S, int64_t V, 
1410                                                const Type* Ty) const {
1411   if (V == 0)
1412     return isLegalAddressScale(S, Ty);
1413   return false;
1414 }
1415
1416 /// isLegalAddressScaleAndImm - Return true if S works for IsLegalAddressScale
1417 /// and GV works for isLegalAddressImmediate _and_ both can be applied
1418 /// simultaneously to the same instruction.
1419 bool ARMTargetLowering::isLegalAddressScaleAndImm(int64_t S, GlobalValue *GV,
1420                                                   const Type* Ty) const {
1421   return false;
1422 }
1423
1424 static bool getIndexedAddressParts(SDNode *Ptr, MVT::ValueType VT,
1425                                    bool isSEXTLoad, SDOperand &Base,
1426                                    SDOperand &Offset, bool &isInc,
1427                                    SelectionDAG &DAG) {
1428   if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
1429     return false;
1430
1431   if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
1432     // AddressingMode 3
1433     Base = Ptr->getOperand(0);
1434     if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
1435       int RHSC = (int)RHS->getValue();
1436       if (RHSC < 0 && RHSC > -256) {
1437         isInc = false;
1438         Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
1439         return true;
1440       }
1441     }
1442     isInc = (Ptr->getOpcode() == ISD::ADD);
1443     Offset = Ptr->getOperand(1);
1444     return true;
1445   } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
1446     // AddressingMode 2
1447     if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
1448       int RHSC = (int)RHS->getValue();
1449       if (RHSC < 0 && RHSC > -0x1000) {
1450         isInc = false;
1451         Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
1452         Base = Ptr->getOperand(0);
1453         return true;
1454       }
1455     }
1456
1457     if (Ptr->getOpcode() == ISD::ADD) {
1458       isInc = true;
1459       ARM_AM::ShiftOpc ShOpcVal= ARM_AM::getShiftOpcForNode(Ptr->getOperand(0));
1460       if (ShOpcVal != ARM_AM::no_shift) {
1461         Base = Ptr->getOperand(1);
1462         Offset = Ptr->getOperand(0);
1463       } else {
1464         Base = Ptr->getOperand(0);
1465         Offset = Ptr->getOperand(1);
1466       }
1467       return true;
1468     }
1469
1470     isInc = (Ptr->getOpcode() == ISD::ADD);
1471     Base = Ptr->getOperand(0);
1472     Offset = Ptr->getOperand(1);
1473     return true;
1474   }
1475
1476   // FIXME: Use FLDM / FSTM to emulate indexed FP load / store.
1477   return false;
1478 }
1479
1480 /// getPreIndexedAddressParts - returns true by value, base pointer and
1481 /// offset pointer and addressing mode by reference if the node's address
1482 /// can be legally represented as pre-indexed load / store address.
1483 bool
1484 ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDOperand &Base,
1485                                              SDOperand &Offset,
1486                                              ISD::MemIndexedMode &AM,
1487                                              SelectionDAG &DAG) {
1488   if (Subtarget->isThumb())
1489     return false;
1490
1491   MVT::ValueType VT;
1492   SDOperand Ptr;
1493   bool isSEXTLoad = false;
1494   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1495     Ptr = LD->getBasePtr();
1496     VT  = LD->getLoadedVT();
1497     isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
1498   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
1499     Ptr = ST->getBasePtr();
1500     VT  = ST->getStoredVT();
1501   } else
1502     return false;
1503
1504   bool isInc;
1505   bool isLegal = getIndexedAddressParts(Ptr.Val, VT, isSEXTLoad, Base, Offset,
1506                                         isInc, DAG);
1507   if (isLegal) {
1508     AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
1509     return true;
1510   }
1511   return false;
1512 }
1513
1514 /// getPostIndexedAddressParts - returns true by value, base pointer and
1515 /// offset pointer and addressing mode by reference if this node can be
1516 /// combined with a load / store to form a post-indexed load / store.
1517 bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
1518                                                    SDOperand &Base,
1519                                                    SDOperand &Offset,
1520                                                    ISD::MemIndexedMode &AM,
1521                                                    SelectionDAG &DAG) {
1522   if (Subtarget->isThumb())
1523     return false;
1524
1525   MVT::ValueType VT;
1526   SDOperand Ptr;
1527   bool isSEXTLoad = false;
1528   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1529     VT  = LD->getLoadedVT();
1530     isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
1531   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
1532     VT  = ST->getStoredVT();
1533   } else
1534     return false;
1535
1536   bool isInc;
1537   bool isLegal = getIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
1538                                         isInc, DAG);
1539   if (isLegal) {
1540     AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
1541     return true;
1542   }
1543   return false;
1544 }
1545
1546 void ARMTargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op,
1547                                                        uint64_t Mask,
1548                                                        uint64_t &KnownZero, 
1549                                                        uint64_t &KnownOne,
1550                                                        unsigned Depth) const {
1551   KnownZero = 0;
1552   KnownOne = 0;
1553   switch (Op.getOpcode()) {
1554   default: break;
1555   case ARMISD::CMOV: {
1556     // Bits are known zero/one if known on the LHS and RHS.
1557     ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1558     if (KnownZero == 0 && KnownOne == 0) return;
1559
1560     uint64_t KnownZeroRHS, KnownOneRHS;
1561     ComputeMaskedBits(Op.getOperand(1), Mask,
1562                       KnownZeroRHS, KnownOneRHS, Depth+1);
1563     KnownZero &= KnownZeroRHS;
1564     KnownOne  &= KnownOneRHS;
1565     return;
1566   }
1567   }
1568 }
1569
1570 //===----------------------------------------------------------------------===//
1571 //                           ARM Inline Assembly Support
1572 //===----------------------------------------------------------------------===//
1573
1574 /// getConstraintType - Given a constraint letter, return the type of
1575 /// constraint it is for this target.
1576 ARMTargetLowering::ConstraintType
1577 ARMTargetLowering::getConstraintType(const std::string &Constraint) const {
1578   if (Constraint.size() == 1) {
1579     switch (Constraint[0]) {
1580     default:  break;
1581     case 'l': return C_RegisterClass;
1582     }
1583   }
1584   return TargetLowering::getConstraintType(Constraint);
1585 }
1586
1587 std::pair<unsigned, const TargetRegisterClass*> 
1588 ARMTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
1589                                                 MVT::ValueType VT) const {
1590   if (Constraint.size() == 1) {
1591     // GCC RS6000 Constraint Letters
1592     switch (Constraint[0]) {
1593       case 'l':
1594       // FIXME: in thumb mode, 'l' is only low-regs.
1595       // FALL THROUGH.
1596       case 'r':
1597         return std::make_pair(0U, ARM::GPRRegisterClass);
1598         break;
1599     }
1600   }
1601   return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1602 }
1603
1604 std::vector<unsigned> ARMTargetLowering::
1605 getRegClassForInlineAsmConstraint(const std::string &Constraint,
1606                                   MVT::ValueType VT) const {
1607   if (Constraint.size() != 1)
1608     return std::vector<unsigned>();
1609
1610   switch (Constraint[0]) {      // GCC ARM Constraint Letters
1611   default: break;
1612   case 'l':
1613   case 'r':
1614     return make_vector<unsigned>(ARM::R0, ARM::R1, ARM::R2, ARM::R3,
1615                                  ARM::R4, ARM::R5, ARM::R6, ARM::R7,
1616                                  ARM::R8, ARM::R9, ARM::R10, ARM::R11,
1617                                  ARM::R12, ARM::LR, 0);
1618   }
1619
1620   return std::vector<unsigned>();
1621 }