blob: 154832b62bdc726199ef7101877366a4cefcbd00 [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"
Evan Chenga8e29892007-01-19 07:51:42 +000026#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"
Evan Chengb6ab2542007-01-31 08:40:13 +000032#include "llvm/Target/TargetOptions.h"
Evan Chenga8e29892007-01-19 07:51:42 +000033#include "llvm/ADT/VectorExtras.h"
Evan Chengb01fad62007-03-12 23:30:29 +000034#include "llvm/Support/MathExtras.h"
Evan Chenga8e29892007-01-19 07:51:42 +000035using namespace llvm;
36
37ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
38 : TargetLowering(TM), ARMPCLabelIndex(0) {
39 Subtarget = &TM.getSubtarget<ARMSubtarget>();
40
Evan Chengb1df8f22007-04-27 08:15:43 +000041 if (Subtarget->isTargetDarwin()) {
42 // Don't have these.
43 setLibcallName(RTLIB::UINTTOFP_I64_F32, NULL);
44 setLibcallName(RTLIB::UINTTOFP_I64_F64, NULL);
Evan Chenga8e29892007-01-19 07:51:42 +000045
Evan Chengb1df8f22007-04-27 08:15:43 +000046 // Uses VFP for Thumb libfuncs if available.
47 if (Subtarget->isThumb() && Subtarget->hasVFP2()) {
48 // Single-precision floating-point arithmetic.
49 setLibcallName(RTLIB::ADD_F32, "__addsf3vfp");
50 setLibcallName(RTLIB::SUB_F32, "__subsf3vfp");
51 setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp");
52 setLibcallName(RTLIB::DIV_F32, "__divsf3vfp");
Evan Chenga8e29892007-01-19 07:51:42 +000053
Evan Chengb1df8f22007-04-27 08:15:43 +000054 // Double-precision floating-point arithmetic.
55 setLibcallName(RTLIB::ADD_F64, "__adddf3vfp");
56 setLibcallName(RTLIB::SUB_F64, "__subdf3vfp");
57 setLibcallName(RTLIB::MUL_F64, "__muldf3vfp");
58 setLibcallName(RTLIB::DIV_F64, "__divdf3vfp");
Evan Cheng193f8502007-01-31 09:30:58 +000059
Evan Chengb1df8f22007-04-27 08:15:43 +000060 // Single-precision comparisons.
61 setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp");
62 setLibcallName(RTLIB::UNE_F32, "__nesf2vfp");
63 setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp");
64 setLibcallName(RTLIB::OLE_F32, "__lesf2vfp");
65 setLibcallName(RTLIB::OGE_F32, "__gesf2vfp");
66 setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp");
67 setLibcallName(RTLIB::UO_F32, "__unordsf2vfp");
68 setLibcallName(RTLIB::O_F32, "__unordsf2vfp");
Evan Chenga8e29892007-01-19 07:51:42 +000069
Evan Chengb1df8f22007-04-27 08:15:43 +000070 setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
71 setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE);
72 setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
73 setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
74 setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
75 setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
76 setCmpLibcallCC(RTLIB::UO_F32, ISD::SETNE);
77 setCmpLibcallCC(RTLIB::O_F32, ISD::SETEQ);
Evan Cheng193f8502007-01-31 09:30:58 +000078
Evan Chengb1df8f22007-04-27 08:15:43 +000079 // Double-precision comparisons.
80 setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp");
81 setLibcallName(RTLIB::UNE_F64, "__nedf2vfp");
82 setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp");
83 setLibcallName(RTLIB::OLE_F64, "__ledf2vfp");
84 setLibcallName(RTLIB::OGE_F64, "__gedf2vfp");
85 setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp");
86 setLibcallName(RTLIB::UO_F64, "__unorddf2vfp");
87 setLibcallName(RTLIB::O_F64, "__unorddf2vfp");
Evan Chenga8e29892007-01-19 07:51:42 +000088
Evan Chengb1df8f22007-04-27 08:15:43 +000089 setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
90 setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE);
91 setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
92 setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
93 setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
94 setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
95 setCmpLibcallCC(RTLIB::UO_F64, ISD::SETNE);
96 setCmpLibcallCC(RTLIB::O_F64, ISD::SETEQ);
Evan Chenga8e29892007-01-19 07:51:42 +000097
Evan Chengb1df8f22007-04-27 08:15:43 +000098 // Floating-point to integer conversions.
99 // i64 conversions are done via library routines even when generating VFP
100 // instructions, so use the same ones.
101 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp");
102 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp");
103 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp");
104 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp");
Evan Chenga8e29892007-01-19 07:51:42 +0000105
Evan Chengb1df8f22007-04-27 08:15:43 +0000106 // Conversions between floating types.
107 setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp");
108 setLibcallName(RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp");
109
110 // Integer to floating-point conversions.
111 // i64 conversions are done via library routines even when generating VFP
112 // instructions, so use the same ones.
113 // FIXME: There appears to be some naming inconsistency in ARM libgcc: e.g.
114 // __floatunsidf vs. __floatunssidfvfp.
115 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp");
116 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp");
117 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp");
118 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp");
119 }
Evan Chenga8e29892007-01-19 07:51:42 +0000120 }
121
122 addRegisterClass(MVT::i32, ARM::GPRRegisterClass);
Evan Chengb6ab2542007-01-31 08:40:13 +0000123 if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb()) {
Evan Chenga8e29892007-01-19 07:51:42 +0000124 addRegisterClass(MVT::f32, ARM::SPRRegisterClass);
125 addRegisterClass(MVT::f64, ARM::DPRRegisterClass);
126 }
Evan Cheng9f8cbd12007-05-18 00:19:34 +0000127 computeRegisterProperties();
Evan Chenga8e29892007-01-19 07:51:42 +0000128
129 // ARM does not have f32 extending load.
130 setLoadXAction(ISD::EXTLOAD, MVT::f32, Expand);
131
132 // ARM supports all 4 flavors of integer indexed load / store.
133 for (unsigned im = (unsigned)ISD::PRE_INC;
134 im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
135 setIndexedLoadAction(im, MVT::i1, Legal);
136 setIndexedLoadAction(im, MVT::i8, Legal);
137 setIndexedLoadAction(im, MVT::i16, Legal);
138 setIndexedLoadAction(im, MVT::i32, Legal);
139 setIndexedStoreAction(im, MVT::i1, Legal);
140 setIndexedStoreAction(im, MVT::i8, Legal);
141 setIndexedStoreAction(im, MVT::i16, Legal);
142 setIndexedStoreAction(im, MVT::i32, Legal);
143 }
144
145 // i64 operation support.
146 if (Subtarget->isThumb()) {
147 setOperationAction(ISD::MUL, MVT::i64, Expand);
148 setOperationAction(ISD::MULHU, MVT::i32, Expand);
149 setOperationAction(ISD::MULHS, MVT::i32, Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000150 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
151 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000152 } else {
Dan Gohman525178c2007-10-08 18:33:35 +0000153 setOperationAction(ISD::MUL, MVT::i64, Expand);
154 setOperationAction(ISD::MULHU, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000155 if (!Subtarget->hasV6Ops())
Dan Gohman525178c2007-10-08 18:33:35 +0000156 setOperationAction(ISD::MULHS, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000157 }
158 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
159 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
160 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
161 setOperationAction(ISD::SRL, MVT::i64, Custom);
162 setOperationAction(ISD::SRA, MVT::i64, Custom);
163
164 // ARM does not have ROTL.
165 setOperationAction(ISD::ROTL, MVT::i32, Expand);
166 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
167 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
Evan Chengb0636152007-02-01 23:34:03 +0000168 if (!Subtarget->hasV5TOps() || Subtarget->isThumb())
Evan Chenga8e29892007-01-19 07:51:42 +0000169 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
170
Lauro Ramos Venancio368f20f2007-03-16 22:54:16 +0000171 // Only ARMv6 has BSWAP.
172 if (!Subtarget->hasV6Ops())
Chris Lattner1719e132007-03-20 02:25:53 +0000173 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Lauro Ramos Venancio368f20f2007-03-16 22:54:16 +0000174
Evan Chenga8e29892007-01-19 07:51:42 +0000175 // These are expanded into libcalls.
176 setOperationAction(ISD::SDIV, MVT::i32, Expand);
177 setOperationAction(ISD::UDIV, MVT::i32, Expand);
178 setOperationAction(ISD::SREM, MVT::i32, Expand);
179 setOperationAction(ISD::UREM, MVT::i32, Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000180 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
181 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000182
183 // Support label based line numbers.
184 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
185 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000186
187 setOperationAction(ISD::RET, MVT::Other, Custom);
188 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
189 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000190 setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000191 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000192
193 // Expand mem operations genericly.
194 setOperationAction(ISD::MEMSET , MVT::Other, Expand);
Dale Johannesen8dd86c12007-05-17 21:31:21 +0000195 setOperationAction(ISD::MEMCPY , MVT::Other, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000196 setOperationAction(ISD::MEMMOVE , MVT::Other, Expand);
Duncan Sands36397f52007-07-27 12:58:54 +0000197
Evan Chenga8e29892007-01-19 07:51:42 +0000198 // Use the default implementation.
199 setOperationAction(ISD::VASTART , MVT::Other, Expand);
200 setOperationAction(ISD::VAARG , MVT::Other, Expand);
201 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
202 setOperationAction(ISD::VAEND , MVT::Other, Expand);
203 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
204 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
205 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Expand);
206
207 if (!Subtarget->hasV6Ops()) {
208 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
209 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
210 }
211 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
212
Evan Chengb6ab2542007-01-31 08:40:13 +0000213 if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb())
Evan Chenga8e29892007-01-19 07:51:42 +0000214 // Turn f64->i64 into FMRRD iff target supports vfp2.
215 setOperationAction(ISD::BIT_CONVERT, MVT::i64, Custom);
216
217 setOperationAction(ISD::SETCC , MVT::i32, Expand);
218 setOperationAction(ISD::SETCC , MVT::f32, Expand);
219 setOperationAction(ISD::SETCC , MVT::f64, Expand);
220 setOperationAction(ISD::SELECT , MVT::i32, Expand);
221 setOperationAction(ISD::SELECT , MVT::f32, Expand);
222 setOperationAction(ISD::SELECT , MVT::f64, Expand);
223 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
224 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
225 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
226
227 setOperationAction(ISD::BRCOND , MVT::Other, Expand);
228 setOperationAction(ISD::BR_CC , MVT::i32, Custom);
229 setOperationAction(ISD::BR_CC , MVT::f32, Custom);
230 setOperationAction(ISD::BR_CC , MVT::f64, Custom);
231 setOperationAction(ISD::BR_JT , MVT::Other, Custom);
232
233 setOperationAction(ISD::VASTART, MVT::Other, Custom);
234 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
235 setOperationAction(ISD::VAEND, MVT::Other, Expand);
236 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
237 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
238
239 // FP Constants can't be immediates.
240 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
241 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
242
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000243 // We don't support sin/cos/fmod/copysign/pow
Evan Chenga8e29892007-01-19 07:51:42 +0000244 setOperationAction(ISD::FSIN , MVT::f64, Expand);
245 setOperationAction(ISD::FSIN , MVT::f32, Expand);
246 setOperationAction(ISD::FCOS , MVT::f32, Expand);
247 setOperationAction(ISD::FCOS , MVT::f64, Expand);
248 setOperationAction(ISD::FREM , MVT::f64, Expand);
249 setOperationAction(ISD::FREM , MVT::f32, Expand);
250 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
251 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000252 setOperationAction(ISD::FPOW , MVT::f64, Expand);
253 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000254
255 // int <-> fp are custom expanded into bit_convert + ARMISD ops.
256 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
257 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
258 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
259 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
260
261 setStackPointerRegisterToSaveRestore(ARM::SP);
Evan Chenga8e29892007-01-19 07:51:42 +0000262 setSchedulingPreference(SchedulingForRegPressure);
Evan Cheng9f8cbd12007-05-18 00:19:34 +0000263 setIfCvtBlockSizeLimit(Subtarget->isThumb() ? 0 : 10);
Evan Cheng97e604e2007-06-19 23:55:02 +0000264 setIfCvtDupBlockSizeLimit(Subtarget->isThumb() ? 0 : 2);
Dale Johannesen8dd86c12007-05-17 21:31:21 +0000265
266 maxStoresPerMemcpy = 1; //// temporary - rewrite interface to use type
Evan Chenga8e29892007-01-19 07:51:42 +0000267}
268
269
270const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
271 switch (Opcode) {
272 default: return 0;
273 case ARMISD::Wrapper: return "ARMISD::Wrapper";
Evan Chenga8e29892007-01-19 07:51:42 +0000274 case ARMISD::WrapperJT: return "ARMISD::WrapperJT";
275 case ARMISD::CALL: return "ARMISD::CALL";
Evan Cheng277f0742007-06-19 21:05:09 +0000276 case ARMISD::CALL_PRED: return "ARMISD::CALL_PRED";
Evan Chenga8e29892007-01-19 07:51:42 +0000277 case ARMISD::CALL_NOLINK: return "ARMISD::CALL_NOLINK";
278 case ARMISD::tCALL: return "ARMISD::tCALL";
279 case ARMISD::BRCOND: return "ARMISD::BRCOND";
280 case ARMISD::BR_JT: return "ARMISD::BR_JT";
281 case ARMISD::RET_FLAG: return "ARMISD::RET_FLAG";
282 case ARMISD::PIC_ADD: return "ARMISD::PIC_ADD";
283 case ARMISD::CMP: return "ARMISD::CMP";
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000284 case ARMISD::CMPNZ: return "ARMISD::CMPNZ";
Evan Chenga8e29892007-01-19 07:51:42 +0000285 case ARMISD::CMPFP: return "ARMISD::CMPFP";
286 case ARMISD::CMPFPw0: return "ARMISD::CMPFPw0";
287 case ARMISD::FMSTAT: return "ARMISD::FMSTAT";
288 case ARMISD::CMOV: return "ARMISD::CMOV";
289 case ARMISD::CNEG: return "ARMISD::CNEG";
290
291 case ARMISD::FTOSI: return "ARMISD::FTOSI";
292 case ARMISD::FTOUI: return "ARMISD::FTOUI";
293 case ARMISD::SITOF: return "ARMISD::SITOF";
294 case ARMISD::UITOF: return "ARMISD::UITOF";
Evan Chenga8e29892007-01-19 07:51:42 +0000295
296 case ARMISD::SRL_FLAG: return "ARMISD::SRL_FLAG";
297 case ARMISD::SRA_FLAG: return "ARMISD::SRA_FLAG";
298 case ARMISD::RRX: return "ARMISD::RRX";
299
300 case ARMISD::FMRRD: return "ARMISD::FMRRD";
301 case ARMISD::FMDRR: return "ARMISD::FMDRR";
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000302
303 case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
Evan Chenga8e29892007-01-19 07:51:42 +0000304 }
305}
306
307//===----------------------------------------------------------------------===//
308// Lowering Code
309//===----------------------------------------------------------------------===//
310
311
312/// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
313static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
314 switch (CC) {
315 default: assert(0 && "Unknown condition code!");
316 case ISD::SETNE: return ARMCC::NE;
317 case ISD::SETEQ: return ARMCC::EQ;
318 case ISD::SETGT: return ARMCC::GT;
319 case ISD::SETGE: return ARMCC::GE;
320 case ISD::SETLT: return ARMCC::LT;
321 case ISD::SETLE: return ARMCC::LE;
322 case ISD::SETUGT: return ARMCC::HI;
323 case ISD::SETUGE: return ARMCC::HS;
324 case ISD::SETULT: return ARMCC::LO;
325 case ISD::SETULE: return ARMCC::LS;
326 }
327}
328
329/// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC. It
330/// returns true if the operands should be inverted to form the proper
331/// comparison.
332static bool FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
333 ARMCC::CondCodes &CondCode2) {
334 bool Invert = false;
335 CondCode2 = ARMCC::AL;
336 switch (CC) {
337 default: assert(0 && "Unknown FP condition!");
338 case ISD::SETEQ:
339 case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
340 case ISD::SETGT:
341 case ISD::SETOGT: CondCode = ARMCC::GT; break;
342 case ISD::SETGE:
343 case ISD::SETOGE: CondCode = ARMCC::GE; break;
344 case ISD::SETOLT: CondCode = ARMCC::MI; break;
345 case ISD::SETOLE: CondCode = ARMCC::GT; Invert = true; break;
346 case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
347 case ISD::SETO: CondCode = ARMCC::VC; break;
348 case ISD::SETUO: CondCode = ARMCC::VS; break;
349 case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
350 case ISD::SETUGT: CondCode = ARMCC::HI; break;
351 case ISD::SETUGE: CondCode = ARMCC::PL; break;
352 case ISD::SETLT:
353 case ISD::SETULT: CondCode = ARMCC::LT; break;
354 case ISD::SETLE:
355 case ISD::SETULE: CondCode = ARMCC::LE; break;
356 case ISD::SETNE:
357 case ISD::SETUNE: CondCode = ARMCC::NE; break;
358 }
359 return Invert;
360}
361
362static void
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000363HowToPassArgument(MVT::ValueType ObjectVT, unsigned NumGPRs,
364 unsigned StackOffset, unsigned &NeededGPRs,
365 unsigned &NeededStackSize, unsigned &GPRPad,
366 unsigned &StackPad, unsigned Flags) {
367 NeededStackSize = 0;
368 NeededGPRs = 0;
369 StackPad = 0;
370 GPRPad = 0;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000371 unsigned align = (Flags >> ISD::ParamFlags::OrigAlignmentOffs);
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000372 GPRPad = NumGPRs % ((align + 3)/4);
373 StackPad = StackOffset % align;
374 unsigned firstGPR = NumGPRs + GPRPad;
Evan Chenga8e29892007-01-19 07:51:42 +0000375 switch (ObjectVT) {
376 default: assert(0 && "Unhandled argument type!");
377 case MVT::i32:
378 case MVT::f32:
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000379 if (firstGPR < 4)
380 NeededGPRs = 1;
Evan Chenga8e29892007-01-19 07:51:42 +0000381 else
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000382 NeededStackSize = 4;
Evan Chenga8e29892007-01-19 07:51:42 +0000383 break;
384 case MVT::i64:
385 case MVT::f64:
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000386 if (firstGPR < 3)
387 NeededGPRs = 2;
388 else if (firstGPR == 3) {
389 NeededGPRs = 1;
390 NeededStackSize = 4;
Evan Chenga8e29892007-01-19 07:51:42 +0000391 } else
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000392 NeededStackSize = 8;
Evan Chenga8e29892007-01-19 07:51:42 +0000393 }
394}
395
Evan Chengfc403422007-02-03 08:53:01 +0000396/// LowerCALL - Lowering a ISD::CALL node into a callseq_start <-
397/// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
398/// nodes.
Evan Chenga8e29892007-01-19 07:51:42 +0000399SDOperand ARMTargetLowering::LowerCALL(SDOperand Op, SelectionDAG &DAG) {
400 MVT::ValueType RetVT= Op.Val->getValueType(0);
401 SDOperand Chain = Op.getOperand(0);
402 unsigned CallConv = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
403 assert((CallConv == CallingConv::C ||
Evan Chenga8e29892007-01-19 07:51:42 +0000404 CallConv == CallingConv::Fast) && "unknown calling convention");
405 SDOperand Callee = Op.getOperand(4);
406 unsigned NumOps = (Op.getNumOperands() - 5) / 2;
407 unsigned ArgOffset = 0; // Frame mechanisms handle retaddr slot
408 unsigned NumGPRs = 0; // GPRs used for parameter passing.
409
410 // Count how many bytes are to be pushed on the stack.
411 unsigned NumBytes = 0;
412
413 // Add up all the space actually used.
414 for (unsigned i = 0; i < NumOps; ++i) {
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000415 unsigned ObjSize;
416 unsigned ObjGPRs;
417 unsigned StackPad;
418 unsigned GPRPad;
Evan Chenga8e29892007-01-19 07:51:42 +0000419 MVT::ValueType ObjectVT = Op.getOperand(5+2*i).getValueType();
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000420 unsigned Flags = Op.getConstantOperandVal(5+2*i+1);
421 HowToPassArgument(ObjectVT, NumGPRs, NumBytes, ObjGPRs, ObjSize,
422 GPRPad, StackPad, Flags);
423 NumBytes += ObjSize + StackPad;
424 NumGPRs += ObjGPRs + GPRPad;
Evan Chenga8e29892007-01-19 07:51:42 +0000425 }
426
427 // Adjust the stack pointer for the new arguments...
428 // These operations are automatically eliminated by the prolog/epilog pass
429 Chain = DAG.getCALLSEQ_START(Chain,
430 DAG.getConstant(NumBytes, MVT::i32));
431
432 SDOperand StackPtr = DAG.getRegister(ARM::SP, MVT::i32);
433
434 static const unsigned GPRArgRegs[] = {
435 ARM::R0, ARM::R1, ARM::R2, ARM::R3
436 };
437
438 NumGPRs = 0;
439 std::vector<std::pair<unsigned, SDOperand> > RegsToPass;
440 std::vector<SDOperand> MemOpChains;
441 for (unsigned i = 0; i != NumOps; ++i) {
442 SDOperand Arg = Op.getOperand(5+2*i);
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000443 unsigned Flags = Op.getConstantOperandVal(5+2*i+1);
Evan Chenga8e29892007-01-19 07:51:42 +0000444 MVT::ValueType ArgVT = Arg.getValueType();
445
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000446 unsigned ObjSize;
447 unsigned ObjGPRs;
448 unsigned GPRPad;
449 unsigned StackPad;
450 HowToPassArgument(ArgVT, NumGPRs, ArgOffset, ObjGPRs,
451 ObjSize, GPRPad, StackPad, Flags);
452 NumGPRs += GPRPad;
453 ArgOffset += StackPad;
Evan Chenga8e29892007-01-19 07:51:42 +0000454 if (ObjGPRs > 0) {
455 switch (ArgVT) {
456 default: assert(0 && "Unexpected ValueType for argument!");
457 case MVT::i32:
458 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs], Arg));
459 break;
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000460 case MVT::f32:
Evan Chenga8e29892007-01-19 07:51:42 +0000461 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs],
462 DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Arg)));
463 break;
464 case MVT::i64: {
465 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Arg,
466 DAG.getConstant(0, getPointerTy()));
467 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Arg,
468 DAG.getConstant(1, getPointerTy()));
469 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs], Lo));
470 if (ObjGPRs == 2)
471 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs+1], Hi));
472 else {
473 SDOperand PtrOff= DAG.getConstant(ArgOffset, StackPtr.getValueType());
474 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
475 MemOpChains.push_back(DAG.getStore(Chain, Hi, PtrOff, NULL, 0));
476 }
477 break;
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000478 }
Evan Chenga8e29892007-01-19 07:51:42 +0000479 case MVT::f64: {
480 SDOperand Cvt = DAG.getNode(ARMISD::FMRRD,
481 DAG.getVTList(MVT::i32, MVT::i32),
482 &Arg, 1);
483 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs], Cvt));
484 if (ObjGPRs == 2)
485 RegsToPass.push_back(std::make_pair(GPRArgRegs[NumGPRs+1],
486 Cvt.getValue(1)));
487 else {
488 SDOperand PtrOff= DAG.getConstant(ArgOffset, StackPtr.getValueType());
489 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
490 MemOpChains.push_back(DAG.getStore(Chain, Cvt.getValue(1), PtrOff,
491 NULL, 0));
492 }
493 break;
494 }
495 }
496 } else {
497 assert(ObjSize != 0);
498 SDOperand PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
499 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
500 MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
501 }
502
503 NumGPRs += ObjGPRs;
504 ArgOffset += ObjSize;
505 }
506
507 if (!MemOpChains.empty())
508 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
509 &MemOpChains[0], MemOpChains.size());
510
511 // Build a sequence of copy-to-reg nodes chained together with token chain
512 // and flag operands which copy the outgoing args into the appropriate regs.
513 SDOperand InFlag;
514 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
515 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
516 InFlag);
517 InFlag = Chain.getValue(1);
518 }
519
520 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
521 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
522 // node so that legalize doesn't hack it.
523 bool isDirect = false;
524 bool isARMFunc = false;
Evan Cheng277f0742007-06-19 21:05:09 +0000525 bool isLocalARMFunc = false;
Evan Chenga8e29892007-01-19 07:51:42 +0000526 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
527 GlobalValue *GV = G->getGlobal();
Evan Chenga8e29892007-01-19 07:51:42 +0000528 isDirect = true;
Reid Spencer5cbf9852007-01-30 20:08:39 +0000529 bool isExt = (GV->isDeclaration() || GV->hasWeakLinkage() ||
Evan Chenga8e29892007-01-19 07:51:42 +0000530 GV->hasLinkOnceLinkage());
Evan Cheng970a4192007-01-19 19:28:01 +0000531 bool isStub = (isExt && Subtarget->isTargetDarwin()) &&
Evan Chenga8e29892007-01-19 07:51:42 +0000532 getTargetMachine().getRelocationModel() != Reloc::Static;
533 isARMFunc = !Subtarget->isThumb() || isStub;
Evan Cheng277f0742007-06-19 21:05:09 +0000534 // ARM call to a local ARM function is predicable.
535 isLocalARMFunc = !Subtarget->isThumb() && !isExt;
Evan Chengc60e76d2007-01-30 20:37:08 +0000536 // tBX takes a register source operand.
537 if (isARMFunc && Subtarget->isThumb() && !Subtarget->hasV5TOps()) {
538 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, ARMPCLabelIndex,
539 ARMCP::CPStub, 4);
540 SDOperand CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 2);
541 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
542 Callee = DAG.getLoad(getPointerTy(), DAG.getEntryNode(), CPAddr, NULL, 0);
543 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
544 Callee = DAG.getNode(ARMISD::PIC_ADD, getPointerTy(), Callee, PICLabel);
545 } else
546 Callee = DAG.getTargetGlobalAddress(GV, getPointerTy());
Evan Chenga8e29892007-01-19 07:51:42 +0000547 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Evan Chenga8e29892007-01-19 07:51:42 +0000548 isDirect = true;
Evan Cheng970a4192007-01-19 19:28:01 +0000549 bool isStub = Subtarget->isTargetDarwin() &&
Evan Chenga8e29892007-01-19 07:51:42 +0000550 getTargetMachine().getRelocationModel() != Reloc::Static;
551 isARMFunc = !Subtarget->isThumb() || isStub;
Evan Chengc60e76d2007-01-30 20:37:08 +0000552 // tBX takes a register source operand.
553 const char *Sym = S->getSymbol();
554 if (isARMFunc && Subtarget->isThumb() && !Subtarget->hasV5TOps()) {
555 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(Sym, ARMPCLabelIndex,
556 ARMCP::CPStub, 4);
557 SDOperand CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 2);
558 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
559 Callee = DAG.getLoad(getPointerTy(), DAG.getEntryNode(), CPAddr, NULL, 0);
560 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
561 Callee = DAG.getNode(ARMISD::PIC_ADD, getPointerTy(), Callee, PICLabel);
562 } else
563 Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Evan Chenga8e29892007-01-19 07:51:42 +0000564 }
565
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +0000566 // FIXME: handle tail calls differently.
567 unsigned CallOpc;
568 if (Subtarget->isThumb()) {
569 if (!Subtarget->hasV5TOps() && (!isDirect || isARMFunc))
570 CallOpc = ARMISD::CALL_NOLINK;
571 else
572 CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
573 } else {
574 CallOpc = (isDirect || Subtarget->hasV5TOps())
Evan Cheng277f0742007-06-19 21:05:09 +0000575 ? (isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL)
576 : ARMISD::CALL_NOLINK;
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +0000577 }
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000578 if (CallOpc == ARMISD::CALL_NOLINK && !Subtarget->isThumb()) {
579 // implicit def LR - LR mustn't be allocated as GRP:$dst of CALL_NOLINK
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +0000580 Chain = DAG.getCopyToReg(Chain, ARM::LR,
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000581 DAG.getNode(ISD::UNDEF, MVT::i32), InFlag);
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +0000582 InFlag = Chain.getValue(1);
583 }
584
Evan Chenga8e29892007-01-19 07:51:42 +0000585 std::vector<MVT::ValueType> NodeTys;
586 NodeTys.push_back(MVT::Other); // Returns a chain
587 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
588
589 std::vector<SDOperand> Ops;
590 Ops.push_back(Chain);
591 Ops.push_back(Callee);
592
593 // Add argument registers to the end of the list so that they are known live
594 // into the call.
595 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
596 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
597 RegsToPass[i].second.getValueType()));
598
Evan Chenga8e29892007-01-19 07:51:42 +0000599 if (InFlag.Val)
600 Ops.push_back(InFlag);
601 Chain = DAG.getNode(CallOpc, NodeTys, &Ops[0], Ops.size());
602 InFlag = Chain.getValue(1);
603
604 SDOperand CSOps[] = { Chain, DAG.getConstant(NumBytes, MVT::i32), InFlag };
605 Chain = DAG.getNode(ISD::CALLSEQ_END,
606 DAG.getNodeValueTypes(MVT::Other, MVT::Flag),
607 ((RetVT != MVT::Other) ? 2 : 1), CSOps, 3);
608 if (RetVT != MVT::Other)
609 InFlag = Chain.getValue(1);
610
611 std::vector<SDOperand> ResultVals;
612 NodeTys.clear();
613
614 // If the call has results, copy the values out of the ret val registers.
615 switch (RetVT) {
616 default: assert(0 && "Unexpected ret value!");
617 case MVT::Other:
618 break;
619 case MVT::i32:
620 Chain = DAG.getCopyFromReg(Chain, ARM::R0, MVT::i32, InFlag).getValue(1);
621 ResultVals.push_back(Chain.getValue(0));
622 if (Op.Val->getValueType(1) == MVT::i32) {
623 // Returns a i64 value.
624 Chain = DAG.getCopyFromReg(Chain, ARM::R1, MVT::i32,
625 Chain.getValue(2)).getValue(1);
626 ResultVals.push_back(Chain.getValue(0));
627 NodeTys.push_back(MVT::i32);
628 }
629 NodeTys.push_back(MVT::i32);
630 break;
631 case MVT::f32:
632 Chain = DAG.getCopyFromReg(Chain, ARM::R0, MVT::i32, InFlag).getValue(1);
633 ResultVals.push_back(DAG.getNode(ISD::BIT_CONVERT, MVT::f32,
634 Chain.getValue(0)));
635 NodeTys.push_back(MVT::f32);
636 break;
637 case MVT::f64: {
638 SDOperand Lo = DAG.getCopyFromReg(Chain, ARM::R0, MVT::i32, InFlag);
639 SDOperand Hi = DAG.getCopyFromReg(Lo, ARM::R1, MVT::i32, Lo.getValue(2));
640 ResultVals.push_back(DAG.getNode(ARMISD::FMDRR, MVT::f64, Lo, Hi));
641 NodeTys.push_back(MVT::f64);
642 break;
643 }
644 }
645
646 NodeTys.push_back(MVT::Other);
647
648 if (ResultVals.empty())
649 return Chain;
650
651 ResultVals.push_back(Chain);
652 SDOperand Res = DAG.getNode(ISD::MERGE_VALUES, NodeTys, &ResultVals[0],
653 ResultVals.size());
654 return Res.getValue(Op.ResNo);
655}
656
657static SDOperand LowerRET(SDOperand Op, SelectionDAG &DAG) {
658 SDOperand Copy;
659 SDOperand Chain = Op.getOperand(0);
660 switch(Op.getNumOperands()) {
661 default:
662 assert(0 && "Do not know how to return this many arguments!");
663 abort();
664 case 1: {
665 SDOperand LR = DAG.getRegister(ARM::LR, MVT::i32);
666 return DAG.getNode(ARMISD::RET_FLAG, MVT::Other, Chain);
667 }
668 case 3:
669 Op = Op.getOperand(1);
670 if (Op.getValueType() == MVT::f32) {
671 Op = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
672 } else if (Op.getValueType() == MVT::f64) {
Chris Lattner65a33232007-10-18 06:17:07 +0000673 // Legalize ret f64 -> ret 2 x i32. We always have fmrrd if f64 is
674 // available.
675 Op = DAG.getNode(ARMISD::FMRRD, DAG.getVTList(MVT::i32, MVT::i32), &Op,1);
676 SDOperand Sign = DAG.getConstant(0, MVT::i32);
677 return DAG.getNode(ISD::RET, MVT::Other, Chain, Op, Sign,
678 Op.getValue(1), Sign);
Evan Chenga8e29892007-01-19 07:51:42 +0000679 }
680 Copy = DAG.getCopyToReg(Chain, ARM::R0, Op, SDOperand());
681 if (DAG.getMachineFunction().liveout_empty())
682 DAG.getMachineFunction().addLiveOut(ARM::R0);
683 break;
684 case 5:
685 Copy = DAG.getCopyToReg(Chain, ARM::R1, Op.getOperand(3), SDOperand());
686 Copy = DAG.getCopyToReg(Copy, ARM::R0, Op.getOperand(1), Copy.getValue(1));
687 // If we haven't noted the R0+R1 are live out, do so now.
688 if (DAG.getMachineFunction().liveout_empty()) {
689 DAG.getMachineFunction().addLiveOut(ARM::R0);
690 DAG.getMachineFunction().addLiveOut(ARM::R1);
691 }
692 break;
693 }
694
695 //We must use RET_FLAG instead of BRIND because BRIND doesn't have a flag
696 return DAG.getNode(ARMISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
697}
698
699// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
700// their target countpart wrapped in the ARMISD::Wrapper node. Suppose N is
701// one of the above mentioned nodes. It has to be wrapped because otherwise
702// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
703// be used to form addressing mode. These wrapped nodes will be selected
Evan Cheng9f6636f2007-03-19 07:48:02 +0000704// into MOVi.
Evan Chenga8e29892007-01-19 07:51:42 +0000705static SDOperand LowerConstantPool(SDOperand Op, SelectionDAG &DAG) {
706 MVT::ValueType PtrVT = Op.getValueType();
707 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
708 SDOperand Res;
709 if (CP->isMachineConstantPoolEntry())
710 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
711 CP->getAlignment());
712 else
713 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
714 CP->getAlignment());
715 return DAG.getNode(ARMISD::Wrapper, MVT::i32, Res);
716}
717
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000718// Lower ISD::GlobalTLSAddress using the "general dynamic" model
719SDOperand
720ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
721 SelectionDAG &DAG) {
722 MVT::ValueType PtrVT = getPointerTy();
723 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
724 ARMConstantPoolValue *CPV =
725 new ARMConstantPoolValue(GA->getGlobal(), ARMPCLabelIndex, ARMCP::CPValue,
726 PCAdj, "tlsgd", true);
727 SDOperand Argument = DAG.getTargetConstantPool(CPV, PtrVT, 2);
728 Argument = DAG.getNode(ARMISD::Wrapper, MVT::i32, Argument);
729 Argument = DAG.getLoad(PtrVT, DAG.getEntryNode(), Argument, NULL, 0);
730 SDOperand Chain = Argument.getValue(1);
731
732 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
733 Argument = DAG.getNode(ARMISD::PIC_ADD, PtrVT, Argument, PICLabel);
734
735 // call __tls_get_addr.
736 ArgListTy Args;
737 ArgListEntry Entry;
738 Entry.Node = Argument;
739 Entry.Ty = (const Type *) Type::Int32Ty;
740 Args.push_back(Entry);
741 std::pair<SDOperand, SDOperand> CallResult =
742 LowerCallTo(Chain, (const Type *) Type::Int32Ty, false, false,
743 CallingConv::C, false,
744 DAG.getExternalSymbol("__tls_get_addr", PtrVT), Args, DAG);
745 return CallResult.first;
746}
747
748// Lower ISD::GlobalTLSAddress using the "initial exec" or
749// "local exec" model.
750SDOperand
751ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
752 SelectionDAG &DAG) {
753 GlobalValue *GV = GA->getGlobal();
754 SDOperand Offset;
755 SDOperand Chain = DAG.getEntryNode();
756 MVT::ValueType PtrVT = getPointerTy();
757 // Get the Thread Pointer
758 SDOperand ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, PtrVT);
759
760 if (GV->isDeclaration()){
761 // initial exec model
762 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
763 ARMConstantPoolValue *CPV =
764 new ARMConstantPoolValue(GA->getGlobal(), ARMPCLabelIndex, ARMCP::CPValue,
765 PCAdj, "gottpoff", true);
766 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 2);
767 Offset = DAG.getNode(ARMISD::Wrapper, MVT::i32, Offset);
768 Offset = DAG.getLoad(PtrVT, Chain, Offset, NULL, 0);
769 Chain = Offset.getValue(1);
770
771 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
772 Offset = DAG.getNode(ARMISD::PIC_ADD, PtrVT, Offset, PICLabel);
773
774 Offset = DAG.getLoad(PtrVT, Chain, Offset, NULL, 0);
775 } else {
776 // local exec model
777 ARMConstantPoolValue *CPV =
778 new ARMConstantPoolValue(GV, ARMCP::CPValue, "tpoff");
779 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 2);
780 Offset = DAG.getNode(ARMISD::Wrapper, MVT::i32, Offset);
781 Offset = DAG.getLoad(PtrVT, Chain, Offset, NULL, 0);
782 }
783
784 // The address of the thread local variable is the add of the thread
785 // pointer with the offset of the variable.
786 return DAG.getNode(ISD::ADD, PtrVT, ThreadPointer, Offset);
787}
788
789SDOperand
790ARMTargetLowering::LowerGlobalTLSAddress(SDOperand Op, SelectionDAG &DAG) {
791 // TODO: implement the "local dynamic" model
792 assert(Subtarget->isTargetELF() &&
793 "TLS not implemented for non-ELF targets");
794 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
795 // If the relocation model is PIC, use the "General Dynamic" TLS Model,
796 // otherwise use the "Local Exec" TLS Model
797 if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
798 return LowerToTLSGeneralDynamicModel(GA, DAG);
799 else
800 return LowerToTLSExecModels(GA, DAG);
801}
802
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000803SDOperand ARMTargetLowering::LowerGlobalAddressELF(SDOperand Op,
804 SelectionDAG &DAG) {
805 MVT::ValueType PtrVT = getPointerTy();
806 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
807 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
808 if (RelocM == Reloc::PIC_) {
Lauro Ramos Venancio5d3d44a2007-05-14 23:20:21 +0000809 bool UseGOTOFF = GV->hasInternalLinkage() || GV->hasHiddenVisibility();
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000810 ARMConstantPoolValue *CPV =
811 new ARMConstantPoolValue(GV, ARMCP::CPValue, UseGOTOFF ? "GOTOFF":"GOT");
812 SDOperand CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 2);
813 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
814 SDOperand Result = DAG.getLoad(PtrVT, DAG.getEntryNode(), CPAddr, NULL, 0);
815 SDOperand Chain = Result.getValue(1);
816 SDOperand GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PtrVT);
817 Result = DAG.getNode(ISD::ADD, PtrVT, Result, GOT);
818 if (!UseGOTOFF)
819 Result = DAG.getLoad(PtrVT, Chain, Result, NULL, 0);
820 return Result;
821 } else {
822 SDOperand CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 2);
823 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
824 return DAG.getLoad(PtrVT, DAG.getEntryNode(), CPAddr, NULL, 0);
825 }
826}
827
Evan Chenga8e29892007-01-19 07:51:42 +0000828/// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol
Evan Cheng97c9bb52007-05-04 00:26:58 +0000829/// even in non-static mode.
830static bool GVIsIndirectSymbol(GlobalValue *GV, Reloc::Model RelocM) {
831 return RelocM != Reloc::Static &&
832 (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
Gabor Greifa99be512007-07-05 17:07:56 +0000833 (GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode()));
Evan Chenga8e29892007-01-19 07:51:42 +0000834}
835
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000836SDOperand ARMTargetLowering::LowerGlobalAddressDarwin(SDOperand Op,
837 SelectionDAG &DAG) {
Evan Chenga8e29892007-01-19 07:51:42 +0000838 MVT::ValueType PtrVT = getPointerTy();
839 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
840 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
Evan Cheng97c9bb52007-05-04 00:26:58 +0000841 bool IsIndirect = GVIsIndirectSymbol(GV, RelocM);
Evan Chenga8e29892007-01-19 07:51:42 +0000842 SDOperand CPAddr;
843 if (RelocM == Reloc::Static)
844 CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 2);
845 else {
846 unsigned PCAdj = (RelocM != Reloc::PIC_)
847 ? 0 : (Subtarget->isThumb() ? 4 : 8);
Evan Chengc60e76d2007-01-30 20:37:08 +0000848 ARMCP::ARMCPKind Kind = IsIndirect ? ARMCP::CPNonLazyPtr
849 : ARMCP::CPValue;
Evan Chenga8e29892007-01-19 07:51:42 +0000850 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, ARMPCLabelIndex,
Evan Chengc60e76d2007-01-30 20:37:08 +0000851 Kind, PCAdj);
Evan Chenga8e29892007-01-19 07:51:42 +0000852 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 2);
853 }
854 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
855
856 SDOperand Result = DAG.getLoad(PtrVT, DAG.getEntryNode(), CPAddr, NULL, 0);
857 SDOperand Chain = Result.getValue(1);
858
859 if (RelocM == Reloc::PIC_) {
860 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
861 Result = DAG.getNode(ARMISD::PIC_ADD, PtrVT, Result, PICLabel);
862 }
863 if (IsIndirect)
864 Result = DAG.getLoad(PtrVT, Chain, Result, NULL, 0);
865
866 return Result;
867}
868
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000869SDOperand ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDOperand Op,
870 SelectionDAG &DAG){
871 assert(Subtarget->isTargetELF() &&
872 "GLOBAL OFFSET TABLE not implemented for non-ELF targets");
873 MVT::ValueType PtrVT = getPointerTy();
874 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
875 ARMConstantPoolValue *CPV = new ARMConstantPoolValue("_GLOBAL_OFFSET_TABLE_",
876 ARMPCLabelIndex,
877 ARMCP::CPValue, PCAdj);
878 SDOperand CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 2);
879 CPAddr = DAG.getNode(ARMISD::Wrapper, MVT::i32, CPAddr);
880 SDOperand Result = DAG.getLoad(PtrVT, DAG.getEntryNode(), CPAddr, NULL, 0);
881 SDOperand PICLabel = DAG.getConstant(ARMPCLabelIndex++, MVT::i32);
882 return DAG.getNode(ARMISD::PIC_ADD, PtrVT, Result, PICLabel);
883}
884
Evan Chenga8e29892007-01-19 07:51:42 +0000885static SDOperand LowerVASTART(SDOperand Op, SelectionDAG &DAG,
886 unsigned VarArgsFrameIndex) {
887 // vastart just stores the address of the VarArgsFrameIndex slot into the
888 // memory location argument.
889 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
890 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
891 SrcValueSDNode *SV = cast<SrcValueSDNode>(Op.getOperand(2));
892 return DAG.getStore(Op.getOperand(0), FR, Op.getOperand(1), SV->getValue(),
893 SV->getOffset());
894}
895
896static SDOperand LowerFORMAL_ARGUMENT(SDOperand Op, SelectionDAG &DAG,
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000897 unsigned *vRegs, unsigned ArgNo,
Evan Chenga8e29892007-01-19 07:51:42 +0000898 unsigned &NumGPRs, unsigned &ArgOffset) {
899 MachineFunction &MF = DAG.getMachineFunction();
900 MVT::ValueType ObjectVT = Op.getValue(ArgNo).getValueType();
901 SDOperand Root = Op.getOperand(0);
902 std::vector<SDOperand> ArgValues;
903 SSARegMap *RegMap = MF.getSSARegMap();
904
905 static const unsigned GPRArgRegs[] = {
906 ARM::R0, ARM::R1, ARM::R2, ARM::R3
907 };
908
Lauro Ramos Venancio876eaf12007-02-13 14:07:13 +0000909 unsigned ObjSize;
910 unsigned ObjGPRs;
911 unsigned GPRPad;
912 unsigned StackPad;
913 unsigned Flags = Op.getConstantOperandVal(ArgNo + 3);
914 HowToPassArgument(ObjectVT, NumGPRs, ArgOffset, ObjGPRs,
915 ObjSize, GPRPad, StackPad, Flags);
916 NumGPRs += GPRPad;
917 ArgOffset += StackPad;
Evan Chenga8e29892007-01-19 07:51:42 +0000918
919 SDOperand ArgValue;
920 if (ObjGPRs == 1) {
921 unsigned VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
922 MF.addLiveIn(GPRArgRegs[NumGPRs], VReg);
923 vRegs[NumGPRs] = VReg;
924 ArgValue = DAG.getCopyFromReg(Root, VReg, MVT::i32);
925 if (ObjectVT == MVT::f32)
926 ArgValue = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, ArgValue);
927 } else if (ObjGPRs == 2) {
928 unsigned VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
929 MF.addLiveIn(GPRArgRegs[NumGPRs], VReg);
930 vRegs[NumGPRs] = VReg;
931 ArgValue = DAG.getCopyFromReg(Root, VReg, MVT::i32);
932
933 VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
934 MF.addLiveIn(GPRArgRegs[NumGPRs+1], VReg);
935 vRegs[NumGPRs+1] = VReg;
936 SDOperand ArgValue2 = DAG.getCopyFromReg(Root, VReg, MVT::i32);
937
938 if (ObjectVT == MVT::i64)
939 ArgValue = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, ArgValue, ArgValue2);
940 else
941 ArgValue = DAG.getNode(ARMISD::FMDRR, MVT::f64, ArgValue, ArgValue2);
942 }
943 NumGPRs += ObjGPRs;
944
945 if (ObjSize) {
946 // If the argument is actually used, emit a load from the right stack
947 // slot.
948 if (!Op.Val->hasNUsesOfValue(0, ArgNo)) {
949 MachineFrameInfo *MFI = MF.getFrameInfo();
950 int FI = MFI->CreateFixedObject(ObjSize, ArgOffset);
951 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i32);
952 if (ObjGPRs == 0)
953 ArgValue = DAG.getLoad(ObjectVT, Root, FIN, NULL, 0);
954 else {
955 SDOperand ArgValue2 =
956 DAG.getLoad(MVT::i32, Root, FIN, NULL, 0);
957 if (ObjectVT == MVT::i64)
958 ArgValue= DAG.getNode(ISD::BUILD_PAIR, MVT::i64, ArgValue, ArgValue2);
959 else
960 ArgValue= DAG.getNode(ARMISD::FMDRR, MVT::f64, ArgValue, ArgValue2);
961 }
962 } else {
963 // Don't emit a dead load.
964 ArgValue = DAG.getNode(ISD::UNDEF, ObjectVT);
965 }
966
967 ArgOffset += ObjSize; // Move on to the next argument.
968 }
969
970 return ArgValue;
971}
972
973SDOperand
974ARMTargetLowering::LowerFORMAL_ARGUMENTS(SDOperand Op, SelectionDAG &DAG) {
975 std::vector<SDOperand> ArgValues;
976 SDOperand Root = Op.getOperand(0);
977 unsigned ArgOffset = 0; // Frame mechanisms handle retaddr slot
978 unsigned NumGPRs = 0; // GPRs used for parameter passing.
979 unsigned VRegs[4];
980
981 unsigned NumArgs = Op.Val->getNumValues()-1;
982 for (unsigned ArgNo = 0; ArgNo < NumArgs; ++ArgNo)
983 ArgValues.push_back(LowerFORMAL_ARGUMENT(Op, DAG, VRegs, ArgNo,
984 NumGPRs, ArgOffset));
985
986 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
987 if (isVarArg) {
988 static const unsigned GPRArgRegs[] = {
989 ARM::R0, ARM::R1, ARM::R2, ARM::R3
990 };
991
992 MachineFunction &MF = DAG.getMachineFunction();
993 SSARegMap *RegMap = MF.getSSARegMap();
994 MachineFrameInfo *MFI = MF.getFrameInfo();
995 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Lauro Ramos Venancio600c3832007-02-23 20:32:57 +0000996 unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
997 unsigned VARegSize = (4 - NumGPRs) * 4;
998 unsigned VARegSaveSize = (VARegSize + Align - 1) & ~(Align - 1);
Evan Chenga8e29892007-01-19 07:51:42 +0000999 if (VARegSaveSize) {
1000 // If this function is vararg, store any remaining integer argument regs
1001 // to their spots on the stack so that they may be loaded by deferencing
1002 // the result of va_next.
1003 AFI->setVarArgsRegSaveSize(VARegSaveSize);
Lauro Ramos Venancio600c3832007-02-23 20:32:57 +00001004 VarArgsFrameIndex = MFI->CreateFixedObject(VARegSaveSize, ArgOffset +
1005 VARegSaveSize - VARegSize);
Evan Chenga8e29892007-01-19 07:51:42 +00001006 SDOperand FIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
1007
1008 SmallVector<SDOperand, 4> MemOps;
1009 for (; NumGPRs < 4; ++NumGPRs) {
1010 unsigned VReg = RegMap->createVirtualRegister(&ARM::GPRRegClass);
1011 MF.addLiveIn(GPRArgRegs[NumGPRs], VReg);
1012 SDOperand Val = DAG.getCopyFromReg(Root, VReg, MVT::i32);
1013 SDOperand Store = DAG.getStore(Val.getValue(1), Val, FIN, NULL, 0);
1014 MemOps.push_back(Store);
1015 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
1016 DAG.getConstant(4, getPointerTy()));
1017 }
1018 if (!MemOps.empty())
1019 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
1020 &MemOps[0], MemOps.size());
1021 } else
1022 // This will point to the next argument passed via stack.
1023 VarArgsFrameIndex = MFI->CreateFixedObject(4, ArgOffset);
1024 }
1025
1026 ArgValues.push_back(Root);
1027
1028 // Return the new list of results.
1029 std::vector<MVT::ValueType> RetVT(Op.Val->value_begin(),
1030 Op.Val->value_end());
1031 return DAG.getNode(ISD::MERGE_VALUES, RetVT, &ArgValues[0], ArgValues.size());
1032}
1033
1034/// isFloatingPointZero - Return true if this is +0.0.
1035static bool isFloatingPointZero(SDOperand Op) {
1036 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johanneseneaf08942007-08-31 04:03:46 +00001037 return CFP->getValueAPF().isPosZero();
Evan Chenga8e29892007-01-19 07:51:42 +00001038 else if (ISD::isEXTLoad(Op.Val) || ISD::isNON_EXTLoad(Op.Val)) {
1039 // Maybe this has already been legalized into the constant pool?
1040 if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
1041 SDOperand WrapperOp = Op.getOperand(1).getOperand(0);
1042 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
1043 if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johanneseneaf08942007-08-31 04:03:46 +00001044 return CFP->getValueAPF().isPosZero();
Evan Chenga8e29892007-01-19 07:51:42 +00001045 }
1046 }
1047 return false;
1048}
1049
Evan Cheng9a2ef952007-02-02 01:53:26 +00001050static bool isLegalCmpImmediate(unsigned C, bool isThumb) {
Evan Chenga8e29892007-01-19 07:51:42 +00001051 return ( isThumb && (C & ~255U) == 0) ||
1052 (!isThumb && ARM_AM::getSOImmVal(C) != -1);
1053}
1054
1055/// Returns appropriate ARM CMP (cmp) and corresponding condition code for
1056/// the given operands.
1057static SDOperand getARMCmp(SDOperand LHS, SDOperand RHS, ISD::CondCode CC,
1058 SDOperand &ARMCC, SelectionDAG &DAG, bool isThumb) {
1059 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.Val)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00001060 unsigned C = RHSC->getValue();
Evan Chenga8e29892007-01-19 07:51:42 +00001061 if (!isLegalCmpImmediate(C, isThumb)) {
1062 // Constant does not fit, try adjusting it by one?
1063 switch (CC) {
1064 default: break;
1065 case ISD::SETLT:
Evan Chenga8e29892007-01-19 07:51:42 +00001066 case ISD::SETGE:
Evan Chenga8e29892007-01-19 07:51:42 +00001067 if (isLegalCmpImmediate(C-1, isThumb)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00001068 CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
1069 RHS = DAG.getConstant(C-1, MVT::i32);
1070 }
1071 break;
1072 case ISD::SETULT:
1073 case ISD::SETUGE:
1074 if (C > 0 && isLegalCmpImmediate(C-1, isThumb)) {
1075 CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
Evan Chenga8e29892007-01-19 07:51:42 +00001076 RHS = DAG.getConstant(C-1, MVT::i32);
1077 }
1078 break;
1079 case ISD::SETLE:
Evan Chenga8e29892007-01-19 07:51:42 +00001080 case ISD::SETGT:
Evan Chenga8e29892007-01-19 07:51:42 +00001081 if (isLegalCmpImmediate(C+1, isThumb)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00001082 CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
1083 RHS = DAG.getConstant(C+1, MVT::i32);
1084 }
1085 break;
1086 case ISD::SETULE:
1087 case ISD::SETUGT:
1088 if (C < 0xffffffff && isLegalCmpImmediate(C+1, isThumb)) {
1089 CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
Evan Chenga8e29892007-01-19 07:51:42 +00001090 RHS = DAG.getConstant(C+1, MVT::i32);
1091 }
1092 break;
1093 }
1094 }
1095 }
1096
1097 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
Lauro Ramos Venancio99966632007-04-02 01:30:03 +00001098 ARMISD::NodeType CompareType;
1099 switch (CondCode) {
1100 default:
1101 CompareType = ARMISD::CMP;
1102 break;
1103 case ARMCC::EQ:
1104 case ARMCC::NE:
1105 case ARMCC::MI:
1106 case ARMCC::PL:
1107 // Uses only N and Z Flags
1108 CompareType = ARMISD::CMPNZ;
1109 break;
1110 }
Evan Chenga8e29892007-01-19 07:51:42 +00001111 ARMCC = DAG.getConstant(CondCode, MVT::i32);
Lauro Ramos Venancio99966632007-04-02 01:30:03 +00001112 return DAG.getNode(CompareType, MVT::Flag, LHS, RHS);
Evan Chenga8e29892007-01-19 07:51:42 +00001113}
1114
1115/// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
1116static SDOperand getVFPCmp(SDOperand LHS, SDOperand RHS, SelectionDAG &DAG) {
1117 SDOperand Cmp;
1118 if (!isFloatingPointZero(RHS))
1119 Cmp = DAG.getNode(ARMISD::CMPFP, MVT::Flag, LHS, RHS);
1120 else
1121 Cmp = DAG.getNode(ARMISD::CMPFPw0, MVT::Flag, LHS);
1122 return DAG.getNode(ARMISD::FMSTAT, MVT::Flag, Cmp);
1123}
1124
1125static SDOperand LowerSELECT_CC(SDOperand Op, SelectionDAG &DAG,
1126 const ARMSubtarget *ST) {
1127 MVT::ValueType VT = Op.getValueType();
1128 SDOperand LHS = Op.getOperand(0);
1129 SDOperand RHS = Op.getOperand(1);
1130 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
1131 SDOperand TrueVal = Op.getOperand(2);
1132 SDOperand FalseVal = Op.getOperand(3);
1133
1134 if (LHS.getValueType() == MVT::i32) {
1135 SDOperand ARMCC;
Evan Cheng0e1d3792007-07-05 07:18:20 +00001136 SDOperand CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00001137 SDOperand Cmp = getARMCmp(LHS, RHS, CC, ARMCC, DAG, ST->isThumb());
Evan Cheng0e1d3792007-07-05 07:18:20 +00001138 return DAG.getNode(ARMISD::CMOV, VT, FalseVal, TrueVal, ARMCC, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00001139 }
1140
1141 ARMCC::CondCodes CondCode, CondCode2;
1142 if (FPCCToARMCC(CC, CondCode, CondCode2))
1143 std::swap(TrueVal, FalseVal);
1144
1145 SDOperand ARMCC = DAG.getConstant(CondCode, MVT::i32);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001146 SDOperand CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00001147 SDOperand Cmp = getVFPCmp(LHS, RHS, DAG);
1148 SDOperand Result = DAG.getNode(ARMISD::CMOV, VT, FalseVal, TrueVal,
Evan Cheng0e1d3792007-07-05 07:18:20 +00001149 ARMCC, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00001150 if (CondCode2 != ARMCC::AL) {
1151 SDOperand ARMCC2 = DAG.getConstant(CondCode2, MVT::i32);
1152 // FIXME: Needs another CMP because flag can have but one use.
1153 SDOperand Cmp2 = getVFPCmp(LHS, RHS, DAG);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001154 Result = DAG.getNode(ARMISD::CMOV, VT, Result, TrueVal, ARMCC2, CCR, Cmp2);
Evan Chenga8e29892007-01-19 07:51:42 +00001155 }
1156 return Result;
1157}
1158
1159static SDOperand LowerBR_CC(SDOperand Op, SelectionDAG &DAG,
1160 const ARMSubtarget *ST) {
1161 SDOperand Chain = Op.getOperand(0);
1162 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
1163 SDOperand LHS = Op.getOperand(2);
1164 SDOperand RHS = Op.getOperand(3);
1165 SDOperand Dest = Op.getOperand(4);
1166
1167 if (LHS.getValueType() == MVT::i32) {
1168 SDOperand ARMCC;
Evan Cheng0e1d3792007-07-05 07:18:20 +00001169 SDOperand CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00001170 SDOperand Cmp = getARMCmp(LHS, RHS, CC, ARMCC, DAG, ST->isThumb());
Evan Cheng0e1d3792007-07-05 07:18:20 +00001171 return DAG.getNode(ARMISD::BRCOND, MVT::Other, Chain, Dest, ARMCC, CCR,Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00001172 }
1173
1174 assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
1175 ARMCC::CondCodes CondCode, CondCode2;
1176 if (FPCCToARMCC(CC, CondCode, CondCode2))
1177 // Swap the LHS/RHS of the comparison if needed.
1178 std::swap(LHS, RHS);
1179
1180 SDOperand Cmp = getVFPCmp(LHS, RHS, DAG);
1181 SDOperand ARMCC = DAG.getConstant(CondCode, MVT::i32);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001182 SDOperand CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00001183 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Flag);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001184 SDOperand Ops[] = { Chain, Dest, ARMCC, CCR, Cmp };
1185 SDOperand Res = DAG.getNode(ARMISD::BRCOND, VTList, Ops, 5);
Evan Chenga8e29892007-01-19 07:51:42 +00001186 if (CondCode2 != ARMCC::AL) {
1187 ARMCC = DAG.getConstant(CondCode2, MVT::i32);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001188 SDOperand Ops[] = { Res, Dest, ARMCC, CCR, Res.getValue(1) };
1189 Res = DAG.getNode(ARMISD::BRCOND, VTList, Ops, 5);
Evan Chenga8e29892007-01-19 07:51:42 +00001190 }
1191 return Res;
1192}
1193
1194SDOperand ARMTargetLowering::LowerBR_JT(SDOperand Op, SelectionDAG &DAG) {
1195 SDOperand Chain = Op.getOperand(0);
1196 SDOperand Table = Op.getOperand(1);
1197 SDOperand Index = Op.getOperand(2);
1198
1199 MVT::ValueType PTy = getPointerTy();
1200 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
1201 ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>();
1202 SDOperand UId = DAG.getConstant(AFI->createJumpTableUId(), PTy);
1203 SDOperand JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
1204 Table = DAG.getNode(ARMISD::WrapperJT, MVT::i32, JTI, UId);
1205 Index = DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(4, PTy));
1206 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
1207 bool isPIC = getTargetMachine().getRelocationModel() == Reloc::PIC_;
Evan Chenge2446c62007-06-26 18:31:22 +00001208 Addr = DAG.getLoad(isPIC ? (MVT::ValueType)MVT::i32 : PTy,
1209 Chain, Addr, NULL, 0);
Evan Chenga8e29892007-01-19 07:51:42 +00001210 Chain = Addr.getValue(1);
1211 if (isPIC)
1212 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Table);
1213 return DAG.getNode(ARMISD::BR_JT, MVT::Other, Chain, Addr, JTI, UId);
1214}
1215
1216static SDOperand LowerFP_TO_INT(SDOperand Op, SelectionDAG &DAG) {
1217 unsigned Opc =
1218 Op.getOpcode() == ISD::FP_TO_SINT ? ARMISD::FTOSI : ARMISD::FTOUI;
1219 Op = DAG.getNode(Opc, MVT::f32, Op.getOperand(0));
1220 return DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
1221}
1222
1223static SDOperand LowerINT_TO_FP(SDOperand Op, SelectionDAG &DAG) {
1224 MVT::ValueType VT = Op.getValueType();
1225 unsigned Opc =
1226 Op.getOpcode() == ISD::SINT_TO_FP ? ARMISD::SITOF : ARMISD::UITOF;
1227
1228 Op = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op.getOperand(0));
1229 return DAG.getNode(Opc, VT, Op);
1230}
1231
1232static SDOperand LowerFCOPYSIGN(SDOperand Op, SelectionDAG &DAG) {
1233 // Implement fcopysign with a fabs and a conditional fneg.
1234 SDOperand Tmp0 = Op.getOperand(0);
1235 SDOperand Tmp1 = Op.getOperand(1);
1236 MVT::ValueType VT = Op.getValueType();
1237 MVT::ValueType SrcVT = Tmp1.getValueType();
1238 SDOperand AbsVal = DAG.getNode(ISD::FABS, VT, Tmp0);
1239 SDOperand Cmp = getVFPCmp(Tmp1, DAG.getConstantFP(0.0, SrcVT), DAG);
1240 SDOperand ARMCC = DAG.getConstant(ARMCC::LT, MVT::i32);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001241 SDOperand CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
1242 return DAG.getNode(ARMISD::CNEG, VT, AbsVal, AbsVal, ARMCC, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00001243}
1244
1245static SDOperand LowerBIT_CONVERT(SDOperand Op, SelectionDAG &DAG) {
1246 // Turn f64->i64 into FMRRD.
1247 assert(Op.getValueType() == MVT::i64 &&
1248 Op.getOperand(0).getValueType() == MVT::f64);
1249
1250 Op = Op.getOperand(0);
1251 SDOperand Cvt = DAG.getNode(ARMISD::FMRRD, DAG.getVTList(MVT::i32, MVT::i32),
1252 &Op, 1);
1253
1254 // Merge the pieces into a single i64 value.
1255 return DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Cvt, Cvt.getValue(1));
1256}
1257
Evan Chenga8e29892007-01-19 07:51:42 +00001258static SDOperand LowerSRx(SDOperand Op, SelectionDAG &DAG,
1259 const ARMSubtarget *ST) {
1260 assert(Op.getValueType() == MVT::i64 &&
1261 (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SRA) &&
1262 "Unknown shift to lower!");
1263
1264 // We only lower SRA, SRL of 1 here, all others use generic lowering.
1265 if (!isa<ConstantSDNode>(Op.getOperand(1)) ||
1266 cast<ConstantSDNode>(Op.getOperand(1))->getValue() != 1)
1267 return SDOperand();
1268
1269 // If we are in thumb mode, we don't have RRX.
1270 if (ST->isThumb()) return SDOperand();
1271
1272 // Okay, we have a 64-bit SRA or SRL of 1. Lower this to an RRX expr.
1273 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op.getOperand(0),
1274 DAG.getConstant(0, MVT::i32));
1275 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op.getOperand(0),
1276 DAG.getConstant(1, MVT::i32));
1277
1278 // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
1279 // captures the result into a carry flag.
1280 unsigned Opc = Op.getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
1281 Hi = DAG.getNode(Opc, DAG.getVTList(MVT::i32, MVT::Flag), &Hi, 1);
1282
1283 // The low part is an ARMISD::RRX operand, which shifts the carry in.
1284 Lo = DAG.getNode(ARMISD::RRX, MVT::i32, Lo, Hi.getValue(1));
1285
1286 // Merge the pieces into a single i64 value.
1287 return DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Lo, Hi);
1288}
1289
Evan Cheng4102eb52007-10-22 22:11:27 +00001290SDOperand ARMTargetLowering::LowerMEMCPY(SDOperand Op, SelectionDAG &DAG,
1291 const ARMSubtarget *ST) {
Rafael Espindola7b73a5d2007-10-19 14:35:17 +00001292 SDOperand ChainOp = Op.getOperand(0);
1293 SDOperand DestOp = Op.getOperand(1);
1294 SDOperand SourceOp = Op.getOperand(2);
1295 SDOperand CountOp = Op.getOperand(3);
1296 SDOperand AlignOp = Op.getOperand(4);
1297 SDOperand AlwaysInlineOp = Op.getOperand(5);
1298
1299 bool AlwaysInline = (bool)cast<ConstantSDNode>(AlwaysInlineOp)->getValue();
1300 unsigned Align = (unsigned)cast<ConstantSDNode>(AlignOp)->getValue();
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001301 if (Align == 0) Align = 1;
1302
Rafael Espindola7b73a5d2007-10-19 14:35:17 +00001303 // If size is unknown, call memcpy.
1304 ConstantSDNode *I = dyn_cast<ConstantSDNode>(CountOp);
1305 if (!I) {
1306 assert(!AlwaysInline && "Cannot inline copy of unknown size");
1307 return LowerMEMCPYCall(ChainOp, DestOp, SourceOp, CountOp, DAG);
1308 }
Rafael Espindola7b73a5d2007-10-19 14:35:17 +00001309
Evan Cheng4102eb52007-10-22 22:11:27 +00001310 // If not DWORD aligned or if size is more than threshold, then call memcpy.
1311 // The libc version is likely to be faster for the these cases. It can
Rafael Espindola7b73a5d2007-10-19 14:35:17 +00001312 // use the address value and run time information about the CPU.
1313 // With glibc 2.6.1 on a core 2, coping an array of 100M longs was 30% faster
Evan Cheng4102eb52007-10-22 22:11:27 +00001314 // FIXME: For now, we don't lower memcpy's to loads / stores for Thumb. Change
1315 // this once Thumb ldmia / stmia support is added.
1316 unsigned Size = I->getValue();
1317 if (AlwaysInline ||
1318 (!ST->isThumb() && Size < 64 && (Align & 3) == 0))
1319 return LowerMEMCPYInline(ChainOp, DestOp, SourceOp, Size, Align, DAG);
1320 return LowerMEMCPYCall(ChainOp, DestOp, SourceOp, CountOp, DAG);
Rafael Espindola7b73a5d2007-10-19 14:35:17 +00001321}
1322
1323SDOperand ARMTargetLowering::LowerMEMCPYCall(SDOperand Chain,
1324 SDOperand Dest,
1325 SDOperand Source,
1326 SDOperand Count,
1327 SelectionDAG &DAG) {
1328 MVT::ValueType IntPtr = getPointerTy();
1329 TargetLowering::ArgListTy Args;
1330 TargetLowering::ArgListEntry Entry;
1331 Entry.Ty = getTargetData()->getIntPtrType();
1332 Entry.Node = Dest; Args.push_back(Entry);
1333 Entry.Node = Source; Args.push_back(Entry);
1334 Entry.Node = Count; Args.push_back(Entry);
1335 std::pair<SDOperand,SDOperand> CallResult =
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001336 LowerCallTo(Chain, Type::VoidTy, false, false, CallingConv::C, false,
1337 DAG.getExternalSymbol("memcpy", IntPtr), Args, DAG);
Rafael Espindola7b73a5d2007-10-19 14:35:17 +00001338 return CallResult.second;
1339}
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001340
Rafael Espindola7b73a5d2007-10-19 14:35:17 +00001341SDOperand ARMTargetLowering::LowerMEMCPYInline(SDOperand Chain,
1342 SDOperand Dest,
1343 SDOperand Source,
1344 unsigned Size,
1345 unsigned Align,
1346 SelectionDAG &DAG) {
Evan Cheng4102eb52007-10-22 22:11:27 +00001347 // Do repeated 4-byte loads and stores. To be improved.
1348 assert((Align & 3) == 0 && "Expected 4-byte aligned addresses!");
1349 unsigned BytesLeft = Size & 3;
Rafael Espindola7b73a5d2007-10-19 14:35:17 +00001350 unsigned NumMemOps = Size >> 2;
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001351 unsigned EmittedNumMemOps = 0;
1352 unsigned SrcOff = 0, DstOff = 0;
1353 MVT::ValueType VT = MVT::i32;
1354 unsigned VTSize = 4;
Evan Cheng4102eb52007-10-22 22:11:27 +00001355 unsigned i = 0;
Evan Chenge5e7ce42007-05-18 01:19:57 +00001356 const unsigned MAX_LOADS_IN_LDM = 6;
Evan Cheng4102eb52007-10-22 22:11:27 +00001357 SDOperand TFOps[MAX_LOADS_IN_LDM];
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001358 SDOperand Loads[MAX_LOADS_IN_LDM];
1359
Evan Cheng4102eb52007-10-22 22:11:27 +00001360 // Emit up to MAX_LOADS_IN_LDM loads, then a TokenFactor barrier, then the
1361 // same number of stores. The loads and stores will get combined into
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001362 // ldm/stm later on.
Evan Cheng4102eb52007-10-22 22:11:27 +00001363 while (EmittedNumMemOps < NumMemOps) {
1364 for (i = 0;
1365 i < MAX_LOADS_IN_LDM && EmittedNumMemOps + i < NumMemOps; ++i) {
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001366 Loads[i] = DAG.getLoad(VT, Chain,
Evan Cheng4102eb52007-10-22 22:11:27 +00001367 DAG.getNode(ISD::ADD, MVT::i32, Source,
1368 DAG.getConstant(SrcOff, MVT::i32)),
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001369 NULL, 0);
Evan Cheng4102eb52007-10-22 22:11:27 +00001370 TFOps[i] = Loads[i].getValue(1);
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001371 SrcOff += VTSize;
1372 }
Evan Cheng4102eb52007-10-22 22:11:27 +00001373 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &TFOps[0], i);
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001374
Evan Cheng4102eb52007-10-22 22:11:27 +00001375 for (i = 0;
1376 i < MAX_LOADS_IN_LDM && EmittedNumMemOps + i < NumMemOps; ++i) {
1377 TFOps[i] = DAG.getStore(Chain, Loads[i],
1378 DAG.getNode(ISD::ADD, MVT::i32, Dest,
1379 DAG.getConstant(DstOff, MVT::i32)),
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001380 NULL, 0);
1381 DstOff += VTSize;
1382 }
Evan Cheng4102eb52007-10-22 22:11:27 +00001383 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &TFOps[0], i);
1384
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001385 EmittedNumMemOps += i;
1386 }
1387
Evan Cheng4102eb52007-10-22 22:11:27 +00001388 if (BytesLeft == 0)
1389 return Chain;
1390
1391 // Issue loads / stores for the trailing (1 - 3) bytes.
1392 unsigned BytesLeftSave = BytesLeft;
1393 i = 0;
1394 while (BytesLeft) {
1395 if (BytesLeft >= 2) {
1396 VT = MVT::i16;
1397 VTSize = 2;
1398 } else {
1399 VT = MVT::i8;
1400 VTSize = 1;
1401 }
1402
1403 Loads[i] = DAG.getLoad(VT, Chain,
1404 DAG.getNode(ISD::ADD, MVT::i32, Source,
1405 DAG.getConstant(SrcOff, MVT::i32)),
1406 NULL, 0);
1407 TFOps[i] = Loads[i].getValue(1);
1408 ++i;
1409 SrcOff += VTSize;
1410 BytesLeft -= VTSize;
1411 }
1412 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &TFOps[0], i);
1413
1414 i = 0;
1415 BytesLeft = BytesLeftSave;
1416 while (BytesLeft) {
1417 if (BytesLeft >= 2) {
1418 VT = MVT::i16;
1419 VTSize = 2;
1420 } else {
1421 VT = MVT::i8;
1422 VTSize = 1;
1423 }
1424
1425 TFOps[i] = DAG.getStore(Chain, Loads[i],
1426 DAG.getNode(ISD::ADD, MVT::i32, Dest,
1427 DAG.getConstant(DstOff, MVT::i32)),
1428 NULL, 0);
1429 ++i;
1430 DstOff += VTSize;
1431 BytesLeft -= VTSize;
1432 }
1433 return DAG.getNode(ISD::TokenFactor, MVT::Other, &TFOps[0], i);
Dale Johannesen8dd86c12007-05-17 21:31:21 +00001434}
1435
Evan Chenga8e29892007-01-19 07:51:42 +00001436SDOperand ARMTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
1437 switch (Op.getOpcode()) {
1438 default: assert(0 && "Don't know how to custom lower this!"); abort();
1439 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001440 case ISD::GlobalAddress:
1441 return Subtarget->isTargetDarwin() ? LowerGlobalAddressDarwin(Op, DAG) :
1442 LowerGlobalAddressELF(Op, DAG);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001443 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00001444 case ISD::CALL: return LowerCALL(Op, DAG);
1445 case ISD::RET: return LowerRET(Op, DAG);
1446 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG, Subtarget);
1447 case ISD::BR_CC: return LowerBR_CC(Op, DAG, Subtarget);
1448 case ISD::BR_JT: return LowerBR_JT(Op, DAG);
1449 case ISD::VASTART: return LowerVASTART(Op, DAG, VarArgsFrameIndex);
1450 case ISD::SINT_TO_FP:
1451 case ISD::UINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
1452 case ISD::FP_TO_SINT:
1453 case ISD::FP_TO_UINT: return LowerFP_TO_INT(Op, DAG);
1454 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
1455 case ISD::BIT_CONVERT: return LowerBIT_CONVERT(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00001456 case ISD::SRL:
1457 case ISD::SRA: return LowerSRx(Op, DAG, Subtarget);
1458 case ISD::FORMAL_ARGUMENTS:
1459 return LowerFORMAL_ARGUMENTS(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00001460 case ISD::RETURNADDR: break;
1461 case ISD::FRAMEADDR: break;
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001462 case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
Evan Cheng4102eb52007-10-22 22:11:27 +00001463 case ISD::MEMCPY: return LowerMEMCPY(Op, DAG, Subtarget);
Evan Chenga8e29892007-01-19 07:51:42 +00001464 }
Nate Begemanbcc5f362007-01-29 22:58:52 +00001465 return SDOperand();
Evan Chenga8e29892007-01-19 07:51:42 +00001466}
1467
1468//===----------------------------------------------------------------------===//
1469// ARM Scheduler Hooks
1470//===----------------------------------------------------------------------===//
1471
1472MachineBasicBlock *
1473ARMTargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
1474 MachineBasicBlock *BB) {
1475 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
1476 switch (MI->getOpcode()) {
1477 default: assert(false && "Unexpected instr type to insert");
1478 case ARM::tMOVCCr: {
1479 // To "insert" a SELECT_CC instruction, we actually have to insert the
1480 // diamond control-flow pattern. The incoming instruction knows the
1481 // destination vreg to set, the condition code register to branch on, the
1482 // true/false values to select between, and a branch opcode to use.
1483 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1484 ilist<MachineBasicBlock>::iterator It = BB;
1485 ++It;
1486
1487 // thisMBB:
1488 // ...
1489 // TrueVal = ...
1490 // cmpTY ccX, r1, r2
1491 // bCC copy1MBB
1492 // fallthrough --> copy0MBB
1493 MachineBasicBlock *thisMBB = BB;
1494 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
1495 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
1496 BuildMI(BB, TII->get(ARM::tBcc)).addMBB(sinkMBB)
Evan Cheng0e1d3792007-07-05 07:18:20 +00001497 .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
Evan Chenga8e29892007-01-19 07:51:42 +00001498 MachineFunction *F = BB->getParent();
1499 F->getBasicBlockList().insert(It, copy0MBB);
1500 F->getBasicBlockList().insert(It, sinkMBB);
1501 // Update machine-CFG edges by first adding all successors of the current
1502 // block to the new block which will contain the Phi node for the select.
1503 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
1504 e = BB->succ_end(); i != e; ++i)
1505 sinkMBB->addSuccessor(*i);
1506 // Next, remove all successors of the current block, and add the true
1507 // and fallthrough blocks as its successors.
1508 while(!BB->succ_empty())
1509 BB->removeSuccessor(BB->succ_begin());
1510 BB->addSuccessor(copy0MBB);
1511 BB->addSuccessor(sinkMBB);
1512
1513 // copy0MBB:
1514 // %FalseValue = ...
1515 // # fallthrough to sinkMBB
1516 BB = copy0MBB;
1517
1518 // Update machine-CFG edges
1519 BB->addSuccessor(sinkMBB);
1520
1521 // sinkMBB:
1522 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
1523 // ...
1524 BB = sinkMBB;
1525 BuildMI(BB, TII->get(ARM::PHI), MI->getOperand(0).getReg())
1526 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
1527 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
1528
1529 delete MI; // The pseudo instruction is gone now.
1530 return BB;
1531 }
1532 }
1533}
1534
1535//===----------------------------------------------------------------------===//
1536// ARM Optimization Hooks
1537//===----------------------------------------------------------------------===//
1538
Evan Chengb01fad62007-03-12 23:30:29 +00001539/// isLegalAddressImmediate - Return true if the integer value can be used
1540/// as the offset of the target addressing mode for load / store of the
1541/// given type.
Chris Lattner37caf8c2007-04-09 23:33:39 +00001542static bool isLegalAddressImmediate(int64_t V, MVT::ValueType VT,
1543 const ARMSubtarget *Subtarget) {
Evan Cheng961f8792007-03-13 20:37:59 +00001544 if (V == 0)
1545 return true;
1546
Evan Chengb01fad62007-03-12 23:30:29 +00001547 if (Subtarget->isThumb()) {
1548 if (V < 0)
1549 return false;
1550
1551 unsigned Scale = 1;
1552 switch (VT) {
1553 default: return false;
1554 case MVT::i1:
1555 case MVT::i8:
1556 // Scale == 1;
1557 break;
1558 case MVT::i16:
1559 // Scale == 2;
1560 Scale = 2;
1561 break;
1562 case MVT::i32:
1563 // Scale == 4;
1564 Scale = 4;
1565 break;
1566 }
1567
1568 if ((V & (Scale - 1)) != 0)
1569 return false;
1570 V /= Scale;
1571 return V == V & ((1LL << 5) - 1);
1572 }
1573
1574 if (V < 0)
1575 V = - V;
1576 switch (VT) {
1577 default: return false;
1578 case MVT::i1:
1579 case MVT::i8:
1580 case MVT::i32:
1581 // +- imm12
1582 return V == V & ((1LL << 12) - 1);
1583 case MVT::i16:
1584 // +- imm8
1585 return V == V & ((1LL << 8) - 1);
1586 case MVT::f32:
1587 case MVT::f64:
1588 if (!Subtarget->hasVFP2())
1589 return false;
Evan Cheng0b0a9a92007-05-03 02:00:18 +00001590 if ((V & 3) != 0)
Evan Chengb01fad62007-03-12 23:30:29 +00001591 return false;
1592 V >>= 2;
1593 return V == V & ((1LL << 8) - 1);
1594 }
Evan Chenga8e29892007-01-19 07:51:42 +00001595}
1596
Chris Lattner37caf8c2007-04-09 23:33:39 +00001597/// isLegalAddressingMode - Return true if the addressing mode represented
1598/// by AM is legal for this target, for a load/store of the specified type.
1599bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM,
1600 const Type *Ty) const {
1601 if (!isLegalAddressImmediate(AM.BaseOffs, getValueType(Ty), Subtarget))
Evan Chengb01fad62007-03-12 23:30:29 +00001602 return false;
Chris Lattner37caf8c2007-04-09 23:33:39 +00001603
1604 // Can never fold addr of global into load/store.
1605 if (AM.BaseGV)
1606 return false;
1607
1608 switch (AM.Scale) {
1609 case 0: // no scale reg, must be "r+i" or "r", or "i".
1610 break;
1611 case 1:
1612 if (Subtarget->isThumb())
1613 return false;
Chris Lattner5a3d40d2007-04-13 06:50:55 +00001614 // FALL THROUGH.
Chris Lattner37caf8c2007-04-09 23:33:39 +00001615 default:
Chris Lattner5a3d40d2007-04-13 06:50:55 +00001616 // ARM doesn't support any R+R*scale+imm addr modes.
1617 if (AM.BaseOffs)
1618 return false;
1619
Chris Lattnereb13d1b2007-04-10 03:48:29 +00001620 int Scale = AM.Scale;
Chris Lattner37caf8c2007-04-09 23:33:39 +00001621 switch (getValueType(Ty)) {
1622 default: return false;
1623 case MVT::i1:
1624 case MVT::i8:
1625 case MVT::i32:
1626 case MVT::i64:
1627 // This assumes i64 is legalized to a pair of i32. If not (i.e.
1628 // ldrd / strd are used, then its address mode is same as i16.
1629 // r + r
Chris Lattnereb13d1b2007-04-10 03:48:29 +00001630 if (Scale < 0) Scale = -Scale;
1631 if (Scale == 1)
Chris Lattner37caf8c2007-04-09 23:33:39 +00001632 return true;
1633 // r + r << imm
Chris Lattnere1152942007-04-11 16:17:12 +00001634 return isPowerOf2_32(Scale & ~1);
Chris Lattner37caf8c2007-04-09 23:33:39 +00001635 case MVT::i16:
1636 // r + r
Chris Lattnereb13d1b2007-04-10 03:48:29 +00001637 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
Chris Lattner37caf8c2007-04-09 23:33:39 +00001638 return true;
Chris Lattnere1152942007-04-11 16:17:12 +00001639 return false;
1640
Chris Lattner37caf8c2007-04-09 23:33:39 +00001641 case MVT::isVoid:
1642 // Note, we allow "void" uses (basically, uses that aren't loads or
1643 // stores), because arm allows folding a scale into many arithmetic
1644 // operations. This should be made more precise and revisited later.
Chris Lattnerb2c594f2007-04-03 00:13:57 +00001645
Chris Lattner37caf8c2007-04-09 23:33:39 +00001646 // Allow r << imm, but the imm has to be a multiple of two.
1647 if (AM.Scale & 1) return false;
1648 return isPowerOf2_32(AM.Scale);
1649 }
1650 break;
Evan Chengb01fad62007-03-12 23:30:29 +00001651 }
Chris Lattner37caf8c2007-04-09 23:33:39 +00001652 return true;
Evan Chengb01fad62007-03-12 23:30:29 +00001653}
1654
Chris Lattner37caf8c2007-04-09 23:33:39 +00001655
Evan Chenga8e29892007-01-19 07:51:42 +00001656static bool getIndexedAddressParts(SDNode *Ptr, MVT::ValueType VT,
1657 bool isSEXTLoad, SDOperand &Base,
1658 SDOperand &Offset, bool &isInc,
1659 SelectionDAG &DAG) {
1660 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
1661 return false;
1662
1663 if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
1664 // AddressingMode 3
1665 Base = Ptr->getOperand(0);
1666 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
1667 int RHSC = (int)RHS->getValue();
1668 if (RHSC < 0 && RHSC > -256) {
1669 isInc = false;
1670 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
1671 return true;
1672 }
1673 }
1674 isInc = (Ptr->getOpcode() == ISD::ADD);
1675 Offset = Ptr->getOperand(1);
1676 return true;
1677 } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
1678 // AddressingMode 2
1679 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
1680 int RHSC = (int)RHS->getValue();
1681 if (RHSC < 0 && RHSC > -0x1000) {
1682 isInc = false;
1683 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
1684 Base = Ptr->getOperand(0);
1685 return true;
1686 }
1687 }
1688
1689 if (Ptr->getOpcode() == ISD::ADD) {
1690 isInc = true;
1691 ARM_AM::ShiftOpc ShOpcVal= ARM_AM::getShiftOpcForNode(Ptr->getOperand(0));
1692 if (ShOpcVal != ARM_AM::no_shift) {
1693 Base = Ptr->getOperand(1);
1694 Offset = Ptr->getOperand(0);
1695 } else {
1696 Base = Ptr->getOperand(0);
1697 Offset = Ptr->getOperand(1);
1698 }
1699 return true;
1700 }
1701
1702 isInc = (Ptr->getOpcode() == ISD::ADD);
1703 Base = Ptr->getOperand(0);
1704 Offset = Ptr->getOperand(1);
1705 return true;
1706 }
1707
1708 // FIXME: Use FLDM / FSTM to emulate indexed FP load / store.
1709 return false;
1710}
1711
1712/// getPreIndexedAddressParts - returns true by value, base pointer and
1713/// offset pointer and addressing mode by reference if the node's address
1714/// can be legally represented as pre-indexed load / store address.
1715bool
1716ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDOperand &Base,
1717 SDOperand &Offset,
1718 ISD::MemIndexedMode &AM,
1719 SelectionDAG &DAG) {
1720 if (Subtarget->isThumb())
1721 return false;
1722
1723 MVT::ValueType VT;
1724 SDOperand Ptr;
1725 bool isSEXTLoad = false;
1726 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1727 Ptr = LD->getBasePtr();
1728 VT = LD->getLoadedVT();
1729 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
1730 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
1731 Ptr = ST->getBasePtr();
1732 VT = ST->getStoredVT();
1733 } else
1734 return false;
1735
1736 bool isInc;
1737 bool isLegal = getIndexedAddressParts(Ptr.Val, VT, isSEXTLoad, Base, Offset,
1738 isInc, DAG);
1739 if (isLegal) {
1740 AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
1741 return true;
1742 }
1743 return false;
1744}
1745
1746/// getPostIndexedAddressParts - returns true by value, base pointer and
1747/// offset pointer and addressing mode by reference if this node can be
1748/// combined with a load / store to form a post-indexed load / store.
1749bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
1750 SDOperand &Base,
1751 SDOperand &Offset,
1752 ISD::MemIndexedMode &AM,
1753 SelectionDAG &DAG) {
1754 if (Subtarget->isThumb())
1755 return false;
1756
1757 MVT::ValueType VT;
1758 SDOperand Ptr;
1759 bool isSEXTLoad = false;
1760 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1761 VT = LD->getLoadedVT();
1762 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
1763 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
1764 VT = ST->getStoredVT();
1765 } else
1766 return false;
1767
1768 bool isInc;
1769 bool isLegal = getIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
1770 isInc, DAG);
1771 if (isLegal) {
1772 AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
1773 return true;
1774 }
1775 return false;
1776}
1777
1778void ARMTargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op,
1779 uint64_t Mask,
1780 uint64_t &KnownZero,
1781 uint64_t &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001782 const SelectionDAG &DAG,
Evan Chenga8e29892007-01-19 07:51:42 +00001783 unsigned Depth) const {
1784 KnownZero = 0;
1785 KnownOne = 0;
1786 switch (Op.getOpcode()) {
1787 default: break;
1788 case ARMISD::CMOV: {
1789 // Bits are known zero/one if known on the LHS and RHS.
Dan Gohmanea859be2007-06-22 14:59:07 +00001790 DAG.ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
Evan Chenga8e29892007-01-19 07:51:42 +00001791 if (KnownZero == 0 && KnownOne == 0) return;
1792
1793 uint64_t KnownZeroRHS, KnownOneRHS;
Dan Gohmanea859be2007-06-22 14:59:07 +00001794 DAG.ComputeMaskedBits(Op.getOperand(1), Mask,
1795 KnownZeroRHS, KnownOneRHS, Depth+1);
Evan Chenga8e29892007-01-19 07:51:42 +00001796 KnownZero &= KnownZeroRHS;
1797 KnownOne &= KnownOneRHS;
1798 return;
1799 }
1800 }
1801}
1802
1803//===----------------------------------------------------------------------===//
1804// ARM Inline Assembly Support
1805//===----------------------------------------------------------------------===//
1806
1807/// getConstraintType - Given a constraint letter, return the type of
1808/// constraint it is for this target.
1809ARMTargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00001810ARMTargetLowering::getConstraintType(const std::string &Constraint) const {
1811 if (Constraint.size() == 1) {
1812 switch (Constraint[0]) {
1813 default: break;
1814 case 'l': return C_RegisterClass;
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00001815 case 'w': return C_RegisterClass;
Chris Lattner4234f572007-03-25 02:14:49 +00001816 }
Evan Chenga8e29892007-01-19 07:51:42 +00001817 }
Chris Lattner4234f572007-03-25 02:14:49 +00001818 return TargetLowering::getConstraintType(Constraint);
Evan Chenga8e29892007-01-19 07:51:42 +00001819}
1820
1821std::pair<unsigned, const TargetRegisterClass*>
1822ARMTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
1823 MVT::ValueType VT) const {
1824 if (Constraint.size() == 1) {
1825 // GCC RS6000 Constraint Letters
1826 switch (Constraint[0]) {
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00001827 case 'l':
1828 // FIXME: in thumb mode, 'l' is only low-regs.
1829 // FALL THROUGH.
1830 case 'r':
1831 return std::make_pair(0U, ARM::GPRRegisterClass);
1832 case 'w':
1833 if (VT == MVT::f32)
1834 return std::make_pair(0U, ARM::SPRRegisterClass);
Evan Cheng0a7baa22007-04-04 00:06:07 +00001835 if (VT == MVT::f64)
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00001836 return std::make_pair(0U, ARM::DPRRegisterClass);
1837 break;
Evan Chenga8e29892007-01-19 07:51:42 +00001838 }
1839 }
1840 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1841}
1842
1843std::vector<unsigned> ARMTargetLowering::
1844getRegClassForInlineAsmConstraint(const std::string &Constraint,
1845 MVT::ValueType VT) const {
1846 if (Constraint.size() != 1)
1847 return std::vector<unsigned>();
1848
1849 switch (Constraint[0]) { // GCC ARM Constraint Letters
1850 default: break;
1851 case 'l':
1852 case 'r':
1853 return make_vector<unsigned>(ARM::R0, ARM::R1, ARM::R2, ARM::R3,
1854 ARM::R4, ARM::R5, ARM::R6, ARM::R7,
1855 ARM::R8, ARM::R9, ARM::R10, ARM::R11,
1856 ARM::R12, ARM::LR, 0);
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00001857 case 'w':
1858 if (VT == MVT::f32)
1859 return make_vector<unsigned>(ARM::S0, ARM::S1, ARM::S2, ARM::S3,
1860 ARM::S4, ARM::S5, ARM::S6, ARM::S7,
1861 ARM::S8, ARM::S9, ARM::S10, ARM::S11,
1862 ARM::S12,ARM::S13,ARM::S14,ARM::S15,
1863 ARM::S16,ARM::S17,ARM::S18,ARM::S19,
1864 ARM::S20,ARM::S21,ARM::S22,ARM::S23,
1865 ARM::S24,ARM::S25,ARM::S26,ARM::S27,
1866 ARM::S28,ARM::S29,ARM::S30,ARM::S31, 0);
1867 if (VT == MVT::f64)
1868 return make_vector<unsigned>(ARM::D0, ARM::D1, ARM::D2, ARM::D3,
1869 ARM::D4, ARM::D5, ARM::D6, ARM::D7,
1870 ARM::D8, ARM::D9, ARM::D10,ARM::D11,
1871 ARM::D12,ARM::D13,ARM::D14,ARM::D15, 0);
1872 break;
Evan Chenga8e29892007-01-19 07:51:42 +00001873 }
1874
1875 return std::vector<unsigned>();
1876}