blob: fd2550229e321b5e2254058a23e8b93ba016be8f [file] [log] [blame]
Evan Chenga8e29892007-01-19 07:51:42 +00001//===-- 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"
Evan Cheng27707472007-03-16 08:43:56 +000025#include "llvm/Instruction.h"
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +000026#include "llvm/Intrinsics.h"
Evan Chenga8e29892007-01-19 07:51:42 +000027#include "llvm/CodeGen/MachineBasicBlock.h"
28#include "llvm/CodeGen/MachineFrameInfo.h"
29#include "llvm/CodeGen/MachineFunction.h"
30#include "llvm/CodeGen/MachineInstrBuilder.h"
31#include "llvm/CodeGen/SelectionDAG.h"
32#include "llvm/CodeGen/SSARegMap.h"
Evan Chengb6ab2542007-01-31 08:40:13 +000033#include "llvm/Target/TargetOptions.h"
Evan Chenga8e29892007-01-19 07:51:42 +000034#include "llvm/ADT/VectorExtras.h"
Evan Chengb01fad62007-03-12 23:30:29 +000035#include "llvm/Support/MathExtras.h"
Evan Chenga8e29892007-01-19 07:51:42 +000036using namespace llvm;
37
38ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
39 : TargetLowering(TM), ARMPCLabelIndex(0) {
40 Subtarget = &TM.getSubtarget<ARMSubtarget>();
41
Evan Chengb1df8f22007-04-27 08:15:43 +000042 if (Subtarget->isTargetDarwin()) {
43 // Don't have these.
44 setLibcallName(RTLIB::UINTTOFP_I64_F32, NULL);
45 setLibcallName(RTLIB::UINTTOFP_I64_F64, NULL);
Evan Chenga8e29892007-01-19 07:51:42 +000046
Evan Chengb1df8f22007-04-27 08:15:43 +000047 // Uses VFP for Thumb libfuncs if available.
48 if (Subtarget->isThumb() && Subtarget->hasVFP2()) {
49 // Single-precision floating-point arithmetic.
50 setLibcallName(RTLIB::ADD_F32, "__addsf3vfp");
51 setLibcallName(RTLIB::SUB_F32, "__subsf3vfp");
52 setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp");
53 setLibcallName(RTLIB::DIV_F32, "__divsf3vfp");
Evan Chenga8e29892007-01-19 07:51:42 +000054
Evan Chengb1df8f22007-04-27 08:15:43 +000055 // Double-precision floating-point arithmetic.
56 setLibcallName(RTLIB::ADD_F64, "__adddf3vfp");
57 setLibcallName(RTLIB::SUB_F64, "__subdf3vfp");
58 setLibcallName(RTLIB::MUL_F64, "__muldf3vfp");
59 setLibcallName(RTLIB::DIV_F64, "__divdf3vfp");
Evan Cheng193f8502007-01-31 09:30:58 +000060
Evan Chengb1df8f22007-04-27 08:15:43 +000061 // Single-precision comparisons.
62 setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp");
63 setLibcallName(RTLIB::UNE_F32, "__nesf2vfp");
64 setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp");
65 setLibcallName(RTLIB::OLE_F32, "__lesf2vfp");
66 setLibcallName(RTLIB::OGE_F32, "__gesf2vfp");
67 setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp");
68 setLibcallName(RTLIB::UO_F32, "__unordsf2vfp");
69 setLibcallName(RTLIB::O_F32, "__unordsf2vfp");
Evan Chenga8e29892007-01-19 07:51:42 +000070
Evan Chengb1df8f22007-04-27 08:15:43 +000071 setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
72 setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE);
73 setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
74 setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
75 setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
76 setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
77 setCmpLibcallCC(RTLIB::UO_F32, ISD::SETNE);
78 setCmpLibcallCC(RTLIB::O_F32, ISD::SETEQ);
Evan Cheng193f8502007-01-31 09:30:58 +000079
Evan Chengb1df8f22007-04-27 08:15:43 +000080 // Double-precision comparisons.
81 setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp");
82 setLibcallName(RTLIB::UNE_F64, "__nedf2vfp");
83 setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp");
84 setLibcallName(RTLIB::OLE_F64, "__ledf2vfp");
85 setLibcallName(RTLIB::OGE_F64, "__gedf2vfp");
86 setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp");
87 setLibcallName(RTLIB::UO_F64, "__unorddf2vfp");
88 setLibcallName(RTLIB::O_F64, "__unorddf2vfp");
Evan Chenga8e29892007-01-19 07:51:42 +000089
Evan Chengb1df8f22007-04-27 08:15:43 +000090 setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
91 setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE);
92 setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
93 setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
94 setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
95 setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
96 setCmpLibcallCC(RTLIB::UO_F64, ISD::SETNE);
97 setCmpLibcallCC(RTLIB::O_F64, ISD::SETEQ);
Evan Chenga8e29892007-01-19 07:51:42 +000098
Evan Chengb1df8f22007-04-27 08:15:43 +000099 // Floating-point to integer conversions.
100 // i64 conversions are done via library routines even when generating VFP
101 // instructions, so use the same ones.
102 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp");
103 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp");
104 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp");
105 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp");
Evan Chenga8e29892007-01-19 07:51:42 +0000106
Evan Chengb1df8f22007-04-27 08:15:43 +0000107 // Conversions between floating types.
108 setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp");
109 setLibcallName(RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp");
110
111 // Integer to floating-point conversions.
112 // i64 conversions are done via library routines even when generating VFP
113 // instructions, so use the same ones.
114 // FIXME: There appears to be some naming inconsistency in ARM libgcc: e.g.
115 // __floatunsidf vs. __floatunssidfvfp.
116 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp");
117 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp");
118 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp");
119 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp");
120 }
Evan Chenga8e29892007-01-19 07:51:42 +0000121 }
122
123 addRegisterClass(MVT::i32, ARM::GPRRegisterClass);
Evan Chengb6ab2542007-01-31 08:40:13 +0000124 if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb()) {
Evan Chenga8e29892007-01-19 07:51:42 +0000125 addRegisterClass(MVT::f32, ARM::SPRRegisterClass);
126 addRegisterClass(MVT::f64, ARM::DPRRegisterClass);
127 }
Evan Cheng9f8cbd12007-05-18 00:19:34 +0000128 computeRegisterProperties();
Evan Chenga8e29892007-01-19 07:51:42 +0000129
130 // ARM does not have f32 extending load.
131 setLoadXAction(ISD::EXTLOAD, MVT::f32, Expand);
132
133 // ARM supports all 4 flavors of integer indexed load / store.
134 for (unsigned im = (unsigned)ISD::PRE_INC;
135 im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
136 setIndexedLoadAction(im, MVT::i1, Legal);
137 setIndexedLoadAction(im, MVT::i8, Legal);
138 setIndexedLoadAction(im, MVT::i16, Legal);
139 setIndexedLoadAction(im, MVT::i32, Legal);
140 setIndexedStoreAction(im, MVT::i1, Legal);
141 setIndexedStoreAction(im, MVT::i8, Legal);
142 setIndexedStoreAction(im, MVT::i16, Legal);
143 setIndexedStoreAction(im, MVT::i32, Legal);
144 }
145
146 // i64 operation support.
147 if (Subtarget->isThumb()) {
148 setOperationAction(ISD::MUL, MVT::i64, Expand);
149 setOperationAction(ISD::MULHU, MVT::i32, Expand);
150 setOperationAction(ISD::MULHS, MVT::i32, Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000151 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
152 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000153 } else {
Dan Gohman525178c2007-10-08 18:33:35 +0000154 setOperationAction(ISD::MUL, MVT::i64, Expand);
155 setOperationAction(ISD::MULHU, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000156 if (!Subtarget->hasV6Ops())
Dan Gohman525178c2007-10-08 18:33:35 +0000157 setOperationAction(ISD::MULHS, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000158 }
159 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
160 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
161 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
162 setOperationAction(ISD::SRL, MVT::i64, Custom);
163 setOperationAction(ISD::SRA, MVT::i64, Custom);
164
165 // ARM does not have ROTL.
166 setOperationAction(ISD::ROTL, MVT::i32, Expand);
167 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
168 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
Evan Chengb0636152007-02-01 23:34:03 +0000169 if (!Subtarget->hasV5TOps() || Subtarget->isThumb())
Evan Chenga8e29892007-01-19 07:51:42 +0000170 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
171
Lauro Ramos Venancio368f20f2007-03-16 22:54:16 +0000172 // Only ARMv6 has BSWAP.
173 if (!Subtarget->hasV6Ops())
Chris Lattner1719e132007-03-20 02:25:53 +0000174 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Lauro Ramos Venancio368f20f2007-03-16 22:54:16 +0000175
Evan Chenga8e29892007-01-19 07:51:42 +0000176 // These are expanded into libcalls.
177 setOperationAction(ISD::SDIV, MVT::i32, Expand);
178 setOperationAction(ISD::UDIV, MVT::i32, Expand);
179 setOperationAction(ISD::SREM, MVT::i32, Expand);
180 setOperationAction(ISD::UREM, MVT::i32, Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000181 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
182 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000183
184 // Support label based line numbers.
185 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
186 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000187
188 setOperationAction(ISD::RET, MVT::Other, Custom);
189 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
190 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000191 setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000192 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000193
194 // Expand mem operations genericly.
195 setOperationAction(ISD::MEMSET , MVT::Other, Expand);
Dale Johannesen8dd86c12007-05-17 21:31:21 +0000196 setOperationAction(ISD::MEMCPY , MVT::Other, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000197 setOperationAction(ISD::MEMMOVE , MVT::Other, Expand);
Duncan Sands36397f52007-07-27 12:58:54 +0000198
Evan Chenga8e29892007-01-19 07:51:42 +0000199 // Use the default implementation.
200 setOperationAction(ISD::VASTART , MVT::Other, Expand);
201 setOperationAction(ISD::VAARG , MVT::Other, Expand);
202 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
203 setOperationAction(ISD::VAEND , MVT::Other, Expand);
204 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
205 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
206 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Expand);
207
208 if (!Subtarget->hasV6Ops()) {
209 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
210 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
211 }
212 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
213
Evan Chengb6ab2542007-01-31 08:40:13 +0000214 if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb())
Evan Chenga8e29892007-01-19 07:51:42 +0000215 // Turn f64->i64 into FMRRD iff target supports vfp2.
216 setOperationAction(ISD::BIT_CONVERT, MVT::i64, Custom);
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +0000217
218 // We want to custom lower some of our intrinsics.
219 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
220
Evan Chenga8e29892007-01-19 07:51:42 +0000221 setOperationAction(ISD::SETCC , MVT::i32, Expand);
222 setOperationAction(ISD::SETCC , MVT::f32, Expand);
223 setOperationAction(ISD::SETCC , MVT::f64, Expand);
224 setOperationAction(ISD::SELECT , MVT::i32, Expand);
225 setOperationAction(ISD::SELECT , MVT::f32, Expand);
226 setOperationAction(ISD::SELECT , MVT::f64, Expand);
227 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
228 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
229 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
230
231 setOperationAction(ISD::BRCOND , MVT::Other, Expand);
232 setOperationAction(ISD::BR_CC , MVT::i32, Custom);
233 setOperationAction(ISD::BR_CC , MVT::f32, Custom);
234 setOperationAction(ISD::BR_CC , MVT::f64, Custom);
235 setOperationAction(ISD::BR_JT , MVT::Other, Custom);
236
237 setOperationAction(ISD::VASTART, MVT::Other, Custom);
238 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
239 setOperationAction(ISD::VAEND, MVT::Other, Expand);
240 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
241 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
242
243 // FP Constants can't be immediates.
244 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
245 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
246
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000247 // We don't support sin/cos/fmod/copysign/pow
Evan Chenga8e29892007-01-19 07:51:42 +0000248 setOperationAction(ISD::FSIN , MVT::f64, Expand);
249 setOperationAction(ISD::FSIN , MVT::f32, Expand);
250 setOperationAction(ISD::FCOS , MVT::f32, Expand);
251 setOperationAction(ISD::FCOS , MVT::f64, Expand);
252 setOperationAction(ISD::FREM , MVT::f64, Expand);
253 setOperationAction(ISD::FREM , MVT::f32, Expand);
254 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
255 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000256 setOperationAction(ISD::FPOW , MVT::f64, Expand);
257 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000258
259 // int <-> fp are custom expanded into bit_convert + ARMISD ops.
260 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
261 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
262 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
263 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
264
265 setStackPointerRegisterToSaveRestore(ARM::SP);
Evan Chenga8e29892007-01-19 07:51:42 +0000266 setSchedulingPreference(SchedulingForRegPressure);
Evan Cheng9f8cbd12007-05-18 00:19:34 +0000267 setIfCvtBlockSizeLimit(Subtarget->isThumb() ? 0 : 10);
Evan Cheng97e604e2007-06-19 23:55:02 +0000268 setIfCvtDupBlockSizeLimit(Subtarget->isThumb() ? 0 : 2);
Dale Johannesen8dd86c12007-05-17 21:31:21 +0000269
270 maxStoresPerMemcpy = 1; //// temporary - rewrite interface to use type
Evan Chenga8e29892007-01-19 07:51:42 +0000271}
272
273
274const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
275 switch (Opcode) {
276 default: return 0;
277 case ARMISD::Wrapper: return "ARMISD::Wrapper";
Evan Chenga8e29892007-01-19 07:51:42 +0000278 case ARMISD::WrapperJT: return "ARMISD::WrapperJT";
279 case ARMISD::CALL: return "ARMISD::CALL";
Evan Cheng277f0742007-06-19 21:05:09 +0000280 case ARMISD::CALL_PRED: return "ARMISD::CALL_PRED";
Evan Chenga8e29892007-01-19 07:51:42 +0000281 case ARMISD::CALL_NOLINK: return "ARMISD::CALL_NOLINK";
282 case ARMISD::tCALL: return "ARMISD::tCALL";
283 case ARMISD::BRCOND: return "ARMISD::BRCOND";
284 case ARMISD::BR_JT: return "ARMISD::BR_JT";
285 case ARMISD::RET_FLAG: return "ARMISD::RET_FLAG";
286 case ARMISD::PIC_ADD: return "ARMISD::PIC_ADD";
287 case ARMISD::CMP: return "ARMISD::CMP";
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000288 case ARMISD::CMPNZ: return "ARMISD::CMPNZ";
Evan Chenga8e29892007-01-19 07:51:42 +0000289 case ARMISD::CMPFP: return "ARMISD::CMPFP";
290 case ARMISD::CMPFPw0: return "ARMISD::CMPFPw0";
291 case ARMISD::FMSTAT: return "ARMISD::FMSTAT";
292 case ARMISD::CMOV: return "ARMISD::CMOV";
293 case ARMISD::CNEG: return "ARMISD::CNEG";
294
295 case ARMISD::FTOSI: return "ARMISD::FTOSI";
296 case ARMISD::FTOUI: return "ARMISD::FTOUI";
297 case ARMISD::SITOF: return "ARMISD::SITOF";
298 case ARMISD::UITOF: return "ARMISD::UITOF";
Evan Chenga8e29892007-01-19 07:51:42 +0000299
300 case ARMISD::SRL_FLAG: return "ARMISD::SRL_FLAG";
301 case ARMISD::SRA_FLAG: return "ARMISD::SRA_FLAG";
302 case ARMISD::RRX: return "ARMISD::RRX";
303
304 case ARMISD::FMRRD: return "ARMISD::FMRRD";
305 case ARMISD::FMDRR: return "ARMISD::FMDRR";
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000306
307 case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
Evan Chenga8e29892007-01-19 07:51:42 +0000308 }
309}
310
311//===----------------------------------------------------------------------===//
312// Lowering Code
313//===----------------------------------------------------------------------===//
314
315
316/// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
317static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
318 switch (CC) {
319 default: assert(0 && "Unknown condition code!");
320 case ISD::SETNE: return ARMCC::NE;
321 case ISD::SETEQ: return ARMCC::EQ;
322 case ISD::SETGT: return ARMCC::GT;
323 case ISD::SETGE: return ARMCC::GE;
324 case ISD::SETLT: return ARMCC::LT;
325 case ISD::SETLE: return ARMCC::LE;
326 case ISD::SETUGT: return ARMCC::HI;
327 case ISD::SETUGE: return ARMCC::HS;
328 case ISD::SETULT: return ARMCC::LO;
329 case ISD::SETULE: return ARMCC::LS;
330 }
331}
332
333/// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC. It
334/// returns true if the operands should be inverted to form the proper
335/// comparison.
336static bool FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
337 ARMCC::CondCodes &CondCode2) {
338 bool Invert = false;
339 CondCode2 = ARMCC::AL;
340 switch (CC) {
341 default: assert(0 && "Unknown FP condition!");
342 case ISD::SETEQ:
343 case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
344 case ISD::SETGT:
345 case ISD::SETOGT: CondCode = ARMCC::GT; break;
346 case ISD::SETGE:
347 case ISD::SETOGE: CondCode = ARMCC::GE; break;
348 case ISD::SETOLT: CondCode = ARMCC::MI; break;
349 case ISD::SETOLE: CondCode = ARMCC::GT; Invert = true; break;
350 case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
351 case ISD::SETO: CondCode = ARMCC::VC; break;
352 case ISD::SETUO: CondCode = ARMCC::VS; break;
353 case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
354 case ISD::SETUGT: CondCode = ARMCC::HI; break;
355 case ISD::SETUGE: CondCode = ARMCC::PL; break;
356 case ISD::SETLT:
357 case ISD::SETULT: CondCode = ARMCC::LT; break;
358 case ISD::SETLE:
359 case ISD::SETULE: CondCode = ARMCC::LE; break;
360 case ISD::SETNE:
361 case ISD::SETUNE: CondCode = ARMCC::NE; break;
362 }
363 return Invert;
364}
365
366static void
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000367HowToPassArgument(MVT::ValueType ObjectVT, unsigned NumGPRs,
368 unsigned StackOffset, unsigned &NeededGPRs,
369 unsigned &NeededStackSize, unsigned &GPRPad,
370 unsigned &StackPad, unsigned Flags) {
371 NeededStackSize = 0;
372 NeededGPRs = 0;
373 StackPad = 0;
374 GPRPad = 0;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000375 unsigned align = (Flags >> ISD::ParamFlags::OrigAlignmentOffs);
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000376 GPRPad = NumGPRs % ((align + 3)/4);
377 StackPad = StackOffset % align;
378 unsigned firstGPR = NumGPRs + GPRPad;
Evan Chenga8e29892007-01-19 07:51:42 +0000379 switch (ObjectVT) {
380 default: assert(0 && "Unhandled argument type!");
381 case MVT::i32:
382 case MVT::f32:
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000383 if (firstGPR < 4)
384 NeededGPRs = 1;
Evan Chenga8e29892007-01-19 07:51:42 +0000385 else
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000386 NeededStackSize = 4;
Evan Chenga8e29892007-01-19 07:51:42 +0000387 break;
388 case MVT::i64:
389 case MVT::f64:
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000390 if (firstGPR < 3)
391 NeededGPRs = 2;
392 else if (firstGPR == 3) {
393 NeededGPRs = 1;
394 NeededStackSize = 4;
Evan Chenga8e29892007-01-19 07:51:42 +0000395 } else
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000396 NeededStackSize = 8;
Evan Chenga8e29892007-01-19 07:51:42 +0000397 }
398}
399
Evan Chengfc403422007-02-03 08:53:01 +0000400/// LowerCALL - Lowering a ISD::CALL node into a callseq_start <-
401/// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
402/// nodes.
Evan Chenga8e29892007-01-19 07:51:42 +0000403SDOperand ARMTargetLowering::LowerCALL(SDOperand Op, SelectionDAG &DAG) {
404 MVT::ValueType RetVT= Op.Val->getValueType(0);
405 SDOperand Chain = Op.getOperand(0);
406 unsigned CallConv = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
407 assert((CallConv == CallingConv::C ||
Evan Chenga8e29892007-01-19 07:51:42 +0000408 CallConv == CallingConv::Fast) && "unknown calling convention");
409 SDOperand Callee = Op.getOperand(4);
410 unsigned NumOps = (Op.getNumOperands() - 5) / 2;
411 unsigned ArgOffset = 0; // Frame mechanisms handle retaddr slot
412 unsigned NumGPRs = 0; // GPRs used for parameter passing.
413
414 // Count how many bytes are to be pushed on the stack.
415 unsigned NumBytes = 0;
416
417 // Add up all the space actually used.
418 for (unsigned i = 0; i < NumOps; ++i) {
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000419 unsigned ObjSize;
420 unsigned ObjGPRs;
421 unsigned StackPad;
422 unsigned GPRPad;
Evan Chenga8e29892007-01-19 07:51:42 +0000423 MVT::ValueType ObjectVT = Op.getOperand(5+2*i).getValueType();
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000424 unsigned Flags = Op.getConstantOperandVal(5+2*i+1);
425 HowToPassArgument(ObjectVT, NumGPRs, NumBytes, ObjGPRs, ObjSize,
426 GPRPad, StackPad, Flags);
427 NumBytes += ObjSize + StackPad;
428 NumGPRs += ObjGPRs + GPRPad;
Evan Chenga8e29892007-01-19 07:51:42 +0000429 }
430
431 // Adjust the stack pointer for the new arguments...
432 // These operations are automatically eliminated by the prolog/epilog pass
433 Chain = DAG.getCALLSEQ_START(Chain,
434 DAG.getConstant(NumBytes, MVT::i32));
435
436 SDOperand StackPtr = DAG.getRegister(ARM::SP, MVT::i32);
437
438 static const unsigned GPRArgRegs[] = {
439 ARM::R0, ARM::R1, ARM::R2, ARM::R3
440 };
441
442 NumGPRs = 0;
443 std::vector<std::pair<unsigned, SDOperand> > RegsToPass;
444 std::vector<SDOperand> MemOpChains;
445 for (unsigned i = 0; i != NumOps; ++i) {
446 SDOperand Arg = Op.getOperand(5+2*i);
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000447 unsigned Flags = Op.getConstantOperandVal(5+2*i+1);
Evan Chenga8e29892007-01-19 07:51:42 +0000448 MVT::ValueType ArgVT = Arg.getValueType();
449
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000450 unsigned ObjSize;
451 unsigned ObjGPRs;
452 unsigned GPRPad;
453 unsigned StackPad;
454 HowToPassArgument(ArgVT, NumGPRs, ArgOffset, ObjGPRs,
455 ObjSize, GPRPad, StackPad, Flags);
456 NumGPRs += GPRPad;
457 ArgOffset += StackPad;
Evan Chenga8e29892007-01-19 07:51:42 +0000458 if (ObjGPRs > 0) {
459 switch (ArgVT) {
460 default: assert(0 && "Unexpected ValueType for argument!");
461 case MVT::i32:
462 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs], Arg));
463 break;
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000464 case MVT::f32:
Evan Chenga8e29892007-01-19 07:51:42 +0000465 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs],
466 DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Arg)));
467 break;
468 case MVT::i64: {
469 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Arg,
470 DAG.getConstant(0, getPointerTy()));
471 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Arg,
472 DAG.getConstant(1, getPointerTy()));
473 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs], Lo));
474 if (ObjGPRs == 2)
475 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs+1], Hi));
476 else {
477 SDOperand PtrOff= DAG.getConstant(ArgOffset, StackPtr.getValueType());
478 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
479 MemOpChains.push_back(DAG.getStore(Chain, Hi, PtrOff, NULL, 0));
480 }
481 break;
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000482 }
Evan Chenga8e29892007-01-19 07:51:42 +0000483 case MVT::f64: {
484 SDOperand Cvt = DAG.getNode(ARMISD::FMRRD,
485 DAG.getVTList(MVT::i32, MVT::i32),
486 &Arg, 1);
487 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs], Cvt));
488 if (ObjGPRs == 2)
489 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs+1],
490 Cvt.getValue(1)));
491 else {
492 SDOperand PtrOff= DAG.getConstant(ArgOffset, StackPtr.getValueType());
493 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
494 MemOpChains.push_back(DAG.getStore(Chain, Cvt.getValue(1), PtrOff,
495 NULL, 0));
496 }
497 break;
498 }
499 }
500 } else {
501 assert(ObjSize != 0);
502 SDOperand PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
503 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
504 MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
505 }
506
507 NumGPRs += ObjGPRs;
508 ArgOffset += ObjSize;
509 }
510
511 if (!MemOpChains.empty())
512 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
513 &MemOpChains[0], MemOpChains.size());
514
515 // Build a sequence of copy-to-reg nodes chained together with token chain
516 // and flag operands which copy the outgoing args into the appropriate regs.
517 SDOperand InFlag;
518 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
519 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
520 InFlag);
521 InFlag = Chain.getValue(1);
522 }
523
524 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
525 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
526 // node so that legalize doesn't hack it.
527 bool isDirect = false;
528 bool isARMFunc = false;
Evan Cheng277f0742007-06-19 21:05:09 +0000529 bool isLocalARMFunc = false;
Evan Chenga8e29892007-01-19 07:51:42 +0000530 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
531 GlobalValue *GV = G->getGlobal();
Evan Chenga8e29892007-01-19 07:51:42 +0000532 isDirect = true;
Reid Spencer5cbf9852007-01-30 20:08:39 +0000533 bool isExt = (GV->isDeclaration() || GV->hasWeakLinkage() ||
Evan Chenga8e29892007-01-19 07:51:42 +0000534 GV->hasLinkOnceLinkage());
Evan Cheng970a4192007-01-19 19:28:01 +0000535 bool isStub = (isExt && Subtarget->isTargetDarwin()) &&
Evan Chenga8e29892007-01-19 07:51:42 +0000536 getTargetMachine().getRelocationModel() != Reloc::Static;
537 isARMFunc = !Subtarget->isThumb() || isStub;
Evan Cheng277f0742007-06-19 21:05:09 +0000538 // ARM call to a local ARM function is predicable.
539 isLocalARMFunc = !Subtarget->isThumb() && !isExt;
Evan Chengc60e76d2007-01-30 20:37:08 +0000540 // tBX takes a register source operand.
541 if (isARMFunc && Subtarget->isThumb() && !Subtarget->hasV5TOps()) {
542 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, ARMPCLabelIndex,
543 ARMCP::CPStub, 4);
544 SDOperand CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 2);
545 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
546 Callee = DAG.getLoad(getPointerTy(), DAG.getEntryNode(), CPAddr, NULL, 0);
547 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
548 Callee = DAG.getNode(ARMISD::PIC_ADD, getPointerTy(), Callee, PICLabel);
549 } else
550 Callee = DAG.getTargetGlobalAddress(GV, getPointerTy());
Evan Chenga8e29892007-01-19 07:51:42 +0000551 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Evan Chenga8e29892007-01-19 07:51:42 +0000552 isDirect = true;
Evan Cheng970a4192007-01-19 19:28:01 +0000553 bool isStub = Subtarget->isTargetDarwin() &&
Evan Chenga8e29892007-01-19 07:51:42 +0000554 getTargetMachine().getRelocationModel() != Reloc::Static;
555 isARMFunc = !Subtarget->isThumb() || isStub;
Evan Chengc60e76d2007-01-30 20:37:08 +0000556 // tBX takes a register source operand.
557 const char *Sym = S->getSymbol();
558 if (isARMFunc && Subtarget->isThumb() && !Subtarget->hasV5TOps()) {
559 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(Sym, ARMPCLabelIndex,
560 ARMCP::CPStub, 4);
561 SDOperand CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 2);
562 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
563 Callee = DAG.getLoad(getPointerTy(), DAG.getEntryNode(), CPAddr, NULL, 0);
564 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
565 Callee = DAG.getNode(ARMISD::PIC_ADD, getPointerTy(), Callee, PICLabel);
566 } else
567 Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Evan Chenga8e29892007-01-19 07:51:42 +0000568 }
569
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +0000570 // FIXME: handle tail calls differently.
571 unsigned CallOpc;
572 if (Subtarget->isThumb()) {
573 if (!Subtarget->hasV5TOps() && (!isDirect || isARMFunc))
574 CallOpc = ARMISD::CALL_NOLINK;
575 else
576 CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
577 } else {
578 CallOpc = (isDirect || Subtarget->hasV5TOps())
Evan Cheng277f0742007-06-19 21:05:09 +0000579 ? (isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL)
580 : ARMISD::CALL_NOLINK;
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +0000581 }
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000582 if (CallOpc == ARMISD::CALL_NOLINK && !Subtarget->isThumb()) {
583 // implicit def LR - LR mustn't be allocated as GRP:$dst of CALL_NOLINK
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +0000584 Chain = DAG.getCopyToReg(Chain, ARM::LR,
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000585 DAG.getNode(ISD::UNDEF, MVT::i32), InFlag);
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +0000586 InFlag = Chain.getValue(1);
587 }
588
Evan Chenga8e29892007-01-19 07:51:42 +0000589 std::vector<MVT::ValueType> NodeTys;
590 NodeTys.push_back(MVT::Other); // Returns a chain
591 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
592
593 std::vector<SDOperand> Ops;
594 Ops.push_back(Chain);
595 Ops.push_back(Callee);
596
597 // Add argument registers to the end of the list so that they are known live
598 // into the call.
599 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
600 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
601 RegsToPass[i].second.getValueType()));
602
Evan Chenga8e29892007-01-19 07:51:42 +0000603 if (InFlag.Val)
604 Ops.push_back(InFlag);
605 Chain = DAG.getNode(CallOpc, NodeTys, &Ops[0], Ops.size());
606 InFlag = Chain.getValue(1);
607
608 SDOperand CSOps[] = { Chain, DAG.getConstant(NumBytes, MVT::i32), InFlag };
609 Chain = DAG.getNode(ISD::CALLSEQ_END,
610 DAG.getNodeValueTypes(MVT::Other, MVT::Flag),
611 ((RetVT != MVT::Other) ? 2 : 1), CSOps, 3);
612 if (RetVT != MVT::Other)
613 InFlag = Chain.getValue(1);
614
615 std::vector<SDOperand> ResultVals;
616 NodeTys.clear();
617
618 // If the call has results, copy the values out of the ret val registers.
619 switch (RetVT) {
620 default: assert(0 && "Unexpected ret value!");
621 case MVT::Other:
622 break;
623 case MVT::i32:
624 Chain = DAG.getCopyFromReg(Chain, ARM::R0, MVT::i32, InFlag).getValue(1);
625 ResultVals.push_back(Chain.getValue(0));
626 if (Op.Val->getValueType(1) == MVT::i32) {
627 // Returns a i64 value.
628 Chain = DAG.getCopyFromReg(Chain, ARM::R1, MVT::i32,
629 Chain.getValue(2)).getValue(1);
630 ResultVals.push_back(Chain.getValue(0));
631 NodeTys.push_back(MVT::i32);
632 }
633 NodeTys.push_back(MVT::i32);
634 break;
635 case MVT::f32:
636 Chain = DAG.getCopyFromReg(Chain, ARM::R0, MVT::i32, InFlag).getValue(1);
637 ResultVals.push_back(DAG.getNode(ISD::BIT_CONVERT, MVT::f32,
638 Chain.getValue(0)));
639 NodeTys.push_back(MVT::f32);
640 break;
641 case MVT::f64: {
642 SDOperand Lo = DAG.getCopyFromReg(Chain, ARM::R0, MVT::i32, InFlag);
643 SDOperand Hi = DAG.getCopyFromReg(Lo, ARM::R1, MVT::i32, Lo.getValue(2));
644 ResultVals.push_back(DAG.getNode(ARMISD::FMDRR, MVT::f64, Lo, Hi));
645 NodeTys.push_back(MVT::f64);
646 break;
647 }
648 }
649
650 NodeTys.push_back(MVT::Other);
651
652 if (ResultVals.empty())
653 return Chain;
654
655 ResultVals.push_back(Chain);
656 SDOperand Res = DAG.getNode(ISD::MERGE_VALUES, NodeTys, &ResultVals[0],
657 ResultVals.size());
658 return Res.getValue(Op.ResNo);
659}
660
661static SDOperand LowerRET(SDOperand Op, SelectionDAG &DAG) {
662 SDOperand Copy;
663 SDOperand Chain = Op.getOperand(0);
664 switch(Op.getNumOperands()) {
665 default:
666 assert(0 && "Do not know how to return this many arguments!");
667 abort();
668 case 1: {
669 SDOperand LR = DAG.getRegister(ARM::LR, MVT::i32);
670 return DAG.getNode(ARMISD::RET_FLAG, MVT::Other, Chain);
671 }
672 case 3:
673 Op = Op.getOperand(1);
674 if (Op.getValueType() == MVT::f32) {
675 Op = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
676 } else if (Op.getValueType() == MVT::f64) {
Chris Lattner65a33232007-10-18 06:17:07 +0000677 // Legalize ret f64 -> ret 2 x i32. We always have fmrrd if f64 is
678 // available.
679 Op = DAG.getNode(ARMISD::FMRRD, DAG.getVTList(MVT::i32, MVT::i32), &Op,1);
680 SDOperand Sign = DAG.getConstant(0, MVT::i32);
681 return DAG.getNode(ISD::RET, MVT::Other, Chain, Op, Sign,
682 Op.getValue(1), Sign);
Evan Chenga8e29892007-01-19 07:51:42 +0000683 }
684 Copy = DAG.getCopyToReg(Chain, ARM::R0, Op, SDOperand());
685 if (DAG.getMachineFunction().liveout_empty())
686 DAG.getMachineFunction().addLiveOut(ARM::R0);
687 break;
688 case 5:
689 Copy = DAG.getCopyToReg(Chain, ARM::R1, Op.getOperand(3), SDOperand());
690 Copy = DAG.getCopyToReg(Copy, ARM::R0, Op.getOperand(1), Copy.getValue(1));
691 // If we haven't noted the R0+R1 are live out, do so now.
692 if (DAG.getMachineFunction().liveout_empty()) {
693 DAG.getMachineFunction().addLiveOut(ARM::R0);
694 DAG.getMachineFunction().addLiveOut(ARM::R1);
695 }
696 break;
697 }
698
699 //We must use RET_FLAG instead of BRIND because BRIND doesn't have a flag
700 return DAG.getNode(ARMISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
701}
702
703// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
704// their target countpart wrapped in the ARMISD::Wrapper node. Suppose N is
705// one of the above mentioned nodes. It has to be wrapped because otherwise
706// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
707// be used to form addressing mode. These wrapped nodes will be selected
Evan Cheng9f6636f2007-03-19 07:48:02 +0000708// into MOVi.
Evan Chenga8e29892007-01-19 07:51:42 +0000709static SDOperand LowerConstantPool(SDOperand Op, SelectionDAG &DAG) {
710 MVT::ValueType PtrVT = Op.getValueType();
711 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
712 SDOperand Res;
713 if (CP->isMachineConstantPoolEntry())
714 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
715 CP->getAlignment());
716 else
717 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
718 CP->getAlignment());
719 return DAG.getNode(ARMISD::Wrapper, MVT::i32, Res);
720}
721
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000722// Lower ISD::GlobalTLSAddress using the "general dynamic" model
723SDOperand
724ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
725 SelectionDAG &DAG) {
726 MVT::ValueType PtrVT = getPointerTy();
727 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
728 ARMConstantPoolValue *CPV =
729 new ARMConstantPoolValue(GA->getGlobal(), ARMPCLabelIndex, ARMCP::CPValue,
730 PCAdj, "tlsgd", true);
731 SDOperand Argument = DAG.getTargetConstantPool(CPV, PtrVT, 2);
732 Argument = DAG.getNode(ARMISD::Wrapper, MVT::i32, Argument);
733 Argument = DAG.getLoad(PtrVT, DAG.getEntryNode(), Argument, NULL, 0);
734 SDOperand Chain = Argument.getValue(1);
735
736 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
737 Argument = DAG.getNode(ARMISD::PIC_ADD, PtrVT, Argument, PICLabel);
738
739 // call __tls_get_addr.
740 ArgListTy Args;
741 ArgListEntry Entry;
742 Entry.Node = Argument;
743 Entry.Ty = (const Type *) Type::Int32Ty;
744 Args.push_back(Entry);
745 std::pair<SDOperand, SDOperand> CallResult =
746 LowerCallTo(Chain, (const Type *) Type::Int32Ty, false, false,
747 CallingConv::C, false,
748 DAG.getExternalSymbol("__tls_get_addr", PtrVT), Args, DAG);
749 return CallResult.first;
750}
751
752// Lower ISD::GlobalTLSAddress using the "initial exec" or
753// "local exec" model.
754SDOperand
755ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
756 SelectionDAG &DAG) {
757 GlobalValue *GV = GA->getGlobal();
758 SDOperand Offset;
759 SDOperand Chain = DAG.getEntryNode();
760 MVT::ValueType PtrVT = getPointerTy();
761 // Get the Thread Pointer
762 SDOperand ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, PtrVT);
763
764 if (GV->isDeclaration()){
765 // initial exec model
766 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
767 ARMConstantPoolValue *CPV =
768 new ARMConstantPoolValue(GA->getGlobal(), ARMPCLabelIndex, ARMCP::CPValue,
769 PCAdj, "gottpoff", true);
770 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 2);
771 Offset = DAG.getNode(ARMISD::Wrapper, MVT::i32, Offset);
772 Offset = DAG.getLoad(PtrVT, Chain, Offset, NULL, 0);
773 Chain = Offset.getValue(1);
774
775 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
776 Offset = DAG.getNode(ARMISD::PIC_ADD, PtrVT, Offset, PICLabel);
777
778 Offset = DAG.getLoad(PtrVT, Chain, Offset, NULL, 0);
779 } else {
780 // local exec model
781 ARMConstantPoolValue *CPV =
782 new ARMConstantPoolValue(GV, ARMCP::CPValue, "tpoff");
783 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 2);
784 Offset = DAG.getNode(ARMISD::Wrapper, MVT::i32, Offset);
785 Offset = DAG.getLoad(PtrVT, Chain, Offset, NULL, 0);
786 }
787
788 // The address of the thread local variable is the add of the thread
789 // pointer with the offset of the variable.
790 return DAG.getNode(ISD::ADD, PtrVT, ThreadPointer, Offset);
791}
792
793SDOperand
794ARMTargetLowering::LowerGlobalTLSAddress(SDOperand Op, SelectionDAG &DAG) {
795 // TODO: implement the "local dynamic" model
796 assert(Subtarget->isTargetELF() &&
797 "TLS not implemented for non-ELF targets");
798 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
799 // If the relocation model is PIC, use the "General Dynamic" TLS Model,
800 // otherwise use the "Local Exec" TLS Model
801 if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
802 return LowerToTLSGeneralDynamicModel(GA, DAG);
803 else
804 return LowerToTLSExecModels(GA, DAG);
805}
806
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000807SDOperand ARMTargetLowering::LowerGlobalAddressELF(SDOperand Op,
808 SelectionDAG &DAG) {
809 MVT::ValueType PtrVT = getPointerTy();
810 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
811 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
812 if (RelocM == Reloc::PIC_) {
Lauro Ramos Venancio5d3d44a2007-05-14 23:20:21 +0000813 bool UseGOTOFF = GV->hasInternalLinkage() || GV->hasHiddenVisibility();
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000814 ARMConstantPoolValue *CPV =
815 new ARMConstantPoolValue(GV, ARMCP::CPValue, UseGOTOFF ? "GOTOFF":"GOT");
816 SDOperand CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 2);
817 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
818 SDOperand Result = DAG.getLoad(PtrVT, DAG.getEntryNode(), CPAddr, NULL, 0);
819 SDOperand Chain = Result.getValue(1);
820 SDOperand GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PtrVT);
821 Result = DAG.getNode(ISD::ADD, PtrVT, Result, GOT);
822 if (!UseGOTOFF)
823 Result = DAG.getLoad(PtrVT, Chain, Result, NULL, 0);
824 return Result;
825 } else {
826 SDOperand CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 2);
827 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
828 return DAG.getLoad(PtrVT, DAG.getEntryNode(), CPAddr, NULL, 0);
829 }
830}
831
Evan Chenga8e29892007-01-19 07:51:42 +0000832/// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol
Evan Cheng97c9bb52007-05-04 00:26:58 +0000833/// even in non-static mode.
834static bool GVIsIndirectSymbol(GlobalValue *GV, Reloc::Model RelocM) {
835 return RelocM != Reloc::Static &&
836 (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
Gabor Greifa99be512007-07-05 17:07:56 +0000837 (GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode()));
Evan Chenga8e29892007-01-19 07:51:42 +0000838}
839
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000840SDOperand ARMTargetLowering::LowerGlobalAddressDarwin(SDOperand Op,
841 SelectionDAG &DAG) {
Evan Chenga8e29892007-01-19 07:51:42 +0000842 MVT::ValueType PtrVT = getPointerTy();
843 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
844 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
Evan Cheng97c9bb52007-05-04 00:26:58 +0000845 bool IsIndirect = GVIsIndirectSymbol(GV, RelocM);
Evan Chenga8e29892007-01-19 07:51:42 +0000846 SDOperand CPAddr;
847 if (RelocM == Reloc::Static)
848 CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 2);
849 else {
850 unsigned PCAdj = (RelocM != Reloc::PIC_)
851 ? 0 : (Subtarget->isThumb() ? 4 : 8);
Evan Chengc60e76d2007-01-30 20:37:08 +0000852 ARMCP::ARMCPKind Kind = IsIndirect ? ARMCP::CPNonLazyPtr
853 : ARMCP::CPValue;
Evan Chenga8e29892007-01-19 07:51:42 +0000854 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, ARMPCLabelIndex,
Evan Chengc60e76d2007-01-30 20:37:08 +0000855 Kind, PCAdj);
Evan Chenga8e29892007-01-19 07:51:42 +0000856 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 2);
857 }
858 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
859
860 SDOperand Result = DAG.getLoad(PtrVT, DAG.getEntryNode(), CPAddr, NULL, 0);
861 SDOperand Chain = Result.getValue(1);
862
863 if (RelocM == Reloc::PIC_) {
864 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
865 Result = DAG.getNode(ARMISD::PIC_ADD, PtrVT, Result, PICLabel);
866 }
867 if (IsIndirect)
868 Result = DAG.getLoad(PtrVT, Chain, Result, NULL, 0);
869
870 return Result;
871}
872
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000873SDOperand ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDOperand Op,
874 SelectionDAG &DAG){
875 assert(Subtarget->isTargetELF() &&
876 "GLOBAL OFFSET TABLE not implemented for non-ELF targets");
877 MVT::ValueType PtrVT = getPointerTy();
878 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
879 ARMConstantPoolValue *CPV = new ARMConstantPoolValue("_GLOBAL_OFFSET_TABLE_",
880 ARMPCLabelIndex,
881 ARMCP::CPValue, PCAdj);
882 SDOperand CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 2);
883 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
884 SDOperand Result = DAG.getLoad(PtrVT, DAG.getEntryNode(), CPAddr, NULL, 0);
885 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
886 return DAG.getNode(ARMISD::PIC_ADD, PtrVT, Result, PICLabel);
887}
888
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +0000889static SDOperand LowerINTRINSIC_WO_CHAIN(SDOperand Op, SelectionDAG &DAG) {
890 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
891 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getValue();
892 switch (IntNo) {
893 default: return SDOperand(); // Don't custom lower most intrinsics.
894 case Intrinsic::arm_thread_pointer:
895 return DAG.getNode(ARMISD::THREAD_POINTER, PtrVT);
896 }
897}
898
Evan Chenga8e29892007-01-19 07:51:42 +0000899static SDOperand LowerVASTART(SDOperand Op, SelectionDAG &DAG,
900 unsigned VarArgsFrameIndex) {
901 // vastart just stores the address of the VarArgsFrameIndex slot into the
902 // memory location argument.
903 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
904 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
905 SrcValueSDNode *SV = cast<SrcValueSDNode>(Op.getOperand(2));
906 return DAG.getStore(Op.getOperand(0), FR, Op.getOperand(1), SV->getValue(),
907 SV->getOffset());
908}
909
910static SDOperand LowerFORMAL_ARGUMENT(SDOperand Op, SelectionDAG &DAG,
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000911 unsigned *vRegs, unsigned ArgNo,
Evan Chenga8e29892007-01-19 07:51:42 +0000912 unsigned &NumGPRs, unsigned &ArgOffset) {
913 MachineFunction &MF = DAG.getMachineFunction();
914 MVT::ValueType ObjectVT = Op.getValue(ArgNo).getValueType();
915 SDOperand Root = Op.getOperand(0);
916 std::vector<SDOperand> ArgValues;
917 SSARegMap *RegMap = MF.getSSARegMap();
918
919 static const unsigned GPRArgRegs[] = {
920 ARM::R0, ARM::R1, ARM::R2, ARM::R3
921 };
922
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000923 unsigned ObjSize;
924 unsigned ObjGPRs;
925 unsigned GPRPad;
926 unsigned StackPad;
927 unsigned Flags = Op.getConstantOperandVal(ArgNo + 3);
928 HowToPassArgument(ObjectVT, NumGPRs, ArgOffset, ObjGPRs,
929 ObjSize, GPRPad, StackPad, Flags);
930 NumGPRs += GPRPad;
931 ArgOffset += StackPad;
Evan Chenga8e29892007-01-19 07:51:42 +0000932
933 SDOperand ArgValue;
934 if (ObjGPRs == 1) {
935 unsigned VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
936 MF.addLiveIn(GPRArgRegs[NumGPRs], VReg);
937 vRegs[NumGPRs] = VReg;
938 ArgValue = DAG.getCopyFromReg(Root, VReg, MVT::i32);
939 if (ObjectVT == MVT::f32)
940 ArgValue = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, ArgValue);
941 } else if (ObjGPRs == 2) {
942 unsigned VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
943 MF.addLiveIn(GPRArgRegs[NumGPRs], VReg);
944 vRegs[NumGPRs] = VReg;
945 ArgValue = DAG.getCopyFromReg(Root, VReg, MVT::i32);
946
947 VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
948 MF.addLiveIn(GPRArgRegs[NumGPRs+1], VReg);
949 vRegs[NumGPRs+1] = VReg;
950 SDOperand ArgValue2 = DAG.getCopyFromReg(Root, VReg, MVT::i32);
951
952 if (ObjectVT == MVT::i64)
953 ArgValue = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, ArgValue, ArgValue2);
954 else
955 ArgValue = DAG.getNode(ARMISD::FMDRR, MVT::f64, ArgValue, ArgValue2);
956 }
957 NumGPRs += ObjGPRs;
958
959 if (ObjSize) {
960 // If the argument is actually used, emit a load from the right stack
961 // slot.
962 if (!Op.Val->hasNUsesOfValue(0, ArgNo)) {
963 MachineFrameInfo *MFI = MF.getFrameInfo();
964 int FI = MFI->CreateFixedObject(ObjSize, ArgOffset);
965 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i32);
966 if (ObjGPRs == 0)
967 ArgValue = DAG.getLoad(ObjectVT, Root, FIN, NULL, 0);
968 else {
969 SDOperand ArgValue2 =
970 DAG.getLoad(MVT::i32, Root, FIN, NULL, 0);
971 if (ObjectVT == MVT::i64)
972 ArgValue= DAG.getNode(ISD::BUILD_PAIR, MVT::i64, ArgValue, ArgValue2);
973 else
974 ArgValue= DAG.getNode(ARMISD::FMDRR, MVT::f64, ArgValue, ArgValue2);
975 }
976 } else {
977 // Don't emit a dead load.
978 ArgValue = DAG.getNode(ISD::UNDEF, ObjectVT);
979 }
980
981 ArgOffset += ObjSize; // Move on to the next argument.
982 }
983
984 return ArgValue;
985}
986
987SDOperand
988ARMTargetLowering::LowerFORMAL_ARGUMENTS(SDOperand Op, SelectionDAG &DAG) {
989 std::vector<SDOperand> ArgValues;
990 SDOperand Root = Op.getOperand(0);
991 unsigned ArgOffset = 0; // Frame mechanisms handle retaddr slot
992 unsigned NumGPRs = 0; // GPRs used for parameter passing.
993 unsigned VRegs[4];
994
995 unsigned NumArgs = Op.Val->getNumValues()-1;
996 for (unsigned ArgNo = 0; ArgNo < NumArgs; ++ArgNo)
997 ArgValues.push_back(LowerFORMAL_ARGUMENT(Op, DAG, VRegs, ArgNo,
998 NumGPRs, ArgOffset));
999
1000 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
1001 if (isVarArg) {
1002 static const unsigned GPRArgRegs[] = {
1003 ARM::R0, ARM::R1, ARM::R2, ARM::R3
1004 };
1005
1006 MachineFunction &MF = DAG.getMachineFunction();
1007 SSARegMap *RegMap = MF.getSSARegMap();
1008 MachineFrameInfo *MFI = MF.getFrameInfo();
1009 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Lauro Ramos Venancio600c3832007-02-23 20:32:57 +00001010 unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
1011 unsigned VARegSize = (4 - NumGPRs) * 4;
1012 unsigned VARegSaveSize = (VARegSize + Align - 1) & ~(Align - 1);
Evan Chenga8e29892007-01-19 07:51:42 +00001013 if (VARegSaveSize) {
1014 // If this function is vararg, store any remaining integer argument regs
1015 // to their spots on the stack so that they may be loaded by deferencing
1016 // the result of va_next.
1017 AFI->setVarArgsRegSaveSize(VARegSaveSize);
Lauro Ramos Venancio600c3832007-02-23 20:32:57 +00001018 VarArgsFrameIndex = MFI->CreateFixedObject(VARegSaveSize, ArgOffset +
1019 VARegSaveSize - VARegSize);
Evan Chenga8e29892007-01-19 07:51:42 +00001020 SDOperand FIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
1021
1022 SmallVector<SDOperand, 4> MemOps;
1023 for (; NumGPRs < 4; ++NumGPRs) {
1024 unsigned VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
1025 MF.addLiveIn(GPRArgRegs[NumGPRs], VReg);
1026 SDOperand Val = DAG.getCopyFromReg(Root, VReg, MVT::i32);
1027 SDOperand Store = DAG.getStore(Val.getValue(1), Val, FIN, NULL, 0);
1028 MemOps.push_back(Store);
1029 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
1030 DAG.getConstant(4, getPointerTy()));
1031 }
1032 if (!MemOps.empty())
1033 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
1034 &MemOps[0], MemOps.size());
1035 } else
1036 // This will point to the next argument passed via stack.
1037 VarArgsFrameIndex = MFI->CreateFixedObject(4, ArgOffset);
1038 }
1039
1040 ArgValues.push_back(Root);
1041
1042 // Return the new list of results.
1043 std::vector<MVT::ValueType> RetVT(Op.Val->value_begin(),
1044 Op.Val->value_end());
1045 return DAG.getNode(ISD::MERGE_VALUES, RetVT, &ArgValues[0], ArgValues.size());
1046}
1047
1048/// isFloatingPointZero - Return true if this is +0.0.
1049static bool isFloatingPointZero(SDOperand Op) {
1050 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johanneseneaf08942007-08-31 04:03:46 +00001051 return CFP->getValueAPF().isPosZero();
Evan Chenga8e29892007-01-19 07:51:42 +00001052 else if (ISD::isEXTLoad(Op.Val) || ISD::isNON_EXTLoad(Op.Val)) {
1053 // Maybe this has already been legalized into the constant pool?
1054 if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
1055 SDOperand WrapperOp = Op.getOperand(1).getOperand(0);
1056 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
1057 if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johanneseneaf08942007-08-31 04:03:46 +00001058 return CFP->getValueAPF().isPosZero();
Evan Chenga8e29892007-01-19 07:51:42 +00001059 }
1060 }
1061 return false;
1062}
1063
Evan Cheng9a2ef952007-02-02 01:53:26 +00001064static bool isLegalCmpImmediate(unsigned C, bool isThumb) {
Evan Chenga8e29892007-01-19 07:51:42 +00001065 return ( isThumb && (C & ~255U) == 0) ||
1066 (!isThumb && ARM_AM::getSOImmVal(C) != -1);
1067}
1068
1069/// Returns appropriate ARM CMP (cmp) and corresponding condition code for
1070/// the given operands.
1071static SDOperand getARMCmp(SDOperand LHS, SDOperand RHS, ISD::CondCode CC,
1072 SDOperand &ARMCC, SelectionDAG &DAG, bool isThumb) {
1073 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.Val)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00001074 unsigned C = RHSC->getValue();
Evan Chenga8e29892007-01-19 07:51:42 +00001075 if (!isLegalCmpImmediate(C, isThumb)) {
1076 // Constant does not fit, try adjusting it by one?
1077 switch (CC) {
1078 default: break;
1079 case ISD::SETLT:
Evan Chenga8e29892007-01-19 07:51:42 +00001080 case ISD::SETGE:
Evan Chenga8e29892007-01-19 07:51:42 +00001081 if (isLegalCmpImmediate(C-1, isThumb)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00001082 CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
1083 RHS = DAG.getConstant(C-1, MVT::i32);
1084 }
1085 break;
1086 case ISD::SETULT:
1087 case ISD::SETUGE:
1088 if (C > 0 && isLegalCmpImmediate(C-1, isThumb)) {
1089 CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
Evan Chenga8e29892007-01-19 07:51:42 +00001090 RHS = DAG.getConstant(C-1, MVT::i32);
1091 }
1092 break;
1093 case ISD::SETLE:
Evan Chenga8e29892007-01-19 07:51:42 +00001094 case ISD::SETGT:
Evan Chenga8e29892007-01-19 07:51:42 +00001095 if (isLegalCmpImmediate(C+1, isThumb)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00001096 CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
1097 RHS = DAG.getConstant(C+1, MVT::i32);
1098 }
1099 break;
1100 case ISD::SETULE:
1101 case ISD::SETUGT:
1102 if (C < 0xffffffff && isLegalCmpImmediate(C+1, isThumb)) {
1103 CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
Evan Chenga8e29892007-01-19 07:51:42 +00001104 RHS = DAG.getConstant(C+1, MVT::i32);
1105 }
1106 break;
1107 }
1108 }
1109 }
1110
1111 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
Lauro Ramos Venancio99966632007-04-02 01:30:03 +00001112 ARMISD::NodeType CompareType;
1113 switch (CondCode) {
1114 default:
1115 CompareType = ARMISD::CMP;
1116 break;
1117 case ARMCC::EQ:
1118 case ARMCC::NE:
1119 case ARMCC::MI:
1120 case ARMCC::PL:
1121 // Uses only N and Z Flags
1122 CompareType = ARMISD::CMPNZ;
1123 break;
1124 }
Evan Chenga8e29892007-01-19 07:51:42 +00001125 ARMCC = DAG.getConstant(CondCode, MVT::i32);
Lauro Ramos Venancio99966632007-04-02 01:30:03 +00001126 return DAG.getNode(CompareType, MVT::Flag, LHS, RHS);
Evan Chenga8e29892007-01-19 07:51:42 +00001127}
1128
1129/// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
1130static SDOperand getVFPCmp(SDOperand LHS, SDOperand RHS, SelectionDAG &DAG) {
1131 SDOperand Cmp;
1132 if (!isFloatingPointZero(RHS))
1133 Cmp = DAG.getNode(ARMISD::CMPFP, MVT::Flag, LHS, RHS);
1134 else
1135 Cmp = DAG.getNode(ARMISD::CMPFPw0, MVT::Flag, LHS);
1136 return DAG.getNode(ARMISD::FMSTAT, MVT::Flag, Cmp);
1137}
1138
1139static SDOperand LowerSELECT_CC(SDOperand Op, SelectionDAG &DAG,
1140 const ARMSubtarget *ST) {
1141 MVT::ValueType VT = Op.getValueType();
1142 SDOperand LHS = Op.getOperand(0);
1143 SDOperand RHS = Op.getOperand(1);
1144 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
1145 SDOperand TrueVal = Op.getOperand(2);
1146 SDOperand FalseVal = Op.getOperand(3);
1147
1148 if (LHS.getValueType() == MVT::i32) {
1149 SDOperand ARMCC;
Evan Cheng0e1d3792007-07-05 07:18:20 +00001150 SDOperand CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00001151 SDOperand Cmp = getARMCmp(LHS, RHS, CC, ARMCC, DAG, ST->isThumb());
Evan Cheng0e1d3792007-07-05 07:18:20 +00001152 return DAG.getNode(ARMISD::CMOV, VT, FalseVal, TrueVal, ARMCC, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00001153 }
1154
1155 ARMCC::CondCodes CondCode, CondCode2;
1156 if (FPCCToARMCC(CC, CondCode, CondCode2))
1157 std::swap(TrueVal, FalseVal);
1158
1159 SDOperand ARMCC = DAG.getConstant(CondCode, MVT::i32);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001160 SDOperand CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00001161 SDOperand Cmp = getVFPCmp(LHS, RHS, DAG);
1162 SDOperand Result = DAG.getNode(ARMISD::CMOV, VT, FalseVal, TrueVal,
Evan Cheng0e1d3792007-07-05 07:18:20 +00001163 ARMCC, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00001164 if (CondCode2 != ARMCC::AL) {
1165 SDOperand ARMCC2 = DAG.getConstant(CondCode2, MVT::i32);
1166 // FIXME: Needs another CMP because flag can have but one use.
1167 SDOperand Cmp2 = getVFPCmp(LHS, RHS, DAG);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001168 Result = DAG.getNode(ARMISD::CMOV, VT, Result, TrueVal, ARMCC2, CCR, Cmp2);
Evan Chenga8e29892007-01-19 07:51:42 +00001169 }
1170 return Result;
1171}
1172
1173static SDOperand LowerBR_CC(SDOperand Op, SelectionDAG &DAG,
1174 const ARMSubtarget *ST) {
1175 SDOperand Chain = Op.getOperand(0);
1176 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
1177 SDOperand LHS = Op.getOperand(2);
1178 SDOperand RHS = Op.getOperand(3);
1179 SDOperand Dest = Op.getOperand(4);
1180
1181 if (LHS.getValueType() == MVT::i32) {
1182 SDOperand ARMCC;
Evan Cheng0e1d3792007-07-05 07:18:20 +00001183 SDOperand CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00001184 SDOperand Cmp = getARMCmp(LHS, RHS, CC, ARMCC, DAG, ST->isThumb());
Evan Cheng0e1d3792007-07-05 07:18:20 +00001185 return DAG.getNode(ARMISD::BRCOND, MVT::Other, Chain, Dest, ARMCC, CCR,Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00001186 }
1187
1188 assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
1189 ARMCC::CondCodes CondCode, CondCode2;
1190 if (FPCCToARMCC(CC, CondCode, CondCode2))
1191 // Swap the LHS/RHS of the comparison if needed.
1192 std::swap(LHS, RHS);
1193
1194 SDOperand Cmp = getVFPCmp(LHS, RHS, DAG);
1195 SDOperand ARMCC = DAG.getConstant(CondCode, MVT::i32);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001196 SDOperand CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00001197 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Flag);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001198 SDOperand Ops[] = { Chain, Dest, ARMCC, CCR, Cmp };
1199 SDOperand Res = DAG.getNode(ARMISD::BRCOND, VTList, Ops, 5);
Evan Chenga8e29892007-01-19 07:51:42 +00001200 if (CondCode2 != ARMCC::AL) {
1201 ARMCC = DAG.getConstant(CondCode2, MVT::i32);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001202 SDOperand Ops[] = { Res, Dest, ARMCC, CCR, Res.getValue(1) };
1203 Res = DAG.getNode(ARMISD::BRCOND, VTList, Ops, 5);
Evan Chenga8e29892007-01-19 07:51:42 +00001204 }
1205 return Res;
1206}
1207
1208SDOperand ARMTargetLowering::LowerBR_JT(SDOperand Op, SelectionDAG &DAG) {
1209 SDOperand Chain = Op.getOperand(0);
1210 SDOperand Table = Op.getOperand(1);
1211 SDOperand Index = Op.getOperand(2);
1212
1213 MVT::ValueType PTy = getPointerTy();
1214 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
1215 ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>();
1216 SDOperand UId = DAG.getConstant(AFI->createJumpTableUId(), PTy);
1217 SDOperand JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
1218 Table = DAG.getNode(ARMISD::WrapperJT, MVT::i32, JTI, UId);
1219 Index = DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(4, PTy));
1220 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
1221 bool isPIC = getTargetMachine().getRelocationModel() == Reloc::PIC_;
Evan Chenge2446c62007-06-26 18:31:22 +00001222 Addr = DAG.getLoad(isPIC ? (MVT::ValueType)MVT::i32 : PTy,
1223 Chain, Addr, NULL, 0);
Evan Chenga8e29892007-01-19 07:51:42 +00001224 Chain = Addr.getValue(1);
1225 if (isPIC)
1226 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Table);
1227 return DAG.getNode(ARMISD::BR_JT, MVT::Other, Chain, Addr, JTI, UId);
1228}
1229
1230static SDOperand LowerFP_TO_INT(SDOperand Op, SelectionDAG &DAG) {
1231 unsigned Opc =
1232 Op.getOpcode() == ISD::FP_TO_SINT ? ARMISD::FTOSI : ARMISD::FTOUI;
1233 Op = DAG.getNode(Opc, MVT::f32, Op.getOperand(0));
1234 return DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
1235}
1236
1237static SDOperand LowerINT_TO_FP(SDOperand Op, SelectionDAG &DAG) {
1238 MVT::ValueType VT = Op.getValueType();
1239 unsigned Opc =
1240 Op.getOpcode() == ISD::SINT_TO_FP ? ARMISD::SITOF : ARMISD::UITOF;
1241
1242 Op = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op.getOperand(0));
1243 return DAG.getNode(Opc, VT, Op);
1244}
1245
1246static SDOperand LowerFCOPYSIGN(SDOperand Op, SelectionDAG &DAG) {
1247 // Implement fcopysign with a fabs and a conditional fneg.
1248 SDOperand Tmp0 = Op.getOperand(0);
1249 SDOperand Tmp1 = Op.getOperand(1);
1250 MVT::ValueType VT = Op.getValueType();
1251 MVT::ValueType SrcVT = Tmp1.getValueType();
1252 SDOperand AbsVal = DAG.getNode(ISD::FABS, VT, Tmp0);
1253 SDOperand Cmp = getVFPCmp(Tmp1, DAG.getConstantFP(0.0, SrcVT), DAG);
1254 SDOperand ARMCC = DAG.getConstant(ARMCC::LT, MVT::i32);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001255 SDOperand CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
1256 return DAG.getNode(ARMISD::CNEG, VT, AbsVal, AbsVal, ARMCC, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00001257}
1258
1259static SDOperand LowerBIT_CONVERT(SDOperand Op, SelectionDAG &DAG) {
1260 // Turn f64->i64 into FMRRD.
1261 assert(Op.getValueType() == MVT::i64 &&
1262 Op.getOperand(0).getValueType() == MVT::f64);
1263
1264 Op = Op.getOperand(0);
1265 SDOperand Cvt = DAG.getNode(ARMISD::FMRRD, DAG.getVTList(MVT::i32, MVT::i32),
1266 &Op, 1);
1267
1268 // Merge the pieces into a single i64 value.
1269 return DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Cvt, Cvt.getValue(1));
1270}
1271
Evan Chenga8e29892007-01-19 07:51:42 +00001272static SDOperand LowerSRx(SDOperand Op, SelectionDAG &DAG,
1273 const ARMSubtarget *ST) {
1274 assert(Op.getValueType() == MVT::i64 &&
1275 (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SRA) &&
1276 "Unknown shift to lower!");
1277
1278 // We only lower SRA, SRL of 1 here, all others use generic lowering.
1279 if (!isa<ConstantSDNode>(Op.getOperand(1)) ||
1280 cast<ConstantSDNode>(Op.getOperand(1))->getValue() != 1)
1281 return SDOperand();
1282
1283 // If we are in thumb mode, we don't have RRX.
1284 if (ST->isThumb()) return SDOperand();
1285
1286 // Okay, we have a 64-bit SRA or SRL of 1. Lower this to an RRX expr.
1287 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op.getOperand(0),
1288 DAG.getConstant(0, MVT::i32));
1289 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op.getOperand(0),
1290 DAG.getConstant(1, MVT::i32));
1291
1292 // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
1293 // captures the result into a carry flag.
1294 unsigned Opc = Op.getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
1295 Hi = DAG.getNode(Opc, DAG.getVTList(MVT::i32, MVT::Flag), &Hi, 1);
1296
1297 // The low part is an ARMISD::RRX operand, which shifts the carry in.
1298 Lo = DAG.getNode(ARMISD::RRX, MVT::i32, Lo, Hi.getValue(1));
1299
1300 // Merge the pieces into a single i64 value.
1301 return DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Lo, Hi);
1302}
1303
Rafael Espindola7b73a5d2007-10-19 14:35:17 +00001304SDOperand ARMTargetLowering::LowerMEMCPYInline(SDOperand Chain,
1305 SDOperand Dest,
1306 SDOperand Source,
1307 unsigned Size,
1308 unsigned Align,
1309 SelectionDAG &DAG) {
Evan Cheng4102eb52007-10-22 22:11:27 +00001310 // Do repeated 4-byte loads and stores. To be improved.
1311 assert((Align & 3) == 0 && "Expected 4-byte aligned addresses!");
1312 unsigned BytesLeft = Size & 3;
Rafael Espindola7b73a5d2007-10-19 14:35:17 +00001313 unsigned NumMemOps = Size >> 2;
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001314 unsigned EmittedNumMemOps = 0;
1315 unsigned SrcOff = 0, DstOff = 0;
1316 MVT::ValueType VT = MVT::i32;
1317 unsigned VTSize = 4;
Evan Cheng4102eb52007-10-22 22:11:27 +00001318 unsigned i = 0;
Evan Chenge5e7ce42007-05-18 01:19:57 +00001319 const unsigned MAX_LOADS_IN_LDM = 6;
Evan Cheng4102eb52007-10-22 22:11:27 +00001320 SDOperand TFOps[MAX_LOADS_IN_LDM];
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001321 SDOperand Loads[MAX_LOADS_IN_LDM];
1322
Evan Cheng4102eb52007-10-22 22:11:27 +00001323 // Emit up to MAX_LOADS_IN_LDM loads, then a TokenFactor barrier, then the
1324 // same number of stores. The loads and stores will get combined into
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001325 // ldm/stm later on.
Evan Cheng4102eb52007-10-22 22:11:27 +00001326 while (EmittedNumMemOps < NumMemOps) {
1327 for (i = 0;
1328 i < MAX_LOADS_IN_LDM && EmittedNumMemOps + i < NumMemOps; ++i) {
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001329 Loads[i] = DAG.getLoad(VT, Chain,
Evan Cheng4102eb52007-10-22 22:11:27 +00001330 DAG.getNode(ISD::ADD, MVT::i32, Source,
1331 DAG.getConstant(SrcOff, MVT::i32)),
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001332 NULL, 0);
Evan Cheng4102eb52007-10-22 22:11:27 +00001333 TFOps[i] = Loads[i].getValue(1);
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001334 SrcOff += VTSize;
1335 }
Evan Cheng4102eb52007-10-22 22:11:27 +00001336 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &TFOps[0], i);
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001337
Evan Cheng4102eb52007-10-22 22:11:27 +00001338 for (i = 0;
1339 i < MAX_LOADS_IN_LDM && EmittedNumMemOps + i < NumMemOps; ++i) {
1340 TFOps[i] = DAG.getStore(Chain, Loads[i],
1341 DAG.getNode(ISD::ADD, MVT::i32, Dest,
1342 DAG.getConstant(DstOff, MVT::i32)),
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001343 NULL, 0);
1344 DstOff += VTSize;
1345 }
Evan Cheng4102eb52007-10-22 22:11:27 +00001346 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &TFOps[0], i);
1347
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001348 EmittedNumMemOps += i;
1349 }
1350
Evan Cheng4102eb52007-10-22 22:11:27 +00001351 if (BytesLeft == 0)
1352 return Chain;
1353
1354 // Issue loads / stores for the trailing (1 - 3) bytes.
1355 unsigned BytesLeftSave = BytesLeft;
1356 i = 0;
1357 while (BytesLeft) {
1358 if (BytesLeft >= 2) {
1359 VT = MVT::i16;
1360 VTSize = 2;
1361 } else {
1362 VT = MVT::i8;
1363 VTSize = 1;
1364 }
1365
1366 Loads[i] = DAG.getLoad(VT, Chain,
1367 DAG.getNode(ISD::ADD, MVT::i32, Source,
1368 DAG.getConstant(SrcOff, MVT::i32)),
1369 NULL, 0);
1370 TFOps[i] = Loads[i].getValue(1);
1371 ++i;
1372 SrcOff += VTSize;
1373 BytesLeft -= VTSize;
1374 }
1375 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &TFOps[0], i);
1376
1377 i = 0;
1378 BytesLeft = BytesLeftSave;
1379 while (BytesLeft) {
1380 if (BytesLeft >= 2) {
1381 VT = MVT::i16;
1382 VTSize = 2;
1383 } else {
1384 VT = MVT::i8;
1385 VTSize = 1;
1386 }
1387
1388 TFOps[i] = DAG.getStore(Chain, Loads[i],
1389 DAG.getNode(ISD::ADD, MVT::i32, Dest,
1390 DAG.getConstant(DstOff, MVT::i32)),
1391 NULL, 0);
1392 ++i;
1393 DstOff += VTSize;
1394 BytesLeft -= VTSize;
1395 }
1396 return DAG.getNode(ISD::TokenFactor, MVT::Other, &TFOps[0], i);
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001397}
1398
Evan Chenga8e29892007-01-19 07:51:42 +00001399SDOperand ARMTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
1400 switch (Op.getOpcode()) {
1401 default: assert(0 && "Don't know how to custom lower this!"); abort();
1402 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001403 case ISD::GlobalAddress:
1404 return Subtarget->isTargetDarwin() ? LowerGlobalAddressDarwin(Op, DAG) :
1405 LowerGlobalAddressELF(Op, DAG);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001406 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00001407 case ISD::CALL: return LowerCALL(Op, DAG);
1408 case ISD::RET: return LowerRET(Op, DAG);
1409 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG, Subtarget);
1410 case ISD::BR_CC: return LowerBR_CC(Op, DAG, Subtarget);
1411 case ISD::BR_JT: return LowerBR_JT(Op, DAG);
1412 case ISD::VASTART: return LowerVASTART(Op, DAG, VarArgsFrameIndex);
1413 case ISD::SINT_TO_FP:
1414 case ISD::UINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
1415 case ISD::FP_TO_SINT:
1416 case ISD::FP_TO_UINT: return LowerFP_TO_INT(Op, DAG);
1417 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
1418 case ISD::BIT_CONVERT: return LowerBIT_CONVERT(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00001419 case ISD::SRL:
1420 case ISD::SRA: return LowerSRx(Op, DAG, Subtarget);
1421 case ISD::FORMAL_ARGUMENTS:
1422 return LowerFORMAL_ARGUMENTS(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00001423 case ISD::RETURNADDR: break;
1424 case ISD::FRAMEADDR: break;
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001425 case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
Rafael Espindolae0703c82007-10-31 14:39:58 +00001426 case ISD::MEMCPY: return LowerMEMCPY(Op, DAG);
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +00001427 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00001428 }
Nate Begemanbcc5f362007-01-29 22:58:52 +00001429 return SDOperand();
Evan Chenga8e29892007-01-19 07:51:42 +00001430}
1431
1432//===----------------------------------------------------------------------===//
1433// ARM Scheduler Hooks
1434//===----------------------------------------------------------------------===//
1435
1436MachineBasicBlock *
1437ARMTargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
1438 MachineBasicBlock *BB) {
1439 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
1440 switch (MI->getOpcode()) {
1441 default: assert(false && "Unexpected instr type to insert");
1442 case ARM::tMOVCCr: {
1443 // To "insert" a SELECT_CC instruction, we actually have to insert the
1444 // diamond control-flow pattern. The incoming instruction knows the
1445 // destination vreg to set, the condition code register to branch on, the
1446 // true/false values to select between, and a branch opcode to use.
1447 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1448 ilist<MachineBasicBlock>::iterator It = BB;
1449 ++It;
1450
1451 // thisMBB:
1452 // ...
1453 // TrueVal = ...
1454 // cmpTY ccX, r1, r2
1455 // bCC copy1MBB
1456 // fallthrough --> copy0MBB
1457 MachineBasicBlock *thisMBB = BB;
1458 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
1459 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
1460 BuildMI(BB, TII->get(ARM::tBcc)).addMBB(sinkMBB)
Evan Cheng0e1d3792007-07-05 07:18:20 +00001461 .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
Evan Chenga8e29892007-01-19 07:51:42 +00001462 MachineFunction *F = BB->getParent();
1463 F->getBasicBlockList().insert(It, copy0MBB);
1464 F->getBasicBlockList().insert(It, sinkMBB);
1465 // Update machine-CFG edges by first adding all successors of the current
1466 // block to the new block which will contain the Phi node for the select.
1467 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
1468 e = BB->succ_end(); i != e; ++i)
1469 sinkMBB->addSuccessor(*i);
1470 // Next, remove all successors of the current block, and add the true
1471 // and fallthrough blocks as its successors.
1472 while(!BB->succ_empty())
1473 BB->removeSuccessor(BB->succ_begin());
1474 BB->addSuccessor(copy0MBB);
1475 BB->addSuccessor(sinkMBB);
1476
1477 // copy0MBB:
1478 // %FalseValue = ...
1479 // # fallthrough to sinkMBB
1480 BB = copy0MBB;
1481
1482 // Update machine-CFG edges
1483 BB->addSuccessor(sinkMBB);
1484
1485 // sinkMBB:
1486 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
1487 // ...
1488 BB = sinkMBB;
1489 BuildMI(BB, TII->get(ARM::PHI), MI->getOperand(0).getReg())
1490 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
1491 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
1492
1493 delete MI; // The pseudo instruction is gone now.
1494 return BB;
1495 }
1496 }
1497}
1498
1499//===----------------------------------------------------------------------===//
1500// ARM Optimization Hooks
1501//===----------------------------------------------------------------------===//
1502
Evan Chengb01fad62007-03-12 23:30:29 +00001503/// isLegalAddressImmediate - Return true if the integer value can be used
1504/// as the offset of the target addressing mode for load / store of the
1505/// given type.
Chris Lattner37caf8c2007-04-09 23:33:39 +00001506static bool isLegalAddressImmediate(int64_t V, MVT::ValueType VT,
1507 const ARMSubtarget *Subtarget) {
Evan Cheng961f8792007-03-13 20:37:59 +00001508 if (V == 0)
1509 return true;
1510
Evan Chengb01fad62007-03-12 23:30:29 +00001511 if (Subtarget->isThumb()) {
1512 if (V < 0)
1513 return false;
1514
1515 unsigned Scale = 1;
1516 switch (VT) {
1517 default: return false;
1518 case MVT::i1:
1519 case MVT::i8:
1520 // Scale == 1;
1521 break;
1522 case MVT::i16:
1523 // Scale == 2;
1524 Scale = 2;
1525 break;
1526 case MVT::i32:
1527 // Scale == 4;
1528 Scale = 4;
1529 break;
1530 }
1531
1532 if ((V & (Scale - 1)) != 0)
1533 return false;
1534 V /= Scale;
1535 return V == V & ((1LL << 5) - 1);
1536 }
1537
1538 if (V < 0)
1539 V = - V;
1540 switch (VT) {
1541 default: return false;
1542 case MVT::i1:
1543 case MVT::i8:
1544 case MVT::i32:
1545 // +- imm12
1546 return V == V & ((1LL << 12) - 1);
1547 case MVT::i16:
1548 // +- imm8
1549 return V == V & ((1LL << 8) - 1);
1550 case MVT::f32:
1551 case MVT::f64:
1552 if (!Subtarget->hasVFP2())
1553 return false;
Evan Cheng0b0a9a92007-05-03 02:00:18 +00001554 if ((V & 3) != 0)
Evan Chengb01fad62007-03-12 23:30:29 +00001555 return false;
1556 V >>= 2;
1557 return V == V & ((1LL << 8) - 1);
1558 }
Evan Chenga8e29892007-01-19 07:51:42 +00001559}
1560
Chris Lattner37caf8c2007-04-09 23:33:39 +00001561/// isLegalAddressingMode - Return true if the addressing mode represented
1562/// by AM is legal for this target, for a load/store of the specified type.
1563bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM,
1564 const Type *Ty) const {
1565 if (!isLegalAddressImmediate(AM.BaseOffs, getValueType(Ty), Subtarget))
Evan Chengb01fad62007-03-12 23:30:29 +00001566 return false;
Chris Lattner37caf8c2007-04-09 23:33:39 +00001567
1568 // Can never fold addr of global into load/store.
1569 if (AM.BaseGV)
1570 return false;
1571
1572 switch (AM.Scale) {
1573 case 0: // no scale reg, must be "r+i" or "r", or "i".
1574 break;
1575 case 1:
1576 if (Subtarget->isThumb())
1577 return false;
Chris Lattner5a3d40d2007-04-13 06:50:55 +00001578 // FALL THROUGH.
Chris Lattner37caf8c2007-04-09 23:33:39 +00001579 default:
Chris Lattner5a3d40d2007-04-13 06:50:55 +00001580 // ARM doesn't support any R+R*scale+imm addr modes.
1581 if (AM.BaseOffs)
1582 return false;
1583
Chris Lattnereb13d1b2007-04-10 03:48:29 +00001584 int Scale = AM.Scale;
Chris Lattner37caf8c2007-04-09 23:33:39 +00001585 switch (getValueType(Ty)) {
1586 default: return false;
1587 case MVT::i1:
1588 case MVT::i8:
1589 case MVT::i32:
1590 case MVT::i64:
1591 // This assumes i64 is legalized to a pair of i32. If not (i.e.
1592 // ldrd / strd are used, then its address mode is same as i16.
1593 // r + r
Chris Lattnereb13d1b2007-04-10 03:48:29 +00001594 if (Scale < 0) Scale = -Scale;
1595 if (Scale == 1)
Chris Lattner37caf8c2007-04-09 23:33:39 +00001596 return true;
1597 // r + r << imm
Chris Lattnere1152942007-04-11 16:17:12 +00001598 return isPowerOf2_32(Scale & ~1);
Chris Lattner37caf8c2007-04-09 23:33:39 +00001599 case MVT::i16:
1600 // r + r
Chris Lattnereb13d1b2007-04-10 03:48:29 +00001601 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
Chris Lattner37caf8c2007-04-09 23:33:39 +00001602 return true;
Chris Lattnere1152942007-04-11 16:17:12 +00001603 return false;
1604
Chris Lattner37caf8c2007-04-09 23:33:39 +00001605 case MVT::isVoid:
1606 // Note, we allow "void" uses (basically, uses that aren't loads or
1607 // stores), because arm allows folding a scale into many arithmetic
1608 // operations. This should be made more precise and revisited later.
Chris Lattnerb2c594f2007-04-03 00:13:57 +00001609
Chris Lattner37caf8c2007-04-09 23:33:39 +00001610 // Allow r << imm, but the imm has to be a multiple of two.
1611 if (AM.Scale & 1) return false;
1612 return isPowerOf2_32(AM.Scale);
1613 }
1614 break;
Evan Chengb01fad62007-03-12 23:30:29 +00001615 }
Chris Lattner37caf8c2007-04-09 23:33:39 +00001616 return true;
Evan Chengb01fad62007-03-12 23:30:29 +00001617}
1618
Chris Lattner37caf8c2007-04-09 23:33:39 +00001619
Evan Chenga8e29892007-01-19 07:51:42 +00001620static bool getIndexedAddressParts(SDNode *Ptr, MVT::ValueType VT,
1621 bool isSEXTLoad, SDOperand &Base,
1622 SDOperand &Offset, bool &isInc,
1623 SelectionDAG &DAG) {
1624 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
1625 return false;
1626
1627 if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
1628 // AddressingMode 3
1629 Base = Ptr->getOperand(0);
1630 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
1631 int RHSC = (int)RHS->getValue();
1632 if (RHSC < 0 && RHSC > -256) {
1633 isInc = false;
1634 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
1635 return true;
1636 }
1637 }
1638 isInc = (Ptr->getOpcode() == ISD::ADD);
1639 Offset = Ptr->getOperand(1);
1640 return true;
1641 } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
1642 // AddressingMode 2
1643 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
1644 int RHSC = (int)RHS->getValue();
1645 if (RHSC < 0 && RHSC > -0x1000) {
1646 isInc = false;
1647 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
1648 Base = Ptr->getOperand(0);
1649 return true;
1650 }
1651 }
1652
1653 if (Ptr->getOpcode() == ISD::ADD) {
1654 isInc = true;
1655 ARM_AM::ShiftOpc ShOpcVal= ARM_AM::getShiftOpcForNode(Ptr->getOperand(0));
1656 if (ShOpcVal != ARM_AM::no_shift) {
1657 Base = Ptr->getOperand(1);
1658 Offset = Ptr->getOperand(0);
1659 } else {
1660 Base = Ptr->getOperand(0);
1661 Offset = Ptr->getOperand(1);
1662 }
1663 return true;
1664 }
1665
1666 isInc = (Ptr->getOpcode() == ISD::ADD);
1667 Base = Ptr->getOperand(0);
1668 Offset = Ptr->getOperand(1);
1669 return true;
1670 }
1671
1672 // FIXME: Use FLDM / FSTM to emulate indexed FP load / store.
1673 return false;
1674}
1675
1676/// getPreIndexedAddressParts - returns true by value, base pointer and
1677/// offset pointer and addressing mode by reference if the node's address
1678/// can be legally represented as pre-indexed load / store address.
1679bool
1680ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDOperand &Base,
1681 SDOperand &Offset,
1682 ISD::MemIndexedMode &AM,
1683 SelectionDAG &DAG) {
1684 if (Subtarget->isThumb())
1685 return false;
1686
1687 MVT::ValueType VT;
1688 SDOperand Ptr;
1689 bool isSEXTLoad = false;
1690 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1691 Ptr = LD->getBasePtr();
1692 VT = LD->getLoadedVT();
1693 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
1694 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
1695 Ptr = ST->getBasePtr();
1696 VT = ST->getStoredVT();
1697 } else
1698 return false;
1699
1700 bool isInc;
1701 bool isLegal = getIndexedAddressParts(Ptr.Val, VT, isSEXTLoad, Base, Offset,
1702 isInc, DAG);
1703 if (isLegal) {
1704 AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
1705 return true;
1706 }
1707 return false;
1708}
1709
1710/// getPostIndexedAddressParts - returns true by value, base pointer and
1711/// offset pointer and addressing mode by reference if this node can be
1712/// combined with a load / store to form a post-indexed load / store.
1713bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
1714 SDOperand &Base,
1715 SDOperand &Offset,
1716 ISD::MemIndexedMode &AM,
1717 SelectionDAG &DAG) {
1718 if (Subtarget->isThumb())
1719 return false;
1720
1721 MVT::ValueType VT;
1722 SDOperand Ptr;
1723 bool isSEXTLoad = false;
1724 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1725 VT = LD->getLoadedVT();
1726 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
1727 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
1728 VT = ST->getStoredVT();
1729 } else
1730 return false;
1731
1732 bool isInc;
1733 bool isLegal = getIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
1734 isInc, DAG);
1735 if (isLegal) {
1736 AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
1737 return true;
1738 }
1739 return false;
1740}
1741
1742void ARMTargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op,
1743 uint64_t Mask,
1744 uint64_t &KnownZero,
1745 uint64_t &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001746 const SelectionDAG &DAG,
Evan Chenga8e29892007-01-19 07:51:42 +00001747 unsigned Depth) const {
1748 KnownZero = 0;
1749 KnownOne = 0;
1750 switch (Op.getOpcode()) {
1751 default: break;
1752 case ARMISD::CMOV: {
1753 // Bits are known zero/one if known on the LHS and RHS.
Dan Gohmanea859be2007-06-22 14:59:07 +00001754 DAG.ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
Evan Chenga8e29892007-01-19 07:51:42 +00001755 if (KnownZero == 0 && KnownOne == 0) return;
1756
1757 uint64_t KnownZeroRHS, KnownOneRHS;
Dan Gohmanea859be2007-06-22 14:59:07 +00001758 DAG.ComputeMaskedBits(Op.getOperand(1), Mask,
1759 KnownZeroRHS, KnownOneRHS, Depth+1);
Evan Chenga8e29892007-01-19 07:51:42 +00001760 KnownZero &= KnownZeroRHS;
1761 KnownOne &= KnownOneRHS;
1762 return;
1763 }
1764 }
1765}
1766
1767//===----------------------------------------------------------------------===//
1768// ARM Inline Assembly Support
1769//===----------------------------------------------------------------------===//
1770
1771/// getConstraintType - Given a constraint letter, return the type of
1772/// constraint it is for this target.
1773ARMTargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00001774ARMTargetLowering::getConstraintType(const std::string &Constraint) const {
1775 if (Constraint.size() == 1) {
1776 switch (Constraint[0]) {
1777 default: break;
1778 case 'l': return C_RegisterClass;
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00001779 case 'w': return C_RegisterClass;
Chris Lattner4234f572007-03-25 02:14:49 +00001780 }
Evan Chenga8e29892007-01-19 07:51:42 +00001781 }
Chris Lattner4234f572007-03-25 02:14:49 +00001782 return TargetLowering::getConstraintType(Constraint);
Evan Chenga8e29892007-01-19 07:51:42 +00001783}
1784
1785std::pair<unsigned, const TargetRegisterClass*>
1786ARMTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
1787 MVT::ValueType VT) const {
1788 if (Constraint.size() == 1) {
1789 // GCC RS6000 Constraint Letters
1790 switch (Constraint[0]) {
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00001791 case 'l':
1792 // FIXME: in thumb mode, 'l' is only low-regs.
1793 // FALL THROUGH.
1794 case 'r':
1795 return std::make_pair(0U, ARM::GPRRegisterClass);
1796 case 'w':
1797 if (VT == MVT::f32)
1798 return std::make_pair(0U, ARM::SPRRegisterClass);
Evan Cheng0a7baa22007-04-04 00:06:07 +00001799 if (VT == MVT::f64)
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00001800 return std::make_pair(0U, ARM::DPRRegisterClass);
1801 break;
Evan Chenga8e29892007-01-19 07:51:42 +00001802 }
1803 }
1804 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1805}
1806
1807std::vector<unsigned> ARMTargetLowering::
1808getRegClassForInlineAsmConstraint(const std::string &Constraint,
1809 MVT::ValueType VT) const {
1810 if (Constraint.size() != 1)
1811 return std::vector<unsigned>();
1812
1813 switch (Constraint[0]) { // GCC ARM Constraint Letters
1814 default: break;
1815 case 'l':
1816 case 'r':
1817 return make_vector<unsigned>(ARM::R0, ARM::R1, ARM::R2, ARM::R3,
1818 ARM::R4, ARM::R5, ARM::R6, ARM::R7,
1819 ARM::R8, ARM::R9, ARM::R10, ARM::R11,
1820 ARM::R12, ARM::LR, 0);
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00001821 case 'w':
1822 if (VT == MVT::f32)
1823 return make_vector<unsigned>(ARM::S0, ARM::S1, ARM::S2, ARM::S3,
1824 ARM::S4, ARM::S5, ARM::S6, ARM::S7,
1825 ARM::S8, ARM::S9, ARM::S10, ARM::S11,
1826 ARM::S12,ARM::S13,ARM::S14,ARM::S15,
1827 ARM::S16,ARM::S17,ARM::S18,ARM::S19,
1828 ARM::S20,ARM::S21,ARM::S22,ARM::S23,
1829 ARM::S24,ARM::S25,ARM::S26,ARM::S27,
1830 ARM::S28,ARM::S29,ARM::S30,ARM::S31, 0);
1831 if (VT == MVT::f64)
1832 return make_vector<unsigned>(ARM::D0, ARM::D1, ARM::D2, ARM::D3,
1833 ARM::D4, ARM::D5, ARM::D6, ARM::D7,
1834 ARM::D8, ARM::D9, ARM::D10,ARM::D11,
1835 ARM::D12,ARM::D13,ARM::D14,ARM::D15, 0);
1836 break;
Evan Chenga8e29892007-01-19 07:51:42 +00001837 }
1838
1839 return std::vector<unsigned>();
1840}