blob: 810335b4c57d2dd703860a783825bba94039f345 [file] [log] [blame]
Evan Chenga8e29892007-01-19 07:51:42 +00001//===-- ARMISelLowering.cpp - ARM DAG Lowering Implementation -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Chenga8e29892007-01-19 07:51:42 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that ARM uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
Dale Johannesen51e28e62010-06-03 21:09:53 +000015#define DEBUG_TYPE "arm-isel"
Evan Chenga8e29892007-01-19 07:51:42 +000016#include "ARM.h"
17#include "ARMAddressingModes.h"
Eric Christopher6f2ccef2010-09-10 22:42:06 +000018#include "ARMCallingConv.h"
Evan Chenga8e29892007-01-19 07:51:42 +000019#include "ARMConstantPoolValue.h"
20#include "ARMISelLowering.h"
21#include "ARMMachineFunctionInfo.h"
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +000022#include "ARMPerfectShuffle.h"
Evan Chenga8e29892007-01-19 07:51:42 +000023#include "ARMRegisterInfo.h"
24#include "ARMSubtarget.h"
25#include "ARMTargetMachine.h"
Chris Lattner80ec2792009-08-02 00:34:36 +000026#include "ARMTargetObjectFile.h"
Evan Chenga8e29892007-01-19 07:51:42 +000027#include "llvm/CallingConv.h"
28#include "llvm/Constants.h"
Bob Wilson1f595bb2009-04-17 19:07:39 +000029#include "llvm/Function.h"
Benjamin Kramer174101e2009-10-20 11:44:38 +000030#include "llvm/GlobalValue.h"
Evan Cheng27707472007-03-16 08:43:56 +000031#include "llvm/Instruction.h"
Bob Wilson65ffec42010-09-21 17:56:22 +000032#include "llvm/Instructions.h"
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +000033#include "llvm/Intrinsics.h"
Benjamin Kramer174101e2009-10-20 11:44:38 +000034#include "llvm/Type.h"
Bob Wilson1f595bb2009-04-17 19:07:39 +000035#include "llvm/CodeGen/CallingConvLower.h"
Evan Chenga8e29892007-01-19 07:51:42 +000036#include "llvm/CodeGen/MachineBasicBlock.h"
37#include "llvm/CodeGen/MachineFrameInfo.h"
38#include "llvm/CodeGen/MachineFunction.h"
39#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000040#include "llvm/CodeGen/MachineRegisterInfo.h"
Bob Wilson1f595bb2009-04-17 19:07:39 +000041#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Chenga8e29892007-01-19 07:51:42 +000042#include "llvm/CodeGen/SelectionDAG.h"
Bill Wendling94a1c632010-03-09 02:46:12 +000043#include "llvm/MC/MCSectionMachO.h"
Evan Chengb6ab2542007-01-31 08:40:13 +000044#include "llvm/Target/TargetOptions.h"
Evan Chenga8e29892007-01-19 07:51:42 +000045#include "llvm/ADT/VectorExtras.h"
Dale Johannesen51e28e62010-06-03 21:09:53 +000046#include "llvm/ADT/Statistic.h"
Jim Grosbache7b52522010-04-14 22:28:31 +000047#include "llvm/Support/CommandLine.h"
Torok Edwinab7c09b2009-07-08 18:01:40 +000048#include "llvm/Support/ErrorHandling.h"
Evan Chengb01fad62007-03-12 23:30:29 +000049#include "llvm/Support/MathExtras.h"
Jim Grosbache801dc42009-12-12 01:40:06 +000050#include "llvm/Support/raw_ostream.h"
Jim Grosbach3fb2b1e2009-09-01 01:57:56 +000051#include <sstream>
Evan Chenga8e29892007-01-19 07:51:42 +000052using namespace llvm;
53
Dale Johannesen51e28e62010-06-03 21:09:53 +000054STATISTIC(NumTailCalls, "Number of tail calls");
55
Bob Wilson703af3a2010-08-13 22:43:33 +000056// This option should go away when tail calls fully work.
57static cl::opt<bool>
58EnableARMTailCalls("arm-tail-calls", cl::Hidden,
59 cl::desc("Generate tail calls (TEMPORARY OPTION)."),
60 cl::init(false));
61
Jim Grosbache7b52522010-04-14 22:28:31 +000062static cl::opt<bool>
63EnableARMLongCalls("arm-long-calls", cl::Hidden,
Evan Cheng515fe3a2010-07-08 02:08:50 +000064 cl::desc("Generate calls via indirect call instructions"),
Jim Grosbache7b52522010-04-14 22:28:31 +000065 cl::init(false));
66
Evan Cheng46df4eb2010-06-16 07:35:02 +000067static cl::opt<bool>
68ARMInterworking("arm-interworking", cl::Hidden,
69 cl::desc("Enable / disable ARM interworking (for debugging only)"),
70 cl::init(true));
71
Owen Andersone50ed302009-08-10 22:56:29 +000072void ARMTargetLowering::addTypeForNEON(EVT VT, EVT PromotedLdStVT,
73 EVT PromotedBitwiseVT) {
Bob Wilson5bafff32009-06-22 23:27:02 +000074 if (VT != PromotedLdStVT) {
Owen Anderson70671842009-08-10 20:18:46 +000075 setOperationAction(ISD::LOAD, VT.getSimpleVT(), Promote);
Owen Andersond6662ad2009-08-10 20:46:15 +000076 AddPromotedToType (ISD::LOAD, VT.getSimpleVT(),
77 PromotedLdStVT.getSimpleVT());
Bob Wilson5bafff32009-06-22 23:27:02 +000078
Owen Anderson70671842009-08-10 20:18:46 +000079 setOperationAction(ISD::STORE, VT.getSimpleVT(), Promote);
Jim Grosbach764ab522009-08-11 15:33:49 +000080 AddPromotedToType (ISD::STORE, VT.getSimpleVT(),
Owen Andersond6662ad2009-08-10 20:46:15 +000081 PromotedLdStVT.getSimpleVT());
Bob Wilson5bafff32009-06-22 23:27:02 +000082 }
83
Owen Andersone50ed302009-08-10 22:56:29 +000084 EVT ElemTy = VT.getVectorElementType();
Owen Anderson825b72b2009-08-11 20:47:22 +000085 if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
Owen Anderson70671842009-08-10 20:18:46 +000086 setOperationAction(ISD::VSETCC, VT.getSimpleVT(), Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +000087 if (ElemTy == MVT::i8 || ElemTy == MVT::i16)
Owen Anderson70671842009-08-10 20:18:46 +000088 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT.getSimpleVT(), Custom);
Bob Wilson0696fdf2009-09-16 20:20:44 +000089 if (ElemTy != MVT::i32) {
90 setOperationAction(ISD::SINT_TO_FP, VT.getSimpleVT(), Expand);
91 setOperationAction(ISD::UINT_TO_FP, VT.getSimpleVT(), Expand);
92 setOperationAction(ISD::FP_TO_SINT, VT.getSimpleVT(), Expand);
93 setOperationAction(ISD::FP_TO_UINT, VT.getSimpleVT(), Expand);
94 }
Owen Anderson70671842009-08-10 20:18:46 +000095 setOperationAction(ISD::BUILD_VECTOR, VT.getSimpleVT(), Custom);
96 setOperationAction(ISD::VECTOR_SHUFFLE, VT.getSimpleVT(), Custom);
Bob Wilson07f6e802010-06-16 21:34:01 +000097 setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Legal);
Anton Korobeynikov8e6c2b92009-08-21 12:40:35 +000098 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT.getSimpleVT(), Expand);
Bob Wilsond0910c42010-04-06 22:02:24 +000099 setOperationAction(ISD::SELECT, VT.getSimpleVT(), Expand);
100 setOperationAction(ISD::SELECT_CC, VT.getSimpleVT(), Expand);
Bob Wilson5bafff32009-06-22 23:27:02 +0000101 if (VT.isInteger()) {
Owen Anderson70671842009-08-10 20:18:46 +0000102 setOperationAction(ISD::SHL, VT.getSimpleVT(), Custom);
103 setOperationAction(ISD::SRA, VT.getSimpleVT(), Custom);
104 setOperationAction(ISD::SRL, VT.getSimpleVT(), Custom);
Bob Wilsonb31a11b2010-08-20 04:54:02 +0000105 setLoadExtAction(ISD::SEXTLOAD, VT.getSimpleVT(), Expand);
106 setLoadExtAction(ISD::ZEXTLOAD, VT.getSimpleVT(), Expand);
Bob Wilson5bafff32009-06-22 23:27:02 +0000107 }
Bob Wilsonb31a11b2010-08-20 04:54:02 +0000108 setLoadExtAction(ISD::EXTLOAD, VT.getSimpleVT(), Expand);
Bob Wilson5bafff32009-06-22 23:27:02 +0000109
110 // Promote all bit-wise operations.
111 if (VT.isInteger() && VT != PromotedBitwiseVT) {
Owen Anderson70671842009-08-10 20:18:46 +0000112 setOperationAction(ISD::AND, VT.getSimpleVT(), Promote);
Owen Andersond6662ad2009-08-10 20:46:15 +0000113 AddPromotedToType (ISD::AND, VT.getSimpleVT(),
114 PromotedBitwiseVT.getSimpleVT());
Owen Anderson70671842009-08-10 20:18:46 +0000115 setOperationAction(ISD::OR, VT.getSimpleVT(), Promote);
Jim Grosbach764ab522009-08-11 15:33:49 +0000116 AddPromotedToType (ISD::OR, VT.getSimpleVT(),
Owen Andersond6662ad2009-08-10 20:46:15 +0000117 PromotedBitwiseVT.getSimpleVT());
Owen Anderson70671842009-08-10 20:18:46 +0000118 setOperationAction(ISD::XOR, VT.getSimpleVT(), Promote);
Jim Grosbach764ab522009-08-11 15:33:49 +0000119 AddPromotedToType (ISD::XOR, VT.getSimpleVT(),
Owen Andersond6662ad2009-08-10 20:46:15 +0000120 PromotedBitwiseVT.getSimpleVT());
Bob Wilson5bafff32009-06-22 23:27:02 +0000121 }
Bob Wilson16330762009-09-16 00:17:28 +0000122
123 // Neon does not support vector divide/remainder operations.
124 setOperationAction(ISD::SDIV, VT.getSimpleVT(), Expand);
125 setOperationAction(ISD::UDIV, VT.getSimpleVT(), Expand);
126 setOperationAction(ISD::FDIV, VT.getSimpleVT(), Expand);
127 setOperationAction(ISD::SREM, VT.getSimpleVT(), Expand);
128 setOperationAction(ISD::UREM, VT.getSimpleVT(), Expand);
129 setOperationAction(ISD::FREM, VT.getSimpleVT(), Expand);
Bob Wilson5bafff32009-06-22 23:27:02 +0000130}
131
Owen Andersone50ed302009-08-10 22:56:29 +0000132void ARMTargetLowering::addDRTypeForNEON(EVT VT) {
Bob Wilson5bafff32009-06-22 23:27:02 +0000133 addRegisterClass(VT, ARM::DPRRegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000134 addTypeForNEON(VT, MVT::f64, MVT::v2i32);
Bob Wilson5bafff32009-06-22 23:27:02 +0000135}
136
Owen Andersone50ed302009-08-10 22:56:29 +0000137void ARMTargetLowering::addQRTypeForNEON(EVT VT) {
Bob Wilson5bafff32009-06-22 23:27:02 +0000138 addRegisterClass(VT, ARM::QPRRegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000139 addTypeForNEON(VT, MVT::v2f64, MVT::v4i32);
Bob Wilson5bafff32009-06-22 23:27:02 +0000140}
141
Chris Lattnerf0144122009-07-28 03:13:23 +0000142static TargetLoweringObjectFile *createTLOF(TargetMachine &TM) {
143 if (TM.getSubtarget<ARMSubtarget>().isTargetDarwin())
Bill Wendling505ad8b2010-03-15 21:09:38 +0000144 return new TargetLoweringObjectFileMachO();
Bill Wendling94a1c632010-03-09 02:46:12 +0000145
Chris Lattner80ec2792009-08-02 00:34:36 +0000146 return new ARMElfTargetObjectFile();
Chris Lattnerf0144122009-07-28 03:13:23 +0000147}
148
Evan Chenga8e29892007-01-19 07:51:42 +0000149ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
Evan Chenge7e0d622009-11-06 22:24:13 +0000150 : TargetLowering(TM, createTLOF(TM)) {
Evan Chenga8e29892007-01-19 07:51:42 +0000151 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng31446872010-07-23 22:39:59 +0000152 RegInfo = TM.getRegisterInfo();
Evan Cheng3ef1c872010-09-10 01:29:16 +0000153 Itins = TM.getInstrItineraryData();
Evan Chenga8e29892007-01-19 07:51:42 +0000154
Evan Chengb1df8f22007-04-27 08:15:43 +0000155 if (Subtarget->isTargetDarwin()) {
Evan Chengb1df8f22007-04-27 08:15:43 +0000156 // Uses VFP for Thumb libfuncs if available.
157 if (Subtarget->isThumb() && Subtarget->hasVFP2()) {
158 // Single-precision floating-point arithmetic.
159 setLibcallName(RTLIB::ADD_F32, "__addsf3vfp");
160 setLibcallName(RTLIB::SUB_F32, "__subsf3vfp");
161 setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp");
162 setLibcallName(RTLIB::DIV_F32, "__divsf3vfp");
Evan Chenga8e29892007-01-19 07:51:42 +0000163
Evan Chengb1df8f22007-04-27 08:15:43 +0000164 // Double-precision floating-point arithmetic.
165 setLibcallName(RTLIB::ADD_F64, "__adddf3vfp");
166 setLibcallName(RTLIB::SUB_F64, "__subdf3vfp");
167 setLibcallName(RTLIB::MUL_F64, "__muldf3vfp");
168 setLibcallName(RTLIB::DIV_F64, "__divdf3vfp");
Evan Cheng193f8502007-01-31 09:30:58 +0000169
Evan Chengb1df8f22007-04-27 08:15:43 +0000170 // Single-precision comparisons.
171 setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp");
172 setLibcallName(RTLIB::UNE_F32, "__nesf2vfp");
173 setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp");
174 setLibcallName(RTLIB::OLE_F32, "__lesf2vfp");
175 setLibcallName(RTLIB::OGE_F32, "__gesf2vfp");
176 setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp");
177 setLibcallName(RTLIB::UO_F32, "__unordsf2vfp");
178 setLibcallName(RTLIB::O_F32, "__unordsf2vfp");
Evan Chenga8e29892007-01-19 07:51:42 +0000179
Evan Chengb1df8f22007-04-27 08:15:43 +0000180 setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
181 setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE);
182 setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
183 setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
184 setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
185 setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
186 setCmpLibcallCC(RTLIB::UO_F32, ISD::SETNE);
187 setCmpLibcallCC(RTLIB::O_F32, ISD::SETEQ);
Evan Cheng193f8502007-01-31 09:30:58 +0000188
Evan Chengb1df8f22007-04-27 08:15:43 +0000189 // Double-precision comparisons.
190 setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp");
191 setLibcallName(RTLIB::UNE_F64, "__nedf2vfp");
192 setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp");
193 setLibcallName(RTLIB::OLE_F64, "__ledf2vfp");
194 setLibcallName(RTLIB::OGE_F64, "__gedf2vfp");
195 setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp");
196 setLibcallName(RTLIB::UO_F64, "__unorddf2vfp");
197 setLibcallName(RTLIB::O_F64, "__unorddf2vfp");
Evan Chenga8e29892007-01-19 07:51:42 +0000198
Evan Chengb1df8f22007-04-27 08:15:43 +0000199 setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
200 setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE);
201 setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
202 setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
203 setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
204 setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
205 setCmpLibcallCC(RTLIB::UO_F64, ISD::SETNE);
206 setCmpLibcallCC(RTLIB::O_F64, ISD::SETEQ);
Evan Chenga8e29892007-01-19 07:51:42 +0000207
Evan Chengb1df8f22007-04-27 08:15:43 +0000208 // Floating-point to integer conversions.
209 // i64 conversions are done via library routines even when generating VFP
210 // instructions, so use the same ones.
211 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp");
212 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp");
213 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp");
214 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp");
Evan Chenga8e29892007-01-19 07:51:42 +0000215
Evan Chengb1df8f22007-04-27 08:15:43 +0000216 // Conversions between floating types.
217 setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp");
218 setLibcallName(RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp");
219
220 // Integer to floating-point conversions.
221 // i64 conversions are done via library routines even when generating VFP
222 // instructions, so use the same ones.
Bob Wilson2a14c522009-03-20 23:16:43 +0000223 // FIXME: There appears to be some naming inconsistency in ARM libgcc:
224 // e.g., __floatunsidf vs. __floatunssidfvfp.
Evan Chengb1df8f22007-04-27 08:15:43 +0000225 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp");
226 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp");
227 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp");
228 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp");
229 }
Evan Chenga8e29892007-01-19 07:51:42 +0000230 }
231
Bob Wilson2f954612009-05-22 17:38:41 +0000232 // These libcalls are not available in 32-bit.
233 setLibcallName(RTLIB::SHL_I128, 0);
234 setLibcallName(RTLIB::SRL_I128, 0);
235 setLibcallName(RTLIB::SRA_I128, 0);
236
Anton Korobeynikov72977a42009-08-14 20:10:52 +0000237 if (Subtarget->isAAPCS_ABI()) {
Anton Korobeynikov4f922f22010-09-28 21:39:26 +0000238 // Double-precision floating-point arithmetic helper functions
239 // RTABI chapter 4.1.2, Table 2
240 setLibcallName(RTLIB::ADD_F64, "__aeabi_dadd");
241 setLibcallName(RTLIB::DIV_F64, "__aeabi_ddiv");
242 setLibcallName(RTLIB::MUL_F64, "__aeabi_dmul");
243 setLibcallName(RTLIB::SUB_F64, "__aeabi_dsub");
244 setLibcallCallingConv(RTLIB::ADD_F64, CallingConv::ARM_AAPCS);
245 setLibcallCallingConv(RTLIB::DIV_F64, CallingConv::ARM_AAPCS);
246 setLibcallCallingConv(RTLIB::MUL_F64, CallingConv::ARM_AAPCS);
247 setLibcallCallingConv(RTLIB::SUB_F64, CallingConv::ARM_AAPCS);
248
249 // Double-precision floating-point comparison helper functions
250 // RTABI chapter 4.1.2, Table 3
251 setLibcallName(RTLIB::OEQ_F64, "__aeabi_dcmpeq");
252 setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
253 setLibcallName(RTLIB::UNE_F64, "__aeabi_dcmpeq");
254 setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETEQ);
255 setLibcallName(RTLIB::OLT_F64, "__aeabi_dcmplt");
256 setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
257 setLibcallName(RTLIB::OLE_F64, "__aeabi_dcmple");
258 setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
259 setLibcallName(RTLIB::OGE_F64, "__aeabi_dcmpge");
260 setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
261 setLibcallName(RTLIB::OGT_F64, "__aeabi_dcmpgt");
262 setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
263 setLibcallName(RTLIB::UO_F64, "__aeabi_dcmpun");
264 setCmpLibcallCC(RTLIB::UO_F64, ISD::SETNE);
265 setLibcallName(RTLIB::O_F64, "__aeabi_dcmpun");
266 setCmpLibcallCC(RTLIB::O_F64, ISD::SETEQ);
267 setLibcallCallingConv(RTLIB::OEQ_F64, CallingConv::ARM_AAPCS);
268 setLibcallCallingConv(RTLIB::UNE_F64, CallingConv::ARM_AAPCS);
269 setLibcallCallingConv(RTLIB::OLT_F64, CallingConv::ARM_AAPCS);
270 setLibcallCallingConv(RTLIB::OLE_F64, CallingConv::ARM_AAPCS);
271 setLibcallCallingConv(RTLIB::OGE_F64, CallingConv::ARM_AAPCS);
272 setLibcallCallingConv(RTLIB::OGT_F64, CallingConv::ARM_AAPCS);
273 setLibcallCallingConv(RTLIB::UO_F64, CallingConv::ARM_AAPCS);
274 setLibcallCallingConv(RTLIB::O_F64, CallingConv::ARM_AAPCS);
275
276 // Single-precision floating-point arithmetic helper functions
277 // RTABI chapter 4.1.2, Table 4
278 setLibcallName(RTLIB::ADD_F32, "__aeabi_fadd");
279 setLibcallName(RTLIB::DIV_F32, "__aeabi_fdiv");
280 setLibcallName(RTLIB::MUL_F32, "__aeabi_fmul");
281 setLibcallName(RTLIB::SUB_F32, "__aeabi_fsub");
282 setLibcallCallingConv(RTLIB::ADD_F32, CallingConv::ARM_AAPCS);
283 setLibcallCallingConv(RTLIB::DIV_F32, CallingConv::ARM_AAPCS);
284 setLibcallCallingConv(RTLIB::MUL_F32, CallingConv::ARM_AAPCS);
285 setLibcallCallingConv(RTLIB::SUB_F32, CallingConv::ARM_AAPCS);
286
287 // Single-precision floating-point comparison helper functions
288 // RTABI chapter 4.1.2, Table 5
289 setLibcallName(RTLIB::OEQ_F32, "__aeabi_fcmpeq");
290 setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
291 setLibcallName(RTLIB::UNE_F32, "__aeabi_fcmpeq");
292 setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETEQ);
293 setLibcallName(RTLIB::OLT_F32, "__aeabi_fcmplt");
294 setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
295 setLibcallName(RTLIB::OLE_F32, "__aeabi_fcmple");
296 setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
297 setLibcallName(RTLIB::OGE_F32, "__aeabi_fcmpge");
298 setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
299 setLibcallName(RTLIB::OGT_F32, "__aeabi_fcmpgt");
300 setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
301 setLibcallName(RTLIB::UO_F32, "__aeabi_fcmpun");
302 setCmpLibcallCC(RTLIB::UO_F32, ISD::SETNE);
303 setLibcallName(RTLIB::O_F32, "__aeabi_fcmpun");
304 setCmpLibcallCC(RTLIB::O_F32, ISD::SETEQ);
305 setLibcallCallingConv(RTLIB::OEQ_F32, CallingConv::ARM_AAPCS);
306 setLibcallCallingConv(RTLIB::UNE_F32, CallingConv::ARM_AAPCS);
307 setLibcallCallingConv(RTLIB::OLT_F32, CallingConv::ARM_AAPCS);
308 setLibcallCallingConv(RTLIB::OLE_F32, CallingConv::ARM_AAPCS);
309 setLibcallCallingConv(RTLIB::OGE_F32, CallingConv::ARM_AAPCS);
310 setLibcallCallingConv(RTLIB::OGT_F32, CallingConv::ARM_AAPCS);
311 setLibcallCallingConv(RTLIB::UO_F32, CallingConv::ARM_AAPCS);
312 setLibcallCallingConv(RTLIB::O_F32, CallingConv::ARM_AAPCS);
313
314 // Floating-point to integer conversions.
315 // RTABI chapter 4.1.2, Table 6
316 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__aeabi_d2iz");
317 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__aeabi_d2uiz");
318 setLibcallName(RTLIB::FPTOSINT_F64_I64, "__aeabi_d2lz");
319 setLibcallName(RTLIB::FPTOUINT_F64_I64, "__aeabi_d2ulz");
320 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__aeabi_f2iz");
321 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__aeabi_f2uiz");
322 setLibcallName(RTLIB::FPTOSINT_F32_I64, "__aeabi_f2lz");
323 setLibcallName(RTLIB::FPTOUINT_F32_I64, "__aeabi_f2ulz");
324 setLibcallCallingConv(RTLIB::FPTOSINT_F64_I32, CallingConv::ARM_AAPCS);
325 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I32, CallingConv::ARM_AAPCS);
326 setLibcallCallingConv(RTLIB::FPTOSINT_F64_I64, CallingConv::ARM_AAPCS);
327 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::ARM_AAPCS);
328 setLibcallCallingConv(RTLIB::FPTOSINT_F32_I32, CallingConv::ARM_AAPCS);
329 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I32, CallingConv::ARM_AAPCS);
330 setLibcallCallingConv(RTLIB::FPTOSINT_F32_I64, CallingConv::ARM_AAPCS);
331 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::ARM_AAPCS);
332
333 // Conversions between floating types.
334 // RTABI chapter 4.1.2, Table 7
335 setLibcallName(RTLIB::FPROUND_F64_F32, "__aeabi_d2f");
336 setLibcallName(RTLIB::FPEXT_F32_F64, "__aeabi_f2d");
337 setLibcallCallingConv(RTLIB::FPROUND_F64_F32, CallingConv::ARM_AAPCS);
338 setLibcallCallingConv(RTLIB::FPEXT_F32_F64, CallingConv::ARM_AAPCS);
339
340 // Integer to floating-point conversions.
341 // RTABI chapter 4.1.2, Table 8
342 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__aeabi_i2d");
343 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__aeabi_ui2d");
344 setLibcallName(RTLIB::SINTTOFP_I64_F64, "__aeabi_l2d");
345 setLibcallName(RTLIB::UINTTOFP_I64_F64, "__aeabi_ul2d");
346 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__aeabi_i2f");
347 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__aeabi_ui2f");
348 setLibcallName(RTLIB::SINTTOFP_I64_F32, "__aeabi_l2f");
349 setLibcallName(RTLIB::UINTTOFP_I64_F32, "__aeabi_ul2f");
350 setLibcallCallingConv(RTLIB::SINTTOFP_I32_F64, CallingConv::ARM_AAPCS);
351 setLibcallCallingConv(RTLIB::UINTTOFP_I32_F64, CallingConv::ARM_AAPCS);
352 setLibcallCallingConv(RTLIB::SINTTOFP_I64_F64, CallingConv::ARM_AAPCS);
353 setLibcallCallingConv(RTLIB::UINTTOFP_I64_F64, CallingConv::ARM_AAPCS);
354 setLibcallCallingConv(RTLIB::SINTTOFP_I32_F32, CallingConv::ARM_AAPCS);
355 setLibcallCallingConv(RTLIB::UINTTOFP_I32_F32, CallingConv::ARM_AAPCS);
356 setLibcallCallingConv(RTLIB::SINTTOFP_I64_F32, CallingConv::ARM_AAPCS);
357 setLibcallCallingConv(RTLIB::UINTTOFP_I64_F32, CallingConv::ARM_AAPCS);
358
359 // Long long helper functions
360 // RTABI chapter 4.2, Table 9
361 setLibcallName(RTLIB::MUL_I64, "__aeabi_lmul");
362 setLibcallName(RTLIB::SDIV_I64, "__aeabi_ldivmod");
363 setLibcallName(RTLIB::UDIV_I64, "__aeabi_uldivmod");
364 setLibcallName(RTLIB::SHL_I64, "__aeabi_llsl");
365 setLibcallName(RTLIB::SRL_I64, "__aeabi_llsr");
366 setLibcallName(RTLIB::SRA_I64, "__aeabi_lasr");
367 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::ARM_AAPCS);
368 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::ARM_AAPCS);
369 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::ARM_AAPCS);
370 setLibcallCallingConv(RTLIB::SHL_I64, CallingConv::ARM_AAPCS);
371 setLibcallCallingConv(RTLIB::SRL_I64, CallingConv::ARM_AAPCS);
372 setLibcallCallingConv(RTLIB::SRA_I64, CallingConv::ARM_AAPCS);
373
374 // Integer division functions
375 // RTABI chapter 4.3.1
376 setLibcallName(RTLIB::SDIV_I8, "__aeabi_idiv");
377 setLibcallName(RTLIB::SDIV_I16, "__aeabi_idiv");
378 setLibcallName(RTLIB::SDIV_I32, "__aeabi_idiv");
379 setLibcallName(RTLIB::UDIV_I8, "__aeabi_uidiv");
380 setLibcallName(RTLIB::UDIV_I16, "__aeabi_uidiv");
381 setLibcallName(RTLIB::UDIV_I32, "__aeabi_uidiv");
382 setLibcallCallingConv(RTLIB::SDIV_I8, CallingConv::ARM_AAPCS);
383 setLibcallCallingConv(RTLIB::SDIV_I16, CallingConv::ARM_AAPCS);
384 setLibcallCallingConv(RTLIB::SDIV_I32, CallingConv::ARM_AAPCS);
385 setLibcallCallingConv(RTLIB::UDIV_I8, CallingConv::ARM_AAPCS);
386 setLibcallCallingConv(RTLIB::UDIV_I16, CallingConv::ARM_AAPCS);
387 setLibcallCallingConv(RTLIB::UDIV_I32, CallingConv::ARM_AAPCS);
Anton Korobeynikov72977a42009-08-14 20:10:52 +0000388 }
389
David Goodwinf1daf7d2009-07-08 23:10:31 +0000390 if (Subtarget->isThumb1Only())
Owen Anderson825b72b2009-08-11 20:47:22 +0000391 addRegisterClass(MVT::i32, ARM::tGPRRegisterClass);
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000392 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000393 addRegisterClass(MVT::i32, ARM::GPRRegisterClass);
David Goodwinf1daf7d2009-07-08 23:10:31 +0000394 if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000395 addRegisterClass(MVT::f32, ARM::SPRRegisterClass);
Jim Grosbachfcba5e62010-08-11 15:44:15 +0000396 if (!Subtarget->isFPOnlySP())
397 addRegisterClass(MVT::f64, ARM::DPRRegisterClass);
Bob Wilson2dc4f542009-03-20 22:42:55 +0000398
Owen Anderson825b72b2009-08-11 20:47:22 +0000399 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000400 }
Bob Wilson5bafff32009-06-22 23:27:02 +0000401
402 if (Subtarget->hasNEON()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000403 addDRTypeForNEON(MVT::v2f32);
404 addDRTypeForNEON(MVT::v8i8);
405 addDRTypeForNEON(MVT::v4i16);
406 addDRTypeForNEON(MVT::v2i32);
407 addDRTypeForNEON(MVT::v1i64);
Bob Wilson5bafff32009-06-22 23:27:02 +0000408
Owen Anderson825b72b2009-08-11 20:47:22 +0000409 addQRTypeForNEON(MVT::v4f32);
410 addQRTypeForNEON(MVT::v2f64);
411 addQRTypeForNEON(MVT::v16i8);
412 addQRTypeForNEON(MVT::v8i16);
413 addQRTypeForNEON(MVT::v4i32);
414 addQRTypeForNEON(MVT::v2i64);
Bob Wilson5bafff32009-06-22 23:27:02 +0000415
Bob Wilson74dc72e2009-09-15 23:55:57 +0000416 // v2f64 is legal so that QR subregs can be extracted as f64 elements, but
417 // neither Neon nor VFP support any arithmetic operations on it.
418 setOperationAction(ISD::FADD, MVT::v2f64, Expand);
419 setOperationAction(ISD::FSUB, MVT::v2f64, Expand);
420 setOperationAction(ISD::FMUL, MVT::v2f64, Expand);
421 setOperationAction(ISD::FDIV, MVT::v2f64, Expand);
422 setOperationAction(ISD::FREM, MVT::v2f64, Expand);
423 setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand);
424 setOperationAction(ISD::VSETCC, MVT::v2f64, Expand);
425 setOperationAction(ISD::FNEG, MVT::v2f64, Expand);
426 setOperationAction(ISD::FABS, MVT::v2f64, Expand);
427 setOperationAction(ISD::FSQRT, MVT::v2f64, Expand);
428 setOperationAction(ISD::FSIN, MVT::v2f64, Expand);
429 setOperationAction(ISD::FCOS, MVT::v2f64, Expand);
430 setOperationAction(ISD::FPOWI, MVT::v2f64, Expand);
431 setOperationAction(ISD::FPOW, MVT::v2f64, Expand);
432 setOperationAction(ISD::FLOG, MVT::v2f64, Expand);
433 setOperationAction(ISD::FLOG2, MVT::v2f64, Expand);
434 setOperationAction(ISD::FLOG10, MVT::v2f64, Expand);
435 setOperationAction(ISD::FEXP, MVT::v2f64, Expand);
436 setOperationAction(ISD::FEXP2, MVT::v2f64, Expand);
437 setOperationAction(ISD::FCEIL, MVT::v2f64, Expand);
438 setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand);
439 setOperationAction(ISD::FRINT, MVT::v2f64, Expand);
440 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand);
441 setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand);
442
Bob Wilsonb31a11b2010-08-20 04:54:02 +0000443 setTruncStoreAction(MVT::v2f64, MVT::v2f32, Expand);
444
Bob Wilson642b3292009-09-16 00:32:15 +0000445 // Neon does not support some operations on v1i64 and v2i64 types.
446 setOperationAction(ISD::MUL, MVT::v1i64, Expand);
Bob Wilsond0b69cf2010-09-01 23:50:19 +0000447 // Custom handling for some quad-vector types to detect VMULL.
448 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
449 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
450 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Bob Wilson642b3292009-09-16 00:32:15 +0000451 setOperationAction(ISD::VSETCC, MVT::v1i64, Expand);
452 setOperationAction(ISD::VSETCC, MVT::v2i64, Expand);
453
Bob Wilson5bafff32009-06-22 23:27:02 +0000454 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
455 setTargetDAGCombine(ISD::SHL);
456 setTargetDAGCombine(ISD::SRL);
457 setTargetDAGCombine(ISD::SRA);
458 setTargetDAGCombine(ISD::SIGN_EXTEND);
459 setTargetDAGCombine(ISD::ZERO_EXTEND);
460 setTargetDAGCombine(ISD::ANY_EXTEND);
Bob Wilson9f6c4c12010-02-18 06:05:53 +0000461 setTargetDAGCombine(ISD::SELECT_CC);
Bob Wilson75f02882010-09-17 22:59:05 +0000462 setTargetDAGCombine(ISD::BUILD_VECTOR);
Bob Wilsonf20700c2010-10-27 20:38:28 +0000463 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Bob Wilson5bafff32009-06-22 23:27:02 +0000464 }
465
Evan Cheng9f8cbd12007-05-18 00:19:34 +0000466 computeRegisterProperties();
Evan Chenga8e29892007-01-19 07:51:42 +0000467
468 // ARM does not have f32 extending load.
Owen Anderson825b72b2009-08-11 20:47:22 +0000469 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000470
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000471 // ARM does not have i1 sign extending load.
Owen Anderson825b72b2009-08-11 20:47:22 +0000472 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000473
Evan Chenga8e29892007-01-19 07:51:42 +0000474 // ARM supports all 4 flavors of integer indexed load / store.
Evan Chenge88d5ce2009-07-02 07:28:31 +0000475 if (!Subtarget->isThumb1Only()) {
476 for (unsigned im = (unsigned)ISD::PRE_INC;
477 im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000478 setIndexedLoadAction(im, MVT::i1, Legal);
479 setIndexedLoadAction(im, MVT::i8, Legal);
480 setIndexedLoadAction(im, MVT::i16, Legal);
481 setIndexedLoadAction(im, MVT::i32, Legal);
482 setIndexedStoreAction(im, MVT::i1, Legal);
483 setIndexedStoreAction(im, MVT::i8, Legal);
484 setIndexedStoreAction(im, MVT::i16, Legal);
485 setIndexedStoreAction(im, MVT::i32, Legal);
Evan Chenge88d5ce2009-07-02 07:28:31 +0000486 }
Evan Chenga8e29892007-01-19 07:51:42 +0000487 }
488
489 // i64 operation support.
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000490 if (Subtarget->isThumb1Only()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000491 setOperationAction(ISD::MUL, MVT::i64, Expand);
492 setOperationAction(ISD::MULHU, MVT::i32, Expand);
493 setOperationAction(ISD::MULHS, MVT::i32, Expand);
494 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
495 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000496 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000497 setOperationAction(ISD::MUL, MVT::i64, Expand);
498 setOperationAction(ISD::MULHU, MVT::i32, Expand);
Evan Chengb6207242009-08-01 00:16:10 +0000499 if (!Subtarget->hasV6Ops())
Owen Anderson825b72b2009-08-11 20:47:22 +0000500 setOperationAction(ISD::MULHS, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000501 }
Jim Grosbachc2b879f2009-10-31 19:38:01 +0000502 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
Jim Grosbachb4a976c2009-10-31 21:00:56 +0000503 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +0000504 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::SRL, MVT::i64, Custom);
506 setOperationAction(ISD::SRA, MVT::i64, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000507
508 // ARM does not have ROTL.
Owen Anderson825b72b2009-08-11 20:47:22 +0000509 setOperationAction(ISD::ROTL, MVT::i32, Expand);
Jim Grosbach3482c802010-01-18 19:58:49 +0000510 setOperationAction(ISD::CTTZ, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000511 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
David Goodwin24062ac2009-06-26 20:47:43 +0000512 if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only())
Owen Anderson825b72b2009-08-11 20:47:22 +0000513 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000514
Lauro Ramos Venancio368f20f2007-03-16 22:54:16 +0000515 // Only ARMv6 has BSWAP.
516 if (!Subtarget->hasV6Ops())
Owen Anderson825b72b2009-08-11 20:47:22 +0000517 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Lauro Ramos Venancio368f20f2007-03-16 22:54:16 +0000518
Evan Chenga8e29892007-01-19 07:51:42 +0000519 // These are expanded into libcalls.
Jim Grosbach29402132010-05-05 23:44:43 +0000520 if (!Subtarget->hasDivide()) {
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000521 // v7M has a hardware divider
522 setOperationAction(ISD::SDIV, MVT::i32, Expand);
523 setOperationAction(ISD::UDIV, MVT::i32, Expand);
524 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000525 setOperationAction(ISD::SREM, MVT::i32, Expand);
526 setOperationAction(ISD::UREM, MVT::i32, Expand);
527 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
528 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
Bob Wilson2dc4f542009-03-20 22:42:55 +0000529
Owen Anderson825b72b2009-08-11 20:47:22 +0000530 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
531 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
532 setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
533 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilsonddb16df2009-10-30 05:45:42 +0000534 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000535
Evan Chengfb3611d2010-05-11 07:26:32 +0000536 setOperationAction(ISD::TRAP, MVT::Other, Legal);
537
Evan Chenga8e29892007-01-19 07:51:42 +0000538 // Use the default implementation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000539 setOperationAction(ISD::VASTART, MVT::Other, Custom);
540 setOperationAction(ISD::VAARG, MVT::Other, Expand);
541 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
542 setOperationAction(ISD::VAEND, MVT::Other, Expand);
543 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
544 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Jim Grosbachbff39232009-08-12 17:38:44 +0000545 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
546 // FIXME: Shouldn't need this, since no register is used, but the legalizer
547 // doesn't yet know how to not do that for SjLj.
548 setExceptionSelectorRegister(ARM::R0);
Evan Cheng3a1588a2010-04-15 22:20:34 +0000549 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Evan Cheng11db0682010-08-11 06:22:01 +0000550 // ARMv6 Thumb1 (except for CPUs that support dmb / dsb) and earlier use
551 // the default expansion.
552 if (Subtarget->hasDataBarrier() ||
553 (Subtarget->hasV6Ops() && !Subtarget->isThumb1Only())) {
Jim Grosbach68741be2010-06-18 22:35:32 +0000554 // membarrier needs custom lowering; the rest are legal and handled
555 // normally.
556 setOperationAction(ISD::MEMBARRIER, MVT::Other, Custom);
557 } else {
558 // Set them all for expansion, which will force libcalls.
559 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
560 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Expand);
561 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Expand);
562 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Expand);
Jim Grosbachef6eb9c2010-06-18 23:03:10 +0000563 setOperationAction(ISD::ATOMIC_SWAP, MVT::i8, Expand);
564 setOperationAction(ISD::ATOMIC_SWAP, MVT::i16, Expand);
565 setOperationAction(ISD::ATOMIC_SWAP, MVT::i32, Expand);
Jim Grosbach68741be2010-06-18 22:35:32 +0000566 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i8, Expand);
567 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i16, Expand);
568 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i32, Expand);
569 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Expand);
570 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Expand);
571 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Expand);
572 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i8, Expand);
573 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i16, Expand);
574 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i32, Expand);
575 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i8, Expand);
576 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i16, Expand);
577 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i32, Expand);
578 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i8, Expand);
579 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i16, Expand);
580 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i32, Expand);
581 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i8, Expand);
582 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i16, Expand);
583 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Expand);
Jim Grosbach5def57a2010-06-23 16:08:49 +0000584 // Since the libcalls include locking, fold in the fences
585 setShouldFoldAtomicFences(true);
Jim Grosbach68741be2010-06-18 22:35:32 +0000586 }
587 // 64-bit versions are always libcalls (for now)
588 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Expand);
Jim Grosbachef6eb9c2010-06-18 23:03:10 +0000589 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Expand);
Jim Grosbach68741be2010-06-18 22:35:32 +0000590 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Expand);
591 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Expand);
592 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Expand);
593 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Expand);
594 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Expand);
595 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000596
Eli Friedmana2c6f452010-06-26 04:36:50 +0000597 // Requires SXTB/SXTH, available on v6 and up in both ARM and Thumb modes.
598 if (!Subtarget->hasV6Ops()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000599 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
600 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000601 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000602 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000603
Nate Begemand1fb5832010-08-03 21:31:55 +0000604 if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only()) {
Bob Wilsoncb9a6aa2010-01-19 22:56:26 +0000605 // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR
606 // iff target supports vfp2.
Owen Anderson825b72b2009-08-11 20:47:22 +0000607 setOperationAction(ISD::BIT_CONVERT, MVT::i64, Custom);
Nate Begemand1fb5832010-08-03 21:31:55 +0000608 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
609 }
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +0000610
611 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000612 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Jim Grosbache97f9682010-07-07 00:07:57 +0000613 if (Subtarget->isTargetDarwin()) {
614 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
615 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Jim Grosbache4ad3872010-10-19 23:27:08 +0000616 setOperationAction(ISD::EH_SJLJ_DISPATCHSETUP, MVT::Other, Custom);
Jim Grosbache97f9682010-07-07 00:07:57 +0000617 }
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +0000618
Owen Anderson825b72b2009-08-11 20:47:22 +0000619 setOperationAction(ISD::SETCC, MVT::i32, Expand);
620 setOperationAction(ISD::SETCC, MVT::f32, Expand);
621 setOperationAction(ISD::SETCC, MVT::f64, Expand);
Bill Wendlingde2b1512010-08-11 08:43:16 +0000622 setOperationAction(ISD::SELECT, MVT::i32, Custom);
623 setOperationAction(ISD::SELECT, MVT::f32, Custom);
624 setOperationAction(ISD::SELECT, MVT::f64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000625 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
626 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
627 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000628
Owen Anderson825b72b2009-08-11 20:47:22 +0000629 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
630 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
631 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
632 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
633 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000634
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000635 // We don't support sin/cos/fmod/copysign/pow
Owen Anderson825b72b2009-08-11 20:47:22 +0000636 setOperationAction(ISD::FSIN, MVT::f64, Expand);
637 setOperationAction(ISD::FSIN, MVT::f32, Expand);
638 setOperationAction(ISD::FCOS, MVT::f32, Expand);
639 setOperationAction(ISD::FCOS, MVT::f64, Expand);
640 setOperationAction(ISD::FREM, MVT::f64, Expand);
641 setOperationAction(ISD::FREM, MVT::f32, Expand);
David Goodwinf1daf7d2009-07-08 23:10:31 +0000642 if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000643 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
644 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng110cf482008-04-01 01:50:16 +0000645 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000646 setOperationAction(ISD::FPOW, MVT::f64, Expand);
647 setOperationAction(ISD::FPOW, MVT::f32, Expand);
Bob Wilson2dc4f542009-03-20 22:42:55 +0000648
Anton Korobeynikovbec3dd22010-03-14 18:42:31 +0000649 // Various VFP goodness
650 if (!UseSoftFloat && !Subtarget->isThumb1Only()) {
Bob Wilson76a312b2010-03-19 22:51:32 +0000651 // int <-> fp are custom expanded into bit_convert + ARMISD ops.
652 if (Subtarget->hasVFP2()) {
653 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
654 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
655 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
656 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
657 }
Anton Korobeynikovbec3dd22010-03-14 18:42:31 +0000658 // Special handling for half-precision FP.
Anton Korobeynikovf0d50072010-03-18 22:35:37 +0000659 if (!Subtarget->hasFP16()) {
660 setOperationAction(ISD::FP16_TO_FP32, MVT::f32, Expand);
661 setOperationAction(ISD::FP32_TO_FP16, MVT::i32, Expand);
Anton Korobeynikovbec3dd22010-03-14 18:42:31 +0000662 }
Evan Cheng110cf482008-04-01 01:50:16 +0000663 }
Evan Chenga8e29892007-01-19 07:51:42 +0000664
Chris Lattnerf1b1c5e2007-11-27 22:36:16 +0000665 // We have target-specific dag combine patterns for the following nodes:
Jim Grosbache5165492009-11-09 00:11:35 +0000666 // ARMISD::VMOVRRD - No need to call setTargetDAGCombine
Chris Lattnerd1980a52009-03-12 06:52:53 +0000667 setTargetDAGCombine(ISD::ADD);
668 setTargetDAGCombine(ISD::SUB);
Anton Korobeynikova9790d72010-05-15 18:16:59 +0000669 setTargetDAGCombine(ISD::MUL);
Bob Wilson2dc4f542009-03-20 22:42:55 +0000670
Jim Grosbach469bbdb2010-07-16 23:05:05 +0000671 if (Subtarget->hasV6T2Ops())
672 setTargetDAGCombine(ISD::OR);
673
Evan Chenga8e29892007-01-19 07:51:42 +0000674 setStackPointerRegisterToSaveRestore(ARM::SP);
Evan Cheng1cc39842010-05-20 23:26:43 +0000675
Evan Chengf7d87ee2010-05-21 00:43:17 +0000676 if (UseSoftFloat || Subtarget->isThumb1Only() || !Subtarget->hasVFP2())
677 setSchedulingPreference(Sched::RegPressure);
678 else
679 setSchedulingPreference(Sched::Hybrid);
Dale Johannesen8dd86c12007-05-17 21:31:21 +0000680
681 maxStoresPerMemcpy = 1; //// temporary - rewrite interface to use type
Evan Chengf6799392010-06-26 01:52:05 +0000682
Rafael Espindolacbeeae22010-07-11 04:01:49 +0000683 // On ARM arguments smaller than 4 bytes are extended, so all arguments
684 // are at least 4 bytes aligned.
685 setMinStackArgumentAlignment(4);
686
Evan Chengfff606d2010-09-24 19:07:23 +0000687 benefitFromCodePlacementOpt = true;
Evan Chenga8e29892007-01-19 07:51:42 +0000688}
689
Evan Cheng4f6b4672010-07-21 06:09:07 +0000690std::pair<const TargetRegisterClass*, uint8_t>
691ARMTargetLowering::findRepresentativeClass(EVT VT) const{
692 const TargetRegisterClass *RRC = 0;
693 uint8_t Cost = 1;
694 switch (VT.getSimpleVT().SimpleTy) {
Evan Chengd70f57b2010-07-19 22:15:08 +0000695 default:
Evan Cheng4f6b4672010-07-21 06:09:07 +0000696 return TargetLowering::findRepresentativeClass(VT);
Evan Cheng4a863e22010-07-21 23:53:58 +0000697 // Use DPR as representative register class for all floating point
698 // and vector types. Since there are 32 SPR registers and 32 DPR registers so
699 // the cost is 1 for both f32 and f64.
700 case MVT::f32: case MVT::f64: case MVT::v8i8: case MVT::v4i16:
Evan Cheng4f6b4672010-07-21 06:09:07 +0000701 case MVT::v2i32: case MVT::v1i64: case MVT::v2f32:
Evan Cheng4a863e22010-07-21 23:53:58 +0000702 RRC = ARM::DPRRegisterClass;
Evan Cheng4f6b4672010-07-21 06:09:07 +0000703 break;
704 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
705 case MVT::v4f32: case MVT::v2f64:
Evan Cheng4a863e22010-07-21 23:53:58 +0000706 RRC = ARM::DPRRegisterClass;
707 Cost = 2;
Evan Cheng4f6b4672010-07-21 06:09:07 +0000708 break;
709 case MVT::v4i64:
Evan Cheng4a863e22010-07-21 23:53:58 +0000710 RRC = ARM::DPRRegisterClass;
711 Cost = 4;
Evan Cheng4f6b4672010-07-21 06:09:07 +0000712 break;
713 case MVT::v8i64:
Evan Cheng4a863e22010-07-21 23:53:58 +0000714 RRC = ARM::DPRRegisterClass;
715 Cost = 8;
Evan Cheng4f6b4672010-07-21 06:09:07 +0000716 break;
Evan Chengd70f57b2010-07-19 22:15:08 +0000717 }
Evan Cheng4f6b4672010-07-21 06:09:07 +0000718 return std::make_pair(RRC, Cost);
Evan Chengd70f57b2010-07-19 22:15:08 +0000719}
720
Evan Chenga8e29892007-01-19 07:51:42 +0000721const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
722 switch (Opcode) {
723 default: return 0;
724 case ARMISD::Wrapper: return "ARMISD::Wrapper";
Evan Chenga8e29892007-01-19 07:51:42 +0000725 case ARMISD::WrapperJT: return "ARMISD::WrapperJT";
726 case ARMISD::CALL: return "ARMISD::CALL";
Evan Cheng277f0742007-06-19 21:05:09 +0000727 case ARMISD::CALL_PRED: return "ARMISD::CALL_PRED";
Evan Chenga8e29892007-01-19 07:51:42 +0000728 case ARMISD::CALL_NOLINK: return "ARMISD::CALL_NOLINK";
729 case ARMISD::tCALL: return "ARMISD::tCALL";
730 case ARMISD::BRCOND: return "ARMISD::BRCOND";
731 case ARMISD::BR_JT: return "ARMISD::BR_JT";
Evan Cheng5657c012009-07-29 02:18:14 +0000732 case ARMISD::BR2_JT: return "ARMISD::BR2_JT";
Evan Chenga8e29892007-01-19 07:51:42 +0000733 case ARMISD::RET_FLAG: return "ARMISD::RET_FLAG";
734 case ARMISD::PIC_ADD: return "ARMISD::PIC_ADD";
735 case ARMISD::CMP: return "ARMISD::CMP";
David Goodwinc0309b42009-06-29 15:33:01 +0000736 case ARMISD::CMPZ: return "ARMISD::CMPZ";
Evan Chenga8e29892007-01-19 07:51:42 +0000737 case ARMISD::CMPFP: return "ARMISD::CMPFP";
738 case ARMISD::CMPFPw0: return "ARMISD::CMPFPw0";
Evan Cheng218977b2010-07-13 19:27:42 +0000739 case ARMISD::BCC_i64: return "ARMISD::BCC_i64";
Evan Chenga8e29892007-01-19 07:51:42 +0000740 case ARMISD::FMSTAT: return "ARMISD::FMSTAT";
741 case ARMISD::CMOV: return "ARMISD::CMOV";
742 case ARMISD::CNEG: return "ARMISD::CNEG";
Bob Wilson2dc4f542009-03-20 22:42:55 +0000743
Jim Grosbach3482c802010-01-18 19:58:49 +0000744 case ARMISD::RBIT: return "ARMISD::RBIT";
745
Bob Wilson76a312b2010-03-19 22:51:32 +0000746 case ARMISD::FTOSI: return "ARMISD::FTOSI";
747 case ARMISD::FTOUI: return "ARMISD::FTOUI";
748 case ARMISD::SITOF: return "ARMISD::SITOF";
749 case ARMISD::UITOF: return "ARMISD::UITOF";
750
Evan Chenga8e29892007-01-19 07:51:42 +0000751 case ARMISD::SRL_FLAG: return "ARMISD::SRL_FLAG";
752 case ARMISD::SRA_FLAG: return "ARMISD::SRA_FLAG";
753 case ARMISD::RRX: return "ARMISD::RRX";
Bob Wilson2dc4f542009-03-20 22:42:55 +0000754
Bob Wilson0b8ccb82010-09-22 22:09:21 +0000755 case ARMISD::VMOVRRD: return "ARMISD::VMOVRRD";
756 case ARMISD::VMOVDRR: return "ARMISD::VMOVDRR";
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000757
Evan Chengc5942082009-10-28 06:55:03 +0000758 case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP";
759 case ARMISD::EH_SJLJ_LONGJMP:return "ARMISD::EH_SJLJ_LONGJMP";
Jim Grosbache4ad3872010-10-19 23:27:08 +0000760 case ARMISD::EH_SJLJ_DISPATCHSETUP:return "ARMISD::EH_SJLJ_DISPATCHSETUP";
Evan Chengc5942082009-10-28 06:55:03 +0000761
Dale Johannesen51e28e62010-06-03 21:09:53 +0000762 case ARMISD::TC_RETURN: return "ARMISD::TC_RETURN";
Jim Grosbach4725ca72010-09-08 03:54:02 +0000763
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000764 case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
Bob Wilson5bafff32009-06-22 23:27:02 +0000765
Evan Cheng86198642009-08-07 00:34:42 +0000766 case ARMISD::DYN_ALLOC: return "ARMISD::DYN_ALLOC";
767
Jim Grosbach3728e962009-12-10 00:11:09 +0000768 case ARMISD::MEMBARRIER: return "ARMISD::MEMBARRIER";
769 case ARMISD::SYNCBARRIER: return "ARMISD::SYNCBARRIER";
770
Bob Wilson5bafff32009-06-22 23:27:02 +0000771 case ARMISD::VCEQ: return "ARMISD::VCEQ";
772 case ARMISD::VCGE: return "ARMISD::VCGE";
773 case ARMISD::VCGEU: return "ARMISD::VCGEU";
774 case ARMISD::VCGT: return "ARMISD::VCGT";
775 case ARMISD::VCGTU: return "ARMISD::VCGTU";
776 case ARMISD::VTST: return "ARMISD::VTST";
777
778 case ARMISD::VSHL: return "ARMISD::VSHL";
779 case ARMISD::VSHRs: return "ARMISD::VSHRs";
780 case ARMISD::VSHRu: return "ARMISD::VSHRu";
781 case ARMISD::VSHLLs: return "ARMISD::VSHLLs";
782 case ARMISD::VSHLLu: return "ARMISD::VSHLLu";
783 case ARMISD::VSHLLi: return "ARMISD::VSHLLi";
784 case ARMISD::VSHRN: return "ARMISD::VSHRN";
785 case ARMISD::VRSHRs: return "ARMISD::VRSHRs";
786 case ARMISD::VRSHRu: return "ARMISD::VRSHRu";
787 case ARMISD::VRSHRN: return "ARMISD::VRSHRN";
788 case ARMISD::VQSHLs: return "ARMISD::VQSHLs";
789 case ARMISD::VQSHLu: return "ARMISD::VQSHLu";
790 case ARMISD::VQSHLsu: return "ARMISD::VQSHLsu";
791 case ARMISD::VQSHRNs: return "ARMISD::VQSHRNs";
792 case ARMISD::VQSHRNu: return "ARMISD::VQSHRNu";
793 case ARMISD::VQSHRNsu: return "ARMISD::VQSHRNsu";
794 case ARMISD::VQRSHRNs: return "ARMISD::VQRSHRNs";
795 case ARMISD::VQRSHRNu: return "ARMISD::VQRSHRNu";
796 case ARMISD::VQRSHRNsu: return "ARMISD::VQRSHRNsu";
797 case ARMISD::VGETLANEu: return "ARMISD::VGETLANEu";
798 case ARMISD::VGETLANEs: return "ARMISD::VGETLANEs";
Bob Wilsoncba270d2010-07-13 21:16:48 +0000799 case ARMISD::VMOVIMM: return "ARMISD::VMOVIMM";
Bob Wilson7e3f0d22010-07-14 06:31:50 +0000800 case ARMISD::VMVNIMM: return "ARMISD::VMVNIMM";
Bob Wilsonc1d287b2009-08-14 05:13:08 +0000801 case ARMISD::VDUP: return "ARMISD::VDUP";
Bob Wilson0ce37102009-08-14 05:08:32 +0000802 case ARMISD::VDUPLANE: return "ARMISD::VDUPLANE";
Bob Wilsonde95c1b82009-08-19 17:03:43 +0000803 case ARMISD::VEXT: return "ARMISD::VEXT";
Bob Wilsond8e17572009-08-12 22:31:50 +0000804 case ARMISD::VREV64: return "ARMISD::VREV64";
805 case ARMISD::VREV32: return "ARMISD::VREV32";
806 case ARMISD::VREV16: return "ARMISD::VREV16";
Anton Korobeynikov051cfd62009-08-21 12:41:42 +0000807 case ARMISD::VZIP: return "ARMISD::VZIP";
808 case ARMISD::VUZP: return "ARMISD::VUZP";
809 case ARMISD::VTRN: return "ARMISD::VTRN";
Bob Wilsond0b69cf2010-09-01 23:50:19 +0000810 case ARMISD::VMULLs: return "ARMISD::VMULLs";
811 case ARMISD::VMULLu: return "ARMISD::VMULLu";
Bob Wilson40cbe7d2010-06-04 00:04:02 +0000812 case ARMISD::BUILD_VECTOR: return "ARMISD::BUILD_VECTOR";
Bob Wilson9f6c4c12010-02-18 06:05:53 +0000813 case ARMISD::FMAX: return "ARMISD::FMAX";
814 case ARMISD::FMIN: return "ARMISD::FMIN";
Jim Grosbachdd7d28a2010-07-17 01:50:57 +0000815 case ARMISD::BFI: return "ARMISD::BFI";
Evan Chenga8e29892007-01-19 07:51:42 +0000816 }
817}
818
Evan Cheng06b666c2010-05-15 02:18:07 +0000819/// getRegClassFor - Return the register class that should be used for the
820/// specified value type.
821TargetRegisterClass *ARMTargetLowering::getRegClassFor(EVT VT) const {
822 // Map v4i64 to QQ registers but do not make the type legal. Similarly map
823 // v8i64 to QQQQ registers. v4i64 and v8i64 are only used for REG_SEQUENCE to
824 // load / store 4 to 8 consecutive D registers.
Evan Cheng4782b1e2010-05-15 02:20:21 +0000825 if (Subtarget->hasNEON()) {
826 if (VT == MVT::v4i64)
827 return ARM::QQPRRegisterClass;
828 else if (VT == MVT::v8i64)
829 return ARM::QQQQPRRegisterClass;
830 }
Evan Cheng06b666c2010-05-15 02:18:07 +0000831 return TargetLowering::getRegClassFor(VT);
832}
833
Eric Christopherab695882010-07-21 22:26:11 +0000834// Create a fast isel object.
835FastISel *
836ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
837 return ARM::createFastISel(funcInfo);
838}
839
Bill Wendlingb4202b82009-07-01 18:50:55 +0000840/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +0000841unsigned ARMTargetLowering::getFunctionAlignment(const Function *F) const {
Bob Wilsonb5b50572010-07-01 22:26:26 +0000842 return getTargetMachine().getSubtarget<ARMSubtarget>().isThumb() ? 1 : 2;
Bill Wendling20c568f2009-06-30 22:38:32 +0000843}
844
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000845/// getMaximalGlobalOffset - Returns the maximal possible offset which can
846/// be used for loads / stores from the global.
847unsigned ARMTargetLowering::getMaximalGlobalOffset() const {
848 return (Subtarget->isThumb1Only() ? 127 : 4095);
849}
850
Evan Cheng1cc39842010-05-20 23:26:43 +0000851Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const {
Evan Chengc10f5432010-05-28 23:25:23 +0000852 unsigned NumVals = N->getNumValues();
853 if (!NumVals)
854 return Sched::RegPressure;
855
856 for (unsigned i = 0; i != NumVals; ++i) {
Evan Cheng1cc39842010-05-20 23:26:43 +0000857 EVT VT = N->getValueType(i);
Evan Chengd7e473c2010-10-29 18:07:31 +0000858 if (VT == MVT::Flag || VT == MVT::Other)
859 continue;
Evan Cheng1cc39842010-05-20 23:26:43 +0000860 if (VT.isFloatingPoint() || VT.isVector())
861 return Sched::Latency;
862 }
Evan Chengc10f5432010-05-28 23:25:23 +0000863
864 if (!N->isMachineOpcode())
865 return Sched::RegPressure;
866
867 // Load are scheduled for latency even if there instruction itinerary
868 // is not available.
869 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
870 const TargetInstrDesc &TID = TII->get(N->getMachineOpcode());
Evan Chengd7e473c2010-10-29 18:07:31 +0000871
872 if (TID.getNumDefs() == 0)
873 return Sched::RegPressure;
874 if (!Itins->isEmpty() &&
875 Itins->getOperandCycle(TID.getSchedClass(), 0) > 2)
Evan Chengc10f5432010-05-28 23:25:23 +0000876 return Sched::Latency;
877
Evan Cheng1cc39842010-05-20 23:26:43 +0000878 return Sched::RegPressure;
879}
880
Evan Cheng31446872010-07-23 22:39:59 +0000881unsigned
882ARMTargetLowering::getRegPressureLimit(const TargetRegisterClass *RC,
883 MachineFunction &MF) const {
Evan Cheng31446872010-07-23 22:39:59 +0000884 switch (RC->getID()) {
885 default:
886 return 0;
887 case ARM::tGPRRegClassID:
Evan Chengac096802010-08-10 19:30:19 +0000888 return RegInfo->hasFP(MF) ? 4 : 5;
889 case ARM::GPRRegClassID: {
890 unsigned FP = RegInfo->hasFP(MF) ? 1 : 0;
891 return 10 - FP - (Subtarget->isR9Reserved() ? 1 : 0);
892 }
Evan Cheng31446872010-07-23 22:39:59 +0000893 case ARM::SPRRegClassID: // Currently not used as 'rep' register class.
894 case ARM::DPRRegClassID:
895 return 32 - 10;
896 }
897}
898
Evan Chenga8e29892007-01-19 07:51:42 +0000899//===----------------------------------------------------------------------===//
900// Lowering Code
901//===----------------------------------------------------------------------===//
902
Evan Chenga8e29892007-01-19 07:51:42 +0000903/// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
904static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
905 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000906 default: llvm_unreachable("Unknown condition code!");
Evan Chenga8e29892007-01-19 07:51:42 +0000907 case ISD::SETNE: return ARMCC::NE;
908 case ISD::SETEQ: return ARMCC::EQ;
909 case ISD::SETGT: return ARMCC::GT;
910 case ISD::SETGE: return ARMCC::GE;
911 case ISD::SETLT: return ARMCC::LT;
912 case ISD::SETLE: return ARMCC::LE;
913 case ISD::SETUGT: return ARMCC::HI;
914 case ISD::SETUGE: return ARMCC::HS;
915 case ISD::SETULT: return ARMCC::LO;
916 case ISD::SETULE: return ARMCC::LS;
917 }
918}
919
Bob Wilsoncd3b9a42009-09-09 23:14:54 +0000920/// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC.
921static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
Evan Chenga8e29892007-01-19 07:51:42 +0000922 ARMCC::CondCodes &CondCode2) {
Evan Chenga8e29892007-01-19 07:51:42 +0000923 CondCode2 = ARMCC::AL;
924 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000925 default: llvm_unreachable("Unknown FP condition!");
Evan Chenga8e29892007-01-19 07:51:42 +0000926 case ISD::SETEQ:
927 case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
928 case ISD::SETGT:
929 case ISD::SETOGT: CondCode = ARMCC::GT; break;
930 case ISD::SETGE:
931 case ISD::SETOGE: CondCode = ARMCC::GE; break;
932 case ISD::SETOLT: CondCode = ARMCC::MI; break;
Bob Wilsoncd3b9a42009-09-09 23:14:54 +0000933 case ISD::SETOLE: CondCode = ARMCC::LS; break;
Evan Chenga8e29892007-01-19 07:51:42 +0000934 case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
935 case ISD::SETO: CondCode = ARMCC::VC; break;
936 case ISD::SETUO: CondCode = ARMCC::VS; break;
937 case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
938 case ISD::SETUGT: CondCode = ARMCC::HI; break;
939 case ISD::SETUGE: CondCode = ARMCC::PL; break;
940 case ISD::SETLT:
941 case ISD::SETULT: CondCode = ARMCC::LT; break;
942 case ISD::SETLE:
943 case ISD::SETULE: CondCode = ARMCC::LE; break;
944 case ISD::SETNE:
945 case ISD::SETUNE: CondCode = ARMCC::NE; break;
946 }
Evan Chenga8e29892007-01-19 07:51:42 +0000947}
948
Bob Wilson1f595bb2009-04-17 19:07:39 +0000949//===----------------------------------------------------------------------===//
950// Calling Convention Implementation
Bob Wilson1f595bb2009-04-17 19:07:39 +0000951//===----------------------------------------------------------------------===//
952
953#include "ARMGenCallingConv.inc"
954
Anton Korobeynikov385f5a92009-06-16 18:50:49 +0000955/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
956/// given CallingConvention value.
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000957CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC,
Anton Korobeynikov567d14f2009-08-05 19:04:42 +0000958 bool Return,
959 bool isVarArg) const {
Anton Korobeynikov385f5a92009-06-16 18:50:49 +0000960 switch (CC) {
961 default:
Anton Korobeynikov567d14f2009-08-05 19:04:42 +0000962 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikov385f5a92009-06-16 18:50:49 +0000963 case CallingConv::Fast:
Evan Cheng5c2d4282010-10-23 02:19:37 +0000964 if (Subtarget->hasVFP2() && !isVarArg) {
Evan Cheng76f920d2010-10-22 18:23:05 +0000965 if (!Subtarget->isAAPCS_ABI())
966 return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
967 // For AAPCS ABI targets, just use VFP variant of the calling convention.
968 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
969 }
970 // Fallthrough
971 case CallingConv::C: {
Anton Korobeynikov567d14f2009-08-05 19:04:42 +0000972 // Use target triple & subtarget features to do actual dispatch.
Evan Cheng76f920d2010-10-22 18:23:05 +0000973 if (!Subtarget->isAAPCS_ABI())
974 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
975 else if (Subtarget->hasVFP2() &&
976 FloatABIType == FloatABI::Hard && !isVarArg)
977 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
978 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
979 }
Anton Korobeynikov385f5a92009-06-16 18:50:49 +0000980 case CallingConv::ARM_AAPCS_VFP:
Evan Cheng76f920d2010-10-22 18:23:05 +0000981 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
Anton Korobeynikov385f5a92009-06-16 18:50:49 +0000982 case CallingConv::ARM_AAPCS:
Evan Cheng76f920d2010-10-22 18:23:05 +0000983 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
Anton Korobeynikov385f5a92009-06-16 18:50:49 +0000984 case CallingConv::ARM_APCS:
Evan Cheng76f920d2010-10-22 18:23:05 +0000985 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
Anton Korobeynikov385f5a92009-06-16 18:50:49 +0000986 }
987}
988
Dan Gohman98ca4f22009-08-05 01:29:28 +0000989/// LowerCallResult - Lower the result values of a call into the
990/// appropriate copies out of appropriate physical registers.
991SDValue
992ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000993 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000994 const SmallVectorImpl<ISD::InputArg> &Ins,
995 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000996 SmallVectorImpl<SDValue> &InVals) const {
Bob Wilson1f595bb2009-04-17 19:07:39 +0000997
Bob Wilson1f595bb2009-04-17 19:07:39 +0000998 // Assign locations to each value returned by this call.
999 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001000 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001001 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001002 CCInfo.AnalyzeCallResult(Ins,
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001003 CCAssignFnForNode(CallConv, /* Return*/ true,
1004 isVarArg));
Bob Wilson1f595bb2009-04-17 19:07:39 +00001005
1006 // Copy all of the result registers out of their specified physreg.
1007 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1008 CCValAssign VA = RVLocs[i];
1009
Bob Wilson80915242009-04-25 00:33:20 +00001010 SDValue Val;
Bob Wilson1f595bb2009-04-17 19:07:39 +00001011 if (VA.needsCustom()) {
Bob Wilson5bafff32009-06-22 23:27:02 +00001012 // Handle f64 or half of a v2f64.
Owen Anderson825b72b2009-08-11 20:47:22 +00001013 SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
Bob Wilson1f595bb2009-04-17 19:07:39 +00001014 InFlag);
Bob Wilson4d59e1d2009-04-24 17:00:36 +00001015 Chain = Lo.getValue(1);
1016 InFlag = Lo.getValue(2);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001017 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson825b72b2009-08-11 20:47:22 +00001018 SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
Bob Wilson4d59e1d2009-04-24 17:00:36 +00001019 InFlag);
1020 Chain = Hi.getValue(1);
1021 InFlag = Hi.getValue(2);
Jim Grosbache5165492009-11-09 00:11:35 +00001022 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Bob Wilson5bafff32009-06-22 23:27:02 +00001023
Owen Anderson825b72b2009-08-11 20:47:22 +00001024 if (VA.getLocVT() == MVT::v2f64) {
1025 SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
1026 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1027 DAG.getConstant(0, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00001028
1029 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson825b72b2009-08-11 20:47:22 +00001030 Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
Bob Wilson5bafff32009-06-22 23:27:02 +00001031 Chain = Lo.getValue(1);
1032 InFlag = Lo.getValue(2);
1033 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson825b72b2009-08-11 20:47:22 +00001034 Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
Bob Wilson5bafff32009-06-22 23:27:02 +00001035 Chain = Hi.getValue(1);
1036 InFlag = Hi.getValue(2);
Jim Grosbache5165492009-11-09 00:11:35 +00001037 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Owen Anderson825b72b2009-08-11 20:47:22 +00001038 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1039 DAG.getConstant(1, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00001040 }
Bob Wilson1f595bb2009-04-17 19:07:39 +00001041 } else {
Bob Wilson80915242009-04-25 00:33:20 +00001042 Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(),
1043 InFlag);
Bob Wilson4d59e1d2009-04-24 17:00:36 +00001044 Chain = Val.getValue(1);
1045 InFlag = Val.getValue(2);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001046 }
Bob Wilson80915242009-04-25 00:33:20 +00001047
1048 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001049 default: llvm_unreachable("Unknown loc info!");
Bob Wilson80915242009-04-25 00:33:20 +00001050 case CCValAssign::Full: break;
1051 case CCValAssign::BCvt:
1052 Val = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), Val);
1053 break;
1054 }
1055
Dan Gohman98ca4f22009-08-05 01:29:28 +00001056 InVals.push_back(Val);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001057 }
1058
Dan Gohman98ca4f22009-08-05 01:29:28 +00001059 return Chain;
Bob Wilson1f595bb2009-04-17 19:07:39 +00001060}
1061
1062/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1063/// by "Src" to address "Dst" of size "Size". Alignment information is
Bob Wilsondee46d72009-04-17 20:35:10 +00001064/// specified by the specific parameter attribute. The copy will be passed as
Bob Wilson1f595bb2009-04-17 19:07:39 +00001065/// a byval function parameter.
1066/// Sometimes what we are copying is the end of a larger object, the part that
1067/// does not fit in registers.
1068static SDValue
1069CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
1070 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1071 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001072 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001073 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001074 /*isVolatile=*/false, /*AlwaysInline=*/false,
Chris Lattnere72f2022010-09-21 05:40:29 +00001075 MachinePointerInfo(0), MachinePointerInfo(0));
Bob Wilson1f595bb2009-04-17 19:07:39 +00001076}
1077
Bob Wilsondee46d72009-04-17 20:35:10 +00001078/// LowerMemOpCallTo - Store the argument to the stack.
Bob Wilson1f595bb2009-04-17 19:07:39 +00001079SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001080ARMTargetLowering::LowerMemOpCallTo(SDValue Chain,
1081 SDValue StackPtr, SDValue Arg,
1082 DebugLoc dl, SelectionDAG &DAG,
1083 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001084 ISD::ArgFlagsTy Flags) const {
Bob Wilson1f595bb2009-04-17 19:07:39 +00001085 unsigned LocMemOffset = VA.getLocMemOffset();
1086 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
1087 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001088 if (Flags.isByVal())
Bob Wilson1f595bb2009-04-17 19:07:39 +00001089 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001090
Bob Wilson1f595bb2009-04-17 19:07:39 +00001091 return DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001092 MachinePointerInfo::getStack(LocMemOffset),
David Greene1b58cab2010-02-15 16:55:24 +00001093 false, false, 0);
Evan Chenga8e29892007-01-19 07:51:42 +00001094}
1095
Dan Gohman98ca4f22009-08-05 01:29:28 +00001096void ARMTargetLowering::PassF64ArgInRegs(DebugLoc dl, SelectionDAG &DAG,
Bob Wilson5bafff32009-06-22 23:27:02 +00001097 SDValue Chain, SDValue &Arg,
1098 RegsToPassVector &RegsToPass,
1099 CCValAssign &VA, CCValAssign &NextVA,
1100 SDValue &StackPtr,
1101 SmallVector<SDValue, 8> &MemOpChains,
Dan Gohmand858e902010-04-17 15:26:15 +00001102 ISD::ArgFlagsTy Flags) const {
Bob Wilson5bafff32009-06-22 23:27:02 +00001103
Jim Grosbache5165492009-11-09 00:11:35 +00001104 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001105 DAG.getVTList(MVT::i32, MVT::i32), Arg);
Bob Wilson5bafff32009-06-22 23:27:02 +00001106 RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd));
1107
1108 if (NextVA.isRegLoc())
1109 RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1)));
1110 else {
1111 assert(NextVA.isMemLoc());
1112 if (StackPtr.getNode() == 0)
1113 StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
1114
Dan Gohman98ca4f22009-08-05 01:29:28 +00001115 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1),
1116 dl, DAG, NextVA,
1117 Flags));
Bob Wilson5bafff32009-06-22 23:27:02 +00001118 }
1119}
1120
Dan Gohman98ca4f22009-08-05 01:29:28 +00001121/// LowerCall - Lowering a call into a callseq_start <-
Evan Chengfc403422007-02-03 08:53:01 +00001122/// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
1123/// nodes.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001124SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001125ARMTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001126 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001127 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001128 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001129 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001130 const SmallVectorImpl<ISD::InputArg> &Ins,
1131 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001132 SmallVectorImpl<SDValue> &InVals) const {
Dale Johannesen51e28e62010-06-03 21:09:53 +00001133 MachineFunction &MF = DAG.getMachineFunction();
1134 bool IsStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
1135 bool IsSibCall = false;
Bob Wilson703af3a2010-08-13 22:43:33 +00001136 // Temporarily disable tail calls so things don't break.
1137 if (!EnableARMTailCalls)
1138 isTailCall = false;
Dale Johannesen51e28e62010-06-03 21:09:53 +00001139 if (isTailCall) {
1140 // Check if it's really possible to do a tail call.
1141 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1142 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001143 Outs, OutVals, Ins, DAG);
Dale Johannesen51e28e62010-06-03 21:09:53 +00001144 // We don't support GuaranteedTailCallOpt for ARM, only automatically
1145 // detected sibcalls.
1146 if (isTailCall) {
1147 ++NumTailCalls;
1148 IsSibCall = true;
1149 }
1150 }
Evan Chenga8e29892007-01-19 07:51:42 +00001151
Bob Wilson1f595bb2009-04-17 19:07:39 +00001152 // Analyze operands of the call, assigning locations to each operand.
1153 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001154 CCState CCInfo(CallConv, isVarArg, getTargetMachine(), ArgLocs,
1155 *DAG.getContext());
1156 CCInfo.AnalyzeCallOperands(Outs,
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001157 CCAssignFnForNode(CallConv, /* Return*/ false,
1158 isVarArg));
Evan Chenga8e29892007-01-19 07:51:42 +00001159
Bob Wilson1f595bb2009-04-17 19:07:39 +00001160 // Get a count of how many bytes are to be pushed on the stack.
1161 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chenga8e29892007-01-19 07:51:42 +00001162
Dale Johannesen51e28e62010-06-03 21:09:53 +00001163 // For tail calls, memory operands are available in our caller's stack.
1164 if (IsSibCall)
1165 NumBytes = 0;
1166
Evan Chenga8e29892007-01-19 07:51:42 +00001167 // Adjust the stack pointer for the new arguments...
1168 // These operations are automatically eliminated by the prolog/epilog pass
Dale Johannesen51e28e62010-06-03 21:09:53 +00001169 if (!IsSibCall)
1170 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Evan Chenga8e29892007-01-19 07:51:42 +00001171
Jim Grosbachf9a4b762010-02-24 01:43:03 +00001172 SDValue StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
Evan Chenga8e29892007-01-19 07:51:42 +00001173
Bob Wilson5bafff32009-06-22 23:27:02 +00001174 RegsToPassVector RegsToPass;
Bob Wilson1f595bb2009-04-17 19:07:39 +00001175 SmallVector<SDValue, 8> MemOpChains;
Evan Chenga8e29892007-01-19 07:51:42 +00001176
Bob Wilson1f595bb2009-04-17 19:07:39 +00001177 // Walk the register/memloc assignments, inserting copies/loads. In the case
Bob Wilsondee46d72009-04-17 20:35:10 +00001178 // of tail call optimization, arguments are handled later.
Bob Wilson1f595bb2009-04-17 19:07:39 +00001179 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1180 i != e;
1181 ++i, ++realArgIdx) {
1182 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00001183 SDValue Arg = OutVals[realArgIdx];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001184 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
Evan Chenga8e29892007-01-19 07:51:42 +00001185
Bob Wilson1f595bb2009-04-17 19:07:39 +00001186 // Promote the value if needed.
1187 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001188 default: llvm_unreachable("Unknown loc info!");
Bob Wilson1f595bb2009-04-17 19:07:39 +00001189 case CCValAssign::Full: break;
1190 case CCValAssign::SExt:
1191 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
1192 break;
1193 case CCValAssign::ZExt:
1194 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
1195 break;
1196 case CCValAssign::AExt:
1197 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1198 break;
1199 case CCValAssign::BCvt:
1200 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), Arg);
1201 break;
Evan Chenga8e29892007-01-19 07:51:42 +00001202 }
1203
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001204 // f64 and v2f64 might be passed in i32 pairs and must be split into pieces
Bob Wilson1f595bb2009-04-17 19:07:39 +00001205 if (VA.needsCustom()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001206 if (VA.getLocVT() == MVT::v2f64) {
1207 SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1208 DAG.getConstant(0, MVT::i32));
1209 SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1210 DAG.getConstant(1, MVT::i32));
Bob Wilson1f595bb2009-04-17 19:07:39 +00001211
Dan Gohman98ca4f22009-08-05 01:29:28 +00001212 PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass,
Bob Wilson5bafff32009-06-22 23:27:02 +00001213 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1214
1215 VA = ArgLocs[++i]; // skip ahead to next loc
1216 if (VA.isRegLoc()) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001217 PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass,
Bob Wilson5bafff32009-06-22 23:27:02 +00001218 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1219 } else {
1220 assert(VA.isMemLoc());
Bob Wilson5bafff32009-06-22 23:27:02 +00001221
Dan Gohman98ca4f22009-08-05 01:29:28 +00001222 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1,
1223 dl, DAG, VA, Flags));
Bob Wilson5bafff32009-06-22 23:27:02 +00001224 }
1225 } else {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001226 PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i],
Bob Wilson5bafff32009-06-22 23:27:02 +00001227 StackPtr, MemOpChains, Flags);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001228 }
1229 } else if (VA.isRegLoc()) {
1230 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Dale Johannesendf50d7e2010-06-18 18:13:11 +00001231 } else if (!IsSibCall) {
Bob Wilson1f595bb2009-04-17 19:07:39 +00001232 assert(VA.isMemLoc());
Bob Wilson1f595bb2009-04-17 19:07:39 +00001233
Dan Gohman98ca4f22009-08-05 01:29:28 +00001234 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1235 dl, DAG, VA, Flags));
Bob Wilson1f595bb2009-04-17 19:07:39 +00001236 }
Evan Chenga8e29892007-01-19 07:51:42 +00001237 }
1238
1239 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00001240 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Evan Chenga8e29892007-01-19 07:51:42 +00001241 &MemOpChains[0], MemOpChains.size());
1242
1243 // Build a sequence of copy-to-reg nodes chained together with token chain
1244 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman475871a2008-07-27 21:46:04 +00001245 SDValue InFlag;
Dale Johannesen6470a112010-06-15 22:08:33 +00001246 // Tail call byval lowering might overwrite argument registers so in case of
1247 // tail call optimization the copies to registers are lowered later.
1248 if (!isTailCall)
1249 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1250 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1251 RegsToPass[i].second, InFlag);
1252 InFlag = Chain.getValue(1);
1253 }
Evan Chenga8e29892007-01-19 07:51:42 +00001254
Dale Johannesen51e28e62010-06-03 21:09:53 +00001255 // For tail calls lower the arguments to the 'real' stack slot.
1256 if (isTailCall) {
1257 // Force all the incoming stack arguments to be loaded from the stack
1258 // before any new outgoing arguments are stored to the stack, because the
1259 // outgoing stack slots may alias the incoming argument stack slots, and
1260 // the alias isn't otherwise explicit. This is slightly more conservative
1261 // than necessary, because it means that each store effectively depends
1262 // on every argument instead of just those arguments it would clobber.
1263
1264 // Do not flag preceeding copytoreg stuff together with the following stuff.
1265 InFlag = SDValue();
1266 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1267 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1268 RegsToPass[i].second, InFlag);
1269 InFlag = Chain.getValue(1);
1270 }
1271 InFlag =SDValue();
1272 }
1273
Bill Wendling056292f2008-09-16 21:48:12 +00001274 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1275 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1276 // node so that legalize doesn't hack it.
Evan Chenga8e29892007-01-19 07:51:42 +00001277 bool isDirect = false;
1278 bool isARMFunc = false;
Evan Cheng277f0742007-06-19 21:05:09 +00001279 bool isLocalARMFunc = false;
Evan Chenge7e0d622009-11-06 22:24:13 +00001280 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Jim Grosbache7b52522010-04-14 22:28:31 +00001281
1282 if (EnableARMLongCalls) {
1283 assert (getTargetMachine().getRelocationModel() == Reloc::Static
1284 && "long-calls with non-static relocation model!");
1285 // Handle a global address or an external symbol. If it's not one of
1286 // those, the target's already in a register, so we don't need to do
1287 // anything extra.
1288 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Anders Carlsson0dbdca52010-04-15 03:11:28 +00001289 const GlobalValue *GV = G->getGlobal();
Jim Grosbache7b52522010-04-14 22:28:31 +00001290 // Create a constant pool entry for the callee address
1291 unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1292 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV,
1293 ARMPCLabelIndex,
1294 ARMCP::CPValue, 0);
1295 // Get the address of the callee into a register
1296 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1297 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1298 Callee = DAG.getLoad(getPointerTy(), dl,
1299 DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001300 MachinePointerInfo::getConstantPool(),
Jim Grosbache7b52522010-04-14 22:28:31 +00001301 false, false, 0);
1302 } else if (ExternalSymbolSDNode *S=dyn_cast<ExternalSymbolSDNode>(Callee)) {
1303 const char *Sym = S->getSymbol();
1304
1305 // Create a constant pool entry for the callee address
1306 unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1307 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(*DAG.getContext(),
1308 Sym, ARMPCLabelIndex, 0);
1309 // Get the address of the callee into a register
1310 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1311 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1312 Callee = DAG.getLoad(getPointerTy(), dl,
1313 DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001314 MachinePointerInfo::getConstantPool(),
Jim Grosbache7b52522010-04-14 22:28:31 +00001315 false, false, 0);
1316 }
1317 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Dan Gohman46510a72010-04-15 01:51:59 +00001318 const GlobalValue *GV = G->getGlobal();
Evan Chenga8e29892007-01-19 07:51:42 +00001319 isDirect = true;
Chris Lattner4fb63d02009-07-15 04:12:33 +00001320 bool isExt = GV->isDeclaration() || GV->isWeakForLinker();
Evan Cheng970a4192007-01-19 19:28:01 +00001321 bool isStub = (isExt && Subtarget->isTargetDarwin()) &&
Evan Chenga8e29892007-01-19 07:51:42 +00001322 getTargetMachine().getRelocationModel() != Reloc::Static;
1323 isARMFunc = !Subtarget->isThumb() || isStub;
Evan Cheng277f0742007-06-19 21:05:09 +00001324 // ARM call to a local ARM function is predicable.
Evan Cheng46df4eb2010-06-16 07:35:02 +00001325 isLocalARMFunc = !Subtarget->isThumb() && (!isExt || !ARMInterworking);
Evan Chengc60e76d2007-01-30 20:37:08 +00001326 // tBX takes a register source operand.
David Goodwinf1daf7d2009-07-08 23:10:31 +00001327 if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
Evan Chenge7e0d622009-11-06 22:24:13 +00001328 unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
Evan Chenge4e4ed32009-08-28 23:18:09 +00001329 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV,
Jim Grosbach3fb2b1e2009-09-01 01:57:56 +00001330 ARMPCLabelIndex,
1331 ARMCP::CPValue, 4);
Evan Cheng1606e8e2009-03-13 07:51:59 +00001332 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00001333 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Bob Wilson2dc4f542009-03-20 22:42:55 +00001334 Callee = DAG.getLoad(getPointerTy(), dl,
Evan Cheng9eda6892009-10-31 03:39:36 +00001335 DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001336 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001337 false, false, 0);
Evan Chenge7e0d622009-11-06 22:24:13 +00001338 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Bob Wilson2dc4f542009-03-20 22:42:55 +00001339 Callee = DAG.getNode(ARMISD::PIC_ADD, dl,
Dale Johannesen33c960f2009-02-04 20:06:27 +00001340 getPointerTy(), Callee, PICLabel);
Jim Grosbach637d89f2010-09-22 23:27:36 +00001341 } else {
1342 // On ELF targets for PIC code, direct calls should go through the PLT
1343 unsigned OpFlags = 0;
1344 if (Subtarget->isTargetELF() &&
1345 getTargetMachine().getRelocationModel() == Reloc::PIC_)
1346 OpFlags = ARMII::MO_PLT;
1347 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
1348 }
Bill Wendling056292f2008-09-16 21:48:12 +00001349 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Evan Chenga8e29892007-01-19 07:51:42 +00001350 isDirect = true;
Evan Cheng970a4192007-01-19 19:28:01 +00001351 bool isStub = Subtarget->isTargetDarwin() &&
Evan Chenga8e29892007-01-19 07:51:42 +00001352 getTargetMachine().getRelocationModel() != Reloc::Static;
1353 isARMFunc = !Subtarget->isThumb() || isStub;
Evan Chengc60e76d2007-01-30 20:37:08 +00001354 // tBX takes a register source operand.
1355 const char *Sym = S->getSymbol();
David Goodwinf1daf7d2009-07-08 23:10:31 +00001356 if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
Evan Chenge7e0d622009-11-06 22:24:13 +00001357 unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
Owen Anderson1d0be152009-08-13 21:58:54 +00001358 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(*DAG.getContext(),
Evan Chenge4e4ed32009-08-28 23:18:09 +00001359 Sym, ARMPCLabelIndex, 4);
Evan Cheng1606e8e2009-03-13 07:51:59 +00001360 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00001361 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Dale Johannesen33c960f2009-02-04 20:06:27 +00001362 Callee = DAG.getLoad(getPointerTy(), dl,
Evan Cheng9eda6892009-10-31 03:39:36 +00001363 DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001364 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001365 false, false, 0);
Evan Chenge7e0d622009-11-06 22:24:13 +00001366 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Bob Wilson2dc4f542009-03-20 22:42:55 +00001367 Callee = DAG.getNode(ARMISD::PIC_ADD, dl,
Dale Johannesen33c960f2009-02-04 20:06:27 +00001368 getPointerTy(), Callee, PICLabel);
Jim Grosbach637d89f2010-09-22 23:27:36 +00001369 } else {
1370 unsigned OpFlags = 0;
1371 // On ELF targets for PIC code, direct calls should go through the PLT
1372 if (Subtarget->isTargetELF() &&
1373 getTargetMachine().getRelocationModel() == Reloc::PIC_)
1374 OpFlags = ARMII::MO_PLT;
1375 Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlags);
1376 }
Evan Chenga8e29892007-01-19 07:51:42 +00001377 }
1378
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +00001379 // FIXME: handle tail calls differently.
1380 unsigned CallOpc;
Evan Chengb6207242009-08-01 00:16:10 +00001381 if (Subtarget->isThumb()) {
1382 if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps())
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +00001383 CallOpc = ARMISD::CALL_NOLINK;
1384 else
1385 CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
1386 } else {
1387 CallOpc = (isDirect || Subtarget->hasV5TOps())
Evan Cheng277f0742007-06-19 21:05:09 +00001388 ? (isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL)
1389 : ARMISD::CALL_NOLINK;
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +00001390 }
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +00001391
Dan Gohman475871a2008-07-27 21:46:04 +00001392 std::vector<SDValue> Ops;
Evan Chenga8e29892007-01-19 07:51:42 +00001393 Ops.push_back(Chain);
1394 Ops.push_back(Callee);
1395
1396 // Add argument registers to the end of the list so that they are known live
1397 // into the call.
1398 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1399 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1400 RegsToPass[i].second.getValueType()));
1401
Gabor Greifba36cb52008-08-28 21:40:38 +00001402 if (InFlag.getNode())
Evan Chenga8e29892007-01-19 07:51:42 +00001403 Ops.push_back(InFlag);
Dale Johannesen51e28e62010-06-03 21:09:53 +00001404
1405 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesencf296fa2010-06-05 00:51:39 +00001406 if (isTailCall)
Dale Johannesen51e28e62010-06-03 21:09:53 +00001407 return DAG.getNode(ARMISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
Dale Johannesen51e28e62010-06-03 21:09:53 +00001408
Duncan Sands4bdcb612008-07-02 17:40:58 +00001409 // Returns a chain and a flag for retval copy to use.
Dale Johannesen51e28e62010-06-03 21:09:53 +00001410 Chain = DAG.getNode(CallOpc, dl, NodeTys, &Ops[0], Ops.size());
Evan Chenga8e29892007-01-19 07:51:42 +00001411 InFlag = Chain.getValue(1);
1412
Chris Lattnere563bbc2008-10-11 22:08:30 +00001413 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1414 DAG.getIntPtrConstant(0, true), InFlag);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001415 if (!Ins.empty())
Evan Chenga8e29892007-01-19 07:51:42 +00001416 InFlag = Chain.getValue(1);
1417
Bob Wilson1f595bb2009-04-17 19:07:39 +00001418 // Handle result values, copying them out of physregs into vregs that we
1419 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001420 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins,
1421 dl, DAG, InVals);
Evan Chenga8e29892007-01-19 07:51:42 +00001422}
1423
Dale Johannesen51e28e62010-06-03 21:09:53 +00001424/// MatchingStackOffset - Return true if the given stack call argument is
1425/// already available in the same position (relatively) of the caller's
1426/// incoming argument stack.
1427static
1428bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
1429 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
1430 const ARMInstrInfo *TII) {
1431 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
1432 int FI = INT_MAX;
1433 if (Arg.getOpcode() == ISD::CopyFromReg) {
1434 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
1435 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
1436 return false;
1437 MachineInstr *Def = MRI->getVRegDef(VR);
1438 if (!Def)
1439 return false;
1440 if (!Flags.isByVal()) {
1441 if (!TII->isLoadFromStackSlot(Def, FI))
1442 return false;
1443 } else {
Dale Johannesen7835f1f2010-07-08 01:18:23 +00001444 return false;
Dale Johannesen51e28e62010-06-03 21:09:53 +00001445 }
1446 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
1447 if (Flags.isByVal())
1448 // ByVal argument is passed in as a pointer but it's now being
1449 // dereferenced. e.g.
1450 // define @foo(%struct.X* %A) {
1451 // tail call @bar(%struct.X* byval %A)
1452 // }
1453 return false;
1454 SDValue Ptr = Ld->getBasePtr();
1455 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
1456 if (!FINode)
1457 return false;
1458 FI = FINode->getIndex();
1459 } else
1460 return false;
1461
1462 assert(FI != INT_MAX);
1463 if (!MFI->isFixedObjectIndex(FI))
1464 return false;
1465 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
1466}
1467
1468/// IsEligibleForTailCallOptimization - Check whether the call is eligible
1469/// for tail call optimization. Targets which want to do tail call
1470/// optimization should implement this function.
1471bool
1472ARMTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
1473 CallingConv::ID CalleeCC,
1474 bool isVarArg,
1475 bool isCalleeStructRet,
1476 bool isCallerStructRet,
1477 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001478 const SmallVectorImpl<SDValue> &OutVals,
Dale Johannesen51e28e62010-06-03 21:09:53 +00001479 const SmallVectorImpl<ISD::InputArg> &Ins,
1480 SelectionDAG& DAG) const {
Dale Johannesen51e28e62010-06-03 21:09:53 +00001481 const Function *CallerF = DAG.getMachineFunction().getFunction();
1482 CallingConv::ID CallerCC = CallerF->getCallingConv();
1483 bool CCMatch = CallerCC == CalleeCC;
1484
1485 // Look for obvious safe cases to perform tail call optimization that do not
1486 // require ABI changes. This is what gcc calls sibcall.
1487
Jim Grosbach7616b642010-06-16 23:45:49 +00001488 // Do not sibcall optimize vararg calls unless the call site is not passing
1489 // any arguments.
Dale Johannesen51e28e62010-06-03 21:09:53 +00001490 if (isVarArg && !Outs.empty())
1491 return false;
1492
1493 // Also avoid sibcall optimization if either caller or callee uses struct
1494 // return semantics.
1495 if (isCalleeStructRet || isCallerStructRet)
1496 return false;
1497
Dale Johannesene39fdbe2010-06-23 18:52:34 +00001498 // FIXME: Completely disable sibcall for Thumb1 since Thumb1RegisterInfo::
Evan Cheng0110ac62010-06-19 01:01:32 +00001499 // emitEpilogue is not ready for them.
Dale Johannesen7835f1f2010-07-08 01:18:23 +00001500 // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
1501 // LR. This means if we need to reload LR, it takes an extra instructions,
1502 // which outweighs the value of the tail call; but here we don't know yet
1503 // whether LR is going to be used. Probably the right approach is to
Jim Grosbach4725ca72010-09-08 03:54:02 +00001504 // generate the tail call here and turn it back into CALL/RET in
Dale Johannesen7835f1f2010-07-08 01:18:23 +00001505 // emitEpilogue if LR is used.
Evan Cheng0110ac62010-06-19 01:01:32 +00001506 if (Subtarget->isThumb1Only())
1507 return false;
1508
Dale Johannesene39fdbe2010-06-23 18:52:34 +00001509 // For the moment, we can only do this to functions defined in this
1510 // compilation, or to indirect calls. A Thumb B to an ARM function,
1511 // or vice versa, is not easily fixed up in the linker unlike BL.
1512 // (We could do this by loading the address of the callee into a register;
1513 // that is an extra instruction over the direct call and burns a register
1514 // as well, so is not likely to be a win.)
Dale Johannesen7835f1f2010-07-08 01:18:23 +00001515
1516 // It might be safe to remove this restriction on non-Darwin.
1517
1518 // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
1519 // but we need to make sure there are enough registers; the only valid
1520 // registers are the 4 used for parameters. We don't currently do this
1521 // case.
Evan Cheng0110ac62010-06-19 01:01:32 +00001522 if (isa<ExternalSymbolSDNode>(Callee))
1523 return false;
1524
1525 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Dale Johannesene39fdbe2010-06-23 18:52:34 +00001526 const GlobalValue *GV = G->getGlobal();
1527 if (GV->isDeclaration() || GV->isWeakForLinker())
Evan Cheng0110ac62010-06-19 01:01:32 +00001528 return false;
Dale Johannesendf50d7e2010-06-18 18:13:11 +00001529 }
1530
Dale Johannesen51e28e62010-06-03 21:09:53 +00001531 // If the calling conventions do not match, then we'd better make sure the
1532 // results are returned in the same way as what the caller expects.
1533 if (!CCMatch) {
1534 SmallVector<CCValAssign, 16> RVLocs1;
1535 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
1536 RVLocs1, *DAG.getContext());
1537 CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC, true, isVarArg));
1538
1539 SmallVector<CCValAssign, 16> RVLocs2;
1540 CCState CCInfo2(CallerCC, false, getTargetMachine(),
1541 RVLocs2, *DAG.getContext());
1542 CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC, true, isVarArg));
1543
1544 if (RVLocs1.size() != RVLocs2.size())
1545 return false;
1546 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
1547 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
1548 return false;
1549 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
1550 return false;
1551 if (RVLocs1[i].isRegLoc()) {
1552 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
1553 return false;
1554 } else {
1555 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
1556 return false;
1557 }
1558 }
1559 }
1560
1561 // If the callee takes no arguments then go on to check the results of the
1562 // call.
1563 if (!Outs.empty()) {
1564 // Check if stack adjustment is needed. For now, do not do this if any
1565 // argument is passed on the stack.
1566 SmallVector<CCValAssign, 16> ArgLocs;
1567 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
1568 ArgLocs, *DAG.getContext());
1569 CCInfo.AnalyzeCallOperands(Outs,
1570 CCAssignFnForNode(CalleeCC, false, isVarArg));
1571 if (CCInfo.getNextStackOffset()) {
1572 MachineFunction &MF = DAG.getMachineFunction();
1573
1574 // Check if the arguments are already laid out in the right way as
1575 // the caller's fixed stack objects.
1576 MachineFrameInfo *MFI = MF.getFrameInfo();
1577 const MachineRegisterInfo *MRI = &MF.getRegInfo();
1578 const ARMInstrInfo *TII =
1579 ((ARMTargetMachine&)getTargetMachine()).getInstrInfo();
Dale Johannesencf296fa2010-06-05 00:51:39 +00001580 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1581 i != e;
1582 ++i, ++realArgIdx) {
Dale Johannesen51e28e62010-06-03 21:09:53 +00001583 CCValAssign &VA = ArgLocs[i];
1584 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001585 SDValue Arg = OutVals[realArgIdx];
Dale Johannesencf296fa2010-06-05 00:51:39 +00001586 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
Dale Johannesen51e28e62010-06-03 21:09:53 +00001587 if (VA.getLocInfo() == CCValAssign::Indirect)
1588 return false;
Dale Johannesencf296fa2010-06-05 00:51:39 +00001589 if (VA.needsCustom()) {
1590 // f64 and vector types are split into multiple registers or
1591 // register/stack-slot combinations. The types will not match
1592 // the registers; give up on memory f64 refs until we figure
1593 // out what to do about this.
1594 if (!VA.isRegLoc())
1595 return false;
1596 if (!ArgLocs[++i].isRegLoc())
Jim Grosbach4725ca72010-09-08 03:54:02 +00001597 return false;
Dale Johannesencf296fa2010-06-05 00:51:39 +00001598 if (RegVT == MVT::v2f64) {
1599 if (!ArgLocs[++i].isRegLoc())
1600 return false;
1601 if (!ArgLocs[++i].isRegLoc())
1602 return false;
1603 }
1604 } else if (!VA.isRegLoc()) {
Dale Johannesen51e28e62010-06-03 21:09:53 +00001605 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
1606 MFI, MRI, TII))
1607 return false;
1608 }
1609 }
1610 }
1611 }
1612
1613 return true;
1614}
1615
Dan Gohman98ca4f22009-08-05 01:29:28 +00001616SDValue
1617ARMTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001618 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001619 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001620 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001621 DebugLoc dl, SelectionDAG &DAG) const {
Bob Wilson2dc4f542009-03-20 22:42:55 +00001622
Bob Wilsondee46d72009-04-17 20:35:10 +00001623 // CCValAssign - represent the assignment of the return value to a location.
Bob Wilson1f595bb2009-04-17 19:07:39 +00001624 SmallVector<CCValAssign, 16> RVLocs;
Bob Wilson1f595bb2009-04-17 19:07:39 +00001625
Bob Wilsondee46d72009-04-17 20:35:10 +00001626 // CCState - Info about the registers and stack slots.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001627 CCState CCInfo(CallConv, isVarArg, getTargetMachine(), RVLocs,
1628 *DAG.getContext());
Bob Wilson1f595bb2009-04-17 19:07:39 +00001629
Dan Gohman98ca4f22009-08-05 01:29:28 +00001630 // Analyze outgoing return values.
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001631 CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true,
1632 isVarArg));
Bob Wilson1f595bb2009-04-17 19:07:39 +00001633
1634 // If this is the first return lowered for this function, add
1635 // the regs to the liveout set for the function.
1636 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
1637 for (unsigned i = 0; i != RVLocs.size(); ++i)
1638 if (RVLocs[i].isRegLoc())
1639 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Evan Chenga8e29892007-01-19 07:51:42 +00001640 }
1641
Bob Wilson1f595bb2009-04-17 19:07:39 +00001642 SDValue Flag;
1643
1644 // Copy the result values into the output registers.
1645 for (unsigned i = 0, realRVLocIdx = 0;
1646 i != RVLocs.size();
1647 ++i, ++realRVLocIdx) {
1648 CCValAssign &VA = RVLocs[i];
1649 assert(VA.isRegLoc() && "Can only return in registers!");
1650
Dan Gohmanc9403652010-07-07 15:54:55 +00001651 SDValue Arg = OutVals[realRVLocIdx];
Bob Wilson1f595bb2009-04-17 19:07:39 +00001652
1653 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001654 default: llvm_unreachable("Unknown loc info!");
Bob Wilson1f595bb2009-04-17 19:07:39 +00001655 case CCValAssign::Full: break;
1656 case CCValAssign::BCvt:
1657 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), Arg);
1658 break;
1659 }
1660
Bob Wilson1f595bb2009-04-17 19:07:39 +00001661 if (VA.needsCustom()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001662 if (VA.getLocVT() == MVT::v2f64) {
Bob Wilson5bafff32009-06-22 23:27:02 +00001663 // Extract the first half and return it in two registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00001664 SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1665 DAG.getConstant(0, MVT::i32));
Jim Grosbache5165492009-11-09 00:11:35 +00001666 SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001667 DAG.getVTList(MVT::i32, MVT::i32), Half);
Bob Wilson5bafff32009-06-22 23:27:02 +00001668
1669 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), HalfGPRs, Flag);
1670 Flag = Chain.getValue(1);
1671 VA = RVLocs[++i]; // skip ahead to next loc
1672 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
1673 HalfGPRs.getValue(1), Flag);
1674 Flag = Chain.getValue(1);
1675 VA = RVLocs[++i]; // skip ahead to next loc
1676
1677 // Extract the 2nd half and fall through to handle it as an f64 value.
Owen Anderson825b72b2009-08-11 20:47:22 +00001678 Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1679 DAG.getConstant(1, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00001680 }
1681 // Legalize ret f64 -> ret 2 x i32. We always have fmrrd if f64 is
1682 // available.
Jim Grosbache5165492009-11-09 00:11:35 +00001683 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001684 DAG.getVTList(MVT::i32, MVT::i32), &Arg, 1);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001685 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), fmrrd, Flag);
Bob Wilson4d59e1d2009-04-24 17:00:36 +00001686 Flag = Chain.getValue(1);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001687 VA = RVLocs[++i]; // skip ahead to next loc
1688 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), fmrrd.getValue(1),
1689 Flag);
1690 } else
1691 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
1692
Bob Wilsondee46d72009-04-17 20:35:10 +00001693 // Guarantee that all emitted copies are
1694 // stuck together, avoiding something bad.
Bob Wilson1f595bb2009-04-17 19:07:39 +00001695 Flag = Chain.getValue(1);
1696 }
1697
1698 SDValue result;
1699 if (Flag.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00001700 result = DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, Chain, Flag);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001701 else // Return Void
Owen Anderson825b72b2009-08-11 20:47:22 +00001702 result = DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, Chain);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001703
1704 return result;
Evan Chenga8e29892007-01-19 07:51:42 +00001705}
1706
Bob Wilsonb62d2572009-11-03 00:02:05 +00001707// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
1708// their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is
1709// one of the above mentioned nodes. It has to be wrapped because otherwise
1710// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
1711// be used to form addressing mode. These wrapped nodes will be selected
1712// into MOVi.
Dan Gohman475871a2008-07-27 21:46:04 +00001713static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001714 EVT PtrVT = Op.getValueType();
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001715 // FIXME there is no actual debug info here
1716 DebugLoc dl = Op.getDebugLoc();
Evan Chenga8e29892007-01-19 07:51:42 +00001717 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00001718 SDValue Res;
Evan Chenga8e29892007-01-19 07:51:42 +00001719 if (CP->isMachineConstantPoolEntry())
1720 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
1721 CP->getAlignment());
1722 else
1723 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
1724 CP->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +00001725 return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res);
Evan Chenga8e29892007-01-19 07:51:42 +00001726}
1727
Jim Grosbache1102ca2010-07-19 17:20:38 +00001728unsigned ARMTargetLowering::getJumpTableEncoding() const {
1729 return MachineJumpTableInfo::EK_Inline;
1730}
1731
Dan Gohmand858e902010-04-17 15:26:15 +00001732SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op,
1733 SelectionDAG &DAG) const {
Evan Chenge7e0d622009-11-06 22:24:13 +00001734 MachineFunction &MF = DAG.getMachineFunction();
1735 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1736 unsigned ARMPCLabelIndex = 0;
Bob Wilsonddb16df2009-10-30 05:45:42 +00001737 DebugLoc DL = Op.getDebugLoc();
Bob Wilson907eebd2009-11-02 20:59:23 +00001738 EVT PtrVT = getPointerTy();
Dan Gohman46510a72010-04-15 01:51:59 +00001739 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Bob Wilson907eebd2009-11-02 20:59:23 +00001740 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
1741 SDValue CPAddr;
1742 if (RelocM == Reloc::Static) {
1743 CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4);
1744 } else {
1745 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
Evan Chenge7e0d622009-11-06 22:24:13 +00001746 ARMPCLabelIndex = AFI->createConstPoolEntryUId();
Bob Wilson907eebd2009-11-02 20:59:23 +00001747 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(BA, ARMPCLabelIndex,
1748 ARMCP::CPBlockAddress,
1749 PCAdj);
1750 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
1751 }
1752 CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr);
1753 SDValue Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001754 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001755 false, false, 0);
Bob Wilson907eebd2009-11-02 20:59:23 +00001756 if (RelocM == Reloc::Static)
1757 return Result;
Evan Chenge7e0d622009-11-06 22:24:13 +00001758 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Bob Wilson907eebd2009-11-02 20:59:23 +00001759 return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel);
Bob Wilsonddb16df2009-10-30 05:45:42 +00001760}
1761
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001762// Lower ISD::GlobalTLSAddress using the "general dynamic" model
Dan Gohman475871a2008-07-27 21:46:04 +00001763SDValue
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001764ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
Dan Gohmand858e902010-04-17 15:26:15 +00001765 SelectionDAG &DAG) const {
Dale Johannesen33c960f2009-02-04 20:06:27 +00001766 DebugLoc dl = GA->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001767 EVT PtrVT = getPointerTy();
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001768 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
Evan Chenge7e0d622009-11-06 22:24:13 +00001769 MachineFunction &MF = DAG.getMachineFunction();
1770 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1771 unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001772 ARMConstantPoolValue *CPV =
Evan Chenge4e4ed32009-08-28 23:18:09 +00001773 new ARMConstantPoolValue(GA->getGlobal(), ARMPCLabelIndex,
Jim Grosbach3fb2b1e2009-09-01 01:57:56 +00001774 ARMCP::CPValue, PCAdj, "tlsgd", true);
Evan Cheng1606e8e2009-03-13 07:51:59 +00001775 SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00001776 Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument);
Evan Cheng9eda6892009-10-31 03:39:36 +00001777 Argument = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001778 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001779 false, false, 0);
Dan Gohman475871a2008-07-27 21:46:04 +00001780 SDValue Chain = Argument.getValue(1);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001781
Evan Chenge7e0d622009-11-06 22:24:13 +00001782 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00001783 Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001784
1785 // call __tls_get_addr.
1786 ArgListTy Args;
1787 ArgListEntry Entry;
1788 Entry.Node = Argument;
Owen Anderson1d0be152009-08-13 21:58:54 +00001789 Entry.Ty = (const Type *) Type::getInt32Ty(*DAG.getContext());
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001790 Args.push_back(Entry);
Dale Johannesen7d2ad622009-01-30 23:10:59 +00001791 // FIXME: is there useful debug info available here?
Dan Gohman475871a2008-07-27 21:46:04 +00001792 std::pair<SDValue, SDValue> CallResult =
Evan Cheng59bc0602009-08-14 19:11:20 +00001793 LowerCallTo(Chain, (const Type *) Type::getInt32Ty(*DAG.getContext()),
1794 false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001795 0, CallingConv::C, false, /*isReturnValueUsed=*/true,
Bill Wendling46ada192010-03-02 01:55:18 +00001796 DAG.getExternalSymbol("__tls_get_addr", PtrVT), Args, DAG, dl);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001797 return CallResult.first;
1798}
1799
1800// Lower ISD::GlobalTLSAddress using the "initial exec" or
1801// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00001802SDValue
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001803ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
Dan Gohmand858e902010-04-17 15:26:15 +00001804 SelectionDAG &DAG) const {
Dan Gohman46510a72010-04-15 01:51:59 +00001805 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen33c960f2009-02-04 20:06:27 +00001806 DebugLoc dl = GA->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00001807 SDValue Offset;
1808 SDValue Chain = DAG.getEntryNode();
Owen Andersone50ed302009-08-10 22:56:29 +00001809 EVT PtrVT = getPointerTy();
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001810 // Get the Thread Pointer
Dale Johannesen33c960f2009-02-04 20:06:27 +00001811 SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001812
Chris Lattner4fb63d02009-07-15 04:12:33 +00001813 if (GV->isDeclaration()) {
Evan Chenge7e0d622009-11-06 22:24:13 +00001814 MachineFunction &MF = DAG.getMachineFunction();
1815 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1816 unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
1817 // Initial exec model.
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001818 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
1819 ARMConstantPoolValue *CPV =
Evan Chenge4e4ed32009-08-28 23:18:09 +00001820 new ARMConstantPoolValue(GA->getGlobal(), ARMPCLabelIndex,
Jim Grosbach3fb2b1e2009-09-01 01:57:56 +00001821 ARMCP::CPValue, PCAdj, "gottpoff", true);
Evan Cheng1606e8e2009-03-13 07:51:59 +00001822 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00001823 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
Evan Cheng9eda6892009-10-31 03:39:36 +00001824 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001825 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001826 false, false, 0);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001827 Chain = Offset.getValue(1);
1828
Evan Chenge7e0d622009-11-06 22:24:13 +00001829 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00001830 Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001831
Evan Cheng9eda6892009-10-31 03:39:36 +00001832 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001833 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001834 false, false, 0);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001835 } else {
1836 // local exec model
Evan Chenge4e4ed32009-08-28 23:18:09 +00001837 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, "tpoff");
Evan Cheng1606e8e2009-03-13 07:51:59 +00001838 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00001839 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
Evan Cheng9eda6892009-10-31 03:39:36 +00001840 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001841 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001842 false, false, 0);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001843 }
1844
1845 // The address of the thread local variable is the add of the thread
1846 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00001847 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001848}
1849
Dan Gohman475871a2008-07-27 21:46:04 +00001850SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00001851ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001852 // TODO: implement the "local dynamic" model
1853 assert(Subtarget->isTargetELF() &&
1854 "TLS not implemented for non-ELF targets");
1855 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
1856 // If the relocation model is PIC, use the "General Dynamic" TLS Model,
1857 // otherwise use the "Local Exec" TLS Model
1858 if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
1859 return LowerToTLSGeneralDynamicModel(GA, DAG);
1860 else
1861 return LowerToTLSExecModels(GA, DAG);
1862}
1863
Dan Gohman475871a2008-07-27 21:46:04 +00001864SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00001865 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00001866 EVT PtrVT = getPointerTy();
Dale Johannesen33c960f2009-02-04 20:06:27 +00001867 DebugLoc dl = Op.getDebugLoc();
Dan Gohman46510a72010-04-15 01:51:59 +00001868 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001869 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
1870 if (RelocM == Reloc::PIC_) {
Rafael Espindolabb46f522009-01-15 20:18:42 +00001871 bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility();
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001872 ARMConstantPoolValue *CPV =
Evan Chenge4e4ed32009-08-28 23:18:09 +00001873 new ARMConstantPoolValue(GV, UseGOTOFF ? "GOTOFF" : "GOT");
Evan Cheng1606e8e2009-03-13 07:51:59 +00001874 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00001875 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Bob Wilson2dc4f542009-03-20 22:42:55 +00001876 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Anton Korobeynikov249fb332009-10-07 00:06:35 +00001877 CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001878 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001879 false, false, 0);
Dan Gohman475871a2008-07-27 21:46:04 +00001880 SDValue Chain = Result.getValue(1);
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001881 SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00001882 Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result, GOT);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001883 if (!UseGOTOFF)
Anton Korobeynikov249fb332009-10-07 00:06:35 +00001884 Result = DAG.getLoad(PtrVT, dl, Chain, Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001885 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001886 return Result;
1887 } else {
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00001888 // If we have T2 ops, we can materialize the address directly via movt/movw
1889 // pair. This is always cheaper.
1890 if (Subtarget->useMovt()) {
1891 return DAG.getNode(ARMISD::Wrapper, dl, PtrVT,
Devang Patel0d881da2010-07-06 22:08:15 +00001892 DAG.getTargetGlobalAddress(GV, dl, PtrVT));
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00001893 } else {
1894 SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
1895 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1896 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001897 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001898 false, false, 0);
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00001899 }
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001900 }
1901}
1902
Dan Gohman475871a2008-07-27 21:46:04 +00001903SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00001904 SelectionDAG &DAG) const {
Evan Chenge7e0d622009-11-06 22:24:13 +00001905 MachineFunction &MF = DAG.getMachineFunction();
1906 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1907 unsigned ARMPCLabelIndex = 0;
Owen Andersone50ed302009-08-10 22:56:29 +00001908 EVT PtrVT = getPointerTy();
Dale Johannesen33c960f2009-02-04 20:06:27 +00001909 DebugLoc dl = Op.getDebugLoc();
Dan Gohman46510a72010-04-15 01:51:59 +00001910 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Evan Chenga8e29892007-01-19 07:51:42 +00001911 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
Dan Gohman475871a2008-07-27 21:46:04 +00001912 SDValue CPAddr;
Evan Chenga8e29892007-01-19 07:51:42 +00001913 if (RelocM == Reloc::Static)
Evan Cheng1606e8e2009-03-13 07:51:59 +00001914 CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
Evan Chenga8e29892007-01-19 07:51:42 +00001915 else {
Evan Chenge7e0d622009-11-06 22:24:13 +00001916 ARMPCLabelIndex = AFI->createConstPoolEntryUId();
Evan Chenge4e4ed32009-08-28 23:18:09 +00001917 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb()?4:8);
1918 ARMConstantPoolValue *CPV =
Jim Grosbach3fb2b1e2009-09-01 01:57:56 +00001919 new ARMConstantPoolValue(GV, ARMPCLabelIndex, ARMCP::CPValue, PCAdj);
Evan Cheng1606e8e2009-03-13 07:51:59 +00001920 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Evan Chenga8e29892007-01-19 07:51:42 +00001921 }
Owen Anderson825b72b2009-08-11 20:47:22 +00001922 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Evan Chenga8e29892007-01-19 07:51:42 +00001923
Evan Cheng9eda6892009-10-31 03:39:36 +00001924 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001925 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001926 false, false, 0);
Dan Gohman475871a2008-07-27 21:46:04 +00001927 SDValue Chain = Result.getValue(1);
Evan Chenga8e29892007-01-19 07:51:42 +00001928
1929 if (RelocM == Reloc::PIC_) {
Evan Chenge7e0d622009-11-06 22:24:13 +00001930 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00001931 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
Evan Chenga8e29892007-01-19 07:51:42 +00001932 }
Evan Chenge4e4ed32009-08-28 23:18:09 +00001933
Evan Cheng63476a82009-09-03 07:04:02 +00001934 if (Subtarget->GVIsIndirectSymbol(GV, RelocM))
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001935 Result = DAG.getLoad(PtrVT, dl, Chain, Result, MachinePointerInfo::getGOT(),
David Greene1b58cab2010-02-15 16:55:24 +00001936 false, false, 0);
Evan Chenga8e29892007-01-19 07:51:42 +00001937
1938 return Result;
1939}
1940
Dan Gohman475871a2008-07-27 21:46:04 +00001941SDValue ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00001942 SelectionDAG &DAG) const {
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001943 assert(Subtarget->isTargetELF() &&
1944 "GLOBAL OFFSET TABLE not implemented for non-ELF targets");
Evan Chenge7e0d622009-11-06 22:24:13 +00001945 MachineFunction &MF = DAG.getMachineFunction();
1946 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1947 unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
Owen Andersone50ed302009-08-10 22:56:29 +00001948 EVT PtrVT = getPointerTy();
Dale Johannesen33c960f2009-02-04 20:06:27 +00001949 DebugLoc dl = Op.getDebugLoc();
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001950 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
Owen Anderson1d0be152009-08-13 21:58:54 +00001951 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(*DAG.getContext(),
1952 "_GLOBAL_OFFSET_TABLE_",
Evan Chenge4e4ed32009-08-28 23:18:09 +00001953 ARMPCLabelIndex, PCAdj);
Evan Cheng1606e8e2009-03-13 07:51:59 +00001954 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00001955 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Anton Korobeynikov249fb332009-10-07 00:06:35 +00001956 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001957 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00001958 false, false, 0);
Evan Chenge7e0d622009-11-06 22:24:13 +00001959 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00001960 return DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00001961}
1962
Jim Grosbach0e0da732009-05-12 23:59:14 +00001963SDValue
Jim Grosbache4ad3872010-10-19 23:27:08 +00001964ARMTargetLowering::LowerEH_SJLJ_DISPATCHSETUP(SDValue Op, SelectionDAG &DAG)
1965 const {
1966 DebugLoc dl = Op.getDebugLoc();
1967 return DAG.getNode(ARMISD::EH_SJLJ_DISPATCHSETUP, dl, MVT::Other,
1968 Op.getOperand(0), Op.getOperand(1));
1969}
1970
1971SDValue
Jim Grosbach23ff7cf2010-05-26 20:22:18 +00001972ARMTargetLowering::LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const {
1973 DebugLoc dl = Op.getDebugLoc();
Jim Grosbach0798edd2010-05-27 23:49:24 +00001974 SDValue Val = DAG.getConstant(0, MVT::i32);
Jim Grosbach23ff7cf2010-05-26 20:22:18 +00001975 return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl, MVT::i32, Op.getOperand(0),
1976 Op.getOperand(1), Val);
1977}
1978
1979SDValue
Jim Grosbach5eb19512010-05-22 01:06:18 +00001980ARMTargetLowering::LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const {
1981 DebugLoc dl = Op.getDebugLoc();
1982 return DAG.getNode(ARMISD::EH_SJLJ_LONGJMP, dl, MVT::Other, Op.getOperand(0),
1983 Op.getOperand(1), DAG.getConstant(0, MVT::i32));
1984}
1985
1986SDValue
Jim Grosbacha87ded22010-02-08 23:22:00 +00001987ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
Jim Grosbach7616b642010-06-16 23:45:49 +00001988 const ARMSubtarget *Subtarget) const {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001989 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Jim Grosbach0e0da732009-05-12 23:59:14 +00001990 DebugLoc dl = Op.getDebugLoc();
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +00001991 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00001992 default: return SDValue(); // Don't custom lower most intrinsics.
Bob Wilson916afdb2009-08-04 00:25:01 +00001993 case Intrinsic::arm_thread_pointer: {
Owen Andersone50ed302009-08-10 22:56:29 +00001994 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Bob Wilson916afdb2009-08-04 00:25:01 +00001995 return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
1996 }
Jim Grosbach1b747ad2009-08-11 00:09:57 +00001997 case Intrinsic::eh_sjlj_lsda: {
Jim Grosbach1b747ad2009-08-11 00:09:57 +00001998 MachineFunction &MF = DAG.getMachineFunction();
Evan Chenge7e0d622009-11-06 22:24:13 +00001999 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2000 unsigned ARMPCLabelIndex = AFI->createConstPoolEntryUId();
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002001 EVT PtrVT = getPointerTy();
2002 DebugLoc dl = Op.getDebugLoc();
2003 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2004 SDValue CPAddr;
2005 unsigned PCAdj = (RelocM != Reloc::PIC_)
2006 ? 0 : (Subtarget->isThumb() ? 4 : 8);
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002007 ARMConstantPoolValue *CPV =
Jim Grosbach3fb2b1e2009-09-01 01:57:56 +00002008 new ARMConstantPoolValue(MF.getFunction(), ARMPCLabelIndex,
2009 ARMCP::CPLSDA, PCAdj);
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002010 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002011 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002012 SDValue Result =
Evan Cheng9eda6892009-10-31 03:39:36 +00002013 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002014 MachinePointerInfo::getConstantPool(),
David Greene1b58cab2010-02-15 16:55:24 +00002015 false, false, 0);
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002016
2017 if (RelocM == Reloc::PIC_) {
Evan Chenge7e0d622009-11-06 22:24:13 +00002018 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002019 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2020 }
2021 return Result;
2022 }
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +00002023 }
2024}
2025
Jim Grosbach7c03dbd2009-12-14 21:24:16 +00002026static SDValue LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG,
Jim Grosbach7616b642010-06-16 23:45:49 +00002027 const ARMSubtarget *Subtarget) {
Jim Grosbach3728e962009-12-10 00:11:09 +00002028 DebugLoc dl = Op.getDebugLoc();
2029 SDValue Op5 = Op.getOperand(5);
Jim Grosbach3728e962009-12-10 00:11:09 +00002030 unsigned isDeviceBarrier = cast<ConstantSDNode>(Op5)->getZExtValue();
Evan Cheng11db0682010-08-11 06:22:01 +00002031 // Some subtargets which have dmb and dsb instructions can handle barriers
2032 // directly. Some ARMv6 cpus can support them with the help of mcr
2033 // instruction. Thumb1 and pre-v6 ARM mode use a libcall instead and should
Jim Grosbachc73993b2010-06-17 01:37:00 +00002034 // never get here.
2035 unsigned Opc = isDeviceBarrier ? ARMISD::SYNCBARRIER : ARMISD::MEMBARRIER;
Evan Cheng11db0682010-08-11 06:22:01 +00002036 if (Subtarget->hasDataBarrier())
Jim Grosbachc73993b2010-06-17 01:37:00 +00002037 return DAG.getNode(Opc, dl, MVT::Other, Op.getOperand(0));
Evan Cheng11db0682010-08-11 06:22:01 +00002038 else {
2039 assert(Subtarget->hasV6Ops() && !Subtarget->isThumb1Only() &&
2040 "Unexpected ISD::MEMBARRIER encountered. Should be libcall!");
Jim Grosbachc73993b2010-06-17 01:37:00 +00002041 return DAG.getNode(Opc, dl, MVT::Other, Op.getOperand(0),
2042 DAG.getConstant(0, MVT::i32));
Evan Cheng11db0682010-08-11 06:22:01 +00002043 }
Jim Grosbach3728e962009-12-10 00:11:09 +00002044}
2045
Dan Gohman1e93df62010-04-17 14:41:14 +00002046static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) {
2047 MachineFunction &MF = DAG.getMachineFunction();
2048 ARMFunctionInfo *FuncInfo = MF.getInfo<ARMFunctionInfo>();
2049
Evan Chenga8e29892007-01-19 07:51:42 +00002050 // vastart just stores the address of the VarArgsFrameIndex slot into the
2051 // memory location argument.
Dale Johannesen33c960f2009-02-04 20:06:27 +00002052 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00002053 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman1e93df62010-04-17 14:41:14 +00002054 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00002055 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002056 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2057 MachinePointerInfo(SV), false, false, 0);
Evan Chenga8e29892007-01-19 07:51:42 +00002058}
2059
Dan Gohman475871a2008-07-27 21:46:04 +00002060SDValue
Bob Wilson5bafff32009-06-22 23:27:02 +00002061ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
2062 SDValue &Root, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002063 DebugLoc dl) const {
Bob Wilson5bafff32009-06-22 23:27:02 +00002064 MachineFunction &MF = DAG.getMachineFunction();
2065 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2066
2067 TargetRegisterClass *RC;
David Goodwinf1daf7d2009-07-08 23:10:31 +00002068 if (AFI->isThumb1OnlyFunction())
Bob Wilson5bafff32009-06-22 23:27:02 +00002069 RC = ARM::tGPRRegisterClass;
2070 else
2071 RC = ARM::GPRRegisterClass;
2072
2073 // Transform the arguments stored in physical registers into virtual ones.
Jim Grosbach4725ca72010-09-08 03:54:02 +00002074 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Owen Anderson825b72b2009-08-11 20:47:22 +00002075 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
Bob Wilson5bafff32009-06-22 23:27:02 +00002076
2077 SDValue ArgValue2;
2078 if (NextVA.isMemLoc()) {
Bob Wilson5bafff32009-06-22 23:27:02 +00002079 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Chenged2ae132010-07-03 00:40:23 +00002080 int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true);
Bob Wilson5bafff32009-06-22 23:27:02 +00002081
2082 // Create load node to retrieve arguments from the stack.
2083 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Evan Cheng9eda6892009-10-31 03:39:36 +00002084 ArgValue2 = DAG.getLoad(MVT::i32, dl, Root, FIN,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002085 MachinePointerInfo::getFixedStack(FI),
David Greene1b58cab2010-02-15 16:55:24 +00002086 false, false, 0);
Bob Wilson5bafff32009-06-22 23:27:02 +00002087 } else {
2088 Reg = MF.addLiveIn(NextVA.getLocReg(), RC);
Owen Anderson825b72b2009-08-11 20:47:22 +00002089 ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
Bob Wilson5bafff32009-06-22 23:27:02 +00002090 }
2091
Jim Grosbache5165492009-11-09 00:11:35 +00002092 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2);
Bob Wilson5bafff32009-06-22 23:27:02 +00002093}
2094
2095SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002096ARMTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002097 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002098 const SmallVectorImpl<ISD::InputArg>
2099 &Ins,
2100 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002101 SmallVectorImpl<SDValue> &InVals)
2102 const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002103
Bob Wilson1f595bb2009-04-17 19:07:39 +00002104 MachineFunction &MF = DAG.getMachineFunction();
2105 MachineFrameInfo *MFI = MF.getFrameInfo();
2106
Bob Wilson1f595bb2009-04-17 19:07:39 +00002107 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2108
2109 // Assign locations to all of the incoming arguments.
2110 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002111 CCState CCInfo(CallConv, isVarArg, getTargetMachine(), ArgLocs,
2112 *DAG.getContext());
2113 CCInfo.AnalyzeFormalArguments(Ins,
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00002114 CCAssignFnForNode(CallConv, /* Return*/ false,
2115 isVarArg));
Bob Wilson1f595bb2009-04-17 19:07:39 +00002116
2117 SmallVector<SDValue, 16> ArgValues;
2118
2119 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2120 CCValAssign &VA = ArgLocs[i];
2121
Bob Wilsondee46d72009-04-17 20:35:10 +00002122 // Arguments stored in registers.
Bob Wilson1f595bb2009-04-17 19:07:39 +00002123 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002124 EVT RegVT = VA.getLocVT();
Bob Wilson1f595bb2009-04-17 19:07:39 +00002125
Bob Wilson5bafff32009-06-22 23:27:02 +00002126 SDValue ArgValue;
Bob Wilson1f595bb2009-04-17 19:07:39 +00002127 if (VA.needsCustom()) {
Bob Wilson5bafff32009-06-22 23:27:02 +00002128 // f64 and vector types are split up into multiple registers or
2129 // combinations of registers and stack slots.
Owen Anderson825b72b2009-08-11 20:47:22 +00002130 if (VA.getLocVT() == MVT::v2f64) {
Bob Wilson5bafff32009-06-22 23:27:02 +00002131 SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
Dan Gohman98ca4f22009-08-05 01:29:28 +00002132 Chain, DAG, dl);
Bob Wilson5bafff32009-06-22 23:27:02 +00002133 VA = ArgLocs[++i]; // skip ahead to next loc
Bob Wilson6a234f02010-04-13 22:03:22 +00002134 SDValue ArgValue2;
2135 if (VA.isMemLoc()) {
Evan Chenged2ae132010-07-03 00:40:23 +00002136 int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(), true);
Bob Wilson6a234f02010-04-13 22:03:22 +00002137 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2138 ArgValue2 = DAG.getLoad(MVT::f64, dl, Chain, FIN,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002139 MachinePointerInfo::getFixedStack(FI),
Bob Wilson6a234f02010-04-13 22:03:22 +00002140 false, false, 0);
2141 } else {
2142 ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
2143 Chain, DAG, dl);
2144 }
Owen Anderson825b72b2009-08-11 20:47:22 +00002145 ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
2146 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
Bob Wilson5bafff32009-06-22 23:27:02 +00002147 ArgValue, ArgValue1, DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002148 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
Bob Wilson5bafff32009-06-22 23:27:02 +00002149 ArgValue, ArgValue2, DAG.getIntPtrConstant(1));
2150 } else
Dan Gohman98ca4f22009-08-05 01:29:28 +00002151 ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl);
Bob Wilson1f595bb2009-04-17 19:07:39 +00002152
Bob Wilson5bafff32009-06-22 23:27:02 +00002153 } else {
2154 TargetRegisterClass *RC;
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00002155
Owen Anderson825b72b2009-08-11 20:47:22 +00002156 if (RegVT == MVT::f32)
Bob Wilson5bafff32009-06-22 23:27:02 +00002157 RC = ARM::SPRRegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002158 else if (RegVT == MVT::f64)
Bob Wilson5bafff32009-06-22 23:27:02 +00002159 RC = ARM::DPRRegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002160 else if (RegVT == MVT::v2f64)
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00002161 RC = ARM::QPRRegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002162 else if (RegVT == MVT::i32)
Anton Korobeynikov058c2512009-08-05 20:15:19 +00002163 RC = (AFI->isThumb1OnlyFunction() ?
2164 ARM::tGPRRegisterClass : ARM::GPRRegisterClass);
Bob Wilson5bafff32009-06-22 23:27:02 +00002165 else
Anton Korobeynikov058c2512009-08-05 20:15:19 +00002166 llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
Bob Wilson5bafff32009-06-22 23:27:02 +00002167
2168 // Transform the arguments in physical registers into virtual ones.
2169 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002170 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Bob Wilson1f595bb2009-04-17 19:07:39 +00002171 }
2172
2173 // If this is an 8 or 16-bit value, it is really passed promoted
2174 // to 32 bits. Insert an assert[sz]ext to capture this, then
2175 // truncate to the right size.
2176 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002177 default: llvm_unreachable("Unknown loc info!");
Bob Wilson1f595bb2009-04-17 19:07:39 +00002178 case CCValAssign::Full: break;
2179 case CCValAssign::BCvt:
2180 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue);
2181 break;
2182 case CCValAssign::SExt:
2183 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2184 DAG.getValueType(VA.getValVT()));
2185 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2186 break;
2187 case CCValAssign::ZExt:
2188 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2189 DAG.getValueType(VA.getValVT()));
2190 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2191 break;
2192 }
2193
Dan Gohman98ca4f22009-08-05 01:29:28 +00002194 InVals.push_back(ArgValue);
Bob Wilson1f595bb2009-04-17 19:07:39 +00002195
2196 } else { // VA.isRegLoc()
2197
2198 // sanity check
2199 assert(VA.isMemLoc());
Owen Anderson825b72b2009-08-11 20:47:22 +00002200 assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered");
Bob Wilson1f595bb2009-04-17 19:07:39 +00002201
2202 unsigned ArgSize = VA.getLocVT().getSizeInBits()/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002203 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(), true);
Bob Wilson1f595bb2009-04-17 19:07:39 +00002204
Bob Wilsondee46d72009-04-17 20:35:10 +00002205 // Create load nodes to retrieve arguments from the stack.
Bob Wilson1f595bb2009-04-17 19:07:39 +00002206 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Evan Cheng9eda6892009-10-31 03:39:36 +00002207 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002208 MachinePointerInfo::getFixedStack(FI),
David Greene1b58cab2010-02-15 16:55:24 +00002209 false, false, 0));
Bob Wilson1f595bb2009-04-17 19:07:39 +00002210 }
2211 }
2212
2213 // varargs
Evan Chenga8e29892007-01-19 07:51:42 +00002214 if (isVarArg) {
2215 static const unsigned GPRArgRegs[] = {
2216 ARM::R0, ARM::R1, ARM::R2, ARM::R3
2217 };
2218
Bob Wilsondee46d72009-04-17 20:35:10 +00002219 unsigned NumGPRs = CCInfo.getFirstUnallocated
2220 (GPRArgRegs, sizeof(GPRArgRegs) / sizeof(GPRArgRegs[0]));
Bob Wilson1f595bb2009-04-17 19:07:39 +00002221
Lauro Ramos Venancio600c3832007-02-23 20:32:57 +00002222 unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
2223 unsigned VARegSize = (4 - NumGPRs) * 4;
2224 unsigned VARegSaveSize = (VARegSize + Align - 1) & ~(Align - 1);
Rafael Espindolac1382b72009-10-30 14:33:14 +00002225 unsigned ArgOffset = CCInfo.getNextStackOffset();
Evan Chenga8e29892007-01-19 07:51:42 +00002226 if (VARegSaveSize) {
2227 // If this function is vararg, store any remaining integer argument regs
2228 // to their spots on the stack so that they may be loaded by deferencing
2229 // the result of va_next.
2230 AFI->setVarArgsRegSaveSize(VARegSaveSize);
Dan Gohman1e93df62010-04-17 14:41:14 +00002231 AFI->setVarArgsFrameIndex(
2232 MFI->CreateFixedObject(VARegSaveSize,
2233 ArgOffset + VARegSaveSize - VARegSize,
Jim Grosbachfd529062010-10-15 18:34:47 +00002234 false));
Dan Gohman1e93df62010-04-17 14:41:14 +00002235 SDValue FIN = DAG.getFrameIndex(AFI->getVarArgsFrameIndex(),
2236 getPointerTy());
Evan Chenga8e29892007-01-19 07:51:42 +00002237
Dan Gohman475871a2008-07-27 21:46:04 +00002238 SmallVector<SDValue, 4> MemOps;
Evan Chenga8e29892007-01-19 07:51:42 +00002239 for (; NumGPRs < 4; ++NumGPRs) {
Bob Wilson1f595bb2009-04-17 19:07:39 +00002240 TargetRegisterClass *RC;
David Goodwinf1daf7d2009-07-08 23:10:31 +00002241 if (AFI->isThumb1OnlyFunction())
Bob Wilson1f595bb2009-04-17 19:07:39 +00002242 RC = ARM::tGPRRegisterClass;
Jim Grosbach30eae3c2009-04-07 20:34:09 +00002243 else
Bob Wilson1f595bb2009-04-17 19:07:39 +00002244 RC = ARM::GPRRegisterClass;
2245
Bob Wilson998e1252009-04-20 18:36:57 +00002246 unsigned VReg = MF.addLiveIn(GPRArgRegs[NumGPRs], RC);
Owen Anderson825b72b2009-08-11 20:47:22 +00002247 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Dan Gohman1e93df62010-04-17 14:41:14 +00002248 SDValue Store =
2249 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002250 MachinePointerInfo::getFixedStack(AFI->getVarArgsFrameIndex()),
2251 false, false, 0);
Evan Chenga8e29892007-01-19 07:51:42 +00002252 MemOps.push_back(Store);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002253 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Evan Chenga8e29892007-01-19 07:51:42 +00002254 DAG.getConstant(4, getPointerTy()));
2255 }
2256 if (!MemOps.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002257 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002258 &MemOps[0], MemOps.size());
Evan Chenga8e29892007-01-19 07:51:42 +00002259 } else
2260 // This will point to the next argument passed via stack.
Evan Chenged2ae132010-07-03 00:40:23 +00002261 AFI->setVarArgsFrameIndex(MFI->CreateFixedObject(4, ArgOffset, true));
Evan Chenga8e29892007-01-19 07:51:42 +00002262 }
2263
Dan Gohman98ca4f22009-08-05 01:29:28 +00002264 return Chain;
Evan Chenga8e29892007-01-19 07:51:42 +00002265}
2266
2267/// isFloatingPointZero - Return true if this is +0.0.
Dan Gohman475871a2008-07-27 21:46:04 +00002268static bool isFloatingPointZero(SDValue Op) {
Evan Chenga8e29892007-01-19 07:51:42 +00002269 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johanneseneaf08942007-08-31 04:03:46 +00002270 return CFP->getValueAPF().isPosZero();
Gabor Greifba36cb52008-08-28 21:40:38 +00002271 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Evan Chenga8e29892007-01-19 07:51:42 +00002272 // Maybe this has already been legalized into the constant pool?
2273 if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
Dan Gohman475871a2008-07-27 21:46:04 +00002274 SDValue WrapperOp = Op.getOperand(1).getOperand(0);
Evan Chenga8e29892007-01-19 07:51:42 +00002275 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
Dan Gohman46510a72010-04-15 01:51:59 +00002276 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johanneseneaf08942007-08-31 04:03:46 +00002277 return CFP->getValueAPF().isPosZero();
Evan Chenga8e29892007-01-19 07:51:42 +00002278 }
2279 }
2280 return false;
2281}
2282
Evan Chenga8e29892007-01-19 07:51:42 +00002283/// Returns appropriate ARM CMP (cmp) and corresponding condition code for
2284/// the given operands.
Evan Cheng06b53c02009-11-12 07:13:11 +00002285SDValue
2286ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
Evan Cheng218977b2010-07-13 19:27:42 +00002287 SDValue &ARMcc, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002288 DebugLoc dl) const {
Gabor Greifba36cb52008-08-28 21:40:38 +00002289 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002290 unsigned C = RHSC->getZExtValue();
Evan Cheng06b53c02009-11-12 07:13:11 +00002291 if (!isLegalICmpImmediate(C)) {
Evan Chenga8e29892007-01-19 07:51:42 +00002292 // Constant does not fit, try adjusting it by one?
2293 switch (CC) {
2294 default: break;
2295 case ISD::SETLT:
Evan Chenga8e29892007-01-19 07:51:42 +00002296 case ISD::SETGE:
Daniel Dunbar3cc32832010-08-25 16:58:05 +00002297 if (C != 0x80000000 && isLegalICmpImmediate(C-1)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00002298 CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
Owen Anderson825b72b2009-08-11 20:47:22 +00002299 RHS = DAG.getConstant(C-1, MVT::i32);
Evan Cheng9a2ef952007-02-02 01:53:26 +00002300 }
2301 break;
2302 case ISD::SETULT:
2303 case ISD::SETUGE:
Daniel Dunbar3cc32832010-08-25 16:58:05 +00002304 if (C != 0 && isLegalICmpImmediate(C-1)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00002305 CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
Owen Anderson825b72b2009-08-11 20:47:22 +00002306 RHS = DAG.getConstant(C-1, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00002307 }
2308 break;
2309 case ISD::SETLE:
Evan Chenga8e29892007-01-19 07:51:42 +00002310 case ISD::SETGT:
Daniel Dunbar3cc32832010-08-25 16:58:05 +00002311 if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00002312 CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
Owen Anderson825b72b2009-08-11 20:47:22 +00002313 RHS = DAG.getConstant(C+1, MVT::i32);
Evan Cheng9a2ef952007-02-02 01:53:26 +00002314 }
2315 break;
2316 case ISD::SETULE:
2317 case ISD::SETUGT:
Daniel Dunbar3cc32832010-08-25 16:58:05 +00002318 if (C != 0xffffffff && isLegalICmpImmediate(C+1)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00002319 CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
Owen Anderson825b72b2009-08-11 20:47:22 +00002320 RHS = DAG.getConstant(C+1, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00002321 }
2322 break;
2323 }
2324 }
2325 }
2326
2327 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
Lauro Ramos Venancio99966632007-04-02 01:30:03 +00002328 ARMISD::NodeType CompareType;
2329 switch (CondCode) {
2330 default:
2331 CompareType = ARMISD::CMP;
2332 break;
2333 case ARMCC::EQ:
2334 case ARMCC::NE:
David Goodwinc0309b42009-06-29 15:33:01 +00002335 // Uses only Z Flag
2336 CompareType = ARMISD::CMPZ;
Lauro Ramos Venancio99966632007-04-02 01:30:03 +00002337 break;
2338 }
Evan Cheng218977b2010-07-13 19:27:42 +00002339 ARMcc = DAG.getConstant(CondCode, MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +00002340 return DAG.getNode(CompareType, dl, MVT::Flag, LHS, RHS);
Evan Chenga8e29892007-01-19 07:51:42 +00002341}
2342
2343/// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
Evan Cheng515fe3a2010-07-08 02:08:50 +00002344SDValue
Evan Cheng218977b2010-07-13 19:27:42 +00002345ARMTargetLowering::getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG,
Evan Cheng515fe3a2010-07-08 02:08:50 +00002346 DebugLoc dl) const {
Dan Gohman475871a2008-07-27 21:46:04 +00002347 SDValue Cmp;
Evan Chenga8e29892007-01-19 07:51:42 +00002348 if (!isFloatingPointZero(RHS))
Owen Anderson825b72b2009-08-11 20:47:22 +00002349 Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Flag, LHS, RHS);
Evan Chenga8e29892007-01-19 07:51:42 +00002350 else
Owen Anderson825b72b2009-08-11 20:47:22 +00002351 Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Flag, LHS);
2352 return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Flag, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00002353}
2354
Bill Wendlingde2b1512010-08-11 08:43:16 +00002355SDValue ARMTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
2356 SDValue Cond = Op.getOperand(0);
2357 SDValue SelectTrue = Op.getOperand(1);
2358 SDValue SelectFalse = Op.getOperand(2);
2359 DebugLoc dl = Op.getDebugLoc();
2360
2361 // Convert:
2362 //
2363 // (select (cmov 1, 0, cond), t, f) -> (cmov t, f, cond)
2364 // (select (cmov 0, 1, cond), t, f) -> (cmov f, t, cond)
2365 //
2366 if (Cond.getOpcode() == ARMISD::CMOV && Cond.hasOneUse()) {
2367 const ConstantSDNode *CMOVTrue =
2368 dyn_cast<ConstantSDNode>(Cond.getOperand(0));
2369 const ConstantSDNode *CMOVFalse =
2370 dyn_cast<ConstantSDNode>(Cond.getOperand(1));
2371
2372 if (CMOVTrue && CMOVFalse) {
2373 unsigned CMOVTrueVal = CMOVTrue->getZExtValue();
2374 unsigned CMOVFalseVal = CMOVFalse->getZExtValue();
2375
2376 SDValue True;
2377 SDValue False;
2378 if (CMOVTrueVal == 1 && CMOVFalseVal == 0) {
2379 True = SelectTrue;
2380 False = SelectFalse;
2381 } else if (CMOVTrueVal == 0 && CMOVFalseVal == 1) {
2382 True = SelectFalse;
2383 False = SelectTrue;
2384 }
2385
2386 if (True.getNode() && False.getNode()) {
2387 EVT VT = Cond.getValueType();
2388 SDValue ARMcc = Cond.getOperand(2);
2389 SDValue CCR = Cond.getOperand(3);
2390 SDValue Cmp = Cond.getOperand(4);
2391 return DAG.getNode(ARMISD::CMOV, dl, VT, True, False, ARMcc, CCR, Cmp);
2392 }
2393 }
2394 }
2395
2396 return DAG.getSelectCC(dl, Cond,
2397 DAG.getConstant(0, Cond.getValueType()),
2398 SelectTrue, SelectFalse, ISD::SETNE);
2399}
2400
Dan Gohmand858e902010-04-17 15:26:15 +00002401SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00002402 EVT VT = Op.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00002403 SDValue LHS = Op.getOperand(0);
2404 SDValue RHS = Op.getOperand(1);
Evan Chenga8e29892007-01-19 07:51:42 +00002405 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Dan Gohman475871a2008-07-27 21:46:04 +00002406 SDValue TrueVal = Op.getOperand(2);
2407 SDValue FalseVal = Op.getOperand(3);
Dale Johannesende064702009-02-06 21:50:26 +00002408 DebugLoc dl = Op.getDebugLoc();
Evan Chenga8e29892007-01-19 07:51:42 +00002409
Owen Anderson825b72b2009-08-11 20:47:22 +00002410 if (LHS.getValueType() == MVT::i32) {
Evan Cheng218977b2010-07-13 19:27:42 +00002411 SDValue ARMcc;
Owen Anderson825b72b2009-08-11 20:47:22 +00002412 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Cheng218977b2010-07-13 19:27:42 +00002413 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
2414 return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, CCR,Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00002415 }
2416
2417 ARMCC::CondCodes CondCode, CondCode2;
Bob Wilsoncd3b9a42009-09-09 23:14:54 +00002418 FPCCToARMCC(CC, CondCode, CondCode2);
Evan Chenga8e29892007-01-19 07:51:42 +00002419
Evan Cheng218977b2010-07-13 19:27:42 +00002420 SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32);
2421 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00002422 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Dale Johannesende064702009-02-06 21:50:26 +00002423 SDValue Result = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal,
Evan Cheng218977b2010-07-13 19:27:42 +00002424 ARMcc, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00002425 if (CondCode2 != ARMCC::AL) {
Evan Cheng218977b2010-07-13 19:27:42 +00002426 SDValue ARMcc2 = DAG.getConstant(CondCode2, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00002427 // FIXME: Needs another CMP because flag can have but one use.
Evan Cheng218977b2010-07-13 19:27:42 +00002428 SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl);
Bob Wilson2dc4f542009-03-20 22:42:55 +00002429 Result = DAG.getNode(ARMISD::CMOV, dl, VT,
Evan Cheng218977b2010-07-13 19:27:42 +00002430 Result, TrueVal, ARMcc2, CCR, Cmp2);
Evan Chenga8e29892007-01-19 07:51:42 +00002431 }
2432 return Result;
2433}
2434
Evan Cheng218977b2010-07-13 19:27:42 +00002435/// canChangeToInt - Given the fp compare operand, return true if it is suitable
2436/// to morph to an integer compare sequence.
2437static bool canChangeToInt(SDValue Op, bool &SeenZero,
2438 const ARMSubtarget *Subtarget) {
2439 SDNode *N = Op.getNode();
2440 if (!N->hasOneUse())
2441 // Otherwise it requires moving the value from fp to integer registers.
2442 return false;
2443 if (!N->getNumValues())
2444 return false;
2445 EVT VT = Op.getValueType();
2446 if (VT != MVT::f32 && !Subtarget->isFPBrccSlow())
2447 // f32 case is generally profitable. f64 case only makes sense when vcmpe +
2448 // vmrs are very slow, e.g. cortex-a8.
2449 return false;
2450
2451 if (isFloatingPointZero(Op)) {
2452 SeenZero = true;
2453 return true;
2454 }
2455 return ISD::isNormalLoad(N);
2456}
2457
2458static SDValue bitcastf32Toi32(SDValue Op, SelectionDAG &DAG) {
2459 if (isFloatingPointZero(Op))
2460 return DAG.getConstant(0, MVT::i32);
2461
2462 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op))
2463 return DAG.getLoad(MVT::i32, Op.getDebugLoc(),
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002464 Ld->getChain(), Ld->getBasePtr(), Ld->getPointerInfo(),
Evan Cheng218977b2010-07-13 19:27:42 +00002465 Ld->isVolatile(), Ld->isNonTemporal(),
2466 Ld->getAlignment());
2467
2468 llvm_unreachable("Unknown VFP cmp argument!");
2469}
2470
2471static void expandf64Toi32(SDValue Op, SelectionDAG &DAG,
2472 SDValue &RetVal1, SDValue &RetVal2) {
2473 if (isFloatingPointZero(Op)) {
2474 RetVal1 = DAG.getConstant(0, MVT::i32);
2475 RetVal2 = DAG.getConstant(0, MVT::i32);
2476 return;
2477 }
2478
2479 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) {
2480 SDValue Ptr = Ld->getBasePtr();
2481 RetVal1 = DAG.getLoad(MVT::i32, Op.getDebugLoc(),
2482 Ld->getChain(), Ptr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002483 Ld->getPointerInfo(),
Evan Cheng218977b2010-07-13 19:27:42 +00002484 Ld->isVolatile(), Ld->isNonTemporal(),
2485 Ld->getAlignment());
2486
2487 EVT PtrType = Ptr.getValueType();
2488 unsigned NewAlign = MinAlign(Ld->getAlignment(), 4);
2489 SDValue NewPtr = DAG.getNode(ISD::ADD, Op.getDebugLoc(),
2490 PtrType, Ptr, DAG.getConstant(4, PtrType));
2491 RetVal2 = DAG.getLoad(MVT::i32, Op.getDebugLoc(),
2492 Ld->getChain(), NewPtr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002493 Ld->getPointerInfo().getWithOffset(4),
Evan Cheng218977b2010-07-13 19:27:42 +00002494 Ld->isVolatile(), Ld->isNonTemporal(),
2495 NewAlign);
2496 return;
2497 }
2498
2499 llvm_unreachable("Unknown VFP cmp argument!");
2500}
2501
2502/// OptimizeVFPBrcond - With -enable-unsafe-fp-math, it's legal to optimize some
2503/// f32 and even f64 comparisons to integer ones.
2504SDValue
2505ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const {
2506 SDValue Chain = Op.getOperand(0);
Evan Chenga8e29892007-01-19 07:51:42 +00002507 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
Evan Cheng218977b2010-07-13 19:27:42 +00002508 SDValue LHS = Op.getOperand(2);
2509 SDValue RHS = Op.getOperand(3);
2510 SDValue Dest = Op.getOperand(4);
2511 DebugLoc dl = Op.getDebugLoc();
2512
2513 bool SeenZero = false;
2514 if (canChangeToInt(LHS, SeenZero, Subtarget) &&
2515 canChangeToInt(RHS, SeenZero, Subtarget) &&
Evan Cheng60108e92010-07-15 22:07:12 +00002516 // If one of the operand is zero, it's safe to ignore the NaN case since
2517 // we only care about equality comparisons.
2518 (SeenZero || (DAG.isKnownNeverNaN(LHS) && DAG.isKnownNeverNaN(RHS)))) {
Evan Cheng218977b2010-07-13 19:27:42 +00002519 // If unsafe fp math optimization is enabled and there are no othter uses of
2520 // the CMP operands, and the condition code is EQ oe NE, we can optimize it
2521 // to an integer comparison.
2522 if (CC == ISD::SETOEQ)
2523 CC = ISD::SETEQ;
2524 else if (CC == ISD::SETUNE)
2525 CC = ISD::SETNE;
2526
2527 SDValue ARMcc;
2528 if (LHS.getValueType() == MVT::f32) {
2529 LHS = bitcastf32Toi32(LHS, DAG);
2530 RHS = bitcastf32Toi32(RHS, DAG);
2531 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
2532 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
2533 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
2534 Chain, Dest, ARMcc, CCR, Cmp);
2535 }
2536
2537 SDValue LHS1, LHS2;
2538 SDValue RHS1, RHS2;
2539 expandf64Toi32(LHS, DAG, LHS1, LHS2);
2540 expandf64Toi32(RHS, DAG, RHS1, RHS2);
2541 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
2542 ARMcc = DAG.getConstant(CondCode, MVT::i32);
2543 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Flag);
2544 SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest };
2545 return DAG.getNode(ARMISD::BCC_i64, dl, VTList, Ops, 7);
2546 }
2547
2548 return SDValue();
2549}
2550
2551SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
2552 SDValue Chain = Op.getOperand(0);
2553 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
2554 SDValue LHS = Op.getOperand(2);
2555 SDValue RHS = Op.getOperand(3);
2556 SDValue Dest = Op.getOperand(4);
Dale Johannesende064702009-02-06 21:50:26 +00002557 DebugLoc dl = Op.getDebugLoc();
Evan Chenga8e29892007-01-19 07:51:42 +00002558
Owen Anderson825b72b2009-08-11 20:47:22 +00002559 if (LHS.getValueType() == MVT::i32) {
Evan Cheng218977b2010-07-13 19:27:42 +00002560 SDValue ARMcc;
2561 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00002562 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +00002563 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
Evan Cheng218977b2010-07-13 19:27:42 +00002564 Chain, Dest, ARMcc, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00002565 }
2566
Owen Anderson825b72b2009-08-11 20:47:22 +00002567 assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
Evan Cheng218977b2010-07-13 19:27:42 +00002568
2569 if (UnsafeFPMath &&
2570 (CC == ISD::SETEQ || CC == ISD::SETOEQ ||
2571 CC == ISD::SETNE || CC == ISD::SETUNE)) {
2572 SDValue Result = OptimizeVFPBrcond(Op, DAG);
2573 if (Result.getNode())
2574 return Result;
2575 }
2576
Evan Chenga8e29892007-01-19 07:51:42 +00002577 ARMCC::CondCodes CondCode, CondCode2;
Bob Wilsoncd3b9a42009-09-09 23:14:54 +00002578 FPCCToARMCC(CC, CondCode, CondCode2);
Bob Wilson2dc4f542009-03-20 22:42:55 +00002579
Evan Cheng218977b2010-07-13 19:27:42 +00002580 SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32);
2581 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00002582 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
2583 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Flag);
Evan Cheng218977b2010-07-13 19:27:42 +00002584 SDValue Ops[] = { Chain, Dest, ARMcc, CCR, Cmp };
Dale Johannesende064702009-02-06 21:50:26 +00002585 SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops, 5);
Evan Chenga8e29892007-01-19 07:51:42 +00002586 if (CondCode2 != ARMCC::AL) {
Evan Cheng218977b2010-07-13 19:27:42 +00002587 ARMcc = DAG.getConstant(CondCode2, MVT::i32);
2588 SDValue Ops[] = { Res, Dest, ARMcc, CCR, Res.getValue(1) };
Dale Johannesende064702009-02-06 21:50:26 +00002589 Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops, 5);
Evan Chenga8e29892007-01-19 07:51:42 +00002590 }
2591 return Res;
2592}
2593
Dan Gohmand858e902010-04-17 15:26:15 +00002594SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00002595 SDValue Chain = Op.getOperand(0);
2596 SDValue Table = Op.getOperand(1);
2597 SDValue Index = Op.getOperand(2);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002598 DebugLoc dl = Op.getDebugLoc();
Evan Chenga8e29892007-01-19 07:51:42 +00002599
Owen Andersone50ed302009-08-10 22:56:29 +00002600 EVT PTy = getPointerTy();
Evan Chenga8e29892007-01-19 07:51:42 +00002601 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
2602 ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>();
Bob Wilson3eadf002009-07-14 18:44:34 +00002603 SDValue UId = DAG.getConstant(AFI->createJumpTableUId(), PTy);
Dan Gohman475871a2008-07-27 21:46:04 +00002604 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
Owen Anderson825b72b2009-08-11 20:47:22 +00002605 Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI, UId);
Evan Chenge7c329b2009-07-28 20:53:24 +00002606 Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, PTy));
2607 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Evan Cheng66ac5312009-07-25 00:33:29 +00002608 if (Subtarget->isThumb2()) {
2609 // Thumb2 uses a two-level jump. That is, it jumps into the jump table
2610 // which does another jump to the destination. This also makes it easier
2611 // to translate it to TBB / TBH later.
2612 // FIXME: This might not work if the function is extremely large.
Owen Anderson825b72b2009-08-11 20:47:22 +00002613 return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain,
Evan Cheng5657c012009-07-29 02:18:14 +00002614 Addr, Op.getOperand(2), JTI, UId);
Evan Cheng66ac5312009-07-25 00:33:29 +00002615 }
Evan Cheng66ac5312009-07-25 00:33:29 +00002616 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng9eda6892009-10-31 03:39:36 +00002617 Addr = DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002618 MachinePointerInfo::getJumpTable(),
David Greene1b58cab2010-02-15 16:55:24 +00002619 false, false, 0);
Evan Cheng66ac5312009-07-25 00:33:29 +00002620 Chain = Addr.getValue(1);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002621 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table);
Owen Anderson825b72b2009-08-11 20:47:22 +00002622 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
Evan Cheng66ac5312009-07-25 00:33:29 +00002623 } else {
Evan Cheng9eda6892009-10-31 03:39:36 +00002624 Addr = DAG.getLoad(PTy, dl, Chain, Addr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002625 MachinePointerInfo::getJumpTable(), false, false, 0);
Evan Cheng66ac5312009-07-25 00:33:29 +00002626 Chain = Addr.getValue(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00002627 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
Evan Cheng66ac5312009-07-25 00:33:29 +00002628 }
Evan Chenga8e29892007-01-19 07:51:42 +00002629}
2630
Bob Wilson76a312b2010-03-19 22:51:32 +00002631static SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
2632 DebugLoc dl = Op.getDebugLoc();
2633 unsigned Opc;
2634
2635 switch (Op.getOpcode()) {
2636 default:
2637 assert(0 && "Invalid opcode!");
2638 case ISD::FP_TO_SINT:
2639 Opc = ARMISD::FTOSI;
2640 break;
2641 case ISD::FP_TO_UINT:
2642 Opc = ARMISD::FTOUI;
2643 break;
2644 }
2645 Op = DAG.getNode(Opc, dl, MVT::f32, Op.getOperand(0));
2646 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
2647}
2648
2649static SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
2650 EVT VT = Op.getValueType();
2651 DebugLoc dl = Op.getDebugLoc();
2652 unsigned Opc;
2653
2654 switch (Op.getOpcode()) {
2655 default:
2656 assert(0 && "Invalid opcode!");
2657 case ISD::SINT_TO_FP:
2658 Opc = ARMISD::SITOF;
2659 break;
2660 case ISD::UINT_TO_FP:
2661 Opc = ARMISD::UITOF;
2662 break;
2663 }
2664
2665 Op = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Op.getOperand(0));
2666 return DAG.getNode(Opc, dl, VT, Op);
2667}
2668
Evan Cheng515fe3a2010-07-08 02:08:50 +00002669SDValue ARMTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Evan Chenga8e29892007-01-19 07:51:42 +00002670 // Implement fcopysign with a fabs and a conditional fneg.
Dan Gohman475871a2008-07-27 21:46:04 +00002671 SDValue Tmp0 = Op.getOperand(0);
2672 SDValue Tmp1 = Op.getOperand(1);
Dale Johannesende064702009-02-06 21:50:26 +00002673 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00002674 EVT VT = Op.getValueType();
2675 EVT SrcVT = Tmp1.getValueType();
Dale Johannesende064702009-02-06 21:50:26 +00002676 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, VT, Tmp0);
Evan Cheng218977b2010-07-13 19:27:42 +00002677 SDValue ARMcc = DAG.getConstant(ARMCC::LT, MVT::i32);
Evan Cheng515fe3a2010-07-08 02:08:50 +00002678 SDValue FP0 = DAG.getConstantFP(0.0, SrcVT);
Evan Cheng218977b2010-07-13 19:27:42 +00002679 SDValue Cmp = getVFPCmp(Tmp1, FP0, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00002680 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Cheng218977b2010-07-13 19:27:42 +00002681 return DAG.getNode(ARMISD::CNEG, dl, VT, AbsVal, AbsVal, ARMcc, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00002682}
2683
Evan Cheng2457f2c2010-05-22 01:47:14 +00002684SDValue ARMTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const{
2685 MachineFunction &MF = DAG.getMachineFunction();
2686 MachineFrameInfo *MFI = MF.getFrameInfo();
2687 MFI->setReturnAddressIsTaken(true);
2688
2689 EVT VT = Op.getValueType();
2690 DebugLoc dl = Op.getDebugLoc();
2691 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
2692 if (Depth) {
2693 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
2694 SDValue Offset = DAG.getConstant(4, MVT::i32);
2695 return DAG.getLoad(VT, dl, DAG.getEntryNode(),
2696 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002697 MachinePointerInfo(), false, false, 0);
Evan Cheng2457f2c2010-05-22 01:47:14 +00002698 }
2699
2700 // Return LR, which contains the return address. Mark it an implicit live-in.
Jim Grosbachc2723a52010-07-23 23:50:35 +00002701 unsigned Reg = MF.addLiveIn(ARM::LR, getRegClassFor(MVT::i32));
Evan Cheng2457f2c2010-05-22 01:47:14 +00002702 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
2703}
2704
Dan Gohmand858e902010-04-17 15:26:15 +00002705SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Jim Grosbach0e0da732009-05-12 23:59:14 +00002706 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2707 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00002708
Owen Andersone50ed302009-08-10 22:56:29 +00002709 EVT VT = Op.getValueType();
Jim Grosbach0e0da732009-05-12 23:59:14 +00002710 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
2711 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Chengcd828612009-06-18 23:14:30 +00002712 unsigned FrameReg = (Subtarget->isThumb() || Subtarget->isTargetDarwin())
Jim Grosbach0e0da732009-05-12 23:59:14 +00002713 ? ARM::R7 : ARM::R11;
2714 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
2715 while (Depth--)
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002716 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
2717 MachinePointerInfo(),
David Greene1b58cab2010-02-15 16:55:24 +00002718 false, false, 0);
Jim Grosbach0e0da732009-05-12 23:59:14 +00002719 return FrameAddr;
2720}
2721
Bob Wilson9f3f0612010-04-17 05:30:19 +00002722/// ExpandBIT_CONVERT - If the target supports VFP, this function is called to
2723/// expand a bit convert where either the source or destination type is i64 to
2724/// use a VMOVDRR or VMOVRRD node. This should not be done when the non-i64
2725/// operand type is illegal (e.g., v2f32 for a target that doesn't support
2726/// vectors), since the legalizer won't know what to do with that.
Duncan Sands1607f052008-12-01 11:39:25 +00002727static SDValue ExpandBIT_CONVERT(SDNode *N, SelectionDAG &DAG) {
Bob Wilson9f3f0612010-04-17 05:30:19 +00002728 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2729 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00002730 SDValue Op = N->getOperand(0);
Bob Wilson164cd8b2010-04-14 20:45:23 +00002731
Bob Wilson9f3f0612010-04-17 05:30:19 +00002732 // This function is only supposed to be called for i64 types, either as the
2733 // source or destination of the bit convert.
2734 EVT SrcVT = Op.getValueType();
2735 EVT DstVT = N->getValueType(0);
2736 assert((SrcVT == MVT::i64 || DstVT == MVT::i64) &&
2737 "ExpandBIT_CONVERT called for non-i64 type");
Bob Wilson164cd8b2010-04-14 20:45:23 +00002738
Bob Wilson9f3f0612010-04-17 05:30:19 +00002739 // Turn i64->f64 into VMOVDRR.
2740 if (SrcVT == MVT::i64 && TLI.isTypeLegal(DstVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002741 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
2742 DAG.getConstant(0, MVT::i32));
2743 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
2744 DAG.getConstant(1, MVT::i32));
Bob Wilson1114f562010-06-11 22:45:25 +00002745 return DAG.getNode(ISD::BIT_CONVERT, dl, DstVT,
2746 DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi));
Evan Chengc7c77292008-11-04 19:57:48 +00002747 }
Bob Wilson2dc4f542009-03-20 22:42:55 +00002748
Jim Grosbache5165492009-11-09 00:11:35 +00002749 // Turn f64->i64 into VMOVRRD.
Bob Wilson9f3f0612010-04-17 05:30:19 +00002750 if (DstVT == MVT::i64 && TLI.isTypeLegal(SrcVT)) {
2751 SDValue Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
2752 DAG.getVTList(MVT::i32, MVT::i32), &Op, 1);
2753 // Merge the pieces into a single i64 value.
2754 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1));
2755 }
Bob Wilson2dc4f542009-03-20 22:42:55 +00002756
Bob Wilson9f3f0612010-04-17 05:30:19 +00002757 return SDValue();
Chris Lattner27a6c732007-11-24 07:07:01 +00002758}
2759
Bob Wilson5bafff32009-06-22 23:27:02 +00002760/// getZeroVector - Returns a vector of specified type with all zero elements.
Bob Wilsoncba270d2010-07-13 21:16:48 +00002761/// Zero vectors are used to represent vector negation and in those cases
2762/// will be implemented with the NEON VNEG instruction. However, VNEG does
2763/// not support i64 elements, so sometimes the zero vectors will need to be
2764/// explicitly constructed. Regardless, use a canonical VMOV to create the
2765/// zero vector.
Owen Andersone50ed302009-08-10 22:56:29 +00002766static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Bob Wilson5bafff32009-06-22 23:27:02 +00002767 assert(VT.isVector() && "Expected a vector type");
Bob Wilsoncba270d2010-07-13 21:16:48 +00002768 // The canonical modified immediate encoding of a zero vector is....0!
2769 SDValue EncodedVal = DAG.getTargetConstant(0, MVT::i32);
2770 EVT VmovVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
2771 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal);
2772 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vmov);
Bob Wilson5bafff32009-06-22 23:27:02 +00002773}
2774
Jim Grosbachb4a976c2009-10-31 21:00:56 +00002775/// LowerShiftRightParts - Lower SRA_PARTS, which returns two
2776/// i32 values and take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00002777SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op,
2778 SelectionDAG &DAG) const {
Jim Grosbachb4a976c2009-10-31 21:00:56 +00002779 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
2780 EVT VT = Op.getValueType();
2781 unsigned VTBits = VT.getSizeInBits();
2782 DebugLoc dl = Op.getDebugLoc();
2783 SDValue ShOpLo = Op.getOperand(0);
2784 SDValue ShOpHi = Op.getOperand(1);
2785 SDValue ShAmt = Op.getOperand(2);
Evan Cheng218977b2010-07-13 19:27:42 +00002786 SDValue ARMcc;
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +00002787 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
Jim Grosbachb4a976c2009-10-31 21:00:56 +00002788
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +00002789 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
2790
Jim Grosbachb4a976c2009-10-31 21:00:56 +00002791 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
2792 DAG.getConstant(VTBits, MVT::i32), ShAmt);
2793 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
2794 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
2795 DAG.getConstant(VTBits, MVT::i32));
2796 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
2797 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +00002798 SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
Jim Grosbachb4a976c2009-10-31 21:00:56 +00002799
2800 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
2801 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
Evan Cheng218977b2010-07-13 19:27:42 +00002802 ARMcc, DAG, dl);
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +00002803 SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
Evan Cheng218977b2010-07-13 19:27:42 +00002804 SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc,
Jim Grosbachb4a976c2009-10-31 21:00:56 +00002805 CCR, Cmp);
2806
2807 SDValue Ops[2] = { Lo, Hi };
2808 return DAG.getMergeValues(Ops, 2, dl);
2809}
2810
Jim Grosbachc2b879f2009-10-31 19:38:01 +00002811/// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
2812/// i32 values and take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00002813SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op,
2814 SelectionDAG &DAG) const {
Jim Grosbachc2b879f2009-10-31 19:38:01 +00002815 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
2816 EVT VT = Op.getValueType();
2817 unsigned VTBits = VT.getSizeInBits();
2818 DebugLoc dl = Op.getDebugLoc();
2819 SDValue ShOpLo = Op.getOperand(0);
2820 SDValue ShOpHi = Op.getOperand(1);
2821 SDValue ShAmt = Op.getOperand(2);
Evan Cheng218977b2010-07-13 19:27:42 +00002822 SDValue ARMcc;
Jim Grosbachc2b879f2009-10-31 19:38:01 +00002823
2824 assert(Op.getOpcode() == ISD::SHL_PARTS);
2825 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
2826 DAG.getConstant(VTBits, MVT::i32), ShAmt);
2827 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
2828 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
2829 DAG.getConstant(VTBits, MVT::i32));
2830 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
2831 SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
2832
2833 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
2834 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
2835 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
Evan Cheng218977b2010-07-13 19:27:42 +00002836 ARMcc, DAG, dl);
Jim Grosbachc2b879f2009-10-31 19:38:01 +00002837 SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Evan Cheng218977b2010-07-13 19:27:42 +00002838 SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMcc,
Jim Grosbachc2b879f2009-10-31 19:38:01 +00002839 CCR, Cmp);
2840
2841 SDValue Ops[2] = { Lo, Hi };
2842 return DAG.getMergeValues(Ops, 2, dl);
2843}
2844
Jim Grosbach4725ca72010-09-08 03:54:02 +00002845SDValue ARMTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
Nate Begemand1fb5832010-08-03 21:31:55 +00002846 SelectionDAG &DAG) const {
2847 // The rounding mode is in bits 23:22 of the FPSCR.
2848 // The ARM rounding mode value to FLT_ROUNDS mapping is 0->1, 1->2, 2->3, 3->0
2849 // The formula we use to implement this is (((FPSCR + 1 << 22) >> 22) & 3)
2850 // so that the shift + and get folded into a bitfield extract.
2851 DebugLoc dl = Op.getDebugLoc();
2852 SDValue FPSCR = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::i32,
2853 DAG.getConstant(Intrinsic::arm_get_fpscr,
2854 MVT::i32));
Jim Grosbach4725ca72010-09-08 03:54:02 +00002855 SDValue FltRounds = DAG.getNode(ISD::ADD, dl, MVT::i32, FPSCR,
Nate Begemand1fb5832010-08-03 21:31:55 +00002856 DAG.getConstant(1U << 22, MVT::i32));
2857 SDValue RMODE = DAG.getNode(ISD::SRL, dl, MVT::i32, FltRounds,
2858 DAG.getConstant(22, MVT::i32));
Jim Grosbach4725ca72010-09-08 03:54:02 +00002859 return DAG.getNode(ISD::AND, dl, MVT::i32, RMODE,
Nate Begemand1fb5832010-08-03 21:31:55 +00002860 DAG.getConstant(3, MVT::i32));
2861}
2862
Jim Grosbach3482c802010-01-18 19:58:49 +00002863static SDValue LowerCTTZ(SDNode *N, SelectionDAG &DAG,
2864 const ARMSubtarget *ST) {
2865 EVT VT = N->getValueType(0);
2866 DebugLoc dl = N->getDebugLoc();
2867
2868 if (!ST->hasV6T2Ops())
2869 return SDValue();
2870
2871 SDValue rbit = DAG.getNode(ARMISD::RBIT, dl, VT, N->getOperand(0));
2872 return DAG.getNode(ISD::CTLZ, dl, VT, rbit);
2873}
2874
Bob Wilson5bafff32009-06-22 23:27:02 +00002875static SDValue LowerShift(SDNode *N, SelectionDAG &DAG,
2876 const ARMSubtarget *ST) {
Owen Andersone50ed302009-08-10 22:56:29 +00002877 EVT VT = N->getValueType(0);
Bob Wilson5bafff32009-06-22 23:27:02 +00002878 DebugLoc dl = N->getDebugLoc();
2879
2880 // Lower vector shifts on NEON to use VSHL.
2881 if (VT.isVector()) {
2882 assert(ST->hasNEON() && "unexpected vector shift");
2883
2884 // Left shifts translate directly to the vshiftu intrinsic.
2885 if (N->getOpcode() == ISD::SHL)
2886 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00002887 DAG.getConstant(Intrinsic::arm_neon_vshiftu, MVT::i32),
Bob Wilson5bafff32009-06-22 23:27:02 +00002888 N->getOperand(0), N->getOperand(1));
2889
2890 assert((N->getOpcode() == ISD::SRA ||
2891 N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode");
2892
2893 // NEON uses the same intrinsics for both left and right shifts. For
2894 // right shifts, the shift amounts are negative, so negate the vector of
2895 // shift amounts.
Owen Andersone50ed302009-08-10 22:56:29 +00002896 EVT ShiftVT = N->getOperand(1).getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00002897 SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT,
2898 getZeroVector(ShiftVT, DAG, dl),
2899 N->getOperand(1));
2900 Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ?
2901 Intrinsic::arm_neon_vshifts :
2902 Intrinsic::arm_neon_vshiftu);
2903 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00002904 DAG.getConstant(vshiftInt, MVT::i32),
Bob Wilson5bafff32009-06-22 23:27:02 +00002905 N->getOperand(0), NegatedCount);
2906 }
2907
Eli Friedmance392eb2009-08-22 03:13:10 +00002908 // We can get here for a node like i32 = ISD::SHL i32, i64
2909 if (VT != MVT::i64)
2910 return SDValue();
2911
2912 assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) &&
Chris Lattner27a6c732007-11-24 07:07:01 +00002913 "Unknown shift to lower!");
Duncan Sands1607f052008-12-01 11:39:25 +00002914
Chris Lattner27a6c732007-11-24 07:07:01 +00002915 // We only lower SRA, SRL of 1 here, all others use generic lowering.
2916 if (!isa<ConstantSDNode>(N->getOperand(1)) ||
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002917 cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 1)
Duncan Sands1607f052008-12-01 11:39:25 +00002918 return SDValue();
Bob Wilson2dc4f542009-03-20 22:42:55 +00002919
Chris Lattner27a6c732007-11-24 07:07:01 +00002920 // If we are in thumb mode, we don't have RRX.
David Goodwinf1daf7d2009-07-08 23:10:31 +00002921 if (ST->isThumb1Only()) return SDValue();
Bob Wilson2dc4f542009-03-20 22:42:55 +00002922
Chris Lattner27a6c732007-11-24 07:07:01 +00002923 // Okay, we have a 64-bit SRA or SRL of 1. Lower this to an RRX expr.
Owen Anderson825b72b2009-08-11 20:47:22 +00002924 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
Bob Wilsonab3912e2010-05-25 03:36:52 +00002925 DAG.getConstant(0, MVT::i32));
Owen Anderson825b72b2009-08-11 20:47:22 +00002926 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
Bob Wilsonab3912e2010-05-25 03:36:52 +00002927 DAG.getConstant(1, MVT::i32));
Bob Wilson2dc4f542009-03-20 22:42:55 +00002928
Chris Lattner27a6c732007-11-24 07:07:01 +00002929 // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
2930 // captures the result into a carry flag.
2931 unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
Owen Anderson825b72b2009-08-11 20:47:22 +00002932 Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Flag), &Hi, 1);
Bob Wilson2dc4f542009-03-20 22:42:55 +00002933
Chris Lattner27a6c732007-11-24 07:07:01 +00002934 // The low part is an ARMISD::RRX operand, which shifts the carry in.
Owen Anderson825b72b2009-08-11 20:47:22 +00002935 Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1));
Bob Wilson2dc4f542009-03-20 22:42:55 +00002936
Chris Lattner27a6c732007-11-24 07:07:01 +00002937 // Merge the pieces into a single i64 value.
Owen Anderson825b72b2009-08-11 20:47:22 +00002938 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
Chris Lattner27a6c732007-11-24 07:07:01 +00002939}
2940
Bob Wilson5bafff32009-06-22 23:27:02 +00002941static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
2942 SDValue TmpOp0, TmpOp1;
2943 bool Invert = false;
2944 bool Swap = false;
2945 unsigned Opc = 0;
2946
2947 SDValue Op0 = Op.getOperand(0);
2948 SDValue Op1 = Op.getOperand(1);
2949 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00002950 EVT VT = Op.getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00002951 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
2952 DebugLoc dl = Op.getDebugLoc();
2953
2954 if (Op.getOperand(1).getValueType().isFloatingPoint()) {
2955 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002956 default: llvm_unreachable("Illegal FP comparison"); break;
Bob Wilson5bafff32009-06-22 23:27:02 +00002957 case ISD::SETUNE:
2958 case ISD::SETNE: Invert = true; // Fallthrough
2959 case ISD::SETOEQ:
2960 case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
2961 case ISD::SETOLT:
2962 case ISD::SETLT: Swap = true; // Fallthrough
2963 case ISD::SETOGT:
2964 case ISD::SETGT: Opc = ARMISD::VCGT; break;
2965 case ISD::SETOLE:
2966 case ISD::SETLE: Swap = true; // Fallthrough
2967 case ISD::SETOGE:
2968 case ISD::SETGE: Opc = ARMISD::VCGE; break;
2969 case ISD::SETUGE: Swap = true; // Fallthrough
2970 case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
2971 case ISD::SETUGT: Swap = true; // Fallthrough
2972 case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
2973 case ISD::SETUEQ: Invert = true; // Fallthrough
2974 case ISD::SETONE:
2975 // Expand this to (OLT | OGT).
2976 TmpOp0 = Op0;
2977 TmpOp1 = Op1;
2978 Opc = ISD::OR;
2979 Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
2980 Op1 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp0, TmpOp1);
2981 break;
2982 case ISD::SETUO: Invert = true; // Fallthrough
2983 case ISD::SETO:
2984 // Expand this to (OLT | OGE).
2985 TmpOp0 = Op0;
2986 TmpOp1 = Op1;
2987 Opc = ISD::OR;
2988 Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
2989 Op1 = DAG.getNode(ARMISD::VCGE, dl, VT, TmpOp0, TmpOp1);
2990 break;
2991 }
2992 } else {
2993 // Integer comparisons.
2994 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002995 default: llvm_unreachable("Illegal integer comparison"); break;
Bob Wilson5bafff32009-06-22 23:27:02 +00002996 case ISD::SETNE: Invert = true;
2997 case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
2998 case ISD::SETLT: Swap = true;
2999 case ISD::SETGT: Opc = ARMISD::VCGT; break;
3000 case ISD::SETLE: Swap = true;
3001 case ISD::SETGE: Opc = ARMISD::VCGE; break;
3002 case ISD::SETULT: Swap = true;
3003 case ISD::SETUGT: Opc = ARMISD::VCGTU; break;
3004 case ISD::SETULE: Swap = true;
3005 case ISD::SETUGE: Opc = ARMISD::VCGEU; break;
3006 }
3007
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003008 // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero).
Bob Wilson5bafff32009-06-22 23:27:02 +00003009 if (Opc == ARMISD::VCEQ) {
3010
3011 SDValue AndOp;
3012 if (ISD::isBuildVectorAllZeros(Op1.getNode()))
3013 AndOp = Op0;
3014 else if (ISD::isBuildVectorAllZeros(Op0.getNode()))
3015 AndOp = Op1;
3016
3017 // Ignore bitconvert.
3018 if (AndOp.getNode() && AndOp.getOpcode() == ISD::BIT_CONVERT)
3019 AndOp = AndOp.getOperand(0);
3020
3021 if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) {
3022 Opc = ARMISD::VTST;
3023 Op0 = DAG.getNode(ISD::BIT_CONVERT, dl, VT, AndOp.getOperand(0));
3024 Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, VT, AndOp.getOperand(1));
3025 Invert = !Invert;
3026 }
3027 }
3028 }
3029
3030 if (Swap)
3031 std::swap(Op0, Op1);
3032
3033 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
3034
3035 if (Invert)
3036 Result = DAG.getNOT(dl, Result, VT);
3037
3038 return Result;
3039}
3040
Bob Wilsond3c42842010-06-14 22:19:57 +00003041/// isNEONModifiedImm - Check if the specified splat value corresponds to a
3042/// valid vector constant for a NEON instruction with a "modified immediate"
Bob Wilsoncba270d2010-07-13 21:16:48 +00003043/// operand (e.g., VMOV). If so, return the encoded value.
Bob Wilsond3c42842010-06-14 22:19:57 +00003044static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
3045 unsigned SplatBitSize, SelectionDAG &DAG,
Bob Wilsoncba270d2010-07-13 21:16:48 +00003046 EVT &VT, bool is128Bits, bool isVMOV) {
Bob Wilson6dce00c2010-07-13 04:44:34 +00003047 unsigned OpCmode, Imm;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003048
Bob Wilson827b2102010-06-15 19:05:35 +00003049 // SplatBitSize is set to the smallest size that splats the vector, so a
3050 // zero vector will always have SplatBitSize == 8. However, NEON modified
3051 // immediate instructions others than VMOV do not support the 8-bit encoding
3052 // of a zero vector, and the default encoding of zero is supposed to be the
3053 // 32-bit version.
3054 if (SplatBits == 0)
3055 SplatBitSize = 32;
3056
Bob Wilson5bafff32009-06-22 23:27:02 +00003057 switch (SplatBitSize) {
3058 case 8:
Bob Wilson7e3f0d22010-07-14 06:31:50 +00003059 if (!isVMOV)
3060 return SDValue();
Bob Wilson1a913ed2010-06-11 21:34:50 +00003061 // Any 1-byte value is OK. Op=0, Cmode=1110.
Bob Wilson5bafff32009-06-22 23:27:02 +00003062 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
Bob Wilson6dce00c2010-07-13 04:44:34 +00003063 OpCmode = 0xe;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003064 Imm = SplatBits;
Bob Wilsoncba270d2010-07-13 21:16:48 +00003065 VT = is128Bits ? MVT::v16i8 : MVT::v8i8;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003066 break;
Bob Wilson5bafff32009-06-22 23:27:02 +00003067
3068 case 16:
3069 // NEON's 16-bit VMOV supports splat values where only one byte is nonzero.
Bob Wilsoncba270d2010-07-13 21:16:48 +00003070 VT = is128Bits ? MVT::v8i16 : MVT::v4i16;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003071 if ((SplatBits & ~0xff) == 0) {
3072 // Value = 0x00nn: Op=x, Cmode=100x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003073 OpCmode = 0x8;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003074 Imm = SplatBits;
3075 break;
3076 }
3077 if ((SplatBits & ~0xff00) == 0) {
3078 // Value = 0xnn00: Op=x, Cmode=101x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003079 OpCmode = 0xa;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003080 Imm = SplatBits >> 8;
3081 break;
3082 }
3083 return SDValue();
Bob Wilson5bafff32009-06-22 23:27:02 +00003084
3085 case 32:
3086 // NEON's 32-bit VMOV supports splat values where:
3087 // * only one byte is nonzero, or
3088 // * the least significant byte is 0xff and the second byte is nonzero, or
3089 // * the least significant 2 bytes are 0xff and the third is nonzero.
Bob Wilsoncba270d2010-07-13 21:16:48 +00003090 VT = is128Bits ? MVT::v4i32 : MVT::v2i32;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003091 if ((SplatBits & ~0xff) == 0) {
3092 // Value = 0x000000nn: Op=x, Cmode=000x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003093 OpCmode = 0;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003094 Imm = SplatBits;
3095 break;
3096 }
3097 if ((SplatBits & ~0xff00) == 0) {
3098 // Value = 0x0000nn00: Op=x, Cmode=001x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003099 OpCmode = 0x2;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003100 Imm = SplatBits >> 8;
3101 break;
3102 }
3103 if ((SplatBits & ~0xff0000) == 0) {
3104 // Value = 0x00nn0000: Op=x, Cmode=010x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003105 OpCmode = 0x4;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003106 Imm = SplatBits >> 16;
3107 break;
3108 }
3109 if ((SplatBits & ~0xff000000) == 0) {
3110 // Value = 0xnn000000: Op=x, Cmode=011x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003111 OpCmode = 0x6;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003112 Imm = SplatBits >> 24;
3113 break;
3114 }
Bob Wilson5bafff32009-06-22 23:27:02 +00003115
3116 if ((SplatBits & ~0xffff) == 0 &&
Bob Wilson1a913ed2010-06-11 21:34:50 +00003117 ((SplatBits | SplatUndef) & 0xff) == 0xff) {
3118 // Value = 0x0000nnff: Op=x, Cmode=1100.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003119 OpCmode = 0xc;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003120 Imm = SplatBits >> 8;
3121 SplatBits |= 0xff;
3122 break;
3123 }
Bob Wilson5bafff32009-06-22 23:27:02 +00003124
3125 if ((SplatBits & ~0xffffff) == 0 &&
Bob Wilson1a913ed2010-06-11 21:34:50 +00003126 ((SplatBits | SplatUndef) & 0xffff) == 0xffff) {
3127 // Value = 0x00nnffff: Op=x, Cmode=1101.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003128 OpCmode = 0xd;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003129 Imm = SplatBits >> 16;
3130 SplatBits |= 0xffff;
3131 break;
3132 }
Bob Wilson5bafff32009-06-22 23:27:02 +00003133
3134 // Note: there are a few 32-bit splat values (specifically: 00ffff00,
3135 // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not
3136 // VMOV.I32. A (very) minor optimization would be to replicate the value
3137 // and fall through here to test for a valid 64-bit splat. But, then the
3138 // caller would also need to check and handle the change in size.
Bob Wilson1a913ed2010-06-11 21:34:50 +00003139 return SDValue();
Bob Wilson5bafff32009-06-22 23:27:02 +00003140
3141 case 64: {
Bob Wilson827b2102010-06-15 19:05:35 +00003142 if (!isVMOV)
3143 return SDValue();
Bob Wilson7e3f0d22010-07-14 06:31:50 +00003144 // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff.
Bob Wilson5bafff32009-06-22 23:27:02 +00003145 uint64_t BitMask = 0xff;
3146 uint64_t Val = 0;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003147 unsigned ImmMask = 1;
3148 Imm = 0;
Bob Wilson5bafff32009-06-22 23:27:02 +00003149 for (int ByteNum = 0; ByteNum < 8; ++ByteNum) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00003150 if (((SplatBits | SplatUndef) & BitMask) == BitMask) {
Bob Wilson5bafff32009-06-22 23:27:02 +00003151 Val |= BitMask;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003152 Imm |= ImmMask;
3153 } else if ((SplatBits & BitMask) != 0) {
Bob Wilson5bafff32009-06-22 23:27:02 +00003154 return SDValue();
Bob Wilson1a913ed2010-06-11 21:34:50 +00003155 }
Bob Wilson5bafff32009-06-22 23:27:02 +00003156 BitMask <<= 8;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003157 ImmMask <<= 1;
Bob Wilson5bafff32009-06-22 23:27:02 +00003158 }
Bob Wilson1a913ed2010-06-11 21:34:50 +00003159 // Op=1, Cmode=1110.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003160 OpCmode = 0x1e;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003161 SplatBits = Val;
Bob Wilsoncba270d2010-07-13 21:16:48 +00003162 VT = is128Bits ? MVT::v2i64 : MVT::v1i64;
Bob Wilson5bafff32009-06-22 23:27:02 +00003163 break;
3164 }
3165
Bob Wilson1a913ed2010-06-11 21:34:50 +00003166 default:
Bob Wilsondc076da2010-06-19 05:32:09 +00003167 llvm_unreachable("unexpected size for isNEONModifiedImm");
Bob Wilson1a913ed2010-06-11 21:34:50 +00003168 return SDValue();
3169 }
3170
Bob Wilsoncba270d2010-07-13 21:16:48 +00003171 unsigned EncodedVal = ARM_AM::createNEONModImm(OpCmode, Imm);
3172 return DAG.getTargetConstant(EncodedVal, MVT::i32);
Bob Wilson5bafff32009-06-22 23:27:02 +00003173}
3174
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003175static bool isVEXTMask(const SmallVectorImpl<int> &M, EVT VT,
3176 bool &ReverseVEXT, unsigned &Imm) {
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003177 unsigned NumElts = VT.getVectorNumElements();
3178 ReverseVEXT = false;
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003179
3180 // Assume that the first shuffle index is not UNDEF. Fail if it is.
3181 if (M[0] < 0)
3182 return false;
3183
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003184 Imm = M[0];
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003185
3186 // If this is a VEXT shuffle, the immediate value is the index of the first
3187 // element. The other shuffle indices must be the successive elements after
3188 // the first one.
3189 unsigned ExpectedElt = Imm;
3190 for (unsigned i = 1; i < NumElts; ++i) {
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003191 // Increment the expected index. If it wraps around, it may still be
3192 // a VEXT but the source vectors must be swapped.
3193 ExpectedElt += 1;
3194 if (ExpectedElt == NumElts * 2) {
3195 ExpectedElt = 0;
3196 ReverseVEXT = true;
3197 }
3198
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003199 if (M[i] < 0) continue; // ignore UNDEF indices
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003200 if (ExpectedElt != static_cast<unsigned>(M[i]))
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003201 return false;
3202 }
3203
3204 // Adjust the index value if the source operands will be swapped.
3205 if (ReverseVEXT)
3206 Imm -= NumElts;
3207
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003208 return true;
3209}
3210
Bob Wilson8bb9e482009-07-26 00:39:34 +00003211/// isVREVMask - Check if a vector shuffle corresponds to a VREV
3212/// instruction with the specified blocksize. (The order of the elements
3213/// within each block of the vector is reversed.)
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003214static bool isVREVMask(const SmallVectorImpl<int> &M, EVT VT,
3215 unsigned BlockSize) {
Bob Wilson8bb9e482009-07-26 00:39:34 +00003216 assert((BlockSize==16 || BlockSize==32 || BlockSize==64) &&
3217 "Only possible block sizes for VREV are: 16, 32, 64");
3218
Bob Wilson8bb9e482009-07-26 00:39:34 +00003219 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
Bob Wilson20d10812009-10-21 21:36:27 +00003220 if (EltSz == 64)
3221 return false;
3222
3223 unsigned NumElts = VT.getVectorNumElements();
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003224 unsigned BlockElts = M[0] + 1;
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003225 // If the first shuffle index is UNDEF, be optimistic.
3226 if (M[0] < 0)
3227 BlockElts = BlockSize / EltSz;
Bob Wilson8bb9e482009-07-26 00:39:34 +00003228
3229 if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
3230 return false;
3231
3232 for (unsigned i = 0; i < NumElts; ++i) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003233 if (M[i] < 0) continue; // ignore UNDEF indices
3234 if ((unsigned) M[i] != (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts))
Bob Wilson8bb9e482009-07-26 00:39:34 +00003235 return false;
3236 }
3237
3238 return true;
3239}
3240
Bob Wilsonc692cb72009-08-21 20:54:19 +00003241static bool isVTRNMask(const SmallVectorImpl<int> &M, EVT VT,
3242 unsigned &WhichResult) {
Bob Wilson20d10812009-10-21 21:36:27 +00003243 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3244 if (EltSz == 64)
3245 return false;
3246
Bob Wilsonc692cb72009-08-21 20:54:19 +00003247 unsigned NumElts = VT.getVectorNumElements();
3248 WhichResult = (M[0] == 0 ? 0 : 1);
3249 for (unsigned i = 0; i < NumElts; i += 2) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003250 if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
3251 (M[i+1] >= 0 && (unsigned) M[i+1] != i + NumElts + WhichResult))
Bob Wilsonc692cb72009-08-21 20:54:19 +00003252 return false;
3253 }
3254 return true;
3255}
3256
Bob Wilson324f4f12009-12-03 06:40:55 +00003257/// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of
3258/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
3259/// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
3260static bool isVTRN_v_undef_Mask(const SmallVectorImpl<int> &M, EVT VT,
3261 unsigned &WhichResult) {
3262 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3263 if (EltSz == 64)
3264 return false;
3265
3266 unsigned NumElts = VT.getVectorNumElements();
3267 WhichResult = (M[0] == 0 ? 0 : 1);
3268 for (unsigned i = 0; i < NumElts; i += 2) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003269 if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
3270 (M[i+1] >= 0 && (unsigned) M[i+1] != i + WhichResult))
Bob Wilson324f4f12009-12-03 06:40:55 +00003271 return false;
3272 }
3273 return true;
3274}
3275
Bob Wilsonc692cb72009-08-21 20:54:19 +00003276static bool isVUZPMask(const SmallVectorImpl<int> &M, EVT VT,
3277 unsigned &WhichResult) {
Bob Wilson20d10812009-10-21 21:36:27 +00003278 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3279 if (EltSz == 64)
3280 return false;
3281
Bob Wilsonc692cb72009-08-21 20:54:19 +00003282 unsigned NumElts = VT.getVectorNumElements();
3283 WhichResult = (M[0] == 0 ? 0 : 1);
3284 for (unsigned i = 0; i != NumElts; ++i) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003285 if (M[i] < 0) continue; // ignore UNDEF indices
Bob Wilsonc692cb72009-08-21 20:54:19 +00003286 if ((unsigned) M[i] != 2 * i + WhichResult)
3287 return false;
3288 }
3289
3290 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
Bob Wilson20d10812009-10-21 21:36:27 +00003291 if (VT.is64BitVector() && EltSz == 32)
Bob Wilsonc692cb72009-08-21 20:54:19 +00003292 return false;
3293
3294 return true;
3295}
3296
Bob Wilson324f4f12009-12-03 06:40:55 +00003297/// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of
3298/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
3299/// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
3300static bool isVUZP_v_undef_Mask(const SmallVectorImpl<int> &M, EVT VT,
3301 unsigned &WhichResult) {
3302 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3303 if (EltSz == 64)
3304 return false;
3305
3306 unsigned Half = VT.getVectorNumElements() / 2;
3307 WhichResult = (M[0] == 0 ? 0 : 1);
3308 for (unsigned j = 0; j != 2; ++j) {
3309 unsigned Idx = WhichResult;
3310 for (unsigned i = 0; i != Half; ++i) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003311 int MIdx = M[i + j * Half];
3312 if (MIdx >= 0 && (unsigned) MIdx != Idx)
Bob Wilson324f4f12009-12-03 06:40:55 +00003313 return false;
3314 Idx += 2;
3315 }
3316 }
3317
3318 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
3319 if (VT.is64BitVector() && EltSz == 32)
3320 return false;
3321
3322 return true;
3323}
3324
Bob Wilsonc692cb72009-08-21 20:54:19 +00003325static bool isVZIPMask(const SmallVectorImpl<int> &M, EVT VT,
3326 unsigned &WhichResult) {
Bob Wilson20d10812009-10-21 21:36:27 +00003327 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3328 if (EltSz == 64)
3329 return false;
3330
Bob Wilsonc692cb72009-08-21 20:54:19 +00003331 unsigned NumElts = VT.getVectorNumElements();
3332 WhichResult = (M[0] == 0 ? 0 : 1);
3333 unsigned Idx = WhichResult * NumElts / 2;
3334 for (unsigned i = 0; i != NumElts; i += 2) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003335 if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
3336 (M[i+1] >= 0 && (unsigned) M[i+1] != Idx + NumElts))
Bob Wilsonc692cb72009-08-21 20:54:19 +00003337 return false;
3338 Idx += 1;
3339 }
3340
3341 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
Bob Wilson20d10812009-10-21 21:36:27 +00003342 if (VT.is64BitVector() && EltSz == 32)
Bob Wilsonc692cb72009-08-21 20:54:19 +00003343 return false;
3344
3345 return true;
3346}
3347
Bob Wilson324f4f12009-12-03 06:40:55 +00003348/// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of
3349/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
3350/// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
3351static bool isVZIP_v_undef_Mask(const SmallVectorImpl<int> &M, EVT VT,
3352 unsigned &WhichResult) {
3353 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3354 if (EltSz == 64)
3355 return false;
3356
3357 unsigned NumElts = VT.getVectorNumElements();
3358 WhichResult = (M[0] == 0 ? 0 : 1);
3359 unsigned Idx = WhichResult * NumElts / 2;
3360 for (unsigned i = 0; i != NumElts; i += 2) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003361 if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
3362 (M[i+1] >= 0 && (unsigned) M[i+1] != Idx))
Bob Wilson324f4f12009-12-03 06:40:55 +00003363 return false;
3364 Idx += 1;
3365 }
3366
3367 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
3368 if (VT.is64BitVector() && EltSz == 32)
3369 return false;
3370
3371 return true;
3372}
3373
Dale Johannesenf630c712010-07-29 20:10:08 +00003374// If N is an integer constant that can be moved into a register in one
3375// instruction, return an SDValue of such a constant (will become a MOV
3376// instruction). Otherwise return null.
3377static SDValue IsSingleInstrConstant(SDValue N, SelectionDAG &DAG,
3378 const ARMSubtarget *ST, DebugLoc dl) {
3379 uint64_t Val;
3380 if (!isa<ConstantSDNode>(N))
3381 return SDValue();
3382 Val = cast<ConstantSDNode>(N)->getZExtValue();
3383
3384 if (ST->isThumb1Only()) {
3385 if (Val <= 255 || ~Val <= 255)
3386 return DAG.getConstant(Val, MVT::i32);
3387 } else {
3388 if (ARM_AM::getSOImmVal(Val) != -1 || ARM_AM::getSOImmVal(~Val) != -1)
3389 return DAG.getConstant(Val, MVT::i32);
3390 }
3391 return SDValue();
3392}
3393
Bob Wilson5bafff32009-06-22 23:27:02 +00003394// If this is a case we can't handle, return null and let the default
3395// expansion code take care of it.
Jim Grosbach4725ca72010-09-08 03:54:02 +00003396static SDValue LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
Dale Johannesenf630c712010-07-29 20:10:08 +00003397 const ARMSubtarget *ST) {
Bob Wilsond06791f2009-08-13 01:57:47 +00003398 BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
Bob Wilson5bafff32009-06-22 23:27:02 +00003399 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00003400 EVT VT = Op.getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00003401
3402 APInt SplatBits, SplatUndef;
3403 unsigned SplatBitSize;
3404 bool HasAnyUndefs;
3405 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
Anton Korobeynikov71624cc2009-08-29 00:08:18 +00003406 if (SplatBitSize <= 64) {
Bob Wilsond3c42842010-06-14 22:19:57 +00003407 // Check if an immediate VMOV works.
Bob Wilsoncba270d2010-07-13 21:16:48 +00003408 EVT VmovVT;
Bob Wilsond3c42842010-06-14 22:19:57 +00003409 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
Bob Wilsoncba270d2010-07-13 21:16:48 +00003410 SplatUndef.getZExtValue(), SplatBitSize,
3411 DAG, VmovVT, VT.is128BitVector(), true);
3412 if (Val.getNode()) {
3413 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val);
3414 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vmov);
3415 }
Bob Wilson7e3f0d22010-07-14 06:31:50 +00003416
3417 // Try an immediate VMVN.
3418 uint64_t NegatedImm = (SplatBits.getZExtValue() ^
3419 ((1LL << SplatBitSize) - 1));
3420 Val = isNEONModifiedImm(NegatedImm,
3421 SplatUndef.getZExtValue(), SplatBitSize,
3422 DAG, VmovVT, VT.is128BitVector(), false);
3423 if (Val.getNode()) {
3424 SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val);
3425 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vmov);
3426 }
Anton Korobeynikov71624cc2009-08-29 00:08:18 +00003427 }
Bob Wilsoncf661e22009-07-30 00:31:25 +00003428 }
3429
Bob Wilsonbe751cf2010-05-22 00:23:12 +00003430 // Scan through the operands to see if only one value is used.
3431 unsigned NumElts = VT.getVectorNumElements();
3432 bool isOnlyLowElement = true;
3433 bool usesOnlyOneValue = true;
3434 bool isConstant = true;
3435 SDValue Value;
3436 for (unsigned i = 0; i < NumElts; ++i) {
3437 SDValue V = Op.getOperand(i);
3438 if (V.getOpcode() == ISD::UNDEF)
3439 continue;
3440 if (i > 0)
3441 isOnlyLowElement = false;
3442 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
3443 isConstant = false;
3444
3445 if (!Value.getNode())
3446 Value = V;
3447 else if (V != Value)
3448 usesOnlyOneValue = false;
3449 }
3450
3451 if (!Value.getNode())
3452 return DAG.getUNDEF(VT);
3453
3454 if (isOnlyLowElement)
3455 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
3456
Dale Johannesenf630c712010-07-29 20:10:08 +00003457 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3458
Dale Johannesen575cd142010-10-19 20:00:17 +00003459 // Use VDUP for non-constant splats. For f32 constant splats, reduce to
3460 // i32 and try again.
3461 if (usesOnlyOneValue && EltSize <= 32) {
3462 if (!isConstant)
3463 return DAG.getNode(ARMISD::VDUP, dl, VT, Value);
3464 if (VT.getVectorElementType().isFloatingPoint()) {
3465 SmallVector<SDValue, 8> Ops;
3466 for (unsigned i = 0; i < NumElts; ++i)
3467 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32,
3468 Op.getOperand(i)));
3469 SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &Ops[0],
3470 NumElts);
Dale Johannesene4d31592010-10-20 22:03:37 +00003471 Val = LowerBUILD_VECTOR(Val, DAG, ST);
3472 if (Val.getNode())
3473 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Val);
Dale Johannesenf630c712010-07-29 20:10:08 +00003474 }
Dale Johannesen575cd142010-10-19 20:00:17 +00003475 SDValue Val = IsSingleInstrConstant(Value, DAG, ST, dl);
3476 if (Val.getNode())
3477 return DAG.getNode(ARMISD::VDUP, dl, VT, Val);
Dale Johannesenf630c712010-07-29 20:10:08 +00003478 }
3479
3480 // If all elements are constants and the case above didn't get hit, fall back
3481 // to the default expansion, which will generate a load from the constant
3482 // pool.
Bob Wilsonbe751cf2010-05-22 00:23:12 +00003483 if (isConstant)
3484 return SDValue();
3485
Bob Wilsonbe751cf2010-05-22 00:23:12 +00003486 // Vectors with 32- or 64-bit elements can be built by directly assigning
Bob Wilson40cbe7d2010-06-04 00:04:02 +00003487 // the subregisters. Lower it to an ARMISD::BUILD_VECTOR so the operands
3488 // will be legalized.
Bob Wilsonbe751cf2010-05-22 00:23:12 +00003489 if (EltSize >= 32) {
3490 // Do the expansion with floating-point types, since that is what the VFP
3491 // registers are defined to use, and since i64 is not legal.
3492 EVT EltVT = EVT::getFloatingPointVT(EltSize);
3493 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
Bob Wilson40cbe7d2010-06-04 00:04:02 +00003494 SmallVector<SDValue, 8> Ops;
3495 for (unsigned i = 0; i < NumElts; ++i)
3496 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, dl, EltVT, Op.getOperand(i)));
3497 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, &Ops[0],NumElts);
Bob Wilsonbe751cf2010-05-22 00:23:12 +00003498 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Val);
Bob Wilson5bafff32009-06-22 23:27:02 +00003499 }
3500
3501 return SDValue();
3502}
3503
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003504/// isShuffleMaskLegal - Targets can use this to indicate that they only
3505/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
3506/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
3507/// are assumed to be legal.
3508bool
3509ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
3510 EVT VT) const {
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00003511 if (VT.getVectorNumElements() == 4 &&
3512 (VT.is128BitVector() || VT.is64BitVector())) {
3513 unsigned PFIndexes[4];
3514 for (unsigned i = 0; i != 4; ++i) {
3515 if (M[i] < 0)
3516 PFIndexes[i] = 8;
3517 else
3518 PFIndexes[i] = M[i];
3519 }
3520
3521 // Compute the index in the perfect shuffle table.
3522 unsigned PFTableIndex =
3523 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
3524 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
3525 unsigned Cost = (PFEntry >> 30);
3526
3527 if (Cost <= 4)
3528 return true;
3529 }
3530
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003531 bool ReverseVEXT;
Bob Wilsonc692cb72009-08-21 20:54:19 +00003532 unsigned Imm, WhichResult;
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003533
Bob Wilson53dd2452010-06-07 23:53:38 +00003534 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3535 return (EltSize >= 32 ||
3536 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003537 isVREVMask(M, VT, 64) ||
3538 isVREVMask(M, VT, 32) ||
3539 isVREVMask(M, VT, 16) ||
Bob Wilsonc692cb72009-08-21 20:54:19 +00003540 isVEXTMask(M, VT, ReverseVEXT, Imm) ||
3541 isVTRNMask(M, VT, WhichResult) ||
3542 isVUZPMask(M, VT, WhichResult) ||
Bob Wilson324f4f12009-12-03 06:40:55 +00003543 isVZIPMask(M, VT, WhichResult) ||
3544 isVTRN_v_undef_Mask(M, VT, WhichResult) ||
3545 isVUZP_v_undef_Mask(M, VT, WhichResult) ||
3546 isVZIP_v_undef_Mask(M, VT, WhichResult));
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003547}
3548
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00003549/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
3550/// the specified operations to build the shuffle.
3551static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
3552 SDValue RHS, SelectionDAG &DAG,
3553 DebugLoc dl) {
3554 unsigned OpNum = (PFEntry >> 26) & 0x0F;
3555 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
3556 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
3557
3558 enum {
3559 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
3560 OP_VREV,
3561 OP_VDUP0,
3562 OP_VDUP1,
3563 OP_VDUP2,
3564 OP_VDUP3,
3565 OP_VEXT1,
3566 OP_VEXT2,
3567 OP_VEXT3,
3568 OP_VUZPL, // VUZP, left result
3569 OP_VUZPR, // VUZP, right result
3570 OP_VZIPL, // VZIP, left result
3571 OP_VZIPR, // VZIP, right result
3572 OP_VTRNL, // VTRN, left result
3573 OP_VTRNR // VTRN, right result
3574 };
3575
3576 if (OpNum == OP_COPY) {
3577 if (LHSID == (1*9+2)*9+3) return LHS;
3578 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
3579 return RHS;
3580 }
3581
3582 SDValue OpLHS, OpRHS;
3583 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
3584 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
3585 EVT VT = OpLHS.getValueType();
3586
3587 switch (OpNum) {
3588 default: llvm_unreachable("Unknown shuffle opcode!");
3589 case OP_VREV:
3590 return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS);
3591 case OP_VDUP0:
3592 case OP_VDUP1:
3593 case OP_VDUP2:
3594 case OP_VDUP3:
3595 return DAG.getNode(ARMISD::VDUPLANE, dl, VT,
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00003596 OpLHS, DAG.getConstant(OpNum-OP_VDUP0, MVT::i32));
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00003597 case OP_VEXT1:
3598 case OP_VEXT2:
3599 case OP_VEXT3:
3600 return DAG.getNode(ARMISD::VEXT, dl, VT,
3601 OpLHS, OpRHS,
3602 DAG.getConstant(OpNum-OP_VEXT1+1, MVT::i32));
3603 case OP_VUZPL:
3604 case OP_VUZPR:
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00003605 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00003606 OpLHS, OpRHS).getValue(OpNum-OP_VUZPL);
3607 case OP_VZIPL:
3608 case OP_VZIPR:
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00003609 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00003610 OpLHS, OpRHS).getValue(OpNum-OP_VZIPL);
3611 case OP_VTRNL:
3612 case OP_VTRNR:
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00003613 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
3614 OpLHS, OpRHS).getValue(OpNum-OP_VTRNL);
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00003615 }
3616}
3617
Bob Wilson5bafff32009-06-22 23:27:02 +00003618static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00003619 SDValue V1 = Op.getOperand(0);
3620 SDValue V2 = Op.getOperand(1);
Bob Wilsond8e17572009-08-12 22:31:50 +00003621 DebugLoc dl = Op.getDebugLoc();
3622 EVT VT = Op.getValueType();
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00003623 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003624 SmallVector<int, 8> ShuffleMask;
Bob Wilsond8e17572009-08-12 22:31:50 +00003625
Bob Wilson28865062009-08-13 02:13:04 +00003626 // Convert shuffles that are directly supported on NEON to target-specific
3627 // DAG nodes, instead of keeping them as shuffles and matching them again
3628 // during code selection. This is more efficient and avoids the possibility
3629 // of inconsistencies between legalization and selection.
Bob Wilsonbfcbb502009-08-13 06:01:30 +00003630 // FIXME: floating-point vectors should be canonicalized to integer vectors
3631 // of the same time so that they get CSEd properly.
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003632 SVN->getMask(ShuffleMask);
3633
Bob Wilson53dd2452010-06-07 23:53:38 +00003634 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3635 if (EltSize <= 32) {
3636 if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) {
3637 int Lane = SVN->getSplatIndex();
3638 // If this is undef splat, generate it via "just" vdup, if possible.
3639 if (Lane == -1) Lane = 0;
Anton Korobeynikov2ae0eec2009-11-02 00:12:06 +00003640
Bob Wilson53dd2452010-06-07 23:53:38 +00003641 if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) {
3642 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
3643 }
3644 return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1,
3645 DAG.getConstant(Lane, MVT::i32));
Bob Wilsonc1d287b2009-08-14 05:13:08 +00003646 }
Bob Wilson53dd2452010-06-07 23:53:38 +00003647
3648 bool ReverseVEXT;
3649 unsigned Imm;
3650 if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) {
3651 if (ReverseVEXT)
3652 std::swap(V1, V2);
3653 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2,
3654 DAG.getConstant(Imm, MVT::i32));
3655 }
3656
3657 if (isVREVMask(ShuffleMask, VT, 64))
3658 return DAG.getNode(ARMISD::VREV64, dl, VT, V1);
3659 if (isVREVMask(ShuffleMask, VT, 32))
3660 return DAG.getNode(ARMISD::VREV32, dl, VT, V1);
3661 if (isVREVMask(ShuffleMask, VT, 16))
3662 return DAG.getNode(ARMISD::VREV16, dl, VT, V1);
3663
3664 // Check for Neon shuffles that modify both input vectors in place.
3665 // If both results are used, i.e., if there are two shuffles with the same
3666 // source operands and with masks corresponding to both results of one of
3667 // these operations, DAG memoization will ensure that a single node is
3668 // used for both shuffles.
3669 unsigned WhichResult;
3670 if (isVTRNMask(ShuffleMask, VT, WhichResult))
3671 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
3672 V1, V2).getValue(WhichResult);
3673 if (isVUZPMask(ShuffleMask, VT, WhichResult))
3674 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
3675 V1, V2).getValue(WhichResult);
3676 if (isVZIPMask(ShuffleMask, VT, WhichResult))
3677 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
3678 V1, V2).getValue(WhichResult);
3679
3680 if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult))
3681 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
3682 V1, V1).getValue(WhichResult);
3683 if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult))
3684 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
3685 V1, V1).getValue(WhichResult);
3686 if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult))
3687 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
3688 V1, V1).getValue(WhichResult);
Bob Wilson0ce37102009-08-14 05:08:32 +00003689 }
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003690
Bob Wilsonc692cb72009-08-21 20:54:19 +00003691 // If the shuffle is not directly supported and it has 4 elements, use
3692 // the PerfectShuffle-generated table to synthesize it from other shuffles.
Bob Wilsonbe751cf2010-05-22 00:23:12 +00003693 unsigned NumElts = VT.getVectorNumElements();
3694 if (NumElts == 4) {
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00003695 unsigned PFIndexes[4];
3696 for (unsigned i = 0; i != 4; ++i) {
3697 if (ShuffleMask[i] < 0)
3698 PFIndexes[i] = 8;
3699 else
3700 PFIndexes[i] = ShuffleMask[i];
3701 }
3702
3703 // Compute the index in the perfect shuffle table.
3704 unsigned PFTableIndex =
3705 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00003706 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
3707 unsigned Cost = (PFEntry >> 30);
3708
3709 if (Cost <= 4)
3710 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
3711 }
Bob Wilsond8e17572009-08-12 22:31:50 +00003712
Bob Wilson40cbe7d2010-06-04 00:04:02 +00003713 // Implement shuffles with 32- or 64-bit elements as ARMISD::BUILD_VECTORs.
Bob Wilsonbe751cf2010-05-22 00:23:12 +00003714 if (EltSize >= 32) {
3715 // Do the expansion with floating-point types, since that is what the VFP
3716 // registers are defined to use, and since i64 is not legal.
3717 EVT EltVT = EVT::getFloatingPointVT(EltSize);
3718 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
3719 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, VecVT, V1);
3720 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, VecVT, V2);
Bob Wilson40cbe7d2010-06-04 00:04:02 +00003721 SmallVector<SDValue, 8> Ops;
Bob Wilsonbe751cf2010-05-22 00:23:12 +00003722 for (unsigned i = 0; i < NumElts; ++i) {
Bob Wilson63b88452010-05-20 18:39:53 +00003723 if (ShuffleMask[i] < 0)
Bob Wilson40cbe7d2010-06-04 00:04:02 +00003724 Ops.push_back(DAG.getUNDEF(EltVT));
3725 else
3726 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
3727 ShuffleMask[i] < (int)NumElts ? V1 : V2,
3728 DAG.getConstant(ShuffleMask[i] & (NumElts-1),
3729 MVT::i32)));
Bob Wilson63b88452010-05-20 18:39:53 +00003730 }
Bob Wilson40cbe7d2010-06-04 00:04:02 +00003731 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, &Ops[0],NumElts);
Bob Wilson63b88452010-05-20 18:39:53 +00003732 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Val);
3733 }
3734
Bob Wilson22cac0d2009-08-14 05:16:33 +00003735 return SDValue();
Bob Wilson5bafff32009-06-22 23:27:02 +00003736}
3737
Bob Wilson5bafff32009-06-22 23:27:02 +00003738static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003739 EVT VT = Op.getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00003740 DebugLoc dl = Op.getDebugLoc();
Bob Wilson5bafff32009-06-22 23:27:02 +00003741 SDValue Vec = Op.getOperand(0);
3742 SDValue Lane = Op.getOperand(1);
Bob Wilson934f98b2009-10-15 23:12:05 +00003743 assert(VT == MVT::i32 &&
3744 Vec.getValueType().getVectorElementType().getSizeInBits() < 32 &&
3745 "unexpected type for custom-lowering vector extract");
3746 return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane);
Bob Wilson5bafff32009-06-22 23:27:02 +00003747}
3748
Bob Wilsona6d65862009-08-03 20:36:38 +00003749static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
3750 // The only time a CONCAT_VECTORS operation can have legal types is when
3751 // two 64-bit vectors are concatenated to a 128-bit vector.
3752 assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 &&
3753 "unexpected CONCAT_VECTORS");
3754 DebugLoc dl = Op.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00003755 SDValue Val = DAG.getUNDEF(MVT::v2f64);
Bob Wilsona6d65862009-08-03 20:36:38 +00003756 SDValue Op0 = Op.getOperand(0);
3757 SDValue Op1 = Op.getOperand(1);
3758 if (Op0.getOpcode() != ISD::UNDEF)
Owen Anderson825b72b2009-08-11 20:47:22 +00003759 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
3760 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f64, Op0),
Bob Wilsona6d65862009-08-03 20:36:38 +00003761 DAG.getIntPtrConstant(0));
3762 if (Op1.getOpcode() != ISD::UNDEF)
Owen Anderson825b72b2009-08-11 20:47:22 +00003763 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
3764 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f64, Op1),
Bob Wilsona6d65862009-08-03 20:36:38 +00003765 DAG.getIntPtrConstant(1));
3766 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Val);
Bob Wilson5bafff32009-06-22 23:27:02 +00003767}
3768
Bob Wilsond0b69cf2010-09-01 23:50:19 +00003769/// SkipExtension - For a node that is either a SIGN_EXTEND, ZERO_EXTEND, or
3770/// an extending load, return the unextended value.
3771static SDValue SkipExtension(SDNode *N, SelectionDAG &DAG) {
3772 if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND)
3773 return N->getOperand(0);
3774 LoadSDNode *LD = cast<LoadSDNode>(N);
3775 return DAG.getLoad(LD->getMemoryVT(), N->getDebugLoc(), LD->getChain(),
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00003776 LD->getBasePtr(), LD->getPointerInfo(), LD->isVolatile(),
Bob Wilsond0b69cf2010-09-01 23:50:19 +00003777 LD->isNonTemporal(), LD->getAlignment());
3778}
3779
3780static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) {
3781 // Multiplications are only custom-lowered for 128-bit vectors so that
3782 // VMULL can be detected. Otherwise v2i64 multiplications are not legal.
3783 EVT VT = Op.getValueType();
3784 assert(VT.is128BitVector() && "unexpected type for custom-lowering ISD::MUL");
3785 SDNode *N0 = Op.getOperand(0).getNode();
3786 SDNode *N1 = Op.getOperand(1).getNode();
3787 unsigned NewOpc = 0;
3788 if ((N0->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N0)) &&
3789 (N1->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N1))) {
3790 NewOpc = ARMISD::VMULLs;
3791 } else if ((N0->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N0)) &&
3792 (N1->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N1))) {
3793 NewOpc = ARMISD::VMULLu;
3794 } else if (VT.getSimpleVT().SimpleTy == MVT::v2i64) {
3795 // Fall through to expand this. It is not legal.
3796 return SDValue();
3797 } else {
3798 // Other vector multiplications are legal.
3799 return Op;
3800 }
3801
3802 // Legalize to a VMULL instruction.
3803 DebugLoc DL = Op.getDebugLoc();
3804 SDValue Op0 = SkipExtension(N0, DAG);
3805 SDValue Op1 = SkipExtension(N1, DAG);
3806
3807 assert(Op0.getValueType().is64BitVector() &&
3808 Op1.getValueType().is64BitVector() &&
3809 "unexpected types for extended operands to VMULL");
3810 return DAG.getNode(NewOpc, DL, VT, Op0, Op1);
3811}
3812
Dan Gohmand858e902010-04-17 15:26:15 +00003813SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Chenga8e29892007-01-19 07:51:42 +00003814 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003815 default: llvm_unreachable("Don't know how to custom lower this!");
Evan Chenga8e29892007-01-19 07:51:42 +00003816 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilsonddb16df2009-10-30 05:45:42 +00003817 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00003818 case ISD::GlobalAddress:
3819 return Subtarget->isTargetDarwin() ? LowerGlobalAddressDarwin(Op, DAG) :
3820 LowerGlobalAddressELF(Op, DAG);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00003821 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendlingde2b1512010-08-11 08:43:16 +00003822 case ISD::SELECT: return LowerSELECT(Op, DAG);
Evan Cheng06b53c02009-11-12 07:13:11 +00003823 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
3824 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00003825 case ISD::BR_JT: return LowerBR_JT(Op, DAG);
Dan Gohman1e93df62010-04-17 14:41:14 +00003826 case ISD::VASTART: return LowerVASTART(Op, DAG);
Jim Grosbach7c03dbd2009-12-14 21:24:16 +00003827 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op, DAG, Subtarget);
Bob Wilson76a312b2010-03-19 22:51:32 +00003828 case ISD::SINT_TO_FP:
3829 case ISD::UINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
3830 case ISD::FP_TO_SINT:
3831 case ISD::FP_TO_UINT: return LowerFP_TO_INT(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00003832 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng2457f2c2010-05-22 01:47:14 +00003833 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Jim Grosbach0e0da732009-05-12 23:59:14 +00003834 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00003835 case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
Jim Grosbach23ff7cf2010-05-26 20:22:18 +00003836 case ISD::EH_SJLJ_SETJMP: return LowerEH_SJLJ_SETJMP(Op, DAG);
Jim Grosbach5eb19512010-05-22 01:06:18 +00003837 case ISD::EH_SJLJ_LONGJMP: return LowerEH_SJLJ_LONGJMP(Op, DAG);
Jim Grosbache4ad3872010-10-19 23:27:08 +00003838 case ISD::EH_SJLJ_DISPATCHSETUP: return LowerEH_SJLJ_DISPATCHSETUP(Op, DAG);
Jim Grosbacha87ded22010-02-08 23:22:00 +00003839 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG,
3840 Subtarget);
Duncan Sands1607f052008-12-01 11:39:25 +00003841 case ISD::BIT_CONVERT: return ExpandBIT_CONVERT(Op.getNode(), DAG);
Bob Wilson5bafff32009-06-22 23:27:02 +00003842 case ISD::SHL:
Chris Lattner27a6c732007-11-24 07:07:01 +00003843 case ISD::SRL:
Bob Wilson5bafff32009-06-22 23:27:02 +00003844 case ISD::SRA: return LowerShift(Op.getNode(), DAG, Subtarget);
Evan Cheng06b53c02009-11-12 07:13:11 +00003845 case ISD::SHL_PARTS: return LowerShiftLeftParts(Op, DAG);
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +00003846 case ISD::SRL_PARTS:
Evan Cheng06b53c02009-11-12 07:13:11 +00003847 case ISD::SRA_PARTS: return LowerShiftRightParts(Op, DAG);
Jim Grosbach3482c802010-01-18 19:58:49 +00003848 case ISD::CTTZ: return LowerCTTZ(Op.getNode(), DAG, Subtarget);
Bob Wilson5bafff32009-06-22 23:27:02 +00003849 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Dale Johannesenf630c712010-07-29 20:10:08 +00003850 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG, Subtarget);
Bob Wilson5bafff32009-06-22 23:27:02 +00003851 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
Bob Wilson5bafff32009-06-22 23:27:02 +00003852 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
Bob Wilsona6d65862009-08-03 20:36:38 +00003853 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Bob Wilsonb31a11b2010-08-20 04:54:02 +00003854 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Bob Wilsond0b69cf2010-09-01 23:50:19 +00003855 case ISD::MUL: return LowerMUL(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00003856 }
Dan Gohman475871a2008-07-27 21:46:04 +00003857 return SDValue();
Evan Chenga8e29892007-01-19 07:51:42 +00003858}
3859
Duncan Sands1607f052008-12-01 11:39:25 +00003860/// ReplaceNodeResults - Replace the results of node with an illegal result
3861/// type with new values built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00003862void ARMTargetLowering::ReplaceNodeResults(SDNode *N,
3863 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00003864 SelectionDAG &DAG) const {
Bob Wilson164cd8b2010-04-14 20:45:23 +00003865 SDValue Res;
Chris Lattner27a6c732007-11-24 07:07:01 +00003866 switch (N->getOpcode()) {
Duncan Sands1607f052008-12-01 11:39:25 +00003867 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003868 llvm_unreachable("Don't know how to custom expand this!");
Bob Wilson164cd8b2010-04-14 20:45:23 +00003869 break;
Duncan Sands1607f052008-12-01 11:39:25 +00003870 case ISD::BIT_CONVERT:
Bob Wilson164cd8b2010-04-14 20:45:23 +00003871 Res = ExpandBIT_CONVERT(N, DAG);
3872 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00003873 case ISD::SRL:
Bob Wilson164cd8b2010-04-14 20:45:23 +00003874 case ISD::SRA:
3875 Res = LowerShift(N, DAG, Subtarget);
3876 break;
Duncan Sands1607f052008-12-01 11:39:25 +00003877 }
Bob Wilson164cd8b2010-04-14 20:45:23 +00003878 if (Res.getNode())
3879 Results.push_back(Res);
Chris Lattner27a6c732007-11-24 07:07:01 +00003880}
Chris Lattner27a6c732007-11-24 07:07:01 +00003881
Evan Chenga8e29892007-01-19 07:51:42 +00003882//===----------------------------------------------------------------------===//
3883// ARM Scheduler Hooks
3884//===----------------------------------------------------------------------===//
3885
3886MachineBasicBlock *
Jim Grosbache801dc42009-12-12 01:40:06 +00003887ARMTargetLowering::EmitAtomicCmpSwap(MachineInstr *MI,
3888 MachineBasicBlock *BB,
3889 unsigned Size) const {
Jim Grosbach5278eb82009-12-11 01:42:04 +00003890 unsigned dest = MI->getOperand(0).getReg();
3891 unsigned ptr = MI->getOperand(1).getReg();
3892 unsigned oldval = MI->getOperand(2).getReg();
3893 unsigned newval = MI->getOperand(3).getReg();
3894 unsigned scratch = BB->getParent()->getRegInfo()
3895 .createVirtualRegister(ARM::GPRRegisterClass);
3896 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
3897 DebugLoc dl = MI->getDebugLoc();
Jim Grosbacha36c8f22009-12-14 20:14:59 +00003898 bool isThumb2 = Subtarget->isThumb2();
Jim Grosbach5278eb82009-12-11 01:42:04 +00003899
3900 unsigned ldrOpc, strOpc;
3901 switch (Size) {
3902 default: llvm_unreachable("unsupported size for AtomicCmpSwap!");
Jim Grosbacha36c8f22009-12-14 20:14:59 +00003903 case 1:
3904 ldrOpc = isThumb2 ? ARM::t2LDREXB : ARM::LDREXB;
3905 strOpc = isThumb2 ? ARM::t2LDREXB : ARM::STREXB;
3906 break;
3907 case 2:
3908 ldrOpc = isThumb2 ? ARM::t2LDREXH : ARM::LDREXH;
3909 strOpc = isThumb2 ? ARM::t2STREXH : ARM::STREXH;
3910 break;
3911 case 4:
3912 ldrOpc = isThumb2 ? ARM::t2LDREX : ARM::LDREX;
3913 strOpc = isThumb2 ? ARM::t2STREX : ARM::STREX;
3914 break;
Jim Grosbach5278eb82009-12-11 01:42:04 +00003915 }
3916
3917 MachineFunction *MF = BB->getParent();
3918 const BasicBlock *LLVM_BB = BB->getBasicBlock();
3919 MachineFunction::iterator It = BB;
3920 ++It; // insert the new blocks after the current block
3921
3922 MachineBasicBlock *loop1MBB = MF->CreateMachineBasicBlock(LLVM_BB);
3923 MachineBasicBlock *loop2MBB = MF->CreateMachineBasicBlock(LLVM_BB);
3924 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
3925 MF->insert(It, loop1MBB);
3926 MF->insert(It, loop2MBB);
3927 MF->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00003928
3929 // Transfer the remainder of BB and its successor edges to exitMBB.
3930 exitMBB->splice(exitMBB->begin(), BB,
3931 llvm::next(MachineBasicBlock::iterator(MI)),
3932 BB->end());
3933 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Jim Grosbach5278eb82009-12-11 01:42:04 +00003934
3935 // thisMBB:
3936 // ...
3937 // fallthrough --> loop1MBB
3938 BB->addSuccessor(loop1MBB);
3939
3940 // loop1MBB:
3941 // ldrex dest, [ptr]
3942 // cmp dest, oldval
3943 // bne exitMBB
3944 BB = loop1MBB;
3945 AddDefaultPred(BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr));
Jim Grosbacha36c8f22009-12-14 20:14:59 +00003946 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
Jim Grosbach5278eb82009-12-11 01:42:04 +00003947 .addReg(dest).addReg(oldval));
Jim Grosbacha36c8f22009-12-14 20:14:59 +00003948 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
3949 .addMBB(exitMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
Jim Grosbach5278eb82009-12-11 01:42:04 +00003950 BB->addSuccessor(loop2MBB);
3951 BB->addSuccessor(exitMBB);
3952
3953 // loop2MBB:
3954 // strex scratch, newval, [ptr]
3955 // cmp scratch, #0
3956 // bne loop1MBB
3957 BB = loop2MBB;
3958 AddDefaultPred(BuildMI(BB, dl, TII->get(strOpc), scratch).addReg(newval)
3959 .addReg(ptr));
Jim Grosbacha36c8f22009-12-14 20:14:59 +00003960 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
Jim Grosbach5278eb82009-12-11 01:42:04 +00003961 .addReg(scratch).addImm(0));
Jim Grosbacha36c8f22009-12-14 20:14:59 +00003962 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
3963 .addMBB(loop1MBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
Jim Grosbach5278eb82009-12-11 01:42:04 +00003964 BB->addSuccessor(loop1MBB);
3965 BB->addSuccessor(exitMBB);
3966
3967 // exitMBB:
3968 // ...
3969 BB = exitMBB;
Jim Grosbach5efaed32010-01-15 00:18:34 +00003970
Dan Gohman14152b42010-07-06 20:24:04 +00003971 MI->eraseFromParent(); // The instruction is gone now.
Jim Grosbach5efaed32010-01-15 00:18:34 +00003972
Jim Grosbach5278eb82009-12-11 01:42:04 +00003973 return BB;
3974}
3975
3976MachineBasicBlock *
Jim Grosbache801dc42009-12-12 01:40:06 +00003977ARMTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
3978 unsigned Size, unsigned BinOpcode) const {
Jim Grosbachc3c23542009-12-14 04:22:04 +00003979 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
3980 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
3981
3982 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Jim Grosbach867bbbf2010-01-15 00:22:18 +00003983 MachineFunction *MF = BB->getParent();
Jim Grosbachc3c23542009-12-14 04:22:04 +00003984 MachineFunction::iterator It = BB;
3985 ++It;
3986
3987 unsigned dest = MI->getOperand(0).getReg();
3988 unsigned ptr = MI->getOperand(1).getReg();
3989 unsigned incr = MI->getOperand(2).getReg();
3990 DebugLoc dl = MI->getDebugLoc();
Rafael Espindolafda60d32009-12-18 16:59:39 +00003991
Jim Grosbacha36c8f22009-12-14 20:14:59 +00003992 bool isThumb2 = Subtarget->isThumb2();
Jim Grosbachc3c23542009-12-14 04:22:04 +00003993 unsigned ldrOpc, strOpc;
3994 switch (Size) {
3995 default: llvm_unreachable("unsupported size for AtomicCmpSwap!");
Jim Grosbacha36c8f22009-12-14 20:14:59 +00003996 case 1:
3997 ldrOpc = isThumb2 ? ARM::t2LDREXB : ARM::LDREXB;
Jakob Stoklund Olesen15913c92010-01-13 19:54:39 +00003998 strOpc = isThumb2 ? ARM::t2STREXB : ARM::STREXB;
Jim Grosbacha36c8f22009-12-14 20:14:59 +00003999 break;
4000 case 2:
4001 ldrOpc = isThumb2 ? ARM::t2LDREXH : ARM::LDREXH;
4002 strOpc = isThumb2 ? ARM::t2STREXH : ARM::STREXH;
4003 break;
4004 case 4:
4005 ldrOpc = isThumb2 ? ARM::t2LDREX : ARM::LDREX;
4006 strOpc = isThumb2 ? ARM::t2STREX : ARM::STREX;
4007 break;
Jim Grosbachc3c23542009-12-14 04:22:04 +00004008 }
4009
Jim Grosbach867bbbf2010-01-15 00:22:18 +00004010 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
4011 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
4012 MF->insert(It, loopMBB);
4013 MF->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00004014
4015 // Transfer the remainder of BB and its successor edges to exitMBB.
4016 exitMBB->splice(exitMBB->begin(), BB,
4017 llvm::next(MachineBasicBlock::iterator(MI)),
4018 BB->end());
4019 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Jim Grosbachc3c23542009-12-14 04:22:04 +00004020
Jim Grosbach867bbbf2010-01-15 00:22:18 +00004021 MachineRegisterInfo &RegInfo = MF->getRegInfo();
Jim Grosbachc3c23542009-12-14 04:22:04 +00004022 unsigned scratch = RegInfo.createVirtualRegister(ARM::GPRRegisterClass);
4023 unsigned scratch2 = (!BinOpcode) ? incr :
4024 RegInfo.createVirtualRegister(ARM::GPRRegisterClass);
4025
4026 // thisMBB:
4027 // ...
4028 // fallthrough --> loopMBB
4029 BB->addSuccessor(loopMBB);
4030
4031 // loopMBB:
4032 // ldrex dest, ptr
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004033 // <binop> scratch2, dest, incr
4034 // strex scratch, scratch2, ptr
Jim Grosbachc3c23542009-12-14 04:22:04 +00004035 // cmp scratch, #0
4036 // bne- loopMBB
4037 // fallthrough --> exitMBB
4038 BB = loopMBB;
4039 AddDefaultPred(BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr));
Jim Grosbachc67b5562009-12-15 00:12:35 +00004040 if (BinOpcode) {
4041 // operand order needs to go the other way for NAND
4042 if (BinOpcode == ARM::BICrr || BinOpcode == ARM::t2BICrr)
4043 AddDefaultPred(BuildMI(BB, dl, TII->get(BinOpcode), scratch2).
4044 addReg(incr).addReg(dest)).addReg(0);
4045 else
4046 AddDefaultPred(BuildMI(BB, dl, TII->get(BinOpcode), scratch2).
4047 addReg(dest).addReg(incr)).addReg(0);
4048 }
Jim Grosbachc3c23542009-12-14 04:22:04 +00004049
4050 AddDefaultPred(BuildMI(BB, dl, TII->get(strOpc), scratch).addReg(scratch2)
4051 .addReg(ptr));
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004052 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
Jim Grosbachc3c23542009-12-14 04:22:04 +00004053 .addReg(scratch).addImm(0));
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004054 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
4055 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
Jim Grosbachc3c23542009-12-14 04:22:04 +00004056
4057 BB->addSuccessor(loopMBB);
4058 BB->addSuccessor(exitMBB);
4059
4060 // exitMBB:
4061 // ...
4062 BB = exitMBB;
Evan Cheng102ebf12009-12-21 19:53:39 +00004063
Dan Gohman14152b42010-07-06 20:24:04 +00004064 MI->eraseFromParent(); // The instruction is gone now.
Evan Cheng102ebf12009-12-21 19:53:39 +00004065
Jim Grosbachc3c23542009-12-14 04:22:04 +00004066 return BB;
Jim Grosbache801dc42009-12-12 01:40:06 +00004067}
4068
Evan Cheng218977b2010-07-13 19:27:42 +00004069static
4070MachineBasicBlock *OtherSucc(MachineBasicBlock *MBB, MachineBasicBlock *Succ) {
4071 for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
4072 E = MBB->succ_end(); I != E; ++I)
4073 if (*I != Succ)
4074 return *I;
4075 llvm_unreachable("Expecting a BB with two successors!");
4076}
4077
Jim Grosbache801dc42009-12-12 01:40:06 +00004078MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00004079ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00004080 MachineBasicBlock *BB) const {
Evan Chenga8e29892007-01-19 07:51:42 +00004081 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Dale Johannesenb6728402009-02-13 02:25:56 +00004082 DebugLoc dl = MI->getDebugLoc();
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004083 bool isThumb2 = Subtarget->isThumb2();
Evan Chenga8e29892007-01-19 07:51:42 +00004084 switch (MI->getOpcode()) {
Evan Cheng86198642009-08-07 00:34:42 +00004085 default:
Jim Grosbach5278eb82009-12-11 01:42:04 +00004086 MI->dump();
Evan Cheng86198642009-08-07 00:34:42 +00004087 llvm_unreachable("Unexpected instr type to insert");
Jim Grosbach5278eb82009-12-11 01:42:04 +00004088
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004089 case ARM::ATOMIC_LOAD_ADD_I8:
4090 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr);
4091 case ARM::ATOMIC_LOAD_ADD_I16:
4092 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr);
4093 case ARM::ATOMIC_LOAD_ADD_I32:
4094 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr);
Jim Grosbach5278eb82009-12-11 01:42:04 +00004095
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004096 case ARM::ATOMIC_LOAD_AND_I8:
4097 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr);
4098 case ARM::ATOMIC_LOAD_AND_I16:
4099 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr);
4100 case ARM::ATOMIC_LOAD_AND_I32:
4101 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr);
Jim Grosbach5278eb82009-12-11 01:42:04 +00004102
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004103 case ARM::ATOMIC_LOAD_OR_I8:
4104 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr);
4105 case ARM::ATOMIC_LOAD_OR_I16:
4106 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr);
4107 case ARM::ATOMIC_LOAD_OR_I32:
4108 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr);
Jim Grosbach5278eb82009-12-11 01:42:04 +00004109
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004110 case ARM::ATOMIC_LOAD_XOR_I8:
4111 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2EORrr : ARM::EORrr);
4112 case ARM::ATOMIC_LOAD_XOR_I16:
4113 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2EORrr : ARM::EORrr);
4114 case ARM::ATOMIC_LOAD_XOR_I32:
4115 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2EORrr : ARM::EORrr);
Jim Grosbache801dc42009-12-12 01:40:06 +00004116
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004117 case ARM::ATOMIC_LOAD_NAND_I8:
4118 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2BICrr : ARM::BICrr);
4119 case ARM::ATOMIC_LOAD_NAND_I16:
4120 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2BICrr : ARM::BICrr);
4121 case ARM::ATOMIC_LOAD_NAND_I32:
4122 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2BICrr : ARM::BICrr);
Jim Grosbache801dc42009-12-12 01:40:06 +00004123
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004124 case ARM::ATOMIC_LOAD_SUB_I8:
4125 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr);
4126 case ARM::ATOMIC_LOAD_SUB_I16:
4127 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr);
4128 case ARM::ATOMIC_LOAD_SUB_I32:
4129 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr);
Jim Grosbache801dc42009-12-12 01:40:06 +00004130
Jim Grosbacha36c8f22009-12-14 20:14:59 +00004131 case ARM::ATOMIC_SWAP_I8: return EmitAtomicBinary(MI, BB, 1, 0);
4132 case ARM::ATOMIC_SWAP_I16: return EmitAtomicBinary(MI, BB, 2, 0);
4133 case ARM::ATOMIC_SWAP_I32: return EmitAtomicBinary(MI, BB, 4, 0);
Jim Grosbache801dc42009-12-12 01:40:06 +00004134
4135 case ARM::ATOMIC_CMP_SWAP_I8: return EmitAtomicCmpSwap(MI, BB, 1);
4136 case ARM::ATOMIC_CMP_SWAP_I16: return EmitAtomicCmpSwap(MI, BB, 2);
4137 case ARM::ATOMIC_CMP_SWAP_I32: return EmitAtomicCmpSwap(MI, BB, 4);
Jim Grosbach5278eb82009-12-11 01:42:04 +00004138
Evan Cheng007ea272009-08-12 05:17:19 +00004139 case ARM::tMOVCCr_pseudo: {
Evan Chenga8e29892007-01-19 07:51:42 +00004140 // To "insert" a SELECT_CC instruction, we actually have to insert the
4141 // diamond control-flow pattern. The incoming instruction knows the
4142 // destination vreg to set, the condition code register to branch on, the
4143 // true/false values to select between, and a branch opcode to use.
4144 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00004145 MachineFunction::iterator It = BB;
Evan Chenga8e29892007-01-19 07:51:42 +00004146 ++It;
4147
4148 // thisMBB:
4149 // ...
4150 // TrueVal = ...
4151 // cmpTY ccX, r1, r2
4152 // bCC copy1MBB
4153 // fallthrough --> copy0MBB
4154 MachineBasicBlock *thisMBB = BB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00004155 MachineFunction *F = BB->getParent();
4156 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
4157 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dan Gohman258c58c2010-07-06 15:49:48 +00004158 F->insert(It, copy0MBB);
4159 F->insert(It, sinkMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00004160
4161 // Transfer the remainder of BB and its successor edges to sinkMBB.
4162 sinkMBB->splice(sinkMBB->begin(), BB,
4163 llvm::next(MachineBasicBlock::iterator(MI)),
4164 BB->end());
4165 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
4166
Dan Gohman258c58c2010-07-06 15:49:48 +00004167 BB->addSuccessor(copy0MBB);
4168 BB->addSuccessor(sinkMBB);
Dan Gohmanb81c7712010-07-06 15:18:19 +00004169
Dan Gohman14152b42010-07-06 20:24:04 +00004170 BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB)
4171 .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
4172
Evan Chenga8e29892007-01-19 07:51:42 +00004173 // copy0MBB:
4174 // %FalseValue = ...
4175 // # fallthrough to sinkMBB
4176 BB = copy0MBB;
4177
4178 // Update machine-CFG edges
4179 BB->addSuccessor(sinkMBB);
4180
4181 // sinkMBB:
4182 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
4183 // ...
4184 BB = sinkMBB;
Dan Gohman14152b42010-07-06 20:24:04 +00004185 BuildMI(*BB, BB->begin(), dl,
4186 TII->get(ARM::PHI), MI->getOperand(0).getReg())
Evan Chenga8e29892007-01-19 07:51:42 +00004187 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
4188 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
4189
Dan Gohman14152b42010-07-06 20:24:04 +00004190 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Chenga8e29892007-01-19 07:51:42 +00004191 return BB;
4192 }
Evan Cheng86198642009-08-07 00:34:42 +00004193
Evan Cheng218977b2010-07-13 19:27:42 +00004194 case ARM::BCCi64:
4195 case ARM::BCCZi64: {
4196 // Compare both parts that make up the double comparison separately for
4197 // equality.
4198 bool RHSisZero = MI->getOpcode() == ARM::BCCZi64;
4199
4200 unsigned LHS1 = MI->getOperand(1).getReg();
4201 unsigned LHS2 = MI->getOperand(2).getReg();
4202 if (RHSisZero) {
4203 AddDefaultPred(BuildMI(BB, dl,
4204 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
4205 .addReg(LHS1).addImm(0));
4206 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
4207 .addReg(LHS2).addImm(0)
4208 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
4209 } else {
4210 unsigned RHS1 = MI->getOperand(3).getReg();
4211 unsigned RHS2 = MI->getOperand(4).getReg();
4212 AddDefaultPred(BuildMI(BB, dl,
4213 TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
4214 .addReg(LHS1).addReg(RHS1));
4215 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
4216 .addReg(LHS2).addReg(RHS2)
4217 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
4218 }
4219
4220 MachineBasicBlock *destMBB = MI->getOperand(RHSisZero ? 3 : 5).getMBB();
4221 MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB);
4222 if (MI->getOperand(0).getImm() == ARMCC::NE)
4223 std::swap(destMBB, exitMBB);
4224
4225 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
4226 .addMBB(destMBB).addImm(ARMCC::EQ).addReg(ARM::CPSR);
4227 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2B : ARM::B))
4228 .addMBB(exitMBB);
4229
4230 MI->eraseFromParent(); // The pseudo instruction is gone now.
4231 return BB;
4232 }
Evan Chenga8e29892007-01-19 07:51:42 +00004233 }
4234}
4235
4236//===----------------------------------------------------------------------===//
4237// ARM Optimization Hooks
4238//===----------------------------------------------------------------------===//
4239
Chris Lattnerd1980a52009-03-12 06:52:53 +00004240static
4241SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp,
4242 TargetLowering::DAGCombinerInfo &DCI) {
Chris Lattnerd1980a52009-03-12 06:52:53 +00004243 SelectionDAG &DAG = DCI.DAG;
4244 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004245 EVT VT = N->getValueType(0);
Chris Lattnerd1980a52009-03-12 06:52:53 +00004246 unsigned Opc = N->getOpcode();
4247 bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC;
4248 SDValue LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1);
4249 SDValue RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2);
4250 ISD::CondCode CC = ISD::SETCC_INVALID;
4251
4252 if (isSlctCC) {
4253 CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get();
4254 } else {
4255 SDValue CCOp = Slct.getOperand(0);
4256 if (CCOp.getOpcode() == ISD::SETCC)
4257 CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get();
4258 }
4259
4260 bool DoXform = false;
4261 bool InvCC = false;
4262 assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) &&
4263 "Bad input!");
4264
4265 if (LHS.getOpcode() == ISD::Constant &&
4266 cast<ConstantSDNode>(LHS)->isNullValue()) {
4267 DoXform = true;
4268 } else if (CC != ISD::SETCC_INVALID &&
4269 RHS.getOpcode() == ISD::Constant &&
4270 cast<ConstantSDNode>(RHS)->isNullValue()) {
4271 std::swap(LHS, RHS);
4272 SDValue Op0 = Slct.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004273 EVT OpVT = isSlctCC ? Op0.getValueType() :
Chris Lattnerd1980a52009-03-12 06:52:53 +00004274 Op0.getOperand(0).getValueType();
4275 bool isInt = OpVT.isInteger();
4276 CC = ISD::getSetCCInverse(CC, isInt);
4277
4278 if (!TLI.isCondCodeLegal(CC, OpVT))
4279 return SDValue(); // Inverse operator isn't legal.
4280
4281 DoXform = true;
4282 InvCC = true;
4283 }
4284
4285 if (DoXform) {
4286 SDValue Result = DAG.getNode(Opc, RHS.getDebugLoc(), VT, OtherOp, RHS);
4287 if (isSlctCC)
4288 return DAG.getSelectCC(N->getDebugLoc(), OtherOp, Result,
4289 Slct.getOperand(0), Slct.getOperand(1), CC);
4290 SDValue CCOp = Slct.getOperand(0);
4291 if (InvCC)
4292 CCOp = DAG.getSetCC(Slct.getDebugLoc(), CCOp.getValueType(),
4293 CCOp.getOperand(0), CCOp.getOperand(1), CC);
4294 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4295 CCOp, OtherOp, Result);
4296 }
4297 return SDValue();
4298}
4299
Bob Wilson3d5792a2010-07-29 20:34:14 +00004300/// PerformADDCombineWithOperands - Try DAG combinations for an ADD with
4301/// operands N0 and N1. This is a helper for PerformADDCombine that is
4302/// called with the default operands, and if that fails, with commuted
4303/// operands.
4304static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1,
4305 TargetLowering::DAGCombinerInfo &DCI) {
Chris Lattnerd1980a52009-03-12 06:52:53 +00004306 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
4307 if (N0.getOpcode() == ISD::SELECT && N0.getNode()->hasOneUse()) {
4308 SDValue Result = combineSelectAndUse(N, N0, N1, DCI);
4309 if (Result.getNode()) return Result;
4310 }
Chris Lattnerd1980a52009-03-12 06:52:53 +00004311 return SDValue();
4312}
4313
Bob Wilson3d5792a2010-07-29 20:34:14 +00004314/// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
4315///
4316static SDValue PerformADDCombine(SDNode *N,
4317 TargetLowering::DAGCombinerInfo &DCI) {
4318 SDValue N0 = N->getOperand(0);
4319 SDValue N1 = N->getOperand(1);
4320
4321 // First try with the default operand order.
4322 SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI);
4323 if (Result.getNode())
4324 return Result;
4325
4326 // If that didn't work, try again with the operands commuted.
4327 return PerformADDCombineWithOperands(N, N1, N0, DCI);
4328}
4329
Chris Lattnerd1980a52009-03-12 06:52:53 +00004330/// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB.
Bob Wilson3d5792a2010-07-29 20:34:14 +00004331///
Chris Lattnerd1980a52009-03-12 06:52:53 +00004332static SDValue PerformSUBCombine(SDNode *N,
4333 TargetLowering::DAGCombinerInfo &DCI) {
Bob Wilson3d5792a2010-07-29 20:34:14 +00004334 SDValue N0 = N->getOperand(0);
4335 SDValue N1 = N->getOperand(1);
Bob Wilson2dc4f542009-03-20 22:42:55 +00004336
Chris Lattnerd1980a52009-03-12 06:52:53 +00004337 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
4338 if (N1.getOpcode() == ISD::SELECT && N1.getNode()->hasOneUse()) {
4339 SDValue Result = combineSelectAndUse(N, N1, N0, DCI);
4340 if (Result.getNode()) return Result;
4341 }
Bob Wilson2dc4f542009-03-20 22:42:55 +00004342
Chris Lattnerd1980a52009-03-12 06:52:53 +00004343 return SDValue();
4344}
4345
Anton Korobeynikova9790d72010-05-15 18:16:59 +00004346static SDValue PerformMULCombine(SDNode *N,
4347 TargetLowering::DAGCombinerInfo &DCI,
4348 const ARMSubtarget *Subtarget) {
4349 SelectionDAG &DAG = DCI.DAG;
4350
4351 if (Subtarget->isThumb1Only())
4352 return SDValue();
4353
Anton Korobeynikova9790d72010-05-15 18:16:59 +00004354 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
4355 return SDValue();
4356
4357 EVT VT = N->getValueType(0);
4358 if (VT != MVT::i32)
4359 return SDValue();
4360
4361 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
4362 if (!C)
4363 return SDValue();
4364
4365 uint64_t MulAmt = C->getZExtValue();
4366 unsigned ShiftAmt = CountTrailingZeros_64(MulAmt);
4367 ShiftAmt = ShiftAmt & (32 - 1);
4368 SDValue V = N->getOperand(0);
4369 DebugLoc DL = N->getDebugLoc();
Anton Korobeynikova9790d72010-05-15 18:16:59 +00004370
Anton Korobeynikov4878b842010-05-16 08:54:20 +00004371 SDValue Res;
4372 MulAmt >>= ShiftAmt;
4373 if (isPowerOf2_32(MulAmt - 1)) {
4374 // (mul x, 2^N + 1) => (add (shl x, N), x)
4375 Res = DAG.getNode(ISD::ADD, DL, VT,
4376 V, DAG.getNode(ISD::SHL, DL, VT,
4377 V, DAG.getConstant(Log2_32(MulAmt-1),
4378 MVT::i32)));
4379 } else if (isPowerOf2_32(MulAmt + 1)) {
4380 // (mul x, 2^N - 1) => (sub (shl x, N), x)
4381 Res = DAG.getNode(ISD::SUB, DL, VT,
4382 DAG.getNode(ISD::SHL, DL, VT,
4383 V, DAG.getConstant(Log2_32(MulAmt+1),
4384 MVT::i32)),
4385 V);
4386 } else
Anton Korobeynikova9790d72010-05-15 18:16:59 +00004387 return SDValue();
Anton Korobeynikov4878b842010-05-16 08:54:20 +00004388
4389 if (ShiftAmt != 0)
4390 Res = DAG.getNode(ISD::SHL, DL, VT, Res,
4391 DAG.getConstant(ShiftAmt, MVT::i32));
Anton Korobeynikova9790d72010-05-15 18:16:59 +00004392
4393 // Do not add new nodes to DAG combiner worklist.
Anton Korobeynikov4878b842010-05-16 08:54:20 +00004394 DCI.CombineTo(N, Res, false);
Anton Korobeynikova9790d72010-05-15 18:16:59 +00004395 return SDValue();
4396}
4397
Jim Grosbach469bbdb2010-07-16 23:05:05 +00004398/// PerformORCombine - Target-specific dag combine xforms for ISD::OR
4399static SDValue PerformORCombine(SDNode *N,
4400 TargetLowering::DAGCombinerInfo &DCI,
4401 const ARMSubtarget *Subtarget) {
Jim Grosbach54238562010-07-17 03:30:54 +00004402 // Try to use the ARM/Thumb2 BFI (bitfield insert) instruction when
4403 // reasonable.
4404
Jim Grosbach469bbdb2010-07-16 23:05:05 +00004405 // BFI is only available on V6T2+
4406 if (Subtarget->isThumb1Only() || !Subtarget->hasV6T2Ops())
4407 return SDValue();
4408
4409 SelectionDAG &DAG = DCI.DAG;
4410 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Jim Grosbach54238562010-07-17 03:30:54 +00004411 DebugLoc DL = N->getDebugLoc();
4412 // 1) or (and A, mask), val => ARMbfi A, val, mask
4413 // iff (val & mask) == val
4414 //
4415 // 2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
4416 // 2a) iff isBitFieldInvertedMask(mask) && isBitFieldInvertedMask(~mask2)
4417 // && CountPopulation_32(mask) == CountPopulation_32(~mask2)
4418 // 2b) iff isBitFieldInvertedMask(~mask) && isBitFieldInvertedMask(mask2)
4419 // && CountPopulation_32(mask) == CountPopulation_32(~mask2)
4420 // (i.e., copy a bitfield value into another bitfield of the same width)
4421 if (N0.getOpcode() != ISD::AND)
Jim Grosbach469bbdb2010-07-16 23:05:05 +00004422 return SDValue();
4423
4424 EVT VT = N->getValueType(0);
4425 if (VT != MVT::i32)
4426 return SDValue();
4427
Jim Grosbach54238562010-07-17 03:30:54 +00004428
Jim Grosbach469bbdb2010-07-16 23:05:05 +00004429 // The value and the mask need to be constants so we can verify this is
4430 // actually a bitfield set. If the mask is 0xffff, we can do better
4431 // via a movt instruction, so don't use BFI in that case.
4432 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4433 if (!C)
4434 return SDValue();
4435 unsigned Mask = C->getZExtValue();
4436 if (Mask == 0xffff)
4437 return SDValue();
Jim Grosbach54238562010-07-17 03:30:54 +00004438 SDValue Res;
4439 // Case (1): or (and A, mask), val => ARMbfi A, val, mask
4440 if ((C = dyn_cast<ConstantSDNode>(N1))) {
4441 unsigned Val = C->getZExtValue();
4442 if (!ARM::isBitFieldInvertedMask(Mask) || (Val & ~Mask) != Val)
4443 return SDValue();
4444 Val >>= CountTrailingZeros_32(~Mask);
Jim Grosbach469bbdb2010-07-16 23:05:05 +00004445
Jim Grosbach54238562010-07-17 03:30:54 +00004446 Res = DAG.getNode(ARMISD::BFI, DL, VT, N0.getOperand(0),
4447 DAG.getConstant(Val, MVT::i32),
4448 DAG.getConstant(Mask, MVT::i32));
Jim Grosbach469bbdb2010-07-16 23:05:05 +00004449
Jim Grosbach54238562010-07-17 03:30:54 +00004450 // Do not add new nodes to DAG combiner worklist.
4451 DCI.CombineTo(N, Res, false);
4452 } else if (N1.getOpcode() == ISD::AND) {
4453 // case (2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
4454 C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
4455 if (!C)
4456 return SDValue();
4457 unsigned Mask2 = C->getZExtValue();
4458
4459 if (ARM::isBitFieldInvertedMask(Mask) &&
4460 ARM::isBitFieldInvertedMask(~Mask2) &&
4461 (CountPopulation_32(Mask) == CountPopulation_32(~Mask2))) {
4462 // The pack halfword instruction works better for masks that fit it,
4463 // so use that when it's available.
4464 if (Subtarget->hasT2ExtractPack() &&
4465 (Mask == 0xffff || Mask == 0xffff0000))
4466 return SDValue();
4467 // 2a
4468 unsigned lsb = CountTrailingZeros_32(Mask2);
4469 Res = DAG.getNode(ISD::SRL, DL, VT, N1.getOperand(0),
4470 DAG.getConstant(lsb, MVT::i32));
4471 Res = DAG.getNode(ARMISD::BFI, DL, VT, N0.getOperand(0), Res,
4472 DAG.getConstant(Mask, MVT::i32));
4473 // Do not add new nodes to DAG combiner worklist.
4474 DCI.CombineTo(N, Res, false);
4475 } else if (ARM::isBitFieldInvertedMask(~Mask) &&
4476 ARM::isBitFieldInvertedMask(Mask2) &&
4477 (CountPopulation_32(~Mask) == CountPopulation_32(Mask2))) {
4478 // The pack halfword instruction works better for masks that fit it,
4479 // so use that when it's available.
4480 if (Subtarget->hasT2ExtractPack() &&
4481 (Mask2 == 0xffff || Mask2 == 0xffff0000))
4482 return SDValue();
4483 // 2b
4484 unsigned lsb = CountTrailingZeros_32(Mask);
4485 Res = DAG.getNode(ISD::SRL, DL, VT, N0.getOperand(0),
4486 DAG.getConstant(lsb, MVT::i32));
4487 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1.getOperand(0), Res,
4488 DAG.getConstant(Mask2, MVT::i32));
4489 // Do not add new nodes to DAG combiner worklist.
4490 DCI.CombineTo(N, Res, false);
4491 }
4492 }
Jim Grosbach469bbdb2010-07-16 23:05:05 +00004493
4494 return SDValue();
4495}
4496
Bob Wilson0b8ccb82010-09-22 22:09:21 +00004497/// PerformVMOVRRDCombine - Target-specific dag combine xforms for
4498/// ARMISD::VMOVRRD.
4499static SDValue PerformVMOVRRDCombine(SDNode *N,
4500 TargetLowering::DAGCombinerInfo &DCI) {
4501 // vmovrrd(vmovdrr x, y) -> x,y
4502 SDValue InDouble = N->getOperand(0);
4503 if (InDouble.getOpcode() == ARMISD::VMOVDRR)
4504 return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1));
4505 return SDValue();
4506}
4507
4508/// PerformVMOVDRRCombine - Target-specific dag combine xforms for
4509/// ARMISD::VMOVDRR. This is also used for BUILD_VECTORs with 2 operands.
4510static SDValue PerformVMOVDRRCombine(SDNode *N, SelectionDAG &DAG) {
4511 // N=vmovrrd(X); vmovdrr(N:0, N:1) -> bit_convert(X)
4512 SDValue Op0 = N->getOperand(0);
4513 SDValue Op1 = N->getOperand(1);
4514 if (Op0.getOpcode() == ISD::BIT_CONVERT)
4515 Op0 = Op0.getOperand(0);
4516 if (Op1.getOpcode() == ISD::BIT_CONVERT)
4517 Op1 = Op1.getOperand(0);
4518 if (Op0.getOpcode() == ARMISD::VMOVRRD &&
4519 Op0.getNode() == Op1.getNode() &&
4520 Op0.getResNo() == 0 && Op1.getResNo() == 1)
4521 return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(),
4522 N->getValueType(0), Op0.getOperand(0));
4523 return SDValue();
4524}
4525
Bob Wilson75f02882010-09-17 22:59:05 +00004526/// PerformBUILD_VECTORCombine - Target-specific dag combine xforms for
4527/// ISD::BUILD_VECTOR.
4528static SDValue PerformBUILD_VECTORCombine(SDNode *N, SelectionDAG &DAG) {
4529 // build_vector(N=ARMISD::VMOVRRD(X), N:1) -> bit_convert(X):
4530 // VMOVRRD is introduced when legalizing i64 types. It forces the i64 value
4531 // into a pair of GPRs, which is fine when the value is used as a scalar,
4532 // but if the i64 value is converted to a vector, we need to undo the VMOVRRD.
Bob Wilson0b8ccb82010-09-22 22:09:21 +00004533 if (N->getNumOperands() == 2)
4534 return PerformVMOVDRRCombine(N, DAG);
Bob Wilson75f02882010-09-17 22:59:05 +00004535
4536 return SDValue();
4537}
4538
Bob Wilsonf20700c2010-10-27 20:38:28 +00004539/// PerformVECTOR_SHUFFLECombine - Target-specific dag combine xforms for
4540/// ISD::VECTOR_SHUFFLE.
4541static SDValue PerformVECTOR_SHUFFLECombine(SDNode *N, SelectionDAG &DAG) {
4542 // The LLVM shufflevector instruction does not require the shuffle mask
4543 // length to match the operand vector length, but ISD::VECTOR_SHUFFLE does
4544 // have that requirement. When translating to ISD::VECTOR_SHUFFLE, if the
4545 // operands do not match the mask length, they are extended by concatenating
4546 // them with undef vectors. That is probably the right thing for other
4547 // targets, but for NEON it is better to concatenate two double-register
4548 // size vector operands into a single quad-register size vector. Do that
4549 // transformation here:
4550 // shuffle(concat(v1, undef), concat(v2, undef)) ->
4551 // shuffle(concat(v1, v2), undef)
4552 SDValue Op0 = N->getOperand(0);
4553 SDValue Op1 = N->getOperand(1);
4554 if (Op0.getOpcode() != ISD::CONCAT_VECTORS ||
4555 Op1.getOpcode() != ISD::CONCAT_VECTORS ||
4556 Op0.getNumOperands() != 2 ||
4557 Op1.getNumOperands() != 2)
4558 return SDValue();
4559 SDValue Concat0Op1 = Op0.getOperand(1);
4560 SDValue Concat1Op1 = Op1.getOperand(1);
4561 if (Concat0Op1.getOpcode() != ISD::UNDEF ||
4562 Concat1Op1.getOpcode() != ISD::UNDEF)
4563 return SDValue();
4564 // Skip the transformation if any of the types are illegal.
4565 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4566 EVT VT = N->getValueType(0);
4567 if (!TLI.isTypeLegal(VT) ||
4568 !TLI.isTypeLegal(Concat0Op1.getValueType()) ||
4569 !TLI.isTypeLegal(Concat1Op1.getValueType()))
4570 return SDValue();
4571
4572 SDValue NewConcat = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
4573 Op0.getOperand(0), Op1.getOperand(0));
4574 // Translate the shuffle mask.
4575 SmallVector<int, 16> NewMask;
4576 unsigned NumElts = VT.getVectorNumElements();
4577 unsigned HalfElts = NumElts/2;
4578 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
4579 for (unsigned n = 0; n < NumElts; ++n) {
4580 int MaskElt = SVN->getMaskElt(n);
4581 int NewElt = -1;
Bob Wilson1fa9d302010-10-27 23:49:00 +00004582 if (MaskElt < (int)HalfElts)
Bob Wilsonf20700c2010-10-27 20:38:28 +00004583 NewElt = MaskElt;
Bob Wilson1fa9d302010-10-27 23:49:00 +00004584 else if (MaskElt >= (int)NumElts && MaskElt < (int)(NumElts + HalfElts))
Bob Wilsonf20700c2010-10-27 20:38:28 +00004585 NewElt = HalfElts + MaskElt - NumElts;
4586 NewMask.push_back(NewElt);
4587 }
4588 return DAG.getVectorShuffle(VT, N->getDebugLoc(), NewConcat,
4589 DAG.getUNDEF(VT), NewMask.data());
4590}
4591
Bob Wilson9e82bf12010-07-14 01:22:12 +00004592/// PerformVDUPLANECombine - Target-specific dag combine xforms for
4593/// ARMISD::VDUPLANE.
Bob Wilsonb68987e2010-09-22 22:27:30 +00004594static SDValue PerformVDUPLANECombine(SDNode *N, SelectionDAG &DAG) {
Bob Wilson7e3f0d22010-07-14 06:31:50 +00004595 // If the source is already a VMOVIMM or VMVNIMM splat, the VDUPLANE is
4596 // redundant.
Bob Wilson9e82bf12010-07-14 01:22:12 +00004597 SDValue Op = N->getOperand(0);
4598 EVT VT = N->getValueType(0);
4599
4600 // Ignore bit_converts.
4601 while (Op.getOpcode() == ISD::BIT_CONVERT)
4602 Op = Op.getOperand(0);
Bob Wilson7e3f0d22010-07-14 06:31:50 +00004603 if (Op.getOpcode() != ARMISD::VMOVIMM && Op.getOpcode() != ARMISD::VMVNIMM)
Bob Wilson9e82bf12010-07-14 01:22:12 +00004604 return SDValue();
4605
4606 // Make sure the VMOV element size is not bigger than the VDUPLANE elements.
4607 unsigned EltSize = Op.getValueType().getVectorElementType().getSizeInBits();
4608 // The canonical VMOV for a zero vector uses a 32-bit element size.
4609 unsigned Imm = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4610 unsigned EltBits;
4611 if (ARM_AM::decodeNEONModImm(Imm, EltBits) == 0)
4612 EltSize = 8;
4613 if (EltSize > VT.getVectorElementType().getSizeInBits())
4614 return SDValue();
4615
Bob Wilsonb68987e2010-09-22 22:27:30 +00004616 return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(), VT, Op);
Bob Wilson9e82bf12010-07-14 01:22:12 +00004617}
4618
Bob Wilson5bafff32009-06-22 23:27:02 +00004619/// getVShiftImm - Check if this is a valid build_vector for the immediate
4620/// operand of a vector shift operation, where all the elements of the
4621/// build_vector must have the same constant integer value.
4622static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
4623 // Ignore bit_converts.
4624 while (Op.getOpcode() == ISD::BIT_CONVERT)
4625 Op = Op.getOperand(0);
4626 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
4627 APInt SplatBits, SplatUndef;
4628 unsigned SplatBitSize;
4629 bool HasAnyUndefs;
4630 if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
4631 HasAnyUndefs, ElementBits) ||
4632 SplatBitSize > ElementBits)
4633 return false;
4634 Cnt = SplatBits.getSExtValue();
4635 return true;
4636}
4637
4638/// isVShiftLImm - Check if this is a valid build_vector for the immediate
4639/// operand of a vector shift left operation. That value must be in the range:
4640/// 0 <= Value < ElementBits for a left shift; or
4641/// 0 <= Value <= ElementBits for a long left shift.
Owen Andersone50ed302009-08-10 22:56:29 +00004642static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
Bob Wilson5bafff32009-06-22 23:27:02 +00004643 assert(VT.isVector() && "vector shift count is not a vector type");
4644 unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
4645 if (! getVShiftImm(Op, ElementBits, Cnt))
4646 return false;
4647 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
4648}
4649
4650/// isVShiftRImm - Check if this is a valid build_vector for the immediate
4651/// operand of a vector shift right operation. For a shift opcode, the value
4652/// is positive, but for an intrinsic the value count must be negative. The
4653/// absolute value must be in the range:
4654/// 1 <= |Value| <= ElementBits for a right shift; or
4655/// 1 <= |Value| <= ElementBits/2 for a narrow right shift.
Owen Andersone50ed302009-08-10 22:56:29 +00004656static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic,
Bob Wilson5bafff32009-06-22 23:27:02 +00004657 int64_t &Cnt) {
4658 assert(VT.isVector() && "vector shift count is not a vector type");
4659 unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
4660 if (! getVShiftImm(Op, ElementBits, Cnt))
4661 return false;
4662 if (isIntrinsic)
4663 Cnt = -Cnt;
4664 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits));
4665}
4666
4667/// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics.
4668static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) {
4669 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
4670 switch (IntNo) {
4671 default:
4672 // Don't do anything for most intrinsics.
4673 break;
4674
4675 // Vector shifts: check for immediate versions and lower them.
4676 // Note: This is done during DAG combining instead of DAG legalizing because
4677 // the build_vectors for 64-bit vector element shift counts are generally
4678 // not legal, and it is hard to see their values after they get legalized to
4679 // loads from a constant pool.
4680 case Intrinsic::arm_neon_vshifts:
4681 case Intrinsic::arm_neon_vshiftu:
4682 case Intrinsic::arm_neon_vshiftls:
4683 case Intrinsic::arm_neon_vshiftlu:
4684 case Intrinsic::arm_neon_vshiftn:
4685 case Intrinsic::arm_neon_vrshifts:
4686 case Intrinsic::arm_neon_vrshiftu:
4687 case Intrinsic::arm_neon_vrshiftn:
4688 case Intrinsic::arm_neon_vqshifts:
4689 case Intrinsic::arm_neon_vqshiftu:
4690 case Intrinsic::arm_neon_vqshiftsu:
4691 case Intrinsic::arm_neon_vqshiftns:
4692 case Intrinsic::arm_neon_vqshiftnu:
4693 case Intrinsic::arm_neon_vqshiftnsu:
4694 case Intrinsic::arm_neon_vqrshiftns:
4695 case Intrinsic::arm_neon_vqrshiftnu:
4696 case Intrinsic::arm_neon_vqrshiftnsu: {
Owen Andersone50ed302009-08-10 22:56:29 +00004697 EVT VT = N->getOperand(1).getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00004698 int64_t Cnt;
4699 unsigned VShiftOpc = 0;
4700
4701 switch (IntNo) {
4702 case Intrinsic::arm_neon_vshifts:
4703 case Intrinsic::arm_neon_vshiftu:
4704 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) {
4705 VShiftOpc = ARMISD::VSHL;
4706 break;
4707 }
4708 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) {
4709 VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ?
4710 ARMISD::VSHRs : ARMISD::VSHRu);
4711 break;
4712 }
4713 return SDValue();
4714
4715 case Intrinsic::arm_neon_vshiftls:
4716 case Intrinsic::arm_neon_vshiftlu:
4717 if (isVShiftLImm(N->getOperand(2), VT, true, Cnt))
4718 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00004719 llvm_unreachable("invalid shift count for vshll intrinsic");
Bob Wilson5bafff32009-06-22 23:27:02 +00004720
4721 case Intrinsic::arm_neon_vrshifts:
4722 case Intrinsic::arm_neon_vrshiftu:
4723 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt))
4724 break;
4725 return SDValue();
4726
4727 case Intrinsic::arm_neon_vqshifts:
4728 case Intrinsic::arm_neon_vqshiftu:
4729 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
4730 break;
4731 return SDValue();
4732
4733 case Intrinsic::arm_neon_vqshiftsu:
4734 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
4735 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00004736 llvm_unreachable("invalid shift count for vqshlu intrinsic");
Bob Wilson5bafff32009-06-22 23:27:02 +00004737
4738 case Intrinsic::arm_neon_vshiftn:
4739 case Intrinsic::arm_neon_vrshiftn:
4740 case Intrinsic::arm_neon_vqshiftns:
4741 case Intrinsic::arm_neon_vqshiftnu:
4742 case Intrinsic::arm_neon_vqshiftnsu:
4743 case Intrinsic::arm_neon_vqrshiftns:
4744 case Intrinsic::arm_neon_vqrshiftnu:
4745 case Intrinsic::arm_neon_vqrshiftnsu:
4746 // Narrowing shifts require an immediate right shift.
4747 if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt))
4748 break;
Jim Grosbach18f30e62010-06-02 21:53:11 +00004749 llvm_unreachable("invalid shift count for narrowing vector shift "
4750 "intrinsic");
Bob Wilson5bafff32009-06-22 23:27:02 +00004751
4752 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00004753 llvm_unreachable("unhandled vector shift");
Bob Wilson5bafff32009-06-22 23:27:02 +00004754 }
4755
4756 switch (IntNo) {
4757 case Intrinsic::arm_neon_vshifts:
4758 case Intrinsic::arm_neon_vshiftu:
4759 // Opcode already set above.
4760 break;
4761 case Intrinsic::arm_neon_vshiftls:
4762 case Intrinsic::arm_neon_vshiftlu:
4763 if (Cnt == VT.getVectorElementType().getSizeInBits())
4764 VShiftOpc = ARMISD::VSHLLi;
4765 else
4766 VShiftOpc = (IntNo == Intrinsic::arm_neon_vshiftls ?
4767 ARMISD::VSHLLs : ARMISD::VSHLLu);
4768 break;
4769 case Intrinsic::arm_neon_vshiftn:
4770 VShiftOpc = ARMISD::VSHRN; break;
4771 case Intrinsic::arm_neon_vrshifts:
4772 VShiftOpc = ARMISD::VRSHRs; break;
4773 case Intrinsic::arm_neon_vrshiftu:
4774 VShiftOpc = ARMISD::VRSHRu; break;
4775 case Intrinsic::arm_neon_vrshiftn:
4776 VShiftOpc = ARMISD::VRSHRN; break;
4777 case Intrinsic::arm_neon_vqshifts:
4778 VShiftOpc = ARMISD::VQSHLs; break;
4779 case Intrinsic::arm_neon_vqshiftu:
4780 VShiftOpc = ARMISD::VQSHLu; break;
4781 case Intrinsic::arm_neon_vqshiftsu:
4782 VShiftOpc = ARMISD::VQSHLsu; break;
4783 case Intrinsic::arm_neon_vqshiftns:
4784 VShiftOpc = ARMISD::VQSHRNs; break;
4785 case Intrinsic::arm_neon_vqshiftnu:
4786 VShiftOpc = ARMISD::VQSHRNu; break;
4787 case Intrinsic::arm_neon_vqshiftnsu:
4788 VShiftOpc = ARMISD::VQSHRNsu; break;
4789 case Intrinsic::arm_neon_vqrshiftns:
4790 VShiftOpc = ARMISD::VQRSHRNs; break;
4791 case Intrinsic::arm_neon_vqrshiftnu:
4792 VShiftOpc = ARMISD::VQRSHRNu; break;
4793 case Intrinsic::arm_neon_vqrshiftnsu:
4794 VShiftOpc = ARMISD::VQRSHRNsu; break;
4795 }
4796
4797 return DAG.getNode(VShiftOpc, N->getDebugLoc(), N->getValueType(0),
Owen Anderson825b72b2009-08-11 20:47:22 +00004798 N->getOperand(1), DAG.getConstant(Cnt, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00004799 }
4800
4801 case Intrinsic::arm_neon_vshiftins: {
Owen Andersone50ed302009-08-10 22:56:29 +00004802 EVT VT = N->getOperand(1).getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00004803 int64_t Cnt;
4804 unsigned VShiftOpc = 0;
4805
4806 if (isVShiftLImm(N->getOperand(3), VT, false, Cnt))
4807 VShiftOpc = ARMISD::VSLI;
4808 else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt))
4809 VShiftOpc = ARMISD::VSRI;
4810 else {
Torok Edwinc23197a2009-07-14 16:55:14 +00004811 llvm_unreachable("invalid shift count for vsli/vsri intrinsic");
Bob Wilson5bafff32009-06-22 23:27:02 +00004812 }
4813
4814 return DAG.getNode(VShiftOpc, N->getDebugLoc(), N->getValueType(0),
4815 N->getOperand(1), N->getOperand(2),
Owen Anderson825b72b2009-08-11 20:47:22 +00004816 DAG.getConstant(Cnt, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00004817 }
4818
4819 case Intrinsic::arm_neon_vqrshifts:
4820 case Intrinsic::arm_neon_vqrshiftu:
4821 // No immediate versions of these to check for.
4822 break;
4823 }
4824
4825 return SDValue();
4826}
4827
4828/// PerformShiftCombine - Checks for immediate versions of vector shifts and
4829/// lowers them. As with the vector shift intrinsics, this is done during DAG
4830/// combining instead of DAG legalizing because the build_vectors for 64-bit
4831/// vector element shift counts are generally not legal, and it is hard to see
4832/// their values after they get legalized to loads from a constant pool.
4833static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG,
4834 const ARMSubtarget *ST) {
Owen Andersone50ed302009-08-10 22:56:29 +00004835 EVT VT = N->getValueType(0);
Bob Wilson5bafff32009-06-22 23:27:02 +00004836
4837 // Nothing to be done for scalar shifts.
4838 if (! VT.isVector())
4839 return SDValue();
4840
4841 assert(ST->hasNEON() && "unexpected vector shift");
4842 int64_t Cnt;
4843
4844 switch (N->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00004845 default: llvm_unreachable("unexpected shift opcode");
Bob Wilson5bafff32009-06-22 23:27:02 +00004846
4847 case ISD::SHL:
4848 if (isVShiftLImm(N->getOperand(1), VT, false, Cnt))
4849 return DAG.getNode(ARMISD::VSHL, N->getDebugLoc(), VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +00004850 DAG.getConstant(Cnt, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00004851 break;
4852
4853 case ISD::SRA:
4854 case ISD::SRL:
4855 if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) {
4856 unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ?
4857 ARMISD::VSHRs : ARMISD::VSHRu);
4858 return DAG.getNode(VShiftOpc, N->getDebugLoc(), VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +00004859 DAG.getConstant(Cnt, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00004860 }
4861 }
4862 return SDValue();
4863}
4864
4865/// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND,
4866/// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND.
4867static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG,
4868 const ARMSubtarget *ST) {
4869 SDValue N0 = N->getOperand(0);
4870
4871 // Check for sign- and zero-extensions of vector extract operations of 8-
4872 // and 16-bit vector elements. NEON supports these directly. They are
4873 // handled during DAG combining because type legalization will promote them
4874 // to 32-bit types and it is messy to recognize the operations after that.
4875 if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
4876 SDValue Vec = N0.getOperand(0);
4877 SDValue Lane = N0.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00004878 EVT VT = N->getValueType(0);
4879 EVT EltVT = N0.getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00004880 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4881
Owen Anderson825b72b2009-08-11 20:47:22 +00004882 if (VT == MVT::i32 &&
4883 (EltVT == MVT::i8 || EltVT == MVT::i16) &&
Bob Wilson5bafff32009-06-22 23:27:02 +00004884 TLI.isTypeLegal(Vec.getValueType())) {
4885
4886 unsigned Opc = 0;
4887 switch (N->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00004888 default: llvm_unreachable("unexpected opcode");
Bob Wilson5bafff32009-06-22 23:27:02 +00004889 case ISD::SIGN_EXTEND:
4890 Opc = ARMISD::VGETLANEs;
4891 break;
4892 case ISD::ZERO_EXTEND:
4893 case ISD::ANY_EXTEND:
4894 Opc = ARMISD::VGETLANEu;
4895 break;
4896 }
4897 return DAG.getNode(Opc, N->getDebugLoc(), VT, Vec, Lane);
4898 }
4899 }
4900
4901 return SDValue();
4902}
4903
Bob Wilson9f6c4c12010-02-18 06:05:53 +00004904/// PerformSELECT_CCCombine - Target-specific DAG combining for ISD::SELECT_CC
4905/// to match f32 max/min patterns to use NEON vmax/vmin instructions.
4906static SDValue PerformSELECT_CCCombine(SDNode *N, SelectionDAG &DAG,
4907 const ARMSubtarget *ST) {
4908 // If the target supports NEON, try to use vmax/vmin instructions for f32
Evan Cheng60108e92010-07-15 22:07:12 +00004909 // selects like "x < y ? x : y". Unless the NoNaNsFPMath option is set,
Bob Wilson9f6c4c12010-02-18 06:05:53 +00004910 // be careful about NaNs: NEON's vmax/vmin return NaN if either operand is
4911 // a NaN; only do the transformation when it matches that behavior.
4912
4913 // For now only do this when using NEON for FP operations; if using VFP, it
4914 // is not obvious that the benefit outweighs the cost of switching to the
4915 // NEON pipeline.
4916 if (!ST->hasNEON() || !ST->useNEONForSinglePrecisionFP() ||
4917 N->getValueType(0) != MVT::f32)
4918 return SDValue();
4919
4920 SDValue CondLHS = N->getOperand(0);
4921 SDValue CondRHS = N->getOperand(1);
4922 SDValue LHS = N->getOperand(2);
4923 SDValue RHS = N->getOperand(3);
4924 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
4925
4926 unsigned Opcode = 0;
4927 bool IsReversed;
Bob Wilsone742bb52010-02-24 22:15:53 +00004928 if (DAG.isEqualTo(LHS, CondLHS) && DAG.isEqualTo(RHS, CondRHS)) {
Bob Wilson9f6c4c12010-02-18 06:05:53 +00004929 IsReversed = false; // x CC y ? x : y
Bob Wilsone742bb52010-02-24 22:15:53 +00004930 } else if (DAG.isEqualTo(LHS, CondRHS) && DAG.isEqualTo(RHS, CondLHS)) {
Bob Wilson9f6c4c12010-02-18 06:05:53 +00004931 IsReversed = true ; // x CC y ? y : x
4932 } else {
4933 return SDValue();
4934 }
4935
Bob Wilsone742bb52010-02-24 22:15:53 +00004936 bool IsUnordered;
Bob Wilson9f6c4c12010-02-18 06:05:53 +00004937 switch (CC) {
4938 default: break;
4939 case ISD::SETOLT:
4940 case ISD::SETOLE:
4941 case ISD::SETLT:
4942 case ISD::SETLE:
Bob Wilson9f6c4c12010-02-18 06:05:53 +00004943 case ISD::SETULT:
4944 case ISD::SETULE:
Bob Wilsone742bb52010-02-24 22:15:53 +00004945 // If LHS is NaN, an ordered comparison will be false and the result will
4946 // be the RHS, but vmin(NaN, RHS) = NaN. Avoid this by checking that LHS
4947 // != NaN. Likewise, for unordered comparisons, check for RHS != NaN.
4948 IsUnordered = (CC == ISD::SETULT || CC == ISD::SETULE);
4949 if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
4950 break;
4951 // For less-than-or-equal comparisons, "+0 <= -0" will be true but vmin
4952 // will return -0, so vmin can only be used for unsafe math or if one of
4953 // the operands is known to be nonzero.
4954 if ((CC == ISD::SETLE || CC == ISD::SETOLE || CC == ISD::SETULE) &&
4955 !UnsafeFPMath &&
4956 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
4957 break;
4958 Opcode = IsReversed ? ARMISD::FMAX : ARMISD::FMIN;
Bob Wilson9f6c4c12010-02-18 06:05:53 +00004959 break;
4960
4961 case ISD::SETOGT:
4962 case ISD::SETOGE:
4963 case ISD::SETGT:
4964 case ISD::SETGE:
Bob Wilson9f6c4c12010-02-18 06:05:53 +00004965 case ISD::SETUGT:
4966 case ISD::SETUGE:
Bob Wilsone742bb52010-02-24 22:15:53 +00004967 // If LHS is NaN, an ordered comparison will be false and the result will
4968 // be the RHS, but vmax(NaN, RHS) = NaN. Avoid this by checking that LHS
4969 // != NaN. Likewise, for unordered comparisons, check for RHS != NaN.
4970 IsUnordered = (CC == ISD::SETUGT || CC == ISD::SETUGE);
4971 if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
4972 break;
4973 // For greater-than-or-equal comparisons, "-0 >= +0" will be true but vmax
4974 // will return +0, so vmax can only be used for unsafe math or if one of
4975 // the operands is known to be nonzero.
4976 if ((CC == ISD::SETGE || CC == ISD::SETOGE || CC == ISD::SETUGE) &&
4977 !UnsafeFPMath &&
4978 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
4979 break;
4980 Opcode = IsReversed ? ARMISD::FMIN : ARMISD::FMAX;
Bob Wilson9f6c4c12010-02-18 06:05:53 +00004981 break;
4982 }
4983
4984 if (!Opcode)
4985 return SDValue();
4986 return DAG.getNode(Opcode, N->getDebugLoc(), N->getValueType(0), LHS, RHS);
4987}
4988
Dan Gohman475871a2008-07-27 21:46:04 +00004989SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N,
Bob Wilson2dc4f542009-03-20 22:42:55 +00004990 DAGCombinerInfo &DCI) const {
Chris Lattnerf1b1c5e2007-11-27 22:36:16 +00004991 switch (N->getOpcode()) {
4992 default: break;
Bob Wilson9f6c4c12010-02-18 06:05:53 +00004993 case ISD::ADD: return PerformADDCombine(N, DCI);
4994 case ISD::SUB: return PerformSUBCombine(N, DCI);
Anton Korobeynikova9790d72010-05-15 18:16:59 +00004995 case ISD::MUL: return PerformMULCombine(N, DCI, Subtarget);
Jim Grosbach469bbdb2010-07-16 23:05:05 +00004996 case ISD::OR: return PerformORCombine(N, DCI, Subtarget);
Jim Grosbache5165492009-11-09 00:11:35 +00004997 case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI);
Bob Wilson0b8ccb82010-09-22 22:09:21 +00004998 case ARMISD::VMOVDRR: return PerformVMOVDRRCombine(N, DCI.DAG);
4999 case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DCI.DAG);
Bob Wilsonf20700c2010-10-27 20:38:28 +00005000 case ISD::VECTOR_SHUFFLE: return PerformVECTOR_SHUFFLECombine(N, DCI.DAG);
Bob Wilsonb68987e2010-09-22 22:27:30 +00005001 case ARMISD::VDUPLANE: return PerformVDUPLANECombine(N, DCI.DAG);
Bob Wilson9f6c4c12010-02-18 06:05:53 +00005002 case ISD::INTRINSIC_WO_CHAIN: return PerformIntrinsicCombine(N, DCI.DAG);
Bob Wilson5bafff32009-06-22 23:27:02 +00005003 case ISD::SHL:
5004 case ISD::SRA:
Bob Wilson9f6c4c12010-02-18 06:05:53 +00005005 case ISD::SRL: return PerformShiftCombine(N, DCI.DAG, Subtarget);
Bob Wilson5bafff32009-06-22 23:27:02 +00005006 case ISD::SIGN_EXTEND:
5007 case ISD::ZERO_EXTEND:
Bob Wilson9f6c4c12010-02-18 06:05:53 +00005008 case ISD::ANY_EXTEND: return PerformExtendCombine(N, DCI.DAG, Subtarget);
5009 case ISD::SELECT_CC: return PerformSELECT_CCCombine(N, DCI.DAG, Subtarget);
Chris Lattnerf1b1c5e2007-11-27 22:36:16 +00005010 }
Dan Gohman475871a2008-07-27 21:46:04 +00005011 return SDValue();
Chris Lattnerf1b1c5e2007-11-27 22:36:16 +00005012}
5013
Bill Wendlingaf566342009-08-15 21:21:19 +00005014bool ARMTargetLowering::allowsUnalignedMemoryAccesses(EVT VT) const {
Bob Wilson02aba732010-09-28 04:09:35 +00005015 if (!Subtarget->allowsUnalignedMem())
Bob Wilson86fe66d2010-06-25 04:12:31 +00005016 return false;
Bill Wendlingaf566342009-08-15 21:21:19 +00005017
5018 switch (VT.getSimpleVT().SimpleTy) {
5019 default:
5020 return false;
5021 case MVT::i8:
5022 case MVT::i16:
5023 case MVT::i32:
5024 return true;
5025 // FIXME: VLD1 etc with standard alignment is legal.
5026 }
5027}
5028
Evan Chenge6c835f2009-08-14 20:09:37 +00005029static bool isLegalT1AddressImmediate(int64_t V, EVT VT) {
5030 if (V < 0)
5031 return false;
5032
5033 unsigned Scale = 1;
5034 switch (VT.getSimpleVT().SimpleTy) {
5035 default: return false;
5036 case MVT::i1:
5037 case MVT::i8:
5038 // Scale == 1;
5039 break;
5040 case MVT::i16:
5041 // Scale == 2;
5042 Scale = 2;
5043 break;
5044 case MVT::i32:
5045 // Scale == 4;
5046 Scale = 4;
5047 break;
5048 }
5049
5050 if ((V & (Scale - 1)) != 0)
5051 return false;
5052 V /= Scale;
5053 return V == (V & ((1LL << 5) - 1));
5054}
5055
5056static bool isLegalT2AddressImmediate(int64_t V, EVT VT,
5057 const ARMSubtarget *Subtarget) {
5058 bool isNeg = false;
5059 if (V < 0) {
5060 isNeg = true;
5061 V = - V;
5062 }
5063
5064 switch (VT.getSimpleVT().SimpleTy) {
5065 default: return false;
5066 case MVT::i1:
5067 case MVT::i8:
5068 case MVT::i16:
5069 case MVT::i32:
5070 // + imm12 or - imm8
5071 if (isNeg)
5072 return V == (V & ((1LL << 8) - 1));
5073 return V == (V & ((1LL << 12) - 1));
5074 case MVT::f32:
5075 case MVT::f64:
5076 // Same as ARM mode. FIXME: NEON?
5077 if (!Subtarget->hasVFP2())
5078 return false;
5079 if ((V & 3) != 0)
5080 return false;
5081 V >>= 2;
5082 return V == (V & ((1LL << 8) - 1));
5083 }
5084}
5085
Evan Chengb01fad62007-03-12 23:30:29 +00005086/// isLegalAddressImmediate - Return true if the integer value can be used
5087/// as the offset of the target addressing mode for load / store of the
5088/// given type.
Owen Andersone50ed302009-08-10 22:56:29 +00005089static bool isLegalAddressImmediate(int64_t V, EVT VT,
Chris Lattner37caf8c2007-04-09 23:33:39 +00005090 const ARMSubtarget *Subtarget) {
Evan Cheng961f8792007-03-13 20:37:59 +00005091 if (V == 0)
5092 return true;
5093
Evan Cheng65011532009-03-09 19:15:00 +00005094 if (!VT.isSimple())
5095 return false;
5096
Evan Chenge6c835f2009-08-14 20:09:37 +00005097 if (Subtarget->isThumb1Only())
5098 return isLegalT1AddressImmediate(V, VT);
5099 else if (Subtarget->isThumb2())
5100 return isLegalT2AddressImmediate(V, VT, Subtarget);
Evan Chengb01fad62007-03-12 23:30:29 +00005101
Evan Chenge6c835f2009-08-14 20:09:37 +00005102 // ARM mode.
Evan Chengb01fad62007-03-12 23:30:29 +00005103 if (V < 0)
5104 V = - V;
Owen Anderson825b72b2009-08-11 20:47:22 +00005105 switch (VT.getSimpleVT().SimpleTy) {
Evan Chengb01fad62007-03-12 23:30:29 +00005106 default: return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00005107 case MVT::i1:
5108 case MVT::i8:
5109 case MVT::i32:
Evan Chengb01fad62007-03-12 23:30:29 +00005110 // +- imm12
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00005111 return V == (V & ((1LL << 12) - 1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005112 case MVT::i16:
Evan Chengb01fad62007-03-12 23:30:29 +00005113 // +- imm8
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00005114 return V == (V & ((1LL << 8) - 1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005115 case MVT::f32:
5116 case MVT::f64:
Evan Chenge6c835f2009-08-14 20:09:37 +00005117 if (!Subtarget->hasVFP2()) // FIXME: NEON?
Evan Chengb01fad62007-03-12 23:30:29 +00005118 return false;
Evan Cheng0b0a9a92007-05-03 02:00:18 +00005119 if ((V & 3) != 0)
Evan Chengb01fad62007-03-12 23:30:29 +00005120 return false;
5121 V >>= 2;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00005122 return V == (V & ((1LL << 8) - 1));
Evan Chengb01fad62007-03-12 23:30:29 +00005123 }
Evan Chenga8e29892007-01-19 07:51:42 +00005124}
5125
Evan Chenge6c835f2009-08-14 20:09:37 +00005126bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM,
5127 EVT VT) const {
5128 int Scale = AM.Scale;
5129 if (Scale < 0)
5130 return false;
5131
5132 switch (VT.getSimpleVT().SimpleTy) {
5133 default: return false;
5134 case MVT::i1:
5135 case MVT::i8:
5136 case MVT::i16:
5137 case MVT::i32:
5138 if (Scale == 1)
5139 return true;
5140 // r + r << imm
5141 Scale = Scale & ~1;
5142 return Scale == 2 || Scale == 4 || Scale == 8;
5143 case MVT::i64:
5144 // r + r
5145 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
5146 return true;
5147 return false;
5148 case MVT::isVoid:
5149 // Note, we allow "void" uses (basically, uses that aren't loads or
5150 // stores), because arm allows folding a scale into many arithmetic
5151 // operations. This should be made more precise and revisited later.
5152
5153 // Allow r << imm, but the imm has to be a multiple of two.
5154 if (Scale & 1) return false;
5155 return isPowerOf2_32(Scale);
5156 }
5157}
5158
Chris Lattner37caf8c2007-04-09 23:33:39 +00005159/// isLegalAddressingMode - Return true if the addressing mode represented
5160/// by AM is legal for this target, for a load/store of the specified type.
Bob Wilson2dc4f542009-03-20 22:42:55 +00005161bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattner37caf8c2007-04-09 23:33:39 +00005162 const Type *Ty) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005163 EVT VT = getValueType(Ty, true);
Bob Wilson2c7dab12009-04-08 17:55:28 +00005164 if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget))
Evan Chengb01fad62007-03-12 23:30:29 +00005165 return false;
Bob Wilson2dc4f542009-03-20 22:42:55 +00005166
Chris Lattner37caf8c2007-04-09 23:33:39 +00005167 // Can never fold addr of global into load/store.
Bob Wilson2dc4f542009-03-20 22:42:55 +00005168 if (AM.BaseGV)
Chris Lattner37caf8c2007-04-09 23:33:39 +00005169 return false;
Bob Wilson2dc4f542009-03-20 22:42:55 +00005170
Chris Lattner37caf8c2007-04-09 23:33:39 +00005171 switch (AM.Scale) {
5172 case 0: // no scale reg, must be "r+i" or "r", or "i".
5173 break;
5174 case 1:
Evan Chenge6c835f2009-08-14 20:09:37 +00005175 if (Subtarget->isThumb1Only())
Chris Lattner37caf8c2007-04-09 23:33:39 +00005176 return false;
Chris Lattner5a3d40d2007-04-13 06:50:55 +00005177 // FALL THROUGH.
Chris Lattner37caf8c2007-04-09 23:33:39 +00005178 default:
Chris Lattner5a3d40d2007-04-13 06:50:55 +00005179 // ARM doesn't support any R+R*scale+imm addr modes.
5180 if (AM.BaseOffs)
5181 return false;
Bob Wilson2dc4f542009-03-20 22:42:55 +00005182
Bob Wilson2c7dab12009-04-08 17:55:28 +00005183 if (!VT.isSimple())
5184 return false;
5185
Evan Chenge6c835f2009-08-14 20:09:37 +00005186 if (Subtarget->isThumb2())
5187 return isLegalT2ScaledAddressingMode(AM, VT);
5188
Chris Lattnereb13d1b2007-04-10 03:48:29 +00005189 int Scale = AM.Scale;
Owen Anderson825b72b2009-08-11 20:47:22 +00005190 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner37caf8c2007-04-09 23:33:39 +00005191 default: return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00005192 case MVT::i1:
5193 case MVT::i8:
5194 case MVT::i32:
Chris Lattnereb13d1b2007-04-10 03:48:29 +00005195 if (Scale < 0) Scale = -Scale;
5196 if (Scale == 1)
Chris Lattner37caf8c2007-04-09 23:33:39 +00005197 return true;
5198 // r + r << imm
Chris Lattnere1152942007-04-11 16:17:12 +00005199 return isPowerOf2_32(Scale & ~1);
Owen Anderson825b72b2009-08-11 20:47:22 +00005200 case MVT::i16:
Evan Chenge6c835f2009-08-14 20:09:37 +00005201 case MVT::i64:
Chris Lattner37caf8c2007-04-09 23:33:39 +00005202 // r + r
Chris Lattnereb13d1b2007-04-10 03:48:29 +00005203 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
Chris Lattner37caf8c2007-04-09 23:33:39 +00005204 return true;
Chris Lattnere1152942007-04-11 16:17:12 +00005205 return false;
Bob Wilson2dc4f542009-03-20 22:42:55 +00005206
Owen Anderson825b72b2009-08-11 20:47:22 +00005207 case MVT::isVoid:
Chris Lattner37caf8c2007-04-09 23:33:39 +00005208 // Note, we allow "void" uses (basically, uses that aren't loads or
5209 // stores), because arm allows folding a scale into many arithmetic
5210 // operations. This should be made more precise and revisited later.
Bob Wilson2dc4f542009-03-20 22:42:55 +00005211
Chris Lattner37caf8c2007-04-09 23:33:39 +00005212 // Allow r << imm, but the imm has to be a multiple of two.
Evan Chenge6c835f2009-08-14 20:09:37 +00005213 if (Scale & 1) return false;
5214 return isPowerOf2_32(Scale);
Chris Lattner37caf8c2007-04-09 23:33:39 +00005215 }
5216 break;
Evan Chengb01fad62007-03-12 23:30:29 +00005217 }
Chris Lattner37caf8c2007-04-09 23:33:39 +00005218 return true;
Evan Chengb01fad62007-03-12 23:30:29 +00005219}
5220
Evan Cheng77e47512009-11-11 19:05:52 +00005221/// isLegalICmpImmediate - Return true if the specified immediate is legal
5222/// icmp immediate, that is the target has icmp instructions which can compare
5223/// a register against the immediate without having to materialize the
5224/// immediate into a register.
Evan Cheng06b53c02009-11-12 07:13:11 +00005225bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Evan Cheng77e47512009-11-11 19:05:52 +00005226 if (!Subtarget->isThumb())
5227 return ARM_AM::getSOImmVal(Imm) != -1;
5228 if (Subtarget->isThumb2())
Jim Grosbach4725ca72010-09-08 03:54:02 +00005229 return ARM_AM::getT2SOImmVal(Imm) != -1;
Evan Cheng06b53c02009-11-12 07:13:11 +00005230 return Imm >= 0 && Imm <= 255;
Evan Cheng77e47512009-11-11 19:05:52 +00005231}
5232
Owen Andersone50ed302009-08-10 22:56:29 +00005233static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT,
Evan Chenge88d5ce2009-07-02 07:28:31 +00005234 bool isSEXTLoad, SDValue &Base,
5235 SDValue &Offset, bool &isInc,
5236 SelectionDAG &DAG) {
Evan Chenga8e29892007-01-19 07:51:42 +00005237 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
5238 return false;
5239
Owen Anderson825b72b2009-08-11 20:47:22 +00005240 if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
Evan Chenga8e29892007-01-19 07:51:42 +00005241 // AddressingMode 3
5242 Base = Ptr->getOperand(0);
5243 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005244 int RHSC = (int)RHS->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +00005245 if (RHSC < 0 && RHSC > -256) {
Evan Chenge88d5ce2009-07-02 07:28:31 +00005246 assert(Ptr->getOpcode() == ISD::ADD);
Evan Chenga8e29892007-01-19 07:51:42 +00005247 isInc = false;
5248 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
5249 return true;
5250 }
5251 }
5252 isInc = (Ptr->getOpcode() == ISD::ADD);
5253 Offset = Ptr->getOperand(1);
5254 return true;
Owen Anderson825b72b2009-08-11 20:47:22 +00005255 } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
Evan Chenga8e29892007-01-19 07:51:42 +00005256 // AddressingMode 2
5257 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005258 int RHSC = (int)RHS->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +00005259 if (RHSC < 0 && RHSC > -0x1000) {
Evan Chenge88d5ce2009-07-02 07:28:31 +00005260 assert(Ptr->getOpcode() == ISD::ADD);
Evan Chenga8e29892007-01-19 07:51:42 +00005261 isInc = false;
5262 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
5263 Base = Ptr->getOperand(0);
5264 return true;
5265 }
5266 }
5267
5268 if (Ptr->getOpcode() == ISD::ADD) {
5269 isInc = true;
5270 ARM_AM::ShiftOpc ShOpcVal= ARM_AM::getShiftOpcForNode(Ptr->getOperand(0));
5271 if (ShOpcVal != ARM_AM::no_shift) {
5272 Base = Ptr->getOperand(1);
5273 Offset = Ptr->getOperand(0);
5274 } else {
5275 Base = Ptr->getOperand(0);
5276 Offset = Ptr->getOperand(1);
5277 }
5278 return true;
5279 }
5280
5281 isInc = (Ptr->getOpcode() == ISD::ADD);
5282 Base = Ptr->getOperand(0);
5283 Offset = Ptr->getOperand(1);
5284 return true;
5285 }
5286
Jim Grosbache5165492009-11-09 00:11:35 +00005287 // FIXME: Use VLDM / VSTM to emulate indexed FP load / store.
Evan Chenga8e29892007-01-19 07:51:42 +00005288 return false;
5289}
5290
Owen Andersone50ed302009-08-10 22:56:29 +00005291static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT,
Evan Chenge88d5ce2009-07-02 07:28:31 +00005292 bool isSEXTLoad, SDValue &Base,
5293 SDValue &Offset, bool &isInc,
5294 SelectionDAG &DAG) {
5295 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
5296 return false;
5297
5298 Base = Ptr->getOperand(0);
5299 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
5300 int RHSC = (int)RHS->getZExtValue();
5301 if (RHSC < 0 && RHSC > -0x100) { // 8 bits.
5302 assert(Ptr->getOpcode() == ISD::ADD);
5303 isInc = false;
5304 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
5305 return true;
5306 } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero.
5307 isInc = Ptr->getOpcode() == ISD::ADD;
5308 Offset = DAG.getConstant(RHSC, RHS->getValueType(0));
5309 return true;
5310 }
5311 }
5312
5313 return false;
5314}
5315
Evan Chenga8e29892007-01-19 07:51:42 +00005316/// getPreIndexedAddressParts - returns true by value, base pointer and
5317/// offset pointer and addressing mode by reference if the node's address
5318/// can be legally represented as pre-indexed load / store address.
5319bool
Dan Gohman475871a2008-07-27 21:46:04 +00005320ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
5321 SDValue &Offset,
Evan Chenga8e29892007-01-19 07:51:42 +00005322 ISD::MemIndexedMode &AM,
Dan Gohman73e09142009-01-15 16:29:45 +00005323 SelectionDAG &DAG) const {
Evan Chenge88d5ce2009-07-02 07:28:31 +00005324 if (Subtarget->isThumb1Only())
Evan Chenga8e29892007-01-19 07:51:42 +00005325 return false;
5326
Owen Andersone50ed302009-08-10 22:56:29 +00005327 EVT VT;
Dan Gohman475871a2008-07-27 21:46:04 +00005328 SDValue Ptr;
Evan Chenga8e29892007-01-19 07:51:42 +00005329 bool isSEXTLoad = false;
5330 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
5331 Ptr = LD->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005332 VT = LD->getMemoryVT();
Evan Chenga8e29892007-01-19 07:51:42 +00005333 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
5334 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
5335 Ptr = ST->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005336 VT = ST->getMemoryVT();
Evan Chenga8e29892007-01-19 07:51:42 +00005337 } else
5338 return false;
5339
5340 bool isInc;
Evan Chenge88d5ce2009-07-02 07:28:31 +00005341 bool isLegal = false;
Evan Chenge6c835f2009-08-14 20:09:37 +00005342 if (Subtarget->isThumb2())
Evan Chenge88d5ce2009-07-02 07:28:31 +00005343 isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
5344 Offset, isInc, DAG);
Jim Grosbach764ab522009-08-11 15:33:49 +00005345 else
Evan Chenge88d5ce2009-07-02 07:28:31 +00005346 isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
Evan Cheng04129572009-07-02 06:44:30 +00005347 Offset, isInc, DAG);
Evan Chenge88d5ce2009-07-02 07:28:31 +00005348 if (!isLegal)
5349 return false;
5350
5351 AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
5352 return true;
Evan Chenga8e29892007-01-19 07:51:42 +00005353}
5354
5355/// getPostIndexedAddressParts - returns true by value, base pointer and
5356/// offset pointer and addressing mode by reference if this node can be
5357/// combined with a load / store to form a post-indexed load / store.
5358bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
Dan Gohman475871a2008-07-27 21:46:04 +00005359 SDValue &Base,
5360 SDValue &Offset,
Evan Chenga8e29892007-01-19 07:51:42 +00005361 ISD::MemIndexedMode &AM,
Dan Gohman73e09142009-01-15 16:29:45 +00005362 SelectionDAG &DAG) const {
Evan Chenge88d5ce2009-07-02 07:28:31 +00005363 if (Subtarget->isThumb1Only())
Evan Chenga8e29892007-01-19 07:51:42 +00005364 return false;
5365
Owen Andersone50ed302009-08-10 22:56:29 +00005366 EVT VT;
Dan Gohman475871a2008-07-27 21:46:04 +00005367 SDValue Ptr;
Evan Chenga8e29892007-01-19 07:51:42 +00005368 bool isSEXTLoad = false;
5369 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005370 VT = LD->getMemoryVT();
Evan Cheng28dad2a2010-05-18 21:31:17 +00005371 Ptr = LD->getBasePtr();
Evan Chenga8e29892007-01-19 07:51:42 +00005372 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
5373 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005374 VT = ST->getMemoryVT();
Evan Cheng28dad2a2010-05-18 21:31:17 +00005375 Ptr = ST->getBasePtr();
Evan Chenga8e29892007-01-19 07:51:42 +00005376 } else
5377 return false;
5378
5379 bool isInc;
Evan Chenge88d5ce2009-07-02 07:28:31 +00005380 bool isLegal = false;
Evan Chenge6c835f2009-08-14 20:09:37 +00005381 if (Subtarget->isThumb2())
Evan Chenge88d5ce2009-07-02 07:28:31 +00005382 isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
Evan Cheng28dad2a2010-05-18 21:31:17 +00005383 isInc, DAG);
Jim Grosbach764ab522009-08-11 15:33:49 +00005384 else
Evan Chenge88d5ce2009-07-02 07:28:31 +00005385 isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
5386 isInc, DAG);
5387 if (!isLegal)
5388 return false;
5389
Evan Cheng28dad2a2010-05-18 21:31:17 +00005390 if (Ptr != Base) {
5391 // Swap base ptr and offset to catch more post-index load / store when
5392 // it's legal. In Thumb2 mode, offset must be an immediate.
5393 if (Ptr == Offset && Op->getOpcode() == ISD::ADD &&
5394 !Subtarget->isThumb2())
5395 std::swap(Base, Offset);
5396
5397 // Post-indexed load / store update the base pointer.
5398 if (Ptr != Base)
5399 return false;
5400 }
5401
Evan Chenge88d5ce2009-07-02 07:28:31 +00005402 AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
5403 return true;
Evan Chenga8e29892007-01-19 07:51:42 +00005404}
5405
Dan Gohman475871a2008-07-27 21:46:04 +00005406void ARMTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +00005407 const APInt &Mask,
Bob Wilson2dc4f542009-03-20 22:42:55 +00005408 APInt &KnownZero,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00005409 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00005410 const SelectionDAG &DAG,
Evan Chenga8e29892007-01-19 07:51:42 +00005411 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00005412 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);
Evan Chenga8e29892007-01-19 07:51:42 +00005413 switch (Op.getOpcode()) {
5414 default: break;
5415 case ARMISD::CMOV: {
5416 // Bits are known zero/one if known on the LHS and RHS.
Dan Gohmanea859be2007-06-22 14:59:07 +00005417 DAG.ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
Evan Chenga8e29892007-01-19 07:51:42 +00005418 if (KnownZero == 0 && KnownOne == 0) return;
5419
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00005420 APInt KnownZeroRHS, KnownOneRHS;
Dan Gohmanea859be2007-06-22 14:59:07 +00005421 DAG.ComputeMaskedBits(Op.getOperand(1), Mask,
5422 KnownZeroRHS, KnownOneRHS, Depth+1);
Evan Chenga8e29892007-01-19 07:51:42 +00005423 KnownZero &= KnownZeroRHS;
5424 KnownOne &= KnownOneRHS;
5425 return;
5426 }
5427 }
5428}
5429
5430//===----------------------------------------------------------------------===//
5431// ARM Inline Assembly Support
5432//===----------------------------------------------------------------------===//
5433
5434/// getConstraintType - Given a constraint letter, return the type of
5435/// constraint it is for this target.
5436ARMTargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00005437ARMTargetLowering::getConstraintType(const std::string &Constraint) const {
5438 if (Constraint.size() == 1) {
5439 switch (Constraint[0]) {
5440 default: break;
5441 case 'l': return C_RegisterClass;
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00005442 case 'w': return C_RegisterClass;
Chris Lattner4234f572007-03-25 02:14:49 +00005443 }
Evan Chenga8e29892007-01-19 07:51:42 +00005444 }
Chris Lattner4234f572007-03-25 02:14:49 +00005445 return TargetLowering::getConstraintType(Constraint);
Evan Chenga8e29892007-01-19 07:51:42 +00005446}
5447
John Thompson44ab89e2010-10-29 17:29:13 +00005448/// Examine constraint type and operand type and determine a weight value.
5449/// This object must already have been set up with the operand type
5450/// and the current alternative constraint selected.
5451TargetLowering::ConstraintWeight
5452ARMTargetLowering::getSingleConstraintMatchWeight(
5453 AsmOperandInfo &info, const char *constraint) const {
5454 ConstraintWeight weight = CW_Invalid;
5455 Value *CallOperandVal = info.CallOperandVal;
5456 // If we don't have a value, we can't do a match,
5457 // but allow it at the lowest weight.
5458 if (CallOperandVal == NULL)
5459 return CW_Default;
5460 const Type *type = CallOperandVal->getType();
5461 // Look at the constraint type.
5462 switch (*constraint) {
5463 default:
5464 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
5465 break;
5466 case 'l':
5467 if (type->isIntegerTy()) {
5468 if (Subtarget->isThumb())
5469 weight = CW_SpecificReg;
5470 else
5471 weight = CW_Register;
5472 }
5473 break;
5474 case 'w':
5475 if (type->isFloatingPointTy())
5476 weight = CW_Register;
5477 break;
5478 }
5479 return weight;
5480}
5481
Bob Wilson2dc4f542009-03-20 22:42:55 +00005482std::pair<unsigned, const TargetRegisterClass*>
Evan Chenga8e29892007-01-19 07:51:42 +00005483ARMTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +00005484 EVT VT) const {
Evan Chenga8e29892007-01-19 07:51:42 +00005485 if (Constraint.size() == 1) {
Jakob Stoklund Olesen09bf0032010-01-14 18:19:56 +00005486 // GCC ARM Constraint Letters
Evan Chenga8e29892007-01-19 07:51:42 +00005487 switch (Constraint[0]) {
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00005488 case 'l':
Jakob Stoklund Olesen09bf0032010-01-14 18:19:56 +00005489 if (Subtarget->isThumb())
Jim Grosbach30eae3c2009-04-07 20:34:09 +00005490 return std::make_pair(0U, ARM::tGPRRegisterClass);
5491 else
5492 return std::make_pair(0U, ARM::GPRRegisterClass);
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00005493 case 'r':
5494 return std::make_pair(0U, ARM::GPRRegisterClass);
5495 case 'w':
Owen Anderson825b72b2009-08-11 20:47:22 +00005496 if (VT == MVT::f32)
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00005497 return std::make_pair(0U, ARM::SPRRegisterClass);
Bob Wilson5afffae2009-12-18 01:03:29 +00005498 if (VT.getSizeInBits() == 64)
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00005499 return std::make_pair(0U, ARM::DPRRegisterClass);
Evan Chengd831cda2009-12-08 23:06:22 +00005500 if (VT.getSizeInBits() == 128)
5501 return std::make_pair(0U, ARM::QPRRegisterClass);
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00005502 break;
Evan Chenga8e29892007-01-19 07:51:42 +00005503 }
5504 }
Bob Wilson33cc5cb2010-03-15 23:09:18 +00005505 if (StringRef("{cc}").equals_lower(Constraint))
Jakob Stoklund Olesen0d8ba332010-06-18 16:49:33 +00005506 return std::make_pair(unsigned(ARM::CPSR), ARM::CCRRegisterClass);
Bob Wilson33cc5cb2010-03-15 23:09:18 +00005507
Evan Chenga8e29892007-01-19 07:51:42 +00005508 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
5509}
5510
5511std::vector<unsigned> ARMTargetLowering::
5512getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +00005513 EVT VT) const {
Evan Chenga8e29892007-01-19 07:51:42 +00005514 if (Constraint.size() != 1)
5515 return std::vector<unsigned>();
5516
5517 switch (Constraint[0]) { // GCC ARM Constraint Letters
5518 default: break;
5519 case 'l':
Jim Grosbach30eae3c2009-04-07 20:34:09 +00005520 return make_vector<unsigned>(ARM::R0, ARM::R1, ARM::R2, ARM::R3,
5521 ARM::R4, ARM::R5, ARM::R6, ARM::R7,
5522 0);
Evan Chenga8e29892007-01-19 07:51:42 +00005523 case 'r':
5524 return make_vector<unsigned>(ARM::R0, ARM::R1, ARM::R2, ARM::R3,
5525 ARM::R4, ARM::R5, ARM::R6, ARM::R7,
5526 ARM::R8, ARM::R9, ARM::R10, ARM::R11,
5527 ARM::R12, ARM::LR, 0);
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00005528 case 'w':
Owen Anderson825b72b2009-08-11 20:47:22 +00005529 if (VT == MVT::f32)
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00005530 return make_vector<unsigned>(ARM::S0, ARM::S1, ARM::S2, ARM::S3,
5531 ARM::S4, ARM::S5, ARM::S6, ARM::S7,
5532 ARM::S8, ARM::S9, ARM::S10, ARM::S11,
5533 ARM::S12,ARM::S13,ARM::S14,ARM::S15,
5534 ARM::S16,ARM::S17,ARM::S18,ARM::S19,
5535 ARM::S20,ARM::S21,ARM::S22,ARM::S23,
5536 ARM::S24,ARM::S25,ARM::S26,ARM::S27,
5537 ARM::S28,ARM::S29,ARM::S30,ARM::S31, 0);
Bob Wilson5afffae2009-12-18 01:03:29 +00005538 if (VT.getSizeInBits() == 64)
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00005539 return make_vector<unsigned>(ARM::D0, ARM::D1, ARM::D2, ARM::D3,
5540 ARM::D4, ARM::D5, ARM::D6, ARM::D7,
5541 ARM::D8, ARM::D9, ARM::D10,ARM::D11,
5542 ARM::D12,ARM::D13,ARM::D14,ARM::D15, 0);
Evan Chengd831cda2009-12-08 23:06:22 +00005543 if (VT.getSizeInBits() == 128)
5544 return make_vector<unsigned>(ARM::Q0, ARM::Q1, ARM::Q2, ARM::Q3,
5545 ARM::Q4, ARM::Q5, ARM::Q6, ARM::Q7, 0);
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00005546 break;
Evan Chenga8e29892007-01-19 07:51:42 +00005547 }
5548
5549 return std::vector<unsigned>();
5550}
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005551
5552/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
5553/// vector. If it is invalid, don't add anything to Ops.
5554void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
5555 char Constraint,
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005556 std::vector<SDValue>&Ops,
5557 SelectionDAG &DAG) const {
5558 SDValue Result(0, 0);
5559
5560 switch (Constraint) {
5561 default: break;
5562 case 'I': case 'J': case 'K': case 'L':
5563 case 'M': case 'N': case 'O':
5564 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
5565 if (!C)
5566 return;
5567
5568 int64_t CVal64 = C->getSExtValue();
5569 int CVal = (int) CVal64;
5570 // None of these constraints allow values larger than 32 bits. Check
5571 // that the value fits in an int.
5572 if (CVal != CVal64)
5573 return;
5574
5575 switch (Constraint) {
5576 case 'I':
David Goodwinf1daf7d2009-07-08 23:10:31 +00005577 if (Subtarget->isThumb1Only()) {
5578 // This must be a constant between 0 and 255, for ADD
5579 // immediates.
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005580 if (CVal >= 0 && CVal <= 255)
5581 break;
David Goodwinf1daf7d2009-07-08 23:10:31 +00005582 } else if (Subtarget->isThumb2()) {
5583 // A constant that can be used as an immediate value in a
5584 // data-processing instruction.
5585 if (ARM_AM::getT2SOImmVal(CVal) != -1)
5586 break;
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005587 } else {
5588 // A constant that can be used as an immediate value in a
5589 // data-processing instruction.
5590 if (ARM_AM::getSOImmVal(CVal) != -1)
5591 break;
5592 }
5593 return;
5594
5595 case 'J':
David Goodwinf1daf7d2009-07-08 23:10:31 +00005596 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005597 // This must be a constant between -255 and -1, for negated ADD
5598 // immediates. This can be used in GCC with an "n" modifier that
5599 // prints the negated value, for use with SUB instructions. It is
5600 // not useful otherwise but is implemented for compatibility.
5601 if (CVal >= -255 && CVal <= -1)
5602 break;
5603 } else {
5604 // This must be a constant between -4095 and 4095. It is not clear
5605 // what this constraint is intended for. Implemented for
5606 // compatibility with GCC.
5607 if (CVal >= -4095 && CVal <= 4095)
5608 break;
5609 }
5610 return;
5611
5612 case 'K':
David Goodwinf1daf7d2009-07-08 23:10:31 +00005613 if (Subtarget->isThumb1Only()) {
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005614 // A 32-bit value where only one byte has a nonzero value. Exclude
5615 // zero to match GCC. This constraint is used by GCC internally for
5616 // constants that can be loaded with a move/shift combination.
5617 // It is not useful otherwise but is implemented for compatibility.
5618 if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal))
5619 break;
David Goodwinf1daf7d2009-07-08 23:10:31 +00005620 } else if (Subtarget->isThumb2()) {
5621 // A constant whose bitwise inverse can be used as an immediate
5622 // value in a data-processing instruction. This can be used in GCC
5623 // with a "B" modifier that prints the inverted value, for use with
5624 // BIC and MVN instructions. It is not useful otherwise but is
5625 // implemented for compatibility.
5626 if (ARM_AM::getT2SOImmVal(~CVal) != -1)
5627 break;
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005628 } else {
5629 // A constant whose bitwise inverse can be used as an immediate
5630 // value in a data-processing instruction. This can be used in GCC
5631 // with a "B" modifier that prints the inverted value, for use with
5632 // BIC and MVN instructions. It is not useful otherwise but is
5633 // implemented for compatibility.
5634 if (ARM_AM::getSOImmVal(~CVal) != -1)
5635 break;
5636 }
5637 return;
5638
5639 case 'L':
David Goodwinf1daf7d2009-07-08 23:10:31 +00005640 if (Subtarget->isThumb1Only()) {
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005641 // This must be a constant between -7 and 7,
5642 // for 3-operand ADD/SUB immediate instructions.
5643 if (CVal >= -7 && CVal < 7)
5644 break;
David Goodwinf1daf7d2009-07-08 23:10:31 +00005645 } else if (Subtarget->isThumb2()) {
5646 // A constant whose negation can be used as an immediate value in a
5647 // data-processing instruction. This can be used in GCC with an "n"
5648 // modifier that prints the negated value, for use with SUB
5649 // instructions. It is not useful otherwise but is implemented for
5650 // compatibility.
5651 if (ARM_AM::getT2SOImmVal(-CVal) != -1)
5652 break;
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005653 } else {
5654 // A constant whose negation can be used as an immediate value in a
5655 // data-processing instruction. This can be used in GCC with an "n"
5656 // modifier that prints the negated value, for use with SUB
5657 // instructions. It is not useful otherwise but is implemented for
5658 // compatibility.
5659 if (ARM_AM::getSOImmVal(-CVal) != -1)
5660 break;
5661 }
5662 return;
5663
5664 case 'M':
David Goodwinf1daf7d2009-07-08 23:10:31 +00005665 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005666 // This must be a multiple of 4 between 0 and 1020, for
5667 // ADD sp + immediate.
5668 if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0))
5669 break;
5670 } else {
5671 // A power of two or a constant between 0 and 32. This is used in
5672 // GCC for the shift amount on shifted register operands, but it is
5673 // useful in general for any shift amounts.
5674 if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0))
5675 break;
5676 }
5677 return;
5678
5679 case 'N':
David Goodwinf1daf7d2009-07-08 23:10:31 +00005680 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005681 // This must be a constant between 0 and 31, for shift amounts.
5682 if (CVal >= 0 && CVal <= 31)
5683 break;
5684 }
5685 return;
5686
5687 case 'O':
David Goodwinf1daf7d2009-07-08 23:10:31 +00005688 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005689 // This must be a multiple of 4 between -508 and 508, for
5690 // ADD/SUB sp = sp + immediate.
5691 if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0))
5692 break;
5693 }
5694 return;
5695 }
5696 Result = DAG.getTargetConstant(CVal, Op.getValueType());
5697 break;
5698 }
5699
5700 if (Result.getNode()) {
5701 Ops.push_back(Result);
5702 return;
5703 }
Dale Johannesen1784d162010-06-25 21:55:36 +00005704 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Bob Wilsonbf6396b2009-04-01 17:58:54 +00005705}
Anton Korobeynikov48e19352009-09-23 19:04:09 +00005706
5707bool
5708ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
5709 // The ARM target isn't yet aware of offsets.
5710 return false;
5711}
Evan Cheng39382422009-10-28 01:44:26 +00005712
5713int ARM::getVFPf32Imm(const APFloat &FPImm) {
5714 APInt Imm = FPImm.bitcastToAPInt();
5715 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1;
5716 int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127; // -126 to 127
5717 int64_t Mantissa = Imm.getZExtValue() & 0x7fffff; // 23 bits
5718
5719 // We can handle 4 bits of mantissa.
5720 // mantissa = (16+UInt(e:f:g:h))/16.
5721 if (Mantissa & 0x7ffff)
5722 return -1;
5723 Mantissa >>= 19;
5724 if ((Mantissa & 0xf) != Mantissa)
5725 return -1;
5726
5727 // We can handle 3 bits of exponent: exp == UInt(NOT(b):c:d)-3
5728 if (Exp < -3 || Exp > 4)
5729 return -1;
5730 Exp = ((Exp+3) & 0x7) ^ 4;
5731
5732 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
5733}
5734
5735int ARM::getVFPf64Imm(const APFloat &FPImm) {
5736 APInt Imm = FPImm.bitcastToAPInt();
5737 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1;
5738 int64_t Exp = (Imm.lshr(52).getSExtValue() & 0x7ff) - 1023; // -1022 to 1023
5739 uint64_t Mantissa = Imm.getZExtValue() & 0xfffffffffffffLL;
5740
5741 // We can handle 4 bits of mantissa.
5742 // mantissa = (16+UInt(e:f:g:h))/16.
5743 if (Mantissa & 0xffffffffffffLL)
5744 return -1;
5745 Mantissa >>= 48;
5746 if ((Mantissa & 0xf) != Mantissa)
5747 return -1;
5748
5749 // We can handle 3 bits of exponent: exp == UInt(NOT(b):c:d)-3
5750 if (Exp < -3 || Exp > 4)
5751 return -1;
5752 Exp = ((Exp+3) & 0x7) ^ 4;
5753
5754 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
5755}
5756
Jim Grosbach469bbdb2010-07-16 23:05:05 +00005757bool ARM::isBitFieldInvertedMask(unsigned v) {
5758 if (v == 0xffffffff)
5759 return 0;
5760 // there can be 1's on either or both "outsides", all the "inside"
5761 // bits must be 0's
5762 unsigned int lsb = 0, msb = 31;
5763 while (v & (1 << msb)) --msb;
5764 while (v & (1 << lsb)) ++lsb;
5765 for (unsigned int i = lsb; i <= msb; ++i) {
5766 if (v & (1 << i))
5767 return 0;
5768 }
5769 return 1;
5770}
5771
Evan Cheng39382422009-10-28 01:44:26 +00005772/// isFPImmLegal - Returns true if the target can instruction select the
5773/// specified FP immediate natively. If false, the legalizer will
5774/// materialize the FP immediate as a load from a constant pool.
5775bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
5776 if (!Subtarget->hasVFP3())
5777 return false;
5778 if (VT == MVT::f32)
5779 return ARM::getVFPf32Imm(Imm) != -1;
5780 if (VT == MVT::f64)
5781 return ARM::getVFPf64Imm(Imm) != -1;
5782 return false;
5783}
Bob Wilson65ffec42010-09-21 17:56:22 +00005784
5785/// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
5786/// MemIntrinsicNodes. The associated MachineMemOperands record the alignment
5787/// specified in the intrinsic calls.
5788bool ARMTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
5789 const CallInst &I,
5790 unsigned Intrinsic) const {
5791 switch (Intrinsic) {
5792 case Intrinsic::arm_neon_vld1:
5793 case Intrinsic::arm_neon_vld2:
5794 case Intrinsic::arm_neon_vld3:
5795 case Intrinsic::arm_neon_vld4:
5796 case Intrinsic::arm_neon_vld2lane:
5797 case Intrinsic::arm_neon_vld3lane:
5798 case Intrinsic::arm_neon_vld4lane: {
5799 Info.opc = ISD::INTRINSIC_W_CHAIN;
5800 // Conservatively set memVT to the entire set of vectors loaded.
5801 uint64_t NumElts = getTargetData()->getTypeAllocSize(I.getType()) / 8;
5802 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
5803 Info.ptrVal = I.getArgOperand(0);
5804 Info.offset = 0;
5805 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
5806 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
5807 Info.vol = false; // volatile loads with NEON intrinsics not supported
5808 Info.readMem = true;
5809 Info.writeMem = false;
5810 return true;
5811 }
5812 case Intrinsic::arm_neon_vst1:
5813 case Intrinsic::arm_neon_vst2:
5814 case Intrinsic::arm_neon_vst3:
5815 case Intrinsic::arm_neon_vst4:
5816 case Intrinsic::arm_neon_vst2lane:
5817 case Intrinsic::arm_neon_vst3lane:
5818 case Intrinsic::arm_neon_vst4lane: {
5819 Info.opc = ISD::INTRINSIC_VOID;
5820 // Conservatively set memVT to the entire set of vectors stored.
5821 unsigned NumElts = 0;
5822 for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
5823 const Type *ArgTy = I.getArgOperand(ArgI)->getType();
5824 if (!ArgTy->isVectorTy())
5825 break;
5826 NumElts += getTargetData()->getTypeAllocSize(ArgTy) / 8;
5827 }
5828 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
5829 Info.ptrVal = I.getArgOperand(0);
5830 Info.offset = 0;
5831 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
5832 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
5833 Info.vol = false; // volatile stores with NEON intrinsics not supported
5834 Info.readMem = false;
5835 Info.writeMem = true;
5836 return true;
5837 }
5838 default:
5839 break;
5840 }
5841
5842 return false;
5843}