blob: 2f78f7a5ae828ce4ed1a034da8e2db68b19c5b6f [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"
Eric Christopher6f2ccef2010-09-10 22:42:06 +000017#include "ARMCallingConv.h"
Evan Chenga8e29892007-01-19 07:51:42 +000018#include "ARMConstantPoolValue.h"
19#include "ARMISelLowering.h"
20#include "ARMMachineFunctionInfo.h"
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +000021#include "ARMPerfectShuffle.h"
Evan Chenga8e29892007-01-19 07:51:42 +000022#include "ARMRegisterInfo.h"
23#include "ARMSubtarget.h"
24#include "ARMTargetMachine.h"
Chris Lattner80ec2792009-08-02 00:34:36 +000025#include "ARMTargetObjectFile.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000026#include "MCTargetDesc/ARMAddressingModes.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 Cheng55d42002011-01-08 01:24:27 +000036#include "llvm/CodeGen/IntrinsicLowering.h"
Evan Chenga8e29892007-01-19 07:51:42 +000037#include "llvm/CodeGen/MachineBasicBlock.h"
38#include "llvm/CodeGen/MachineFrameInfo.h"
39#include "llvm/CodeGen/MachineFunction.h"
40#include "llvm/CodeGen/MachineInstrBuilder.h"
Bill Wendling2a850152011-10-05 00:02:33 +000041#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000042#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chenga8e29892007-01-19 07:51:42 +000043#include "llvm/CodeGen/SelectionDAG.h"
Bill Wendling94a1c632010-03-09 02:46:12 +000044#include "llvm/MC/MCSectionMachO.h"
Evan Chengb6ab2542007-01-31 08:40:13 +000045#include "llvm/Target/TargetOptions.h"
Evan Cheng55d42002011-01-08 01:24:27 +000046#include "llvm/ADT/StringExtras.h"
Dale Johannesen51e28e62010-06-03 21:09:53 +000047#include "llvm/ADT/Statistic.h"
Jim Grosbache7b52522010-04-14 22:28:31 +000048#include "llvm/Support/CommandLine.h"
Torok Edwinab7c09b2009-07-08 18:01:40 +000049#include "llvm/Support/ErrorHandling.h"
Evan Chengb01fad62007-03-12 23:30:29 +000050#include "llvm/Support/MathExtras.h"
Jim Grosbache801dc42009-12-12 01:40:06 +000051#include "llvm/Support/raw_ostream.h"
Jim Grosbach3fb2b1e2009-09-01 01:57:56 +000052#include <sstream>
Evan Chenga8e29892007-01-19 07:51:42 +000053using namespace llvm;
54
Dale Johannesen51e28e62010-06-03 21:09:53 +000055STATISTIC(NumTailCalls, "Number of tail calls");
Evan Chengfc8475b2011-01-19 02:16:49 +000056STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt");
Dale Johannesen51e28e62010-06-03 21:09:53 +000057
Bob Wilson703af3a2010-08-13 22:43:33 +000058// This option should go away when tail calls fully work.
59static cl::opt<bool>
60EnableARMTailCalls("arm-tail-calls", cl::Hidden,
61 cl::desc("Generate tail calls (TEMPORARY OPTION)."),
62 cl::init(false));
63
Eric Christopher836c6242010-12-15 23:47:29 +000064cl::opt<bool>
Jim Grosbache7b52522010-04-14 22:28:31 +000065EnableARMLongCalls("arm-long-calls", cl::Hidden,
Evan Cheng515fe3a2010-07-08 02:08:50 +000066 cl::desc("Generate calls via indirect call instructions"),
Jim Grosbache7b52522010-04-14 22:28:31 +000067 cl::init(false));
68
Evan Cheng46df4eb2010-06-16 07:35:02 +000069static cl::opt<bool>
70ARMInterworking("arm-interworking", cl::Hidden,
71 cl::desc("Enable / disable ARM interworking (for debugging only)"),
72 cl::init(true));
73
Benjamin Kramer0861f572011-11-26 23:01:57 +000074namespace {
Cameron Zwaricha86686e2011-06-10 20:59:24 +000075 class ARMCCState : public CCState {
76 public:
77 ARMCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
78 const TargetMachine &TM, SmallVector<CCValAssign, 16> &locs,
79 LLVMContext &C, ParmContext PC)
80 : CCState(CC, isVarArg, MF, TM, locs, C) {
81 assert(((PC == Call) || (PC == Prologue)) &&
82 "ARMCCState users must specify whether their context is call"
83 "or prologue generation.");
84 CallOrPrologue = PC;
85 }
86 };
87}
88
Stuart Hastingsc7315872011-04-20 16:47:52 +000089// The APCS parameter registers.
90static const unsigned GPRArgRegs[] = {
91 ARM::R0, ARM::R1, ARM::R2, ARM::R3
92};
93
Owen Andersone50ed302009-08-10 22:56:29 +000094void ARMTargetLowering::addTypeForNEON(EVT VT, EVT PromotedLdStVT,
95 EVT PromotedBitwiseVT) {
Bob Wilson5bafff32009-06-22 23:27:02 +000096 if (VT != PromotedLdStVT) {
Owen Anderson70671842009-08-10 20:18:46 +000097 setOperationAction(ISD::LOAD, VT.getSimpleVT(), Promote);
Owen Andersond6662ad2009-08-10 20:46:15 +000098 AddPromotedToType (ISD::LOAD, VT.getSimpleVT(),
99 PromotedLdStVT.getSimpleVT());
Bob Wilson5bafff32009-06-22 23:27:02 +0000100
Owen Anderson70671842009-08-10 20:18:46 +0000101 setOperationAction(ISD::STORE, VT.getSimpleVT(), Promote);
Jim Grosbach764ab522009-08-11 15:33:49 +0000102 AddPromotedToType (ISD::STORE, VT.getSimpleVT(),
Owen Andersond6662ad2009-08-10 20:46:15 +0000103 PromotedLdStVT.getSimpleVT());
Bob Wilson5bafff32009-06-22 23:27:02 +0000104 }
105
Owen Andersone50ed302009-08-10 22:56:29 +0000106 EVT ElemTy = VT.getVectorElementType();
Owen Anderson825b72b2009-08-11 20:47:22 +0000107 if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
Duncan Sands28b77e92011-09-06 19:07:46 +0000108 setOperationAction(ISD::SETCC, VT.getSimpleVT(), Custom);
Eli Friedman5c89cb82011-10-24 23:08:52 +0000109 setOperationAction(ISD::INSERT_VECTOR_ELT, VT.getSimpleVT(), Custom);
Bob Wilson3468c2e2010-11-03 16:24:50 +0000110 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT.getSimpleVT(), Custom);
Eli Friedman14e809c2011-11-09 23:36:02 +0000111 if (ElemTy == MVT::i32) {
112 setOperationAction(ISD::SINT_TO_FP, VT.getSimpleVT(), Custom);
113 setOperationAction(ISD::UINT_TO_FP, VT.getSimpleVT(), Custom);
114 setOperationAction(ISD::FP_TO_SINT, VT.getSimpleVT(), Custom);
115 setOperationAction(ISD::FP_TO_UINT, VT.getSimpleVT(), Custom);
116 } else {
Bob Wilson0696fdf2009-09-16 20:20:44 +0000117 setOperationAction(ISD::SINT_TO_FP, VT.getSimpleVT(), Expand);
118 setOperationAction(ISD::UINT_TO_FP, VT.getSimpleVT(), Expand);
119 setOperationAction(ISD::FP_TO_SINT, VT.getSimpleVT(), Expand);
120 setOperationAction(ISD::FP_TO_UINT, VT.getSimpleVT(), Expand);
121 }
Owen Anderson70671842009-08-10 20:18:46 +0000122 setOperationAction(ISD::BUILD_VECTOR, VT.getSimpleVT(), Custom);
123 setOperationAction(ISD::VECTOR_SHUFFLE, VT.getSimpleVT(), Custom);
Bob Wilson07f6e802010-06-16 21:34:01 +0000124 setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Legal);
Bob Wilson5e8b8332011-01-07 04:59:04 +0000125 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT.getSimpleVT(), Legal);
Bob Wilsond0910c42010-04-06 22:02:24 +0000126 setOperationAction(ISD::SELECT, VT.getSimpleVT(), Expand);
127 setOperationAction(ISD::SELECT_CC, VT.getSimpleVT(), Expand);
Eli Friedman15f58c52011-11-11 03:16:38 +0000128 setOperationAction(ISD::SIGN_EXTEND_INREG, VT.getSimpleVT(), Expand);
Bob Wilson5bafff32009-06-22 23:27:02 +0000129 if (VT.isInteger()) {
Owen Anderson70671842009-08-10 20:18:46 +0000130 setOperationAction(ISD::SHL, VT.getSimpleVT(), Custom);
131 setOperationAction(ISD::SRA, VT.getSimpleVT(), Custom);
132 setOperationAction(ISD::SRL, VT.getSimpleVT(), Custom);
Bob Wilson5bafff32009-06-22 23:27:02 +0000133 }
134
135 // Promote all bit-wise operations.
136 if (VT.isInteger() && VT != PromotedBitwiseVT) {
Owen Anderson70671842009-08-10 20:18:46 +0000137 setOperationAction(ISD::AND, VT.getSimpleVT(), Promote);
Owen Andersond6662ad2009-08-10 20:46:15 +0000138 AddPromotedToType (ISD::AND, VT.getSimpleVT(),
139 PromotedBitwiseVT.getSimpleVT());
Owen Anderson70671842009-08-10 20:18:46 +0000140 setOperationAction(ISD::OR, VT.getSimpleVT(), Promote);
Jim Grosbach764ab522009-08-11 15:33:49 +0000141 AddPromotedToType (ISD::OR, VT.getSimpleVT(),
Owen Andersond6662ad2009-08-10 20:46:15 +0000142 PromotedBitwiseVT.getSimpleVT());
Owen Anderson70671842009-08-10 20:18:46 +0000143 setOperationAction(ISD::XOR, VT.getSimpleVT(), Promote);
Jim Grosbach764ab522009-08-11 15:33:49 +0000144 AddPromotedToType (ISD::XOR, VT.getSimpleVT(),
Owen Andersond6662ad2009-08-10 20:46:15 +0000145 PromotedBitwiseVT.getSimpleVT());
Bob Wilson5bafff32009-06-22 23:27:02 +0000146 }
Bob Wilson16330762009-09-16 00:17:28 +0000147
148 // Neon does not support vector divide/remainder operations.
149 setOperationAction(ISD::SDIV, VT.getSimpleVT(), Expand);
150 setOperationAction(ISD::UDIV, VT.getSimpleVT(), Expand);
151 setOperationAction(ISD::FDIV, VT.getSimpleVT(), Expand);
152 setOperationAction(ISD::SREM, VT.getSimpleVT(), Expand);
153 setOperationAction(ISD::UREM, VT.getSimpleVT(), Expand);
154 setOperationAction(ISD::FREM, VT.getSimpleVT(), Expand);
Bob Wilson5bafff32009-06-22 23:27:02 +0000155}
156
Owen Andersone50ed302009-08-10 22:56:29 +0000157void ARMTargetLowering::addDRTypeForNEON(EVT VT) {
Bob Wilson5bafff32009-06-22 23:27:02 +0000158 addRegisterClass(VT, ARM::DPRRegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000159 addTypeForNEON(VT, MVT::f64, MVT::v2i32);
Bob Wilson5bafff32009-06-22 23:27:02 +0000160}
161
Owen Andersone50ed302009-08-10 22:56:29 +0000162void ARMTargetLowering::addQRTypeForNEON(EVT VT) {
Bob Wilson5bafff32009-06-22 23:27:02 +0000163 addRegisterClass(VT, ARM::QPRRegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000164 addTypeForNEON(VT, MVT::v2f64, MVT::v4i32);
Bob Wilson5bafff32009-06-22 23:27:02 +0000165}
166
Chris Lattnerf0144122009-07-28 03:13:23 +0000167static TargetLoweringObjectFile *createTLOF(TargetMachine &TM) {
168 if (TM.getSubtarget<ARMSubtarget>().isTargetDarwin())
Bill Wendling505ad8b2010-03-15 21:09:38 +0000169 return new TargetLoweringObjectFileMachO();
Bill Wendling94a1c632010-03-09 02:46:12 +0000170
Chris Lattner80ec2792009-08-02 00:34:36 +0000171 return new ARMElfTargetObjectFile();
Chris Lattnerf0144122009-07-28 03:13:23 +0000172}
173
Evan Chenga8e29892007-01-19 07:51:42 +0000174ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
Evan Chenge7e0d622009-11-06 22:24:13 +0000175 : TargetLowering(TM, createTLOF(TM)) {
Evan Chenga8e29892007-01-19 07:51:42 +0000176 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng31446872010-07-23 22:39:59 +0000177 RegInfo = TM.getRegisterInfo();
Evan Cheng3ef1c872010-09-10 01:29:16 +0000178 Itins = TM.getInstrItineraryData();
Evan Chenga8e29892007-01-19 07:51:42 +0000179
Duncan Sands28b77e92011-09-06 19:07:46 +0000180 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
181
Evan Chengb1df8f22007-04-27 08:15:43 +0000182 if (Subtarget->isTargetDarwin()) {
Evan Chengb1df8f22007-04-27 08:15:43 +0000183 // Uses VFP for Thumb libfuncs if available.
184 if (Subtarget->isThumb() && Subtarget->hasVFP2()) {
185 // Single-precision floating-point arithmetic.
186 setLibcallName(RTLIB::ADD_F32, "__addsf3vfp");
187 setLibcallName(RTLIB::SUB_F32, "__subsf3vfp");
188 setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp");
189 setLibcallName(RTLIB::DIV_F32, "__divsf3vfp");
Evan Chenga8e29892007-01-19 07:51:42 +0000190
Evan Chengb1df8f22007-04-27 08:15:43 +0000191 // Double-precision floating-point arithmetic.
192 setLibcallName(RTLIB::ADD_F64, "__adddf3vfp");
193 setLibcallName(RTLIB::SUB_F64, "__subdf3vfp");
194 setLibcallName(RTLIB::MUL_F64, "__muldf3vfp");
195 setLibcallName(RTLIB::DIV_F64, "__divdf3vfp");
Evan Cheng193f8502007-01-31 09:30:58 +0000196
Evan Chengb1df8f22007-04-27 08:15:43 +0000197 // Single-precision comparisons.
198 setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp");
199 setLibcallName(RTLIB::UNE_F32, "__nesf2vfp");
200 setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp");
201 setLibcallName(RTLIB::OLE_F32, "__lesf2vfp");
202 setLibcallName(RTLIB::OGE_F32, "__gesf2vfp");
203 setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp");
204 setLibcallName(RTLIB::UO_F32, "__unordsf2vfp");
205 setLibcallName(RTLIB::O_F32, "__unordsf2vfp");
Evan Chenga8e29892007-01-19 07:51:42 +0000206
Evan Chengb1df8f22007-04-27 08:15:43 +0000207 setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
208 setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE);
209 setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
210 setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
211 setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
212 setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
213 setCmpLibcallCC(RTLIB::UO_F32, ISD::SETNE);
214 setCmpLibcallCC(RTLIB::O_F32, ISD::SETEQ);
Evan Cheng193f8502007-01-31 09:30:58 +0000215
Evan Chengb1df8f22007-04-27 08:15:43 +0000216 // Double-precision comparisons.
217 setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp");
218 setLibcallName(RTLIB::UNE_F64, "__nedf2vfp");
219 setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp");
220 setLibcallName(RTLIB::OLE_F64, "__ledf2vfp");
221 setLibcallName(RTLIB::OGE_F64, "__gedf2vfp");
222 setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp");
223 setLibcallName(RTLIB::UO_F64, "__unorddf2vfp");
224 setLibcallName(RTLIB::O_F64, "__unorddf2vfp");
Evan Chenga8e29892007-01-19 07:51:42 +0000225
Evan Chengb1df8f22007-04-27 08:15:43 +0000226 setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
227 setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE);
228 setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
229 setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
230 setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
231 setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
232 setCmpLibcallCC(RTLIB::UO_F64, ISD::SETNE);
233 setCmpLibcallCC(RTLIB::O_F64, ISD::SETEQ);
Evan Chenga8e29892007-01-19 07:51:42 +0000234
Evan Chengb1df8f22007-04-27 08:15:43 +0000235 // Floating-point to integer conversions.
236 // i64 conversions are done via library routines even when generating VFP
237 // instructions, so use the same ones.
238 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp");
239 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp");
240 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp");
241 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp");
Evan Chenga8e29892007-01-19 07:51:42 +0000242
Evan Chengb1df8f22007-04-27 08:15:43 +0000243 // Conversions between floating types.
244 setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp");
245 setLibcallName(RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp");
246
247 // Integer to floating-point conversions.
248 // i64 conversions are done via library routines even when generating VFP
249 // instructions, so use the same ones.
Bob Wilson2a14c522009-03-20 23:16:43 +0000250 // FIXME: There appears to be some naming inconsistency in ARM libgcc:
251 // e.g., __floatunsidf vs. __floatunssidfvfp.
Evan Chengb1df8f22007-04-27 08:15:43 +0000252 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp");
253 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp");
254 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp");
255 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp");
256 }
Evan Chenga8e29892007-01-19 07:51:42 +0000257 }
258
Bob Wilson2f954612009-05-22 17:38:41 +0000259 // These libcalls are not available in 32-bit.
260 setLibcallName(RTLIB::SHL_I128, 0);
261 setLibcallName(RTLIB::SRL_I128, 0);
262 setLibcallName(RTLIB::SRA_I128, 0);
263
Anton Korobeynikov72977a42009-08-14 20:10:52 +0000264 if (Subtarget->isAAPCS_ABI()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000265 // Double-precision floating-point arithmetic helper functions
Anton Korobeynikov4f922f22010-09-28 21:39:26 +0000266 // RTABI chapter 4.1.2, Table 2
267 setLibcallName(RTLIB::ADD_F64, "__aeabi_dadd");
268 setLibcallName(RTLIB::DIV_F64, "__aeabi_ddiv");
269 setLibcallName(RTLIB::MUL_F64, "__aeabi_dmul");
270 setLibcallName(RTLIB::SUB_F64, "__aeabi_dsub");
271 setLibcallCallingConv(RTLIB::ADD_F64, CallingConv::ARM_AAPCS);
272 setLibcallCallingConv(RTLIB::DIV_F64, CallingConv::ARM_AAPCS);
273 setLibcallCallingConv(RTLIB::MUL_F64, CallingConv::ARM_AAPCS);
274 setLibcallCallingConv(RTLIB::SUB_F64, CallingConv::ARM_AAPCS);
275
276 // Double-precision floating-point comparison helper functions
277 // RTABI chapter 4.1.2, Table 3
278 setLibcallName(RTLIB::OEQ_F64, "__aeabi_dcmpeq");
279 setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
280 setLibcallName(RTLIB::UNE_F64, "__aeabi_dcmpeq");
281 setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETEQ);
282 setLibcallName(RTLIB::OLT_F64, "__aeabi_dcmplt");
283 setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
284 setLibcallName(RTLIB::OLE_F64, "__aeabi_dcmple");
285 setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
286 setLibcallName(RTLIB::OGE_F64, "__aeabi_dcmpge");
287 setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
288 setLibcallName(RTLIB::OGT_F64, "__aeabi_dcmpgt");
289 setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
290 setLibcallName(RTLIB::UO_F64, "__aeabi_dcmpun");
291 setCmpLibcallCC(RTLIB::UO_F64, ISD::SETNE);
292 setLibcallName(RTLIB::O_F64, "__aeabi_dcmpun");
293 setCmpLibcallCC(RTLIB::O_F64, ISD::SETEQ);
294 setLibcallCallingConv(RTLIB::OEQ_F64, CallingConv::ARM_AAPCS);
295 setLibcallCallingConv(RTLIB::UNE_F64, CallingConv::ARM_AAPCS);
296 setLibcallCallingConv(RTLIB::OLT_F64, CallingConv::ARM_AAPCS);
297 setLibcallCallingConv(RTLIB::OLE_F64, CallingConv::ARM_AAPCS);
298 setLibcallCallingConv(RTLIB::OGE_F64, CallingConv::ARM_AAPCS);
299 setLibcallCallingConv(RTLIB::OGT_F64, CallingConv::ARM_AAPCS);
300 setLibcallCallingConv(RTLIB::UO_F64, CallingConv::ARM_AAPCS);
301 setLibcallCallingConv(RTLIB::O_F64, CallingConv::ARM_AAPCS);
302
303 // Single-precision floating-point arithmetic helper functions
304 // RTABI chapter 4.1.2, Table 4
305 setLibcallName(RTLIB::ADD_F32, "__aeabi_fadd");
306 setLibcallName(RTLIB::DIV_F32, "__aeabi_fdiv");
307 setLibcallName(RTLIB::MUL_F32, "__aeabi_fmul");
308 setLibcallName(RTLIB::SUB_F32, "__aeabi_fsub");
309 setLibcallCallingConv(RTLIB::ADD_F32, CallingConv::ARM_AAPCS);
310 setLibcallCallingConv(RTLIB::DIV_F32, CallingConv::ARM_AAPCS);
311 setLibcallCallingConv(RTLIB::MUL_F32, CallingConv::ARM_AAPCS);
312 setLibcallCallingConv(RTLIB::SUB_F32, CallingConv::ARM_AAPCS);
313
314 // Single-precision floating-point comparison helper functions
315 // RTABI chapter 4.1.2, Table 5
316 setLibcallName(RTLIB::OEQ_F32, "__aeabi_fcmpeq");
317 setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
318 setLibcallName(RTLIB::UNE_F32, "__aeabi_fcmpeq");
319 setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETEQ);
320 setLibcallName(RTLIB::OLT_F32, "__aeabi_fcmplt");
321 setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
322 setLibcallName(RTLIB::OLE_F32, "__aeabi_fcmple");
323 setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
324 setLibcallName(RTLIB::OGE_F32, "__aeabi_fcmpge");
325 setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
326 setLibcallName(RTLIB::OGT_F32, "__aeabi_fcmpgt");
327 setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
328 setLibcallName(RTLIB::UO_F32, "__aeabi_fcmpun");
329 setCmpLibcallCC(RTLIB::UO_F32, ISD::SETNE);
330 setLibcallName(RTLIB::O_F32, "__aeabi_fcmpun");
331 setCmpLibcallCC(RTLIB::O_F32, ISD::SETEQ);
332 setLibcallCallingConv(RTLIB::OEQ_F32, CallingConv::ARM_AAPCS);
333 setLibcallCallingConv(RTLIB::UNE_F32, CallingConv::ARM_AAPCS);
334 setLibcallCallingConv(RTLIB::OLT_F32, CallingConv::ARM_AAPCS);
335 setLibcallCallingConv(RTLIB::OLE_F32, CallingConv::ARM_AAPCS);
336 setLibcallCallingConv(RTLIB::OGE_F32, CallingConv::ARM_AAPCS);
337 setLibcallCallingConv(RTLIB::OGT_F32, CallingConv::ARM_AAPCS);
338 setLibcallCallingConv(RTLIB::UO_F32, CallingConv::ARM_AAPCS);
339 setLibcallCallingConv(RTLIB::O_F32, CallingConv::ARM_AAPCS);
340
341 // Floating-point to integer conversions.
342 // RTABI chapter 4.1.2, Table 6
343 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__aeabi_d2iz");
344 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__aeabi_d2uiz");
345 setLibcallName(RTLIB::FPTOSINT_F64_I64, "__aeabi_d2lz");
346 setLibcallName(RTLIB::FPTOUINT_F64_I64, "__aeabi_d2ulz");
347 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__aeabi_f2iz");
348 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__aeabi_f2uiz");
349 setLibcallName(RTLIB::FPTOSINT_F32_I64, "__aeabi_f2lz");
350 setLibcallName(RTLIB::FPTOUINT_F32_I64, "__aeabi_f2ulz");
351 setLibcallCallingConv(RTLIB::FPTOSINT_F64_I32, CallingConv::ARM_AAPCS);
352 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I32, CallingConv::ARM_AAPCS);
353 setLibcallCallingConv(RTLIB::FPTOSINT_F64_I64, CallingConv::ARM_AAPCS);
354 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::ARM_AAPCS);
355 setLibcallCallingConv(RTLIB::FPTOSINT_F32_I32, CallingConv::ARM_AAPCS);
356 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I32, CallingConv::ARM_AAPCS);
357 setLibcallCallingConv(RTLIB::FPTOSINT_F32_I64, CallingConv::ARM_AAPCS);
358 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::ARM_AAPCS);
359
360 // Conversions between floating types.
361 // RTABI chapter 4.1.2, Table 7
362 setLibcallName(RTLIB::FPROUND_F64_F32, "__aeabi_d2f");
363 setLibcallName(RTLIB::FPEXT_F32_F64, "__aeabi_f2d");
364 setLibcallCallingConv(RTLIB::FPROUND_F64_F32, CallingConv::ARM_AAPCS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000365 setLibcallCallingConv(RTLIB::FPEXT_F32_F64, CallingConv::ARM_AAPCS);
Anton Korobeynikov4f922f22010-09-28 21:39:26 +0000366
367 // Integer to floating-point conversions.
368 // RTABI chapter 4.1.2, Table 8
369 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__aeabi_i2d");
370 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__aeabi_ui2d");
371 setLibcallName(RTLIB::SINTTOFP_I64_F64, "__aeabi_l2d");
372 setLibcallName(RTLIB::UINTTOFP_I64_F64, "__aeabi_ul2d");
373 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__aeabi_i2f");
374 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__aeabi_ui2f");
375 setLibcallName(RTLIB::SINTTOFP_I64_F32, "__aeabi_l2f");
376 setLibcallName(RTLIB::UINTTOFP_I64_F32, "__aeabi_ul2f");
377 setLibcallCallingConv(RTLIB::SINTTOFP_I32_F64, CallingConv::ARM_AAPCS);
378 setLibcallCallingConv(RTLIB::UINTTOFP_I32_F64, CallingConv::ARM_AAPCS);
379 setLibcallCallingConv(RTLIB::SINTTOFP_I64_F64, CallingConv::ARM_AAPCS);
380 setLibcallCallingConv(RTLIB::UINTTOFP_I64_F64, CallingConv::ARM_AAPCS);
381 setLibcallCallingConv(RTLIB::SINTTOFP_I32_F32, CallingConv::ARM_AAPCS);
382 setLibcallCallingConv(RTLIB::UINTTOFP_I32_F32, CallingConv::ARM_AAPCS);
383 setLibcallCallingConv(RTLIB::SINTTOFP_I64_F32, CallingConv::ARM_AAPCS);
384 setLibcallCallingConv(RTLIB::UINTTOFP_I64_F32, CallingConv::ARM_AAPCS);
385
386 // Long long helper functions
387 // RTABI chapter 4.2, Table 9
388 setLibcallName(RTLIB::MUL_I64, "__aeabi_lmul");
389 setLibcallName(RTLIB::SDIV_I64, "__aeabi_ldivmod");
390 setLibcallName(RTLIB::UDIV_I64, "__aeabi_uldivmod");
391 setLibcallName(RTLIB::SHL_I64, "__aeabi_llsl");
392 setLibcallName(RTLIB::SRL_I64, "__aeabi_llsr");
393 setLibcallName(RTLIB::SRA_I64, "__aeabi_lasr");
394 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::ARM_AAPCS);
395 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::ARM_AAPCS);
396 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::ARM_AAPCS);
397 setLibcallCallingConv(RTLIB::SHL_I64, CallingConv::ARM_AAPCS);
398 setLibcallCallingConv(RTLIB::SRL_I64, CallingConv::ARM_AAPCS);
399 setLibcallCallingConv(RTLIB::SRA_I64, CallingConv::ARM_AAPCS);
400
401 // Integer division functions
402 // RTABI chapter 4.3.1
403 setLibcallName(RTLIB::SDIV_I8, "__aeabi_idiv");
404 setLibcallName(RTLIB::SDIV_I16, "__aeabi_idiv");
405 setLibcallName(RTLIB::SDIV_I32, "__aeabi_idiv");
406 setLibcallName(RTLIB::UDIV_I8, "__aeabi_uidiv");
407 setLibcallName(RTLIB::UDIV_I16, "__aeabi_uidiv");
408 setLibcallName(RTLIB::UDIV_I32, "__aeabi_uidiv");
409 setLibcallCallingConv(RTLIB::SDIV_I8, CallingConv::ARM_AAPCS);
410 setLibcallCallingConv(RTLIB::SDIV_I16, CallingConv::ARM_AAPCS);
411 setLibcallCallingConv(RTLIB::SDIV_I32, CallingConv::ARM_AAPCS);
412 setLibcallCallingConv(RTLIB::UDIV_I8, CallingConv::ARM_AAPCS);
413 setLibcallCallingConv(RTLIB::UDIV_I16, CallingConv::ARM_AAPCS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000414 setLibcallCallingConv(RTLIB::UDIV_I32, CallingConv::ARM_AAPCS);
Renato Golin1ec11fb2011-05-22 21:41:23 +0000415
416 // Memory operations
417 // RTABI chapter 4.3.4
418 setLibcallName(RTLIB::MEMCPY, "__aeabi_memcpy");
419 setLibcallName(RTLIB::MEMMOVE, "__aeabi_memmove");
420 setLibcallName(RTLIB::MEMSET, "__aeabi_memset");
Anton Korobeynikov72977a42009-08-14 20:10:52 +0000421 }
422
Bob Wilson2fef4572011-10-07 16:59:21 +0000423 // Use divmod compiler-rt calls for iOS 5.0 and later.
424 if (Subtarget->getTargetTriple().getOS() == Triple::IOS &&
425 !Subtarget->getTargetTriple().isOSVersionLT(5, 0)) {
426 setLibcallName(RTLIB::SDIVREM_I32, "__divmodsi4");
427 setLibcallName(RTLIB::UDIVREM_I32, "__udivmodsi4");
428 }
429
David Goodwinf1daf7d2009-07-08 23:10:31 +0000430 if (Subtarget->isThumb1Only())
Owen Anderson825b72b2009-08-11 20:47:22 +0000431 addRegisterClass(MVT::i32, ARM::tGPRRegisterClass);
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000432 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000433 addRegisterClass(MVT::i32, ARM::GPRRegisterClass);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000434 if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
435 !Subtarget->isThumb1Only()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000436 addRegisterClass(MVT::f32, ARM::SPRRegisterClass);
Jim Grosbachfcba5e62010-08-11 15:44:15 +0000437 if (!Subtarget->isFPOnlySP())
438 addRegisterClass(MVT::f64, ARM::DPRRegisterClass);
Bob Wilson2dc4f542009-03-20 22:42:55 +0000439
Owen Anderson825b72b2009-08-11 20:47:22 +0000440 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000441 }
Bob Wilson5bafff32009-06-22 23:27:02 +0000442
Eli Friedman9f1f26a2011-11-08 01:43:53 +0000443 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
444 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
445 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
446 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
447 setTruncStoreAction((MVT::SimpleValueType)VT,
448 (MVT::SimpleValueType)InnerVT, Expand);
449 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
450 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
451 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
452 }
453
Bob Wilson5bafff32009-06-22 23:27:02 +0000454 if (Subtarget->hasNEON()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000455 addDRTypeForNEON(MVT::v2f32);
456 addDRTypeForNEON(MVT::v8i8);
457 addDRTypeForNEON(MVT::v4i16);
458 addDRTypeForNEON(MVT::v2i32);
459 addDRTypeForNEON(MVT::v1i64);
Bob Wilson5bafff32009-06-22 23:27:02 +0000460
Owen Anderson825b72b2009-08-11 20:47:22 +0000461 addQRTypeForNEON(MVT::v4f32);
462 addQRTypeForNEON(MVT::v2f64);
463 addQRTypeForNEON(MVT::v16i8);
464 addQRTypeForNEON(MVT::v8i16);
465 addQRTypeForNEON(MVT::v4i32);
466 addQRTypeForNEON(MVT::v2i64);
Bob Wilson5bafff32009-06-22 23:27:02 +0000467
Bob Wilson74dc72e2009-09-15 23:55:57 +0000468 // v2f64 is legal so that QR subregs can be extracted as f64 elements, but
469 // neither Neon nor VFP support any arithmetic operations on it.
Stepan Dyatkovskiy3e0dc062011-12-11 14:35:48 +0000470 // The same with v4f32. But keep in mind that vadd, vsub, vmul are natively
471 // supported for v4f32.
Bob Wilson74dc72e2009-09-15 23:55:57 +0000472 setOperationAction(ISD::FADD, MVT::v2f64, Expand);
473 setOperationAction(ISD::FSUB, MVT::v2f64, Expand);
474 setOperationAction(ISD::FMUL, MVT::v2f64, Expand);
Stepan Dyatkovskiy3e0dc062011-12-11 14:35:48 +0000475 // FIXME: Code duplication: FDIV and FREM are expanded always, see
476 // ARMTargetLowering::addTypeForNEON method for details.
Bob Wilson74dc72e2009-09-15 23:55:57 +0000477 setOperationAction(ISD::FDIV, MVT::v2f64, Expand);
478 setOperationAction(ISD::FREM, MVT::v2f64, Expand);
Stepan Dyatkovskiy3e0dc062011-12-11 14:35:48 +0000479 // FIXME: Create unittest.
480 // In another words, find a way when "copysign" appears in DAG with vector
481 // operands.
Bob Wilson74dc72e2009-09-15 23:55:57 +0000482 setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand);
Stepan Dyatkovskiy3e0dc062011-12-11 14:35:48 +0000483 // FIXME: Code duplication: SETCC has custom operation action, see
484 // ARMTargetLowering::addTypeForNEON method for details.
Duncan Sands28b77e92011-09-06 19:07:46 +0000485 setOperationAction(ISD::SETCC, MVT::v2f64, Expand);
Stepan Dyatkovskiy3e0dc062011-12-11 14:35:48 +0000486 // FIXME: Create unittest for FNEG and for FABS.
Bob Wilson74dc72e2009-09-15 23:55:57 +0000487 setOperationAction(ISD::FNEG, MVT::v2f64, Expand);
488 setOperationAction(ISD::FABS, MVT::v2f64, Expand);
489 setOperationAction(ISD::FSQRT, MVT::v2f64, Expand);
490 setOperationAction(ISD::FSIN, MVT::v2f64, Expand);
491 setOperationAction(ISD::FCOS, MVT::v2f64, Expand);
492 setOperationAction(ISD::FPOWI, MVT::v2f64, Expand);
493 setOperationAction(ISD::FPOW, MVT::v2f64, Expand);
494 setOperationAction(ISD::FLOG, MVT::v2f64, Expand);
495 setOperationAction(ISD::FLOG2, MVT::v2f64, Expand);
496 setOperationAction(ISD::FLOG10, MVT::v2f64, Expand);
497 setOperationAction(ISD::FEXP, MVT::v2f64, Expand);
498 setOperationAction(ISD::FEXP2, MVT::v2f64, Expand);
Stepan Dyatkovskiy3e0dc062011-12-11 14:35:48 +0000499 // FIXME: Create unittest for FCEIL, FTRUNC, FRINT, FNEARBYINT, FFLOOR.
Bob Wilson74dc72e2009-09-15 23:55:57 +0000500 setOperationAction(ISD::FCEIL, MVT::v2f64, Expand);
501 setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand);
502 setOperationAction(ISD::FRINT, MVT::v2f64, Expand);
503 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand);
504 setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand);
Stepan Dyatkovskiy3e0dc062011-12-11 14:35:48 +0000505
506 setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
507 setOperationAction(ISD::FSIN, MVT::v4f32, Expand);
508 setOperationAction(ISD::FCOS, MVT::v4f32, Expand);
509 setOperationAction(ISD::FPOWI, MVT::v4f32, Expand);
510 setOperationAction(ISD::FPOW, MVT::v4f32, Expand);
511 setOperationAction(ISD::FLOG, MVT::v4f32, Expand);
512 setOperationAction(ISD::FLOG2, MVT::v4f32, Expand);
513 setOperationAction(ISD::FLOG10, MVT::v4f32, Expand);
514 setOperationAction(ISD::FEXP, MVT::v4f32, Expand);
515 setOperationAction(ISD::FEXP2, MVT::v4f32, Expand);
Bob Wilson74dc72e2009-09-15 23:55:57 +0000516
Bob Wilson642b3292009-09-16 00:32:15 +0000517 // Neon does not support some operations on v1i64 and v2i64 types.
518 setOperationAction(ISD::MUL, MVT::v1i64, Expand);
Bob Wilsond0b69cf2010-09-01 23:50:19 +0000519 // Custom handling for some quad-vector types to detect VMULL.
520 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
521 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
522 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Nate Begeman7973f352011-02-11 20:53:29 +0000523 // Custom handling for some vector types to avoid expensive expansions
524 setOperationAction(ISD::SDIV, MVT::v4i16, Custom);
525 setOperationAction(ISD::SDIV, MVT::v8i8, Custom);
526 setOperationAction(ISD::UDIV, MVT::v4i16, Custom);
527 setOperationAction(ISD::UDIV, MVT::v8i8, Custom);
Duncan Sands28b77e92011-09-06 19:07:46 +0000528 setOperationAction(ISD::SETCC, MVT::v1i64, Expand);
529 setOperationAction(ISD::SETCC, MVT::v2i64, Expand);
Cameron Zwarich3007d332011-03-29 21:41:55 +0000530 // Neon does not have single instruction SINT_TO_FP and UINT_TO_FP with
531 // a destination type that is wider than the source.
532 setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Custom);
533 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
Bob Wilson642b3292009-09-16 00:32:15 +0000534
Bob Wilson1c3ef902011-02-07 17:43:21 +0000535 setTargetDAGCombine(ISD::INTRINSIC_VOID);
536 setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
Bob Wilson5bafff32009-06-22 23:27:02 +0000537 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
538 setTargetDAGCombine(ISD::SHL);
539 setTargetDAGCombine(ISD::SRL);
540 setTargetDAGCombine(ISD::SRA);
541 setTargetDAGCombine(ISD::SIGN_EXTEND);
542 setTargetDAGCombine(ISD::ZERO_EXTEND);
543 setTargetDAGCombine(ISD::ANY_EXTEND);
Bob Wilson9f6c4c12010-02-18 06:05:53 +0000544 setTargetDAGCombine(ISD::SELECT_CC);
Bob Wilson75f02882010-09-17 22:59:05 +0000545 setTargetDAGCombine(ISD::BUILD_VECTOR);
Bob Wilsonf20700c2010-10-27 20:38:28 +0000546 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Bob Wilson31600902010-12-21 06:43:19 +0000547 setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
548 setTargetDAGCombine(ISD::STORE);
Chad Rosieref01edf2011-06-24 19:23:04 +0000549 setTargetDAGCombine(ISD::FP_TO_SINT);
550 setTargetDAGCombine(ISD::FP_TO_UINT);
551 setTargetDAGCombine(ISD::FDIV);
Nadav Rotem004a24b2011-10-15 20:03:12 +0000552
553 setLoadExtAction(ISD::EXTLOAD, MVT::v4i8, Expand);
Bob Wilson5bafff32009-06-22 23:27:02 +0000554 }
555
Evan Cheng9f8cbd12007-05-18 00:19:34 +0000556 computeRegisterProperties();
Evan Chenga8e29892007-01-19 07:51:42 +0000557
558 // ARM does not have f32 extending load.
Owen Anderson825b72b2009-08-11 20:47:22 +0000559 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000560
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000561 // ARM does not have i1 sign extending load.
Owen Anderson825b72b2009-08-11 20:47:22 +0000562 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000563
Evan Chenga8e29892007-01-19 07:51:42 +0000564 // ARM supports all 4 flavors of integer indexed load / store.
Evan Chenge88d5ce2009-07-02 07:28:31 +0000565 if (!Subtarget->isThumb1Only()) {
566 for (unsigned im = (unsigned)ISD::PRE_INC;
567 im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000568 setIndexedLoadAction(im, MVT::i1, Legal);
569 setIndexedLoadAction(im, MVT::i8, Legal);
570 setIndexedLoadAction(im, MVT::i16, Legal);
571 setIndexedLoadAction(im, MVT::i32, Legal);
572 setIndexedStoreAction(im, MVT::i1, Legal);
573 setIndexedStoreAction(im, MVT::i8, Legal);
574 setIndexedStoreAction(im, MVT::i16, Legal);
575 setIndexedStoreAction(im, MVT::i32, Legal);
Evan Chenge88d5ce2009-07-02 07:28:31 +0000576 }
Evan Chenga8e29892007-01-19 07:51:42 +0000577 }
578
579 // i64 operation support.
Eric Christopher2cc40132011-04-19 18:49:19 +0000580 setOperationAction(ISD::MUL, MVT::i64, Expand);
581 setOperationAction(ISD::MULHU, MVT::i32, Expand);
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000582 if (Subtarget->isThumb1Only()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000583 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
584 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000585 }
Jim Grosbacha7603982011-07-01 21:12:19 +0000586 if (Subtarget->isThumb1Only() || !Subtarget->hasV6Ops()
587 || (Subtarget->isThumb2() && !Subtarget->hasThumb2DSP()))
Eric Christopher2cc40132011-04-19 18:49:19 +0000588 setOperationAction(ISD::MULHS, MVT::i32, Expand);
589
Jim Grosbachc2b879f2009-10-31 19:38:01 +0000590 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
Jim Grosbachb4a976c2009-10-31 21:00:56 +0000591 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +0000592 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000593 setOperationAction(ISD::SRL, MVT::i64, Custom);
594 setOperationAction(ISD::SRA, MVT::i64, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000595
Evan Cheng342e3162011-08-30 01:34:54 +0000596 if (!Subtarget->isThumb1Only()) {
597 // FIXME: We should do this for Thumb1 as well.
598 setOperationAction(ISD::ADDC, MVT::i32, Custom);
599 setOperationAction(ISD::ADDE, MVT::i32, Custom);
600 setOperationAction(ISD::SUBC, MVT::i32, Custom);
601 setOperationAction(ISD::SUBE, MVT::i32, Custom);
602 }
603
Evan Chenga8e29892007-01-19 07:51:42 +0000604 // ARM does not have ROTL.
Owen Anderson825b72b2009-08-11 20:47:22 +0000605 setOperationAction(ISD::ROTL, MVT::i32, Expand);
Jim Grosbach3482c802010-01-18 19:58:49 +0000606 setOperationAction(ISD::CTTZ, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000607 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
David Goodwin24062ac2009-06-26 20:47:43 +0000608 if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only())
Owen Anderson825b72b2009-08-11 20:47:22 +0000609 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000610
Chandler Carruth63974b22011-12-13 01:56:10 +0000611 // These just redirect to CTTZ and CTLZ on ARM.
612 setOperationAction(ISD::CTTZ_ZERO_UNDEF , MVT::i32 , Expand);
613 setOperationAction(ISD::CTLZ_ZERO_UNDEF , MVT::i32 , Expand);
614
Lauro Ramos Venancio368f20f2007-03-16 22:54:16 +0000615 // Only ARMv6 has BSWAP.
616 if (!Subtarget->hasV6Ops())
Owen Anderson825b72b2009-08-11 20:47:22 +0000617 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Lauro Ramos Venancio368f20f2007-03-16 22:54:16 +0000618
Evan Chenga8e29892007-01-19 07:51:42 +0000619 // These are expanded into libcalls.
Evan Cheng1f190c82010-11-19 06:28:11 +0000620 if (!Subtarget->hasDivide() || !Subtarget->isThumb2()) {
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000621 // v7M has a hardware divider
622 setOperationAction(ISD::SDIV, MVT::i32, Expand);
623 setOperationAction(ISD::UDIV, MVT::i32, Expand);
624 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000625 setOperationAction(ISD::SREM, MVT::i32, Expand);
626 setOperationAction(ISD::UREM, MVT::i32, Expand);
627 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
628 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
Bob Wilson2dc4f542009-03-20 22:42:55 +0000629
Owen Anderson825b72b2009-08-11 20:47:22 +0000630 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
631 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
632 setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
633 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilsonddb16df2009-10-30 05:45:42 +0000634 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000635
Evan Cheng4da0c7c2011-04-08 21:37:21 +0000636 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Evan Chengfb3611d2010-05-11 07:26:32 +0000637
Evan Chenga8e29892007-01-19 07:51:42 +0000638 // Use the default implementation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000639 setOperationAction(ISD::VASTART, MVT::Other, Custom);
640 setOperationAction(ISD::VAARG, MVT::Other, Expand);
641 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
642 setOperationAction(ISD::VAEND, MVT::Other, Expand);
643 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
644 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Jim Grosbachbff39232009-08-12 17:38:44 +0000645 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikov5899a602011-01-24 22:38:45 +0000646 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
647 setExceptionPointerRegister(ARM::R0);
648 setExceptionSelectorRegister(ARM::R1);
649
Evan Cheng3a1588a2010-04-15 22:20:34 +0000650 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Evan Cheng11db0682010-08-11 06:22:01 +0000651 // ARMv6 Thumb1 (except for CPUs that support dmb / dsb) and earlier use
652 // the default expansion.
Eli Friedman4db5aca2011-08-29 18:23:02 +0000653 // FIXME: This should be checking for v6k, not just v6.
Evan Cheng11db0682010-08-11 06:22:01 +0000654 if (Subtarget->hasDataBarrier() ||
Bob Wilson54f92562010-11-09 22:50:44 +0000655 (Subtarget->hasV6Ops() && !Subtarget->isThumb())) {
Jim Grosbach68741be2010-06-18 22:35:32 +0000656 // membarrier needs custom lowering; the rest are legal and handled
657 // normally.
658 setOperationAction(ISD::MEMBARRIER, MVT::Other, Custom);
Eli Friedman14648462011-07-27 22:21:52 +0000659 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
Eli Friedman2bdffe42011-08-31 00:31:29 +0000660 // Custom lowering for 64-bit ops
661 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
662 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
663 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
664 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
665 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
666 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Eli Friedman4d3f3292011-08-31 17:52:22 +0000667 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Eli Friedman26689ac2011-08-03 21:06:02 +0000668 // Automatically insert fences (dmb ist) around ATOMIC_SWAP etc.
669 setInsertFencesForAtomic(true);
Jim Grosbach68741be2010-06-18 22:35:32 +0000670 } else {
671 // Set them all for expansion, which will force libcalls.
672 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
Eli Friedman14648462011-07-27 22:21:52 +0000673 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Expand);
Jim Grosbach68741be2010-06-18 22:35:32 +0000674 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Expand);
Jim Grosbachef6eb9c2010-06-18 23:03:10 +0000675 setOperationAction(ISD::ATOMIC_SWAP, MVT::i32, Expand);
Jim Grosbach68741be2010-06-18 22:35:32 +0000676 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i32, Expand);
Jim Grosbach68741be2010-06-18 22:35:32 +0000677 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Expand);
Jim Grosbach68741be2010-06-18 22:35:32 +0000678 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i32, Expand);
Jim Grosbach68741be2010-06-18 22:35:32 +0000679 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i32, Expand);
Jim Grosbach68741be2010-06-18 22:35:32 +0000680 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i32, Expand);
Jim Grosbach68741be2010-06-18 22:35:32 +0000681 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Expand);
Jim Grosbachf7da8822011-04-26 19:44:18 +0000682 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i32, Expand);
Jim Grosbachf7da8822011-04-26 19:44:18 +0000683 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i32, Expand);
Jim Grosbachf7da8822011-04-26 19:44:18 +0000684 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i32, Expand);
Jim Grosbachf7da8822011-04-26 19:44:18 +0000685 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i32, Expand);
Eli Friedman7cc15662011-09-15 22:18:49 +0000686 // Mark ATOMIC_LOAD and ATOMIC_STORE custom so we can handle the
687 // Unordered/Monotonic case.
688 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Custom);
689 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Custom);
Jim Grosbach5def57a2010-06-23 16:08:49 +0000690 // Since the libcalls include locking, fold in the fences
691 setShouldFoldAtomicFences(true);
Jim Grosbach68741be2010-06-18 22:35:32 +0000692 }
Evan Chenga8e29892007-01-19 07:51:42 +0000693
Evan Cheng416941d2010-11-04 05:19:35 +0000694 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
Evan Chengbc7deb02010-11-03 05:14:24 +0000695
Eli Friedmana2c6f452010-06-26 04:36:50 +0000696 // Requires SXTB/SXTH, available on v6 and up in both ARM and Thumb modes.
697 if (!Subtarget->hasV6Ops()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000698 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
699 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000700 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000701 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Evan Chenga8e29892007-01-19 07:51:42 +0000702
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000703 if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
704 !Subtarget->isThumb1Only()) {
Bob Wilsoncb9a6aa2010-01-19 22:56:26 +0000705 // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR
706 // iff target supports vfp2.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000707 setOperationAction(ISD::BITCAST, MVT::i64, Custom);
Nate Begemand1fb5832010-08-03 21:31:55 +0000708 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
709 }
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +0000710
711 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000712 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Jim Grosbache97f9682010-07-07 00:07:57 +0000713 if (Subtarget->isTargetDarwin()) {
714 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
715 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
John McCall5f8fd542011-05-29 19:50:32 +0000716 setLibcallName(RTLIB::UNWIND_RESUME, "_Unwind_SjLj_Resume");
Jim Grosbache97f9682010-07-07 00:07:57 +0000717 }
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +0000718
Owen Anderson825b72b2009-08-11 20:47:22 +0000719 setOperationAction(ISD::SETCC, MVT::i32, Expand);
720 setOperationAction(ISD::SETCC, MVT::f32, Expand);
721 setOperationAction(ISD::SETCC, MVT::f64, Expand);
Bill Wendlingde2b1512010-08-11 08:43:16 +0000722 setOperationAction(ISD::SELECT, MVT::i32, Custom);
723 setOperationAction(ISD::SELECT, MVT::f32, Custom);
724 setOperationAction(ISD::SELECT, MVT::f64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000725 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
726 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
727 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000728
Owen Anderson825b72b2009-08-11 20:47:22 +0000729 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
730 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
731 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
732 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
733 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
Evan Chenga8e29892007-01-19 07:51:42 +0000734
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000735 // We don't support sin/cos/fmod/copysign/pow
Owen Anderson825b72b2009-08-11 20:47:22 +0000736 setOperationAction(ISD::FSIN, MVT::f64, Expand);
737 setOperationAction(ISD::FSIN, MVT::f32, Expand);
738 setOperationAction(ISD::FCOS, MVT::f32, Expand);
739 setOperationAction(ISD::FCOS, MVT::f64, Expand);
740 setOperationAction(ISD::FREM, MVT::f64, Expand);
741 setOperationAction(ISD::FREM, MVT::f32, Expand);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000742 if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
743 !Subtarget->isThumb1Only()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000744 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
745 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng110cf482008-04-01 01:50:16 +0000746 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000747 setOperationAction(ISD::FPOW, MVT::f64, Expand);
748 setOperationAction(ISD::FPOW, MVT::f32, Expand);
Bob Wilson2dc4f542009-03-20 22:42:55 +0000749
Cameron Zwarich33390842011-07-08 21:39:21 +0000750 setOperationAction(ISD::FMA, MVT::f64, Expand);
751 setOperationAction(ISD::FMA, MVT::f32, Expand);
752
Anton Korobeynikovbec3dd22010-03-14 18:42:31 +0000753 // Various VFP goodness
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000754 if (!TM.Options.UseSoftFloat && !Subtarget->isThumb1Only()) {
Bob Wilson76a312b2010-03-19 22:51:32 +0000755 // int <-> fp are custom expanded into bit_convert + ARMISD ops.
756 if (Subtarget->hasVFP2()) {
757 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
758 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
759 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
760 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
761 }
Anton Korobeynikovbec3dd22010-03-14 18:42:31 +0000762 // Special handling for half-precision FP.
Anton Korobeynikovf0d50072010-03-18 22:35:37 +0000763 if (!Subtarget->hasFP16()) {
764 setOperationAction(ISD::FP16_TO_FP32, MVT::f32, Expand);
765 setOperationAction(ISD::FP32_TO_FP16, MVT::i32, Expand);
Anton Korobeynikovbec3dd22010-03-14 18:42:31 +0000766 }
Evan Cheng110cf482008-04-01 01:50:16 +0000767 }
Evan Chenga8e29892007-01-19 07:51:42 +0000768
Chris Lattnerf1b1c5e2007-11-27 22:36:16 +0000769 // We have target-specific dag combine patterns for the following nodes:
Jim Grosbache5165492009-11-09 00:11:35 +0000770 // ARMISD::VMOVRRD - No need to call setTargetDAGCombine
Chris Lattnerd1980a52009-03-12 06:52:53 +0000771 setTargetDAGCombine(ISD::ADD);
772 setTargetDAGCombine(ISD::SUB);
Anton Korobeynikova9790d72010-05-15 18:16:59 +0000773 setTargetDAGCombine(ISD::MUL);
Bob Wilson2dc4f542009-03-20 22:42:55 +0000774
Owen Anderson080c0922010-11-05 19:27:46 +0000775 if (Subtarget->hasV6T2Ops() || Subtarget->hasNEON())
Jim Grosbach469bbdb2010-07-16 23:05:05 +0000776 setTargetDAGCombine(ISD::OR);
Owen Anderson080c0922010-11-05 19:27:46 +0000777 if (Subtarget->hasNEON())
778 setTargetDAGCombine(ISD::AND);
Jim Grosbach469bbdb2010-07-16 23:05:05 +0000779
Evan Chenga8e29892007-01-19 07:51:42 +0000780 setStackPointerRegisterToSaveRestore(ARM::SP);
Evan Cheng1cc39842010-05-20 23:26:43 +0000781
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000782 if (TM.Options.UseSoftFloat || Subtarget->isThumb1Only() ||
783 !Subtarget->hasVFP2())
Evan Chengf7d87ee2010-05-21 00:43:17 +0000784 setSchedulingPreference(Sched::RegPressure);
785 else
786 setSchedulingPreference(Sched::Hybrid);
Dale Johannesen8dd86c12007-05-17 21:31:21 +0000787
Evan Cheng05219282011-01-06 06:52:41 +0000788 //// temporary - rewrite interface to use type
789 maxStoresPerMemcpy = maxStoresPerMemcpyOptSize = 1;
Lang Hames75757f92011-10-26 20:56:52 +0000790 maxStoresPerMemset = 16;
791 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengf6799392010-06-26 01:52:05 +0000792
Rafael Espindolacbeeae22010-07-11 04:01:49 +0000793 // On ARM arguments smaller than 4 bytes are extended, so all arguments
794 // are at least 4 bytes aligned.
795 setMinStackArgumentAlignment(4);
796
Evan Chengfff606d2010-09-24 19:07:23 +0000797 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +0000798
799 setMinFunctionAlignment(Subtarget->isThumb() ? 1 : 2);
Evan Chenga8e29892007-01-19 07:51:42 +0000800}
801
Andrew Trick32cec0a2011-01-19 02:35:27 +0000802// FIXME: It might make sense to define the representative register class as the
803// nearest super-register that has a non-null superset. For example, DPR_VFP2 is
804// a super-register of SPR, and DPR is a superset if DPR_VFP2. Consequently,
805// SPR's representative would be DPR_VFP2. This should work well if register
806// pressure tracking were modified such that a register use would increment the
807// pressure of the register class's representative and all of it's super
808// classes' representatives transitively. We have not implemented this because
809// of the difficulty prior to coalescing of modeling operand register classes
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000810// due to the common occurrence of cross class copies and subregister insertions
Andrew Trick32cec0a2011-01-19 02:35:27 +0000811// and extractions.
Evan Cheng4f6b4672010-07-21 06:09:07 +0000812std::pair<const TargetRegisterClass*, uint8_t>
813ARMTargetLowering::findRepresentativeClass(EVT VT) const{
814 const TargetRegisterClass *RRC = 0;
815 uint8_t Cost = 1;
816 switch (VT.getSimpleVT().SimpleTy) {
Evan Chengd70f57b2010-07-19 22:15:08 +0000817 default:
Evan Cheng4f6b4672010-07-21 06:09:07 +0000818 return TargetLowering::findRepresentativeClass(VT);
Evan Cheng4a863e22010-07-21 23:53:58 +0000819 // Use DPR as representative register class for all floating point
820 // and vector types. Since there are 32 SPR registers and 32 DPR registers so
821 // the cost is 1 for both f32 and f64.
822 case MVT::f32: case MVT::f64: case MVT::v8i8: case MVT::v4i16:
Evan Cheng4f6b4672010-07-21 06:09:07 +0000823 case MVT::v2i32: case MVT::v1i64: case MVT::v2f32:
Evan Cheng4a863e22010-07-21 23:53:58 +0000824 RRC = ARM::DPRRegisterClass;
Andrew Trick32cec0a2011-01-19 02:35:27 +0000825 // When NEON is used for SP, only half of the register file is available
826 // because operations that define both SP and DP results will be constrained
827 // to the VFP2 class (D0-D15). We currently model this constraint prior to
828 // coalescing by double-counting the SP regs. See the FIXME above.
829 if (Subtarget->useNEONForSinglePrecisionFP())
830 Cost = 2;
Evan Cheng4f6b4672010-07-21 06:09:07 +0000831 break;
832 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
833 case MVT::v4f32: case MVT::v2f64:
Evan Cheng4a863e22010-07-21 23:53:58 +0000834 RRC = ARM::DPRRegisterClass;
835 Cost = 2;
Evan Cheng4f6b4672010-07-21 06:09:07 +0000836 break;
837 case MVT::v4i64:
Evan Cheng4a863e22010-07-21 23:53:58 +0000838 RRC = ARM::DPRRegisterClass;
839 Cost = 4;
Evan Cheng4f6b4672010-07-21 06:09:07 +0000840 break;
841 case MVT::v8i64:
Evan Cheng4a863e22010-07-21 23:53:58 +0000842 RRC = ARM::DPRRegisterClass;
843 Cost = 8;
Evan Cheng4f6b4672010-07-21 06:09:07 +0000844 break;
Evan Chengd70f57b2010-07-19 22:15:08 +0000845 }
Evan Cheng4f6b4672010-07-21 06:09:07 +0000846 return std::make_pair(RRC, Cost);
Evan Chengd70f57b2010-07-19 22:15:08 +0000847}
848
Evan Chenga8e29892007-01-19 07:51:42 +0000849const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
850 switch (Opcode) {
851 default: return 0;
852 case ARMISD::Wrapper: return "ARMISD::Wrapper";
Evan Cheng53519f02011-01-21 18:55:51 +0000853 case ARMISD::WrapperDYN: return "ARMISD::WrapperDYN";
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000854 case ARMISD::WrapperPIC: return "ARMISD::WrapperPIC";
Evan Chenga8e29892007-01-19 07:51:42 +0000855 case ARMISD::WrapperJT: return "ARMISD::WrapperJT";
856 case ARMISD::CALL: return "ARMISD::CALL";
Evan Cheng277f0742007-06-19 21:05:09 +0000857 case ARMISD::CALL_PRED: return "ARMISD::CALL_PRED";
Evan Chenga8e29892007-01-19 07:51:42 +0000858 case ARMISD::CALL_NOLINK: return "ARMISD::CALL_NOLINK";
859 case ARMISD::tCALL: return "ARMISD::tCALL";
860 case ARMISD::BRCOND: return "ARMISD::BRCOND";
861 case ARMISD::BR_JT: return "ARMISD::BR_JT";
Evan Cheng5657c012009-07-29 02:18:14 +0000862 case ARMISD::BR2_JT: return "ARMISD::BR2_JT";
Evan Chenga8e29892007-01-19 07:51:42 +0000863 case ARMISD::RET_FLAG: return "ARMISD::RET_FLAG";
864 case ARMISD::PIC_ADD: return "ARMISD::PIC_ADD";
865 case ARMISD::CMP: return "ARMISD::CMP";
David Goodwinc0309b42009-06-29 15:33:01 +0000866 case ARMISD::CMPZ: return "ARMISD::CMPZ";
Evan Chenga8e29892007-01-19 07:51:42 +0000867 case ARMISD::CMPFP: return "ARMISD::CMPFP";
868 case ARMISD::CMPFPw0: return "ARMISD::CMPFPw0";
Evan Cheng218977b2010-07-13 19:27:42 +0000869 case ARMISD::BCC_i64: return "ARMISD::BCC_i64";
Evan Chenga8e29892007-01-19 07:51:42 +0000870 case ARMISD::FMSTAT: return "ARMISD::FMSTAT";
871 case ARMISD::CMOV: return "ARMISD::CMOV";
Bob Wilson2dc4f542009-03-20 22:42:55 +0000872
Jim Grosbach3482c802010-01-18 19:58:49 +0000873 case ARMISD::RBIT: return "ARMISD::RBIT";
874
Bob Wilson76a312b2010-03-19 22:51:32 +0000875 case ARMISD::FTOSI: return "ARMISD::FTOSI";
876 case ARMISD::FTOUI: return "ARMISD::FTOUI";
877 case ARMISD::SITOF: return "ARMISD::SITOF";
878 case ARMISD::UITOF: return "ARMISD::UITOF";
879
Evan Chenga8e29892007-01-19 07:51:42 +0000880 case ARMISD::SRL_FLAG: return "ARMISD::SRL_FLAG";
881 case ARMISD::SRA_FLAG: return "ARMISD::SRA_FLAG";
882 case ARMISD::RRX: return "ARMISD::RRX";
Bob Wilson2dc4f542009-03-20 22:42:55 +0000883
Evan Cheng342e3162011-08-30 01:34:54 +0000884 case ARMISD::ADDC: return "ARMISD::ADDC";
885 case ARMISD::ADDE: return "ARMISD::ADDE";
886 case ARMISD::SUBC: return "ARMISD::SUBC";
887 case ARMISD::SUBE: return "ARMISD::SUBE";
888
Bob Wilson0b8ccb82010-09-22 22:09:21 +0000889 case ARMISD::VMOVRRD: return "ARMISD::VMOVRRD";
890 case ARMISD::VMOVDRR: return "ARMISD::VMOVDRR";
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000891
Evan Chengc5942082009-10-28 06:55:03 +0000892 case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP";
893 case ARMISD::EH_SJLJ_LONGJMP:return "ARMISD::EH_SJLJ_LONGJMP";
894
Dale Johannesen51e28e62010-06-03 21:09:53 +0000895 case ARMISD::TC_RETURN: return "ARMISD::TC_RETURN";
Jim Grosbach4725ca72010-09-08 03:54:02 +0000896
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000897 case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
Bob Wilson5bafff32009-06-22 23:27:02 +0000898
Evan Cheng86198642009-08-07 00:34:42 +0000899 case ARMISD::DYN_ALLOC: return "ARMISD::DYN_ALLOC";
900
Jim Grosbach3728e962009-12-10 00:11:09 +0000901 case ARMISD::MEMBARRIER: return "ARMISD::MEMBARRIER";
Bob Wilsonf74a4292010-10-30 00:54:37 +0000902 case ARMISD::MEMBARRIER_MCR: return "ARMISD::MEMBARRIER_MCR";
Jim Grosbach3728e962009-12-10 00:11:09 +0000903
Evan Chengdfed19f2010-11-03 06:34:55 +0000904 case ARMISD::PRELOAD: return "ARMISD::PRELOAD";
905
Bob Wilson5bafff32009-06-22 23:27:02 +0000906 case ARMISD::VCEQ: return "ARMISD::VCEQ";
Bob Wilson3a75b9b2010-12-18 00:04:26 +0000907 case ARMISD::VCEQZ: return "ARMISD::VCEQZ";
Bob Wilson5bafff32009-06-22 23:27:02 +0000908 case ARMISD::VCGE: return "ARMISD::VCGE";
Bob Wilson3a75b9b2010-12-18 00:04:26 +0000909 case ARMISD::VCGEZ: return "ARMISD::VCGEZ";
910 case ARMISD::VCLEZ: return "ARMISD::VCLEZ";
Bob Wilson5bafff32009-06-22 23:27:02 +0000911 case ARMISD::VCGEU: return "ARMISD::VCGEU";
912 case ARMISD::VCGT: return "ARMISD::VCGT";
Bob Wilson3a75b9b2010-12-18 00:04:26 +0000913 case ARMISD::VCGTZ: return "ARMISD::VCGTZ";
914 case ARMISD::VCLTZ: return "ARMISD::VCLTZ";
Bob Wilson5bafff32009-06-22 23:27:02 +0000915 case ARMISD::VCGTU: return "ARMISD::VCGTU";
916 case ARMISD::VTST: return "ARMISD::VTST";
917
918 case ARMISD::VSHL: return "ARMISD::VSHL";
919 case ARMISD::VSHRs: return "ARMISD::VSHRs";
920 case ARMISD::VSHRu: return "ARMISD::VSHRu";
921 case ARMISD::VSHLLs: return "ARMISD::VSHLLs";
922 case ARMISD::VSHLLu: return "ARMISD::VSHLLu";
923 case ARMISD::VSHLLi: return "ARMISD::VSHLLi";
924 case ARMISD::VSHRN: return "ARMISD::VSHRN";
925 case ARMISD::VRSHRs: return "ARMISD::VRSHRs";
926 case ARMISD::VRSHRu: return "ARMISD::VRSHRu";
927 case ARMISD::VRSHRN: return "ARMISD::VRSHRN";
928 case ARMISD::VQSHLs: return "ARMISD::VQSHLs";
929 case ARMISD::VQSHLu: return "ARMISD::VQSHLu";
930 case ARMISD::VQSHLsu: return "ARMISD::VQSHLsu";
931 case ARMISD::VQSHRNs: return "ARMISD::VQSHRNs";
932 case ARMISD::VQSHRNu: return "ARMISD::VQSHRNu";
933 case ARMISD::VQSHRNsu: return "ARMISD::VQSHRNsu";
934 case ARMISD::VQRSHRNs: return "ARMISD::VQRSHRNs";
935 case ARMISD::VQRSHRNu: return "ARMISD::VQRSHRNu";
936 case ARMISD::VQRSHRNsu: return "ARMISD::VQRSHRNsu";
937 case ARMISD::VGETLANEu: return "ARMISD::VGETLANEu";
938 case ARMISD::VGETLANEs: return "ARMISD::VGETLANEs";
Bob Wilsoncba270d2010-07-13 21:16:48 +0000939 case ARMISD::VMOVIMM: return "ARMISD::VMOVIMM";
Bob Wilson7e3f0d22010-07-14 06:31:50 +0000940 case ARMISD::VMVNIMM: return "ARMISD::VMVNIMM";
Evan Chengeaa192a2011-11-15 02:12:34 +0000941 case ARMISD::VMOVFPIMM: return "ARMISD::VMOVFPIMM";
Bob Wilsonc1d287b2009-08-14 05:13:08 +0000942 case ARMISD::VDUP: return "ARMISD::VDUP";
Bob Wilson0ce37102009-08-14 05:08:32 +0000943 case ARMISD::VDUPLANE: return "ARMISD::VDUPLANE";
Bob Wilsonde95c1b82009-08-19 17:03:43 +0000944 case ARMISD::VEXT: return "ARMISD::VEXT";
Bob Wilsond8e17572009-08-12 22:31:50 +0000945 case ARMISD::VREV64: return "ARMISD::VREV64";
946 case ARMISD::VREV32: return "ARMISD::VREV32";
947 case ARMISD::VREV16: return "ARMISD::VREV16";
Anton Korobeynikov051cfd62009-08-21 12:41:42 +0000948 case ARMISD::VZIP: return "ARMISD::VZIP";
949 case ARMISD::VUZP: return "ARMISD::VUZP";
950 case ARMISD::VTRN: return "ARMISD::VTRN";
Bill Wendling69a05a72011-03-14 23:02:38 +0000951 case ARMISD::VTBL1: return "ARMISD::VTBL1";
952 case ARMISD::VTBL2: return "ARMISD::VTBL2";
Bob Wilsond0b69cf2010-09-01 23:50:19 +0000953 case ARMISD::VMULLs: return "ARMISD::VMULLs";
954 case ARMISD::VMULLu: return "ARMISD::VMULLu";
Bob Wilson40cbe7d2010-06-04 00:04:02 +0000955 case ARMISD::BUILD_VECTOR: return "ARMISD::BUILD_VECTOR";
Bob Wilson9f6c4c12010-02-18 06:05:53 +0000956 case ARMISD::FMAX: return "ARMISD::FMAX";
957 case ARMISD::FMIN: return "ARMISD::FMIN";
Jim Grosbachdd7d28a2010-07-17 01:50:57 +0000958 case ARMISD::BFI: return "ARMISD::BFI";
Bob Wilson364a72a2010-11-28 06:51:11 +0000959 case ARMISD::VORRIMM: return "ARMISD::VORRIMM";
960 case ARMISD::VBICIMM: return "ARMISD::VBICIMM";
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000961 case ARMISD::VBSL: return "ARMISD::VBSL";
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000962 case ARMISD::VLD2DUP: return "ARMISD::VLD2DUP";
963 case ARMISD::VLD3DUP: return "ARMISD::VLD3DUP";
964 case ARMISD::VLD4DUP: return "ARMISD::VLD4DUP";
Bob Wilson1c3ef902011-02-07 17:43:21 +0000965 case ARMISD::VLD1_UPD: return "ARMISD::VLD1_UPD";
966 case ARMISD::VLD2_UPD: return "ARMISD::VLD2_UPD";
967 case ARMISD::VLD3_UPD: return "ARMISD::VLD3_UPD";
968 case ARMISD::VLD4_UPD: return "ARMISD::VLD4_UPD";
969 case ARMISD::VLD2LN_UPD: return "ARMISD::VLD2LN_UPD";
970 case ARMISD::VLD3LN_UPD: return "ARMISD::VLD3LN_UPD";
971 case ARMISD::VLD4LN_UPD: return "ARMISD::VLD4LN_UPD";
972 case ARMISD::VLD2DUP_UPD: return "ARMISD::VLD2DUP_UPD";
973 case ARMISD::VLD3DUP_UPD: return "ARMISD::VLD3DUP_UPD";
974 case ARMISD::VLD4DUP_UPD: return "ARMISD::VLD4DUP_UPD";
975 case ARMISD::VST1_UPD: return "ARMISD::VST1_UPD";
976 case ARMISD::VST2_UPD: return "ARMISD::VST2_UPD";
977 case ARMISD::VST3_UPD: return "ARMISD::VST3_UPD";
978 case ARMISD::VST4_UPD: return "ARMISD::VST4_UPD";
979 case ARMISD::VST2LN_UPD: return "ARMISD::VST2LN_UPD";
980 case ARMISD::VST3LN_UPD: return "ARMISD::VST3LN_UPD";
981 case ARMISD::VST4LN_UPD: return "ARMISD::VST4LN_UPD";
Evan Chenga8e29892007-01-19 07:51:42 +0000982 }
983}
984
Duncan Sands28b77e92011-09-06 19:07:46 +0000985EVT ARMTargetLowering::getSetCCResultType(EVT VT) const {
986 if (!VT.isVector()) return getPointerTy();
987 return VT.changeVectorElementTypeToInteger();
988}
989
Evan Cheng06b666c2010-05-15 02:18:07 +0000990/// getRegClassFor - Return the register class that should be used for the
991/// specified value type.
992TargetRegisterClass *ARMTargetLowering::getRegClassFor(EVT VT) const {
993 // Map v4i64 to QQ registers but do not make the type legal. Similarly map
994 // v8i64 to QQQQ registers. v4i64 and v8i64 are only used for REG_SEQUENCE to
995 // load / store 4 to 8 consecutive D registers.
Evan Cheng4782b1e2010-05-15 02:20:21 +0000996 if (Subtarget->hasNEON()) {
997 if (VT == MVT::v4i64)
998 return ARM::QQPRRegisterClass;
999 else if (VT == MVT::v8i64)
1000 return ARM::QQQQPRRegisterClass;
1001 }
Evan Cheng06b666c2010-05-15 02:18:07 +00001002 return TargetLowering::getRegClassFor(VT);
1003}
1004
Eric Christopherab695882010-07-21 22:26:11 +00001005// Create a fast isel object.
1006FastISel *
1007ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
1008 return ARM::createFastISel(funcInfo);
1009}
1010
Anton Korobeynikovcec36f42010-07-24 21:52:08 +00001011/// getMaximalGlobalOffset - Returns the maximal possible offset which can
1012/// be used for loads / stores from the global.
1013unsigned ARMTargetLowering::getMaximalGlobalOffset() const {
1014 return (Subtarget->isThumb1Only() ? 127 : 4095);
1015}
1016
Evan Cheng1cc39842010-05-20 23:26:43 +00001017Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const {
Evan Chengc10f5432010-05-28 23:25:23 +00001018 unsigned NumVals = N->getNumValues();
1019 if (!NumVals)
1020 return Sched::RegPressure;
1021
1022 for (unsigned i = 0; i != NumVals; ++i) {
Evan Cheng1cc39842010-05-20 23:26:43 +00001023 EVT VT = N->getValueType(i);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001024 if (VT == MVT::Glue || VT == MVT::Other)
Evan Chengd7e473c2010-10-29 18:07:31 +00001025 continue;
Evan Cheng1cc39842010-05-20 23:26:43 +00001026 if (VT.isFloatingPoint() || VT.isVector())
Dan Gohman692c1d82011-10-24 17:55:11 +00001027 return Sched::ILP;
Evan Cheng1cc39842010-05-20 23:26:43 +00001028 }
Evan Chengc10f5432010-05-28 23:25:23 +00001029
1030 if (!N->isMachineOpcode())
1031 return Sched::RegPressure;
1032
1033 // Load are scheduled for latency even if there instruction itinerary
1034 // is not available.
1035 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Chenge837dea2011-06-28 19:10:37 +00001036 const MCInstrDesc &MCID = TII->get(N->getMachineOpcode());
Evan Chengd7e473c2010-10-29 18:07:31 +00001037
Evan Chenge837dea2011-06-28 19:10:37 +00001038 if (MCID.getNumDefs() == 0)
Evan Chengd7e473c2010-10-29 18:07:31 +00001039 return Sched::RegPressure;
1040 if (!Itins->isEmpty() &&
Evan Chenge837dea2011-06-28 19:10:37 +00001041 Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2)
Dan Gohman692c1d82011-10-24 17:55:11 +00001042 return Sched::ILP;
Evan Chengc10f5432010-05-28 23:25:23 +00001043
Evan Cheng1cc39842010-05-20 23:26:43 +00001044 return Sched::RegPressure;
1045}
1046
Evan Chenga8e29892007-01-19 07:51:42 +00001047//===----------------------------------------------------------------------===//
1048// Lowering Code
1049//===----------------------------------------------------------------------===//
1050
Evan Chenga8e29892007-01-19 07:51:42 +00001051/// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
1052static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
1053 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001054 default: llvm_unreachable("Unknown condition code!");
Evan Chenga8e29892007-01-19 07:51:42 +00001055 case ISD::SETNE: return ARMCC::NE;
1056 case ISD::SETEQ: return ARMCC::EQ;
1057 case ISD::SETGT: return ARMCC::GT;
1058 case ISD::SETGE: return ARMCC::GE;
1059 case ISD::SETLT: return ARMCC::LT;
1060 case ISD::SETLE: return ARMCC::LE;
1061 case ISD::SETUGT: return ARMCC::HI;
1062 case ISD::SETUGE: return ARMCC::HS;
1063 case ISD::SETULT: return ARMCC::LO;
1064 case ISD::SETULE: return ARMCC::LS;
1065 }
1066}
1067
Bob Wilsoncd3b9a42009-09-09 23:14:54 +00001068/// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC.
1069static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
Evan Chenga8e29892007-01-19 07:51:42 +00001070 ARMCC::CondCodes &CondCode2) {
Evan Chenga8e29892007-01-19 07:51:42 +00001071 CondCode2 = ARMCC::AL;
1072 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001073 default: llvm_unreachable("Unknown FP condition!");
Evan Chenga8e29892007-01-19 07:51:42 +00001074 case ISD::SETEQ:
1075 case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
1076 case ISD::SETGT:
1077 case ISD::SETOGT: CondCode = ARMCC::GT; break;
1078 case ISD::SETGE:
1079 case ISD::SETOGE: CondCode = ARMCC::GE; break;
1080 case ISD::SETOLT: CondCode = ARMCC::MI; break;
Bob Wilsoncd3b9a42009-09-09 23:14:54 +00001081 case ISD::SETOLE: CondCode = ARMCC::LS; break;
Evan Chenga8e29892007-01-19 07:51:42 +00001082 case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
1083 case ISD::SETO: CondCode = ARMCC::VC; break;
1084 case ISD::SETUO: CondCode = ARMCC::VS; break;
1085 case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
1086 case ISD::SETUGT: CondCode = ARMCC::HI; break;
1087 case ISD::SETUGE: CondCode = ARMCC::PL; break;
1088 case ISD::SETLT:
1089 case ISD::SETULT: CondCode = ARMCC::LT; break;
1090 case ISD::SETLE:
1091 case ISD::SETULE: CondCode = ARMCC::LE; break;
1092 case ISD::SETNE:
1093 case ISD::SETUNE: CondCode = ARMCC::NE; break;
1094 }
Evan Chenga8e29892007-01-19 07:51:42 +00001095}
1096
Bob Wilson1f595bb2009-04-17 19:07:39 +00001097//===----------------------------------------------------------------------===//
1098// Calling Convention Implementation
Bob Wilson1f595bb2009-04-17 19:07:39 +00001099//===----------------------------------------------------------------------===//
1100
1101#include "ARMGenCallingConv.inc"
1102
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001103/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1104/// given CallingConvention value.
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001105CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC,
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001106 bool Return,
1107 bool isVarArg) const {
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001108 switch (CC) {
1109 default:
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001110 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001111 case CallingConv::Fast:
Evan Cheng5c2d4282010-10-23 02:19:37 +00001112 if (Subtarget->hasVFP2() && !isVarArg) {
Evan Cheng76f920d2010-10-22 18:23:05 +00001113 if (!Subtarget->isAAPCS_ABI())
1114 return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
1115 // For AAPCS ABI targets, just use VFP variant of the calling convention.
1116 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1117 }
1118 // Fallthrough
1119 case CallingConv::C: {
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001120 // Use target triple & subtarget features to do actual dispatch.
Evan Cheng76f920d2010-10-22 18:23:05 +00001121 if (!Subtarget->isAAPCS_ABI())
1122 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
1123 else if (Subtarget->hasVFP2() &&
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001124 getTargetMachine().Options.FloatABIType == FloatABI::Hard &&
1125 !isVarArg)
Evan Cheng76f920d2010-10-22 18:23:05 +00001126 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1127 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
1128 }
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001129 case CallingConv::ARM_AAPCS_VFP:
Anton Korobeynikovf349cb82012-01-29 09:06:09 +00001130 if (!isVarArg)
1131 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1132 // Fallthrough
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001133 case CallingConv::ARM_AAPCS:
Evan Cheng76f920d2010-10-22 18:23:05 +00001134 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001135 case CallingConv::ARM_APCS:
Evan Cheng76f920d2010-10-22 18:23:05 +00001136 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001137 }
1138}
1139
Dan Gohman98ca4f22009-08-05 01:29:28 +00001140/// LowerCallResult - Lower the result values of a call into the
1141/// appropriate copies out of appropriate physical registers.
1142SDValue
1143ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001144 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001145 const SmallVectorImpl<ISD::InputArg> &Ins,
1146 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001147 SmallVectorImpl<SDValue> &InVals) const {
Bob Wilson1f595bb2009-04-17 19:07:39 +00001148
Bob Wilson1f595bb2009-04-17 19:07:39 +00001149 // Assign locations to each value returned by this call.
1150 SmallVector<CCValAssign, 16> RVLocs;
Cameron Zwaricha86686e2011-06-10 20:59:24 +00001151 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1152 getTargetMachine(), RVLocs, *DAG.getContext(), Call);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001153 CCInfo.AnalyzeCallResult(Ins,
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001154 CCAssignFnForNode(CallConv, /* Return*/ true,
1155 isVarArg));
Bob Wilson1f595bb2009-04-17 19:07:39 +00001156
1157 // Copy all of the result registers out of their specified physreg.
1158 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1159 CCValAssign VA = RVLocs[i];
1160
Bob Wilson80915242009-04-25 00:33:20 +00001161 SDValue Val;
Bob Wilson1f595bb2009-04-17 19:07:39 +00001162 if (VA.needsCustom()) {
Bob Wilson5bafff32009-06-22 23:27:02 +00001163 // Handle f64 or half of a v2f64.
Owen Anderson825b72b2009-08-11 20:47:22 +00001164 SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
Bob Wilson1f595bb2009-04-17 19:07:39 +00001165 InFlag);
Bob Wilson4d59e1d2009-04-24 17:00:36 +00001166 Chain = Lo.getValue(1);
1167 InFlag = Lo.getValue(2);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001168 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson825b72b2009-08-11 20:47:22 +00001169 SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
Bob Wilson4d59e1d2009-04-24 17:00:36 +00001170 InFlag);
1171 Chain = Hi.getValue(1);
1172 InFlag = Hi.getValue(2);
Jim Grosbache5165492009-11-09 00:11:35 +00001173 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Bob Wilson5bafff32009-06-22 23:27:02 +00001174
Owen Anderson825b72b2009-08-11 20:47:22 +00001175 if (VA.getLocVT() == MVT::v2f64) {
1176 SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
1177 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1178 DAG.getConstant(0, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00001179
1180 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson825b72b2009-08-11 20:47:22 +00001181 Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
Bob Wilson5bafff32009-06-22 23:27:02 +00001182 Chain = Lo.getValue(1);
1183 InFlag = Lo.getValue(2);
1184 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson825b72b2009-08-11 20:47:22 +00001185 Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
Bob Wilson5bafff32009-06-22 23:27:02 +00001186 Chain = Hi.getValue(1);
1187 InFlag = Hi.getValue(2);
Jim Grosbache5165492009-11-09 00:11:35 +00001188 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Owen Anderson825b72b2009-08-11 20:47:22 +00001189 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1190 DAG.getConstant(1, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00001191 }
Bob Wilson1f595bb2009-04-17 19:07:39 +00001192 } else {
Bob Wilson80915242009-04-25 00:33:20 +00001193 Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(),
1194 InFlag);
Bob Wilson4d59e1d2009-04-24 17:00:36 +00001195 Chain = Val.getValue(1);
1196 InFlag = Val.getValue(2);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001197 }
Bob Wilson80915242009-04-25 00:33:20 +00001198
1199 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001200 default: llvm_unreachable("Unknown loc info!");
Bob Wilson80915242009-04-25 00:33:20 +00001201 case CCValAssign::Full: break;
1202 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001203 Val = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), Val);
Bob Wilson80915242009-04-25 00:33:20 +00001204 break;
1205 }
1206
Dan Gohman98ca4f22009-08-05 01:29:28 +00001207 InVals.push_back(Val);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001208 }
1209
Dan Gohman98ca4f22009-08-05 01:29:28 +00001210 return Chain;
Bob Wilson1f595bb2009-04-17 19:07:39 +00001211}
1212
Bob Wilsondee46d72009-04-17 20:35:10 +00001213/// LowerMemOpCallTo - Store the argument to the stack.
Bob Wilson1f595bb2009-04-17 19:07:39 +00001214SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001215ARMTargetLowering::LowerMemOpCallTo(SDValue Chain,
1216 SDValue StackPtr, SDValue Arg,
1217 DebugLoc dl, SelectionDAG &DAG,
1218 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001219 ISD::ArgFlagsTy Flags) const {
Bob Wilson1f595bb2009-04-17 19:07:39 +00001220 unsigned LocMemOffset = VA.getLocMemOffset();
1221 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
1222 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001223 return DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001224 MachinePointerInfo::getStack(LocMemOffset),
David Greene1b58cab2010-02-15 16:55:24 +00001225 false, false, 0);
Evan Chenga8e29892007-01-19 07:51:42 +00001226}
1227
Dan Gohman98ca4f22009-08-05 01:29:28 +00001228void ARMTargetLowering::PassF64ArgInRegs(DebugLoc dl, SelectionDAG &DAG,
Bob Wilson5bafff32009-06-22 23:27:02 +00001229 SDValue Chain, SDValue &Arg,
1230 RegsToPassVector &RegsToPass,
1231 CCValAssign &VA, CCValAssign &NextVA,
1232 SDValue &StackPtr,
1233 SmallVector<SDValue, 8> &MemOpChains,
Dan Gohmand858e902010-04-17 15:26:15 +00001234 ISD::ArgFlagsTy Flags) const {
Bob Wilson5bafff32009-06-22 23:27:02 +00001235
Jim Grosbache5165492009-11-09 00:11:35 +00001236 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001237 DAG.getVTList(MVT::i32, MVT::i32), Arg);
Bob Wilson5bafff32009-06-22 23:27:02 +00001238 RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd));
1239
1240 if (NextVA.isRegLoc())
1241 RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1)));
1242 else {
1243 assert(NextVA.isMemLoc());
1244 if (StackPtr.getNode() == 0)
1245 StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
1246
Dan Gohman98ca4f22009-08-05 01:29:28 +00001247 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1),
1248 dl, DAG, NextVA,
1249 Flags));
Bob Wilson5bafff32009-06-22 23:27:02 +00001250 }
1251}
1252
Dan Gohman98ca4f22009-08-05 01:29:28 +00001253/// LowerCall - Lowering a call into a callseq_start <-
Evan Chengfc403422007-02-03 08:53:01 +00001254/// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
1255/// nodes.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001256SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001257ARMTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001258 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001259 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001260 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001261 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001262 const SmallVectorImpl<ISD::InputArg> &Ins,
1263 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001264 SmallVectorImpl<SDValue> &InVals) const {
Dale Johannesen51e28e62010-06-03 21:09:53 +00001265 MachineFunction &MF = DAG.getMachineFunction();
1266 bool IsStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
1267 bool IsSibCall = false;
Bob Wilson6d2f9ce2011-10-07 17:17:49 +00001268 // Disable tail calls if they're not supported.
1269 if (!EnableARMTailCalls && !Subtarget->supportsTailCall())
Bob Wilson703af3a2010-08-13 22:43:33 +00001270 isTailCall = false;
Dale Johannesen51e28e62010-06-03 21:09:53 +00001271 if (isTailCall) {
1272 // Check if it's really possible to do a tail call.
1273 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1274 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001275 Outs, OutVals, Ins, DAG);
Dale Johannesen51e28e62010-06-03 21:09:53 +00001276 // We don't support GuaranteedTailCallOpt for ARM, only automatically
1277 // detected sibcalls.
1278 if (isTailCall) {
1279 ++NumTailCalls;
1280 IsSibCall = true;
1281 }
1282 }
Evan Chenga8e29892007-01-19 07:51:42 +00001283
Bob Wilson1f595bb2009-04-17 19:07:39 +00001284 // Analyze operands of the call, assigning locations to each operand.
1285 SmallVector<CCValAssign, 16> ArgLocs;
Cameron Zwaricha86686e2011-06-10 20:59:24 +00001286 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1287 getTargetMachine(), ArgLocs, *DAG.getContext(), Call);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001288 CCInfo.AnalyzeCallOperands(Outs,
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001289 CCAssignFnForNode(CallConv, /* Return*/ false,
1290 isVarArg));
Evan Chenga8e29892007-01-19 07:51:42 +00001291
Bob Wilson1f595bb2009-04-17 19:07:39 +00001292 // Get a count of how many bytes are to be pushed on the stack.
1293 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chenga8e29892007-01-19 07:51:42 +00001294
Dale Johannesen51e28e62010-06-03 21:09:53 +00001295 // For tail calls, memory operands are available in our caller's stack.
1296 if (IsSibCall)
1297 NumBytes = 0;
1298
Evan Chenga8e29892007-01-19 07:51:42 +00001299 // Adjust the stack pointer for the new arguments...
1300 // These operations are automatically eliminated by the prolog/epilog pass
Dale Johannesen51e28e62010-06-03 21:09:53 +00001301 if (!IsSibCall)
1302 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Evan Chenga8e29892007-01-19 07:51:42 +00001303
Jim Grosbachf9a4b762010-02-24 01:43:03 +00001304 SDValue StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
Evan Chenga8e29892007-01-19 07:51:42 +00001305
Bob Wilson5bafff32009-06-22 23:27:02 +00001306 RegsToPassVector RegsToPass;
Bob Wilson1f595bb2009-04-17 19:07:39 +00001307 SmallVector<SDValue, 8> MemOpChains;
Evan Chenga8e29892007-01-19 07:51:42 +00001308
Bob Wilson1f595bb2009-04-17 19:07:39 +00001309 // Walk the register/memloc assignments, inserting copies/loads. In the case
Bob Wilsondee46d72009-04-17 20:35:10 +00001310 // of tail call optimization, arguments are handled later.
Bob Wilson1f595bb2009-04-17 19:07:39 +00001311 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1312 i != e;
1313 ++i, ++realArgIdx) {
1314 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00001315 SDValue Arg = OutVals[realArgIdx];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001316 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
Stuart Hastingsf222e592011-02-28 17:17:53 +00001317 bool isByVal = Flags.isByVal();
Evan Chenga8e29892007-01-19 07:51:42 +00001318
Bob Wilson1f595bb2009-04-17 19:07:39 +00001319 // Promote the value if needed.
1320 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001321 default: llvm_unreachable("Unknown loc info!");
Bob Wilson1f595bb2009-04-17 19:07:39 +00001322 case CCValAssign::Full: break;
1323 case CCValAssign::SExt:
1324 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
1325 break;
1326 case CCValAssign::ZExt:
1327 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
1328 break;
1329 case CCValAssign::AExt:
1330 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1331 break;
1332 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001333 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001334 break;
Evan Chenga8e29892007-01-19 07:51:42 +00001335 }
1336
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001337 // f64 and v2f64 might be passed in i32 pairs and must be split into pieces
Bob Wilson1f595bb2009-04-17 19:07:39 +00001338 if (VA.needsCustom()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001339 if (VA.getLocVT() == MVT::v2f64) {
1340 SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1341 DAG.getConstant(0, MVT::i32));
1342 SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1343 DAG.getConstant(1, MVT::i32));
Bob Wilson1f595bb2009-04-17 19:07:39 +00001344
Dan Gohman98ca4f22009-08-05 01:29:28 +00001345 PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass,
Bob Wilson5bafff32009-06-22 23:27:02 +00001346 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1347
1348 VA = ArgLocs[++i]; // skip ahead to next loc
1349 if (VA.isRegLoc()) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001350 PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass,
Bob Wilson5bafff32009-06-22 23:27:02 +00001351 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1352 } else {
1353 assert(VA.isMemLoc());
Bob Wilson5bafff32009-06-22 23:27:02 +00001354
Dan Gohman98ca4f22009-08-05 01:29:28 +00001355 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1,
1356 dl, DAG, VA, Flags));
Bob Wilson5bafff32009-06-22 23:27:02 +00001357 }
1358 } else {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001359 PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i],
Bob Wilson5bafff32009-06-22 23:27:02 +00001360 StackPtr, MemOpChains, Flags);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001361 }
1362 } else if (VA.isRegLoc()) {
1363 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Stuart Hastingsc7315872011-04-20 16:47:52 +00001364 } else if (isByVal) {
1365 assert(VA.isMemLoc());
1366 unsigned offset = 0;
1367
1368 // True if this byval aggregate will be split between registers
1369 // and memory.
1370 if (CCInfo.isFirstByValRegValid()) {
1371 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1372 unsigned int i, j;
1373 for (i = 0, j = CCInfo.getFirstByValReg(); j < ARM::R4; i++, j++) {
1374 SDValue Const = DAG.getConstant(4*i, MVT::i32);
1375 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
1376 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
1377 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001378 false, false, false, 0);
Stuart Hastingsc7315872011-04-20 16:47:52 +00001379 MemOpChains.push_back(Load.getValue(1));
1380 RegsToPass.push_back(std::make_pair(j, Load));
1381 }
1382 offset = ARM::R4 - CCInfo.getFirstByValReg();
1383 CCInfo.clearFirstByValReg();
1384 }
1385
1386 unsigned LocMemOffset = VA.getLocMemOffset();
1387 SDValue StkPtrOff = DAG.getIntPtrConstant(LocMemOffset);
1388 SDValue Dst = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr,
1389 StkPtrOff);
1390 SDValue SrcOffset = DAG.getIntPtrConstant(4*offset);
1391 SDValue Src = DAG.getNode(ISD::ADD, dl, getPointerTy(), Arg, SrcOffset);
1392 SDValue SizeNode = DAG.getConstant(Flags.getByValSize() - 4*offset,
1393 MVT::i32);
1394 MemOpChains.push_back(DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode,
1395 Flags.getByValAlign(),
1396 /*isVolatile=*/false,
Dan Gohman65fd6562011-11-03 21:49:52 +00001397 /*AlwaysInline=*/false,
Stuart Hastingsc7315872011-04-20 16:47:52 +00001398 MachinePointerInfo(0),
1399 MachinePointerInfo(0)));
1400
1401 } else if (!IsSibCall) {
Bob Wilson1f595bb2009-04-17 19:07:39 +00001402 assert(VA.isMemLoc());
Bob Wilson1f595bb2009-04-17 19:07:39 +00001403
Dan Gohman98ca4f22009-08-05 01:29:28 +00001404 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1405 dl, DAG, VA, Flags));
Bob Wilson1f595bb2009-04-17 19:07:39 +00001406 }
Evan Chenga8e29892007-01-19 07:51:42 +00001407 }
1408
1409 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00001410 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Evan Chenga8e29892007-01-19 07:51:42 +00001411 &MemOpChains[0], MemOpChains.size());
1412
1413 // Build a sequence of copy-to-reg nodes chained together with token chain
1414 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman475871a2008-07-27 21:46:04 +00001415 SDValue InFlag;
Dale Johannesen6470a112010-06-15 22:08:33 +00001416 // Tail call byval lowering might overwrite argument registers so in case of
1417 // tail call optimization the copies to registers are lowered later.
1418 if (!isTailCall)
1419 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1420 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1421 RegsToPass[i].second, InFlag);
1422 InFlag = Chain.getValue(1);
1423 }
Evan Chenga8e29892007-01-19 07:51:42 +00001424
Dale Johannesen51e28e62010-06-03 21:09:53 +00001425 // For tail calls lower the arguments to the 'real' stack slot.
1426 if (isTailCall) {
1427 // Force all the incoming stack arguments to be loaded from the stack
1428 // before any new outgoing arguments are stored to the stack, because the
1429 // outgoing stack slots may alias the incoming argument stack slots, and
1430 // the alias isn't otherwise explicit. This is slightly more conservative
1431 // than necessary, because it means that each store effectively depends
1432 // on every argument instead of just those arguments it would clobber.
1433
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001434 // Do not flag preceding copytoreg stuff together with the following stuff.
Dale Johannesen51e28e62010-06-03 21:09:53 +00001435 InFlag = SDValue();
1436 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1437 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1438 RegsToPass[i].second, InFlag);
1439 InFlag = Chain.getValue(1);
1440 }
1441 InFlag =SDValue();
1442 }
1443
Bill Wendling056292f2008-09-16 21:48:12 +00001444 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1445 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1446 // node so that legalize doesn't hack it.
Evan Chenga8e29892007-01-19 07:51:42 +00001447 bool isDirect = false;
1448 bool isARMFunc = false;
Evan Cheng277f0742007-06-19 21:05:09 +00001449 bool isLocalARMFunc = false;
Evan Chenge7e0d622009-11-06 22:24:13 +00001450 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Jim Grosbache7b52522010-04-14 22:28:31 +00001451
1452 if (EnableARMLongCalls) {
1453 assert (getTargetMachine().getRelocationModel() == Reloc::Static
1454 && "long-calls with non-static relocation model!");
1455 // Handle a global address or an external symbol. If it's not one of
1456 // those, the target's already in a register, so we don't need to do
1457 // anything extra.
1458 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Anders Carlsson0dbdca52010-04-15 03:11:28 +00001459 const GlobalValue *GV = G->getGlobal();
Jim Grosbache7b52522010-04-14 22:28:31 +00001460 // Create a constant pool entry for the callee address
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001461 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendling5bb77992011-10-01 08:00:54 +00001462 ARMConstantPoolValue *CPV =
1463 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 0);
1464
Jim Grosbache7b52522010-04-14 22:28:31 +00001465 // Get the address of the callee into a register
1466 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1467 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1468 Callee = DAG.getLoad(getPointerTy(), dl,
1469 DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001470 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001471 false, false, false, 0);
Jim Grosbache7b52522010-04-14 22:28:31 +00001472 } else if (ExternalSymbolSDNode *S=dyn_cast<ExternalSymbolSDNode>(Callee)) {
1473 const char *Sym = S->getSymbol();
1474
1475 // Create a constant pool entry for the callee address
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001476 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendlingfe31e672011-10-01 08:58:29 +00001477 ARMConstantPoolValue *CPV =
1478 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1479 ARMPCLabelIndex, 0);
Jim Grosbache7b52522010-04-14 22:28:31 +00001480 // Get the address of the callee into a register
1481 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1482 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1483 Callee = DAG.getLoad(getPointerTy(), dl,
1484 DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001485 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001486 false, false, false, 0);
Jim Grosbache7b52522010-04-14 22:28:31 +00001487 }
1488 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Dan Gohman46510a72010-04-15 01:51:59 +00001489 const GlobalValue *GV = G->getGlobal();
Evan Chenga8e29892007-01-19 07:51:42 +00001490 isDirect = true;
Chris Lattner4fb63d02009-07-15 04:12:33 +00001491 bool isExt = GV->isDeclaration() || GV->isWeakForLinker();
Evan Cheng970a4192007-01-19 19:28:01 +00001492 bool isStub = (isExt && Subtarget->isTargetDarwin()) &&
Evan Chenga8e29892007-01-19 07:51:42 +00001493 getTargetMachine().getRelocationModel() != Reloc::Static;
1494 isARMFunc = !Subtarget->isThumb() || isStub;
Evan Cheng277f0742007-06-19 21:05:09 +00001495 // ARM call to a local ARM function is predicable.
Evan Cheng46df4eb2010-06-16 07:35:02 +00001496 isLocalARMFunc = !Subtarget->isThumb() && (!isExt || !ARMInterworking);
Evan Chengc60e76d2007-01-30 20:37:08 +00001497 // tBX takes a register source operand.
David Goodwinf1daf7d2009-07-08 23:10:31 +00001498 if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001499 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendling5bb77992011-10-01 08:00:54 +00001500 ARMConstantPoolValue *CPV =
1501 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 4);
Evan Cheng1606e8e2009-03-13 07:51:59 +00001502 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00001503 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Bob Wilson2dc4f542009-03-20 22:42:55 +00001504 Callee = DAG.getLoad(getPointerTy(), dl,
Evan Cheng9eda6892009-10-31 03:39:36 +00001505 DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001506 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001507 false, false, false, 0);
Evan Chenge7e0d622009-11-06 22:24:13 +00001508 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Bob Wilson2dc4f542009-03-20 22:42:55 +00001509 Callee = DAG.getNode(ARMISD::PIC_ADD, dl,
Dale Johannesen33c960f2009-02-04 20:06:27 +00001510 getPointerTy(), Callee, PICLabel);
Jim Grosbach637d89f2010-09-22 23:27:36 +00001511 } else {
1512 // On ELF targets for PIC code, direct calls should go through the PLT
1513 unsigned OpFlags = 0;
1514 if (Subtarget->isTargetELF() &&
1515 getTargetMachine().getRelocationModel() == Reloc::PIC_)
1516 OpFlags = ARMII::MO_PLT;
1517 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
1518 }
Bill Wendling056292f2008-09-16 21:48:12 +00001519 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Evan Chenga8e29892007-01-19 07:51:42 +00001520 isDirect = true;
Evan Cheng970a4192007-01-19 19:28:01 +00001521 bool isStub = Subtarget->isTargetDarwin() &&
Evan Chenga8e29892007-01-19 07:51:42 +00001522 getTargetMachine().getRelocationModel() != Reloc::Static;
1523 isARMFunc = !Subtarget->isThumb() || isStub;
Evan Chengc60e76d2007-01-30 20:37:08 +00001524 // tBX takes a register source operand.
1525 const char *Sym = S->getSymbol();
David Goodwinf1daf7d2009-07-08 23:10:31 +00001526 if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001527 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendlingfe31e672011-10-01 08:58:29 +00001528 ARMConstantPoolValue *CPV =
1529 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1530 ARMPCLabelIndex, 4);
Evan Cheng1606e8e2009-03-13 07:51:59 +00001531 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00001532 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Dale Johannesen33c960f2009-02-04 20:06:27 +00001533 Callee = DAG.getLoad(getPointerTy(), dl,
Evan Cheng9eda6892009-10-31 03:39:36 +00001534 DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001535 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001536 false, false, false, 0);
Evan Chenge7e0d622009-11-06 22:24:13 +00001537 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Bob Wilson2dc4f542009-03-20 22:42:55 +00001538 Callee = DAG.getNode(ARMISD::PIC_ADD, dl,
Dale Johannesen33c960f2009-02-04 20:06:27 +00001539 getPointerTy(), Callee, PICLabel);
Jim Grosbach637d89f2010-09-22 23:27:36 +00001540 } else {
1541 unsigned OpFlags = 0;
1542 // On ELF targets for PIC code, direct calls should go through the PLT
1543 if (Subtarget->isTargetELF() &&
1544 getTargetMachine().getRelocationModel() == Reloc::PIC_)
1545 OpFlags = ARMII::MO_PLT;
1546 Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlags);
1547 }
Evan Chenga8e29892007-01-19 07:51:42 +00001548 }
1549
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +00001550 // FIXME: handle tail calls differently.
1551 unsigned CallOpc;
Evan Chengb6207242009-08-01 00:16:10 +00001552 if (Subtarget->isThumb()) {
1553 if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps())
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +00001554 CallOpc = ARMISD::CALL_NOLINK;
1555 else
1556 CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
1557 } else {
1558 CallOpc = (isDirect || Subtarget->hasV5TOps())
Evan Cheng277f0742007-06-19 21:05:09 +00001559 ? (isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL)
1560 : ARMISD::CALL_NOLINK;
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +00001561 }
Lauro Ramos Venancio64c88d72007-03-20 17:57:23 +00001562
Dan Gohman475871a2008-07-27 21:46:04 +00001563 std::vector<SDValue> Ops;
Evan Chenga8e29892007-01-19 07:51:42 +00001564 Ops.push_back(Chain);
1565 Ops.push_back(Callee);
1566
1567 // Add argument registers to the end of the list so that they are known live
1568 // into the call.
1569 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1570 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1571 RegsToPass[i].second.getValueType()));
1572
Gabor Greifba36cb52008-08-28 21:40:38 +00001573 if (InFlag.getNode())
Evan Chenga8e29892007-01-19 07:51:42 +00001574 Ops.push_back(InFlag);
Dale Johannesen51e28e62010-06-03 21:09:53 +00001575
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001576 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dale Johannesencf296fa2010-06-05 00:51:39 +00001577 if (isTailCall)
Dale Johannesen51e28e62010-06-03 21:09:53 +00001578 return DAG.getNode(ARMISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
Dale Johannesen51e28e62010-06-03 21:09:53 +00001579
Duncan Sands4bdcb612008-07-02 17:40:58 +00001580 // Returns a chain and a flag for retval copy to use.
Dale Johannesen51e28e62010-06-03 21:09:53 +00001581 Chain = DAG.getNode(CallOpc, dl, NodeTys, &Ops[0], Ops.size());
Evan Chenga8e29892007-01-19 07:51:42 +00001582 InFlag = Chain.getValue(1);
1583
Chris Lattnere563bbc2008-10-11 22:08:30 +00001584 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1585 DAG.getIntPtrConstant(0, true), InFlag);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001586 if (!Ins.empty())
Evan Chenga8e29892007-01-19 07:51:42 +00001587 InFlag = Chain.getValue(1);
1588
Bob Wilson1f595bb2009-04-17 19:07:39 +00001589 // Handle result values, copying them out of physregs into vregs that we
1590 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001591 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins,
1592 dl, DAG, InVals);
Evan Chenga8e29892007-01-19 07:51:42 +00001593}
1594
Stuart Hastingsf222e592011-02-28 17:17:53 +00001595/// HandleByVal - Every parameter *after* a byval parameter is passed
Stuart Hastingsc7315872011-04-20 16:47:52 +00001596/// on the stack. Remember the next parameter register to allocate,
1597/// and then confiscate the rest of the parameter registers to insure
Stuart Hastingsf222e592011-02-28 17:17:53 +00001598/// this.
1599void
Stuart Hastingsc7315872011-04-20 16:47:52 +00001600llvm::ARMTargetLowering::HandleByVal(CCState *State, unsigned &size) const {
1601 unsigned reg = State->AllocateReg(GPRArgRegs, 4);
1602 assert((State->getCallOrPrologue() == Prologue ||
1603 State->getCallOrPrologue() == Call) &&
1604 "unhandled ParmContext");
1605 if ((!State->isFirstByValRegValid()) &&
1606 (ARM::R0 <= reg) && (reg <= ARM::R3)) {
1607 State->setFirstByValReg(reg);
1608 // At a call site, a byval parameter that is split between
1609 // registers and memory needs its size truncated here. In a
1610 // function prologue, such byval parameters are reassembled in
1611 // memory, and are not truncated.
1612 if (State->getCallOrPrologue() == Call) {
1613 unsigned excess = 4 * (ARM::R4 - reg);
1614 assert(size >= excess && "expected larger existing stack allocation");
1615 size -= excess;
1616 }
1617 }
1618 // Confiscate any remaining parameter registers to preclude their
1619 // assignment to subsequent parameters.
1620 while (State->AllocateReg(GPRArgRegs, 4))
1621 ;
Stuart Hastingsf222e592011-02-28 17:17:53 +00001622}
1623
Dale Johannesen51e28e62010-06-03 21:09:53 +00001624/// MatchingStackOffset - Return true if the given stack call argument is
1625/// already available in the same position (relatively) of the caller's
1626/// incoming argument stack.
1627static
1628bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
1629 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
1630 const ARMInstrInfo *TII) {
1631 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
1632 int FI = INT_MAX;
1633 if (Arg.getOpcode() == ISD::CopyFromReg) {
1634 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00001635 if (!TargetRegisterInfo::isVirtualRegister(VR))
Dale Johannesen51e28e62010-06-03 21:09:53 +00001636 return false;
1637 MachineInstr *Def = MRI->getVRegDef(VR);
1638 if (!Def)
1639 return false;
1640 if (!Flags.isByVal()) {
1641 if (!TII->isLoadFromStackSlot(Def, FI))
1642 return false;
1643 } else {
Dale Johannesen7835f1f2010-07-08 01:18:23 +00001644 return false;
Dale Johannesen51e28e62010-06-03 21:09:53 +00001645 }
1646 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
1647 if (Flags.isByVal())
1648 // ByVal argument is passed in as a pointer but it's now being
1649 // dereferenced. e.g.
1650 // define @foo(%struct.X* %A) {
1651 // tail call @bar(%struct.X* byval %A)
1652 // }
1653 return false;
1654 SDValue Ptr = Ld->getBasePtr();
1655 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
1656 if (!FINode)
1657 return false;
1658 FI = FINode->getIndex();
1659 } else
1660 return false;
1661
1662 assert(FI != INT_MAX);
1663 if (!MFI->isFixedObjectIndex(FI))
1664 return false;
1665 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
1666}
1667
1668/// IsEligibleForTailCallOptimization - Check whether the call is eligible
1669/// for tail call optimization. Targets which want to do tail call
1670/// optimization should implement this function.
1671bool
1672ARMTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
1673 CallingConv::ID CalleeCC,
1674 bool isVarArg,
1675 bool isCalleeStructRet,
1676 bool isCallerStructRet,
1677 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001678 const SmallVectorImpl<SDValue> &OutVals,
Dale Johannesen51e28e62010-06-03 21:09:53 +00001679 const SmallVectorImpl<ISD::InputArg> &Ins,
1680 SelectionDAG& DAG) const {
Dale Johannesen51e28e62010-06-03 21:09:53 +00001681 const Function *CallerF = DAG.getMachineFunction().getFunction();
1682 CallingConv::ID CallerCC = CallerF->getCallingConv();
1683 bool CCMatch = CallerCC == CalleeCC;
1684
1685 // Look for obvious safe cases to perform tail call optimization that do not
1686 // require ABI changes. This is what gcc calls sibcall.
1687
Jim Grosbach7616b642010-06-16 23:45:49 +00001688 // Do not sibcall optimize vararg calls unless the call site is not passing
1689 // any arguments.
Dale Johannesen51e28e62010-06-03 21:09:53 +00001690 if (isVarArg && !Outs.empty())
1691 return false;
1692
1693 // Also avoid sibcall optimization if either caller or callee uses struct
1694 // return semantics.
1695 if (isCalleeStructRet || isCallerStructRet)
1696 return false;
1697
Dale Johannesene39fdbe2010-06-23 18:52:34 +00001698 // FIXME: Completely disable sibcall for Thumb1 since Thumb1RegisterInfo::
Jim Grosbach8dc41f32011-07-08 20:18:11 +00001699 // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
1700 // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
1701 // support in the assembler and linker to be used. This would need to be
1702 // fixed to fully support tail calls in Thumb1.
1703 //
Dale Johannesen7835f1f2010-07-08 01:18:23 +00001704 // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
1705 // LR. This means if we need to reload LR, it takes an extra instructions,
1706 // which outweighs the value of the tail call; but here we don't know yet
1707 // whether LR is going to be used. Probably the right approach is to
Jim Grosbach4725ca72010-09-08 03:54:02 +00001708 // generate the tail call here and turn it back into CALL/RET in
Dale Johannesen7835f1f2010-07-08 01:18:23 +00001709 // emitEpilogue if LR is used.
Dale Johannesen7835f1f2010-07-08 01:18:23 +00001710
1711 // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
1712 // but we need to make sure there are enough registers; the only valid
1713 // registers are the 4 used for parameters. We don't currently do this
1714 // case.
Evan Cheng3d2125c2010-11-30 23:55:39 +00001715 if (Subtarget->isThumb1Only())
1716 return false;
Dale Johannesendf50d7e2010-06-18 18:13:11 +00001717
Dale Johannesen51e28e62010-06-03 21:09:53 +00001718 // If the calling conventions do not match, then we'd better make sure the
1719 // results are returned in the same way as what the caller expects.
1720 if (!CCMatch) {
1721 SmallVector<CCValAssign, 16> RVLocs1;
Cameron Zwaricha86686e2011-06-10 20:59:24 +00001722 ARMCCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
1723 getTargetMachine(), RVLocs1, *DAG.getContext(), Call);
Dale Johannesen51e28e62010-06-03 21:09:53 +00001724 CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC, true, isVarArg));
1725
1726 SmallVector<CCValAssign, 16> RVLocs2;
Cameron Zwaricha86686e2011-06-10 20:59:24 +00001727 ARMCCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
1728 getTargetMachine(), RVLocs2, *DAG.getContext(), Call);
Dale Johannesen51e28e62010-06-03 21:09:53 +00001729 CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC, true, isVarArg));
1730
1731 if (RVLocs1.size() != RVLocs2.size())
1732 return false;
1733 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
1734 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
1735 return false;
1736 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
1737 return false;
1738 if (RVLocs1[i].isRegLoc()) {
1739 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
1740 return false;
1741 } else {
1742 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
1743 return false;
1744 }
1745 }
1746 }
1747
1748 // If the callee takes no arguments then go on to check the results of the
1749 // call.
1750 if (!Outs.empty()) {
1751 // Check if stack adjustment is needed. For now, do not do this if any
1752 // argument is passed on the stack.
1753 SmallVector<CCValAssign, 16> ArgLocs;
Cameron Zwaricha86686e2011-06-10 20:59:24 +00001754 ARMCCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
1755 getTargetMachine(), ArgLocs, *DAG.getContext(), Call);
Dale Johannesen51e28e62010-06-03 21:09:53 +00001756 CCInfo.AnalyzeCallOperands(Outs,
1757 CCAssignFnForNode(CalleeCC, false, isVarArg));
1758 if (CCInfo.getNextStackOffset()) {
1759 MachineFunction &MF = DAG.getMachineFunction();
1760
1761 // Check if the arguments are already laid out in the right way as
1762 // the caller's fixed stack objects.
1763 MachineFrameInfo *MFI = MF.getFrameInfo();
1764 const MachineRegisterInfo *MRI = &MF.getRegInfo();
1765 const ARMInstrInfo *TII =
1766 ((ARMTargetMachine&)getTargetMachine()).getInstrInfo();
Dale Johannesencf296fa2010-06-05 00:51:39 +00001767 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1768 i != e;
1769 ++i, ++realArgIdx) {
Dale Johannesen51e28e62010-06-03 21:09:53 +00001770 CCValAssign &VA = ArgLocs[i];
1771 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001772 SDValue Arg = OutVals[realArgIdx];
Dale Johannesencf296fa2010-06-05 00:51:39 +00001773 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
Dale Johannesen51e28e62010-06-03 21:09:53 +00001774 if (VA.getLocInfo() == CCValAssign::Indirect)
1775 return false;
Dale Johannesencf296fa2010-06-05 00:51:39 +00001776 if (VA.needsCustom()) {
1777 // f64 and vector types are split into multiple registers or
1778 // register/stack-slot combinations. The types will not match
1779 // the registers; give up on memory f64 refs until we figure
1780 // out what to do about this.
1781 if (!VA.isRegLoc())
1782 return false;
1783 if (!ArgLocs[++i].isRegLoc())
Jim Grosbach4725ca72010-09-08 03:54:02 +00001784 return false;
Dale Johannesencf296fa2010-06-05 00:51:39 +00001785 if (RegVT == MVT::v2f64) {
1786 if (!ArgLocs[++i].isRegLoc())
1787 return false;
1788 if (!ArgLocs[++i].isRegLoc())
1789 return false;
1790 }
1791 } else if (!VA.isRegLoc()) {
Dale Johannesen51e28e62010-06-03 21:09:53 +00001792 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
1793 MFI, MRI, TII))
1794 return false;
1795 }
1796 }
1797 }
1798 }
1799
1800 return true;
1801}
1802
Dan Gohman98ca4f22009-08-05 01:29:28 +00001803SDValue
1804ARMTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001805 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001806 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001807 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001808 DebugLoc dl, SelectionDAG &DAG) const {
Bob Wilson2dc4f542009-03-20 22:42:55 +00001809
Bob Wilsondee46d72009-04-17 20:35:10 +00001810 // CCValAssign - represent the assignment of the return value to a location.
Bob Wilson1f595bb2009-04-17 19:07:39 +00001811 SmallVector<CCValAssign, 16> RVLocs;
Bob Wilson1f595bb2009-04-17 19:07:39 +00001812
Bob Wilsondee46d72009-04-17 20:35:10 +00001813 // CCState - Info about the registers and stack slots.
Cameron Zwaricha86686e2011-06-10 20:59:24 +00001814 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1815 getTargetMachine(), RVLocs, *DAG.getContext(), Call);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001816
Dan Gohman98ca4f22009-08-05 01:29:28 +00001817 // Analyze outgoing return values.
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00001818 CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true,
1819 isVarArg));
Bob Wilson1f595bb2009-04-17 19:07:39 +00001820
1821 // If this is the first return lowered for this function, add
1822 // the regs to the liveout set for the function.
1823 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
1824 for (unsigned i = 0; i != RVLocs.size(); ++i)
1825 if (RVLocs[i].isRegLoc())
1826 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Evan Chenga8e29892007-01-19 07:51:42 +00001827 }
1828
Bob Wilson1f595bb2009-04-17 19:07:39 +00001829 SDValue Flag;
1830
1831 // Copy the result values into the output registers.
1832 for (unsigned i = 0, realRVLocIdx = 0;
1833 i != RVLocs.size();
1834 ++i, ++realRVLocIdx) {
1835 CCValAssign &VA = RVLocs[i];
1836 assert(VA.isRegLoc() && "Can only return in registers!");
1837
Dan Gohmanc9403652010-07-07 15:54:55 +00001838 SDValue Arg = OutVals[realRVLocIdx];
Bob Wilson1f595bb2009-04-17 19:07:39 +00001839
1840 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001841 default: llvm_unreachable("Unknown loc info!");
Bob Wilson1f595bb2009-04-17 19:07:39 +00001842 case CCValAssign::Full: break;
1843 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001844 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001845 break;
1846 }
1847
Bob Wilson1f595bb2009-04-17 19:07:39 +00001848 if (VA.needsCustom()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001849 if (VA.getLocVT() == MVT::v2f64) {
Bob Wilson5bafff32009-06-22 23:27:02 +00001850 // Extract the first half and return it in two registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00001851 SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1852 DAG.getConstant(0, MVT::i32));
Jim Grosbache5165492009-11-09 00:11:35 +00001853 SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001854 DAG.getVTList(MVT::i32, MVT::i32), Half);
Bob Wilson5bafff32009-06-22 23:27:02 +00001855
1856 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), HalfGPRs, Flag);
1857 Flag = Chain.getValue(1);
1858 VA = RVLocs[++i]; // skip ahead to next loc
1859 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
1860 HalfGPRs.getValue(1), Flag);
1861 Flag = Chain.getValue(1);
1862 VA = RVLocs[++i]; // skip ahead to next loc
1863
1864 // Extract the 2nd half and fall through to handle it as an f64 value.
Owen Anderson825b72b2009-08-11 20:47:22 +00001865 Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1866 DAG.getConstant(1, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00001867 }
1868 // Legalize ret f64 -> ret 2 x i32. We always have fmrrd if f64 is
1869 // available.
Jim Grosbache5165492009-11-09 00:11:35 +00001870 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001871 DAG.getVTList(MVT::i32, MVT::i32), &Arg, 1);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001872 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), fmrrd, Flag);
Bob Wilson4d59e1d2009-04-24 17:00:36 +00001873 Flag = Chain.getValue(1);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001874 VA = RVLocs[++i]; // skip ahead to next loc
1875 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), fmrrd.getValue(1),
1876 Flag);
1877 } else
1878 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
1879
Bob Wilsondee46d72009-04-17 20:35:10 +00001880 // Guarantee that all emitted copies are
1881 // stuck together, avoiding something bad.
Bob Wilson1f595bb2009-04-17 19:07:39 +00001882 Flag = Chain.getValue(1);
1883 }
1884
1885 SDValue result;
1886 if (Flag.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00001887 result = DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, Chain, Flag);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001888 else // Return Void
Owen Anderson825b72b2009-08-11 20:47:22 +00001889 result = DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, Chain);
Bob Wilson1f595bb2009-04-17 19:07:39 +00001890
1891 return result;
Evan Chenga8e29892007-01-19 07:51:42 +00001892}
1893
Evan Cheng3d2125c2010-11-30 23:55:39 +00001894bool ARMTargetLowering::isUsedByReturnOnly(SDNode *N) const {
1895 if (N->getNumValues() != 1)
1896 return false;
1897 if (!N->hasNUsesOfValue(1, 0))
1898 return false;
1899
1900 unsigned NumCopies = 0;
1901 SDNode* Copies[2];
1902 SDNode *Use = *N->use_begin();
1903 if (Use->getOpcode() == ISD::CopyToReg) {
1904 Copies[NumCopies++] = Use;
1905 } else if (Use->getOpcode() == ARMISD::VMOVRRD) {
1906 // f64 returned in a pair of GPRs.
1907 for (SDNode::use_iterator UI = Use->use_begin(), UE = Use->use_end();
1908 UI != UE; ++UI) {
1909 if (UI->getOpcode() != ISD::CopyToReg)
1910 return false;
1911 Copies[UI.getUse().getResNo()] = *UI;
1912 ++NumCopies;
1913 }
1914 } else if (Use->getOpcode() == ISD::BITCAST) {
1915 // f32 returned in a single GPR.
1916 if (!Use->hasNUsesOfValue(1, 0))
1917 return false;
1918 Use = *Use->use_begin();
1919 if (Use->getOpcode() != ISD::CopyToReg || !Use->hasNUsesOfValue(1, 0))
1920 return false;
1921 Copies[NumCopies++] = Use;
1922 } else {
1923 return false;
1924 }
1925
1926 if (NumCopies != 1 && NumCopies != 2)
1927 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001928
1929 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001930 for (unsigned i = 0; i < NumCopies; ++i) {
1931 SDNode *Copy = Copies[i];
1932 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1933 UI != UE; ++UI) {
1934 if (UI->getOpcode() == ISD::CopyToReg) {
1935 SDNode *Use = *UI;
1936 if (Use == Copies[0] || Use == Copies[1])
1937 continue;
1938 return false;
1939 }
1940 if (UI->getOpcode() != ARMISD::RET_FLAG)
1941 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001942 HasRet = true;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001943 }
1944 }
1945
Evan Cheng1bf891a2010-12-01 22:59:46 +00001946 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001947}
1948
Evan Cheng485fafc2011-03-21 01:19:09 +00001949bool ARMTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1950 if (!EnableARMTailCalls)
1951 return false;
1952
1953 if (!CI->isTailCall())
1954 return false;
1955
1956 return !Subtarget->isThumb1Only();
1957}
1958
Bob Wilsonb62d2572009-11-03 00:02:05 +00001959// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
1960// their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is
1961// one of the above mentioned nodes. It has to be wrapped because otherwise
1962// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
1963// be used to form addressing mode. These wrapped nodes will be selected
1964// into MOVi.
Dan Gohman475871a2008-07-27 21:46:04 +00001965static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001966 EVT PtrVT = Op.getValueType();
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001967 // FIXME there is no actual debug info here
1968 DebugLoc dl = Op.getDebugLoc();
Evan Chenga8e29892007-01-19 07:51:42 +00001969 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00001970 SDValue Res;
Evan Chenga8e29892007-01-19 07:51:42 +00001971 if (CP->isMachineConstantPoolEntry())
1972 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
1973 CP->getAlignment());
1974 else
1975 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
1976 CP->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +00001977 return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res);
Evan Chenga8e29892007-01-19 07:51:42 +00001978}
1979
Jim Grosbache1102ca2010-07-19 17:20:38 +00001980unsigned ARMTargetLowering::getJumpTableEncoding() const {
1981 return MachineJumpTableInfo::EK_Inline;
1982}
1983
Dan Gohmand858e902010-04-17 15:26:15 +00001984SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op,
1985 SelectionDAG &DAG) const {
Evan Chenge7e0d622009-11-06 22:24:13 +00001986 MachineFunction &MF = DAG.getMachineFunction();
1987 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1988 unsigned ARMPCLabelIndex = 0;
Bob Wilsonddb16df2009-10-30 05:45:42 +00001989 DebugLoc DL = Op.getDebugLoc();
Bob Wilson907eebd2009-11-02 20:59:23 +00001990 EVT PtrVT = getPointerTy();
Dan Gohman46510a72010-04-15 01:51:59 +00001991 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Bob Wilson907eebd2009-11-02 20:59:23 +00001992 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
1993 SDValue CPAddr;
1994 if (RelocM == Reloc::Static) {
1995 CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4);
1996 } else {
1997 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001998 ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendling5bb77992011-10-01 08:00:54 +00001999 ARMConstantPoolValue *CPV =
2000 ARMConstantPoolConstant::Create(BA, ARMPCLabelIndex,
2001 ARMCP::CPBlockAddress, PCAdj);
Bob Wilson907eebd2009-11-02 20:59:23 +00002002 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2003 }
2004 CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr);
2005 SDValue Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002006 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002007 false, false, false, 0);
Bob Wilson907eebd2009-11-02 20:59:23 +00002008 if (RelocM == Reloc::Static)
2009 return Result;
Evan Chenge7e0d622009-11-06 22:24:13 +00002010 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Bob Wilson907eebd2009-11-02 20:59:23 +00002011 return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel);
Bob Wilsonddb16df2009-10-30 05:45:42 +00002012}
2013
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002014// Lower ISD::GlobalTLSAddress using the "general dynamic" model
Dan Gohman475871a2008-07-27 21:46:04 +00002015SDValue
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002016ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
Dan Gohmand858e902010-04-17 15:26:15 +00002017 SelectionDAG &DAG) const {
Dale Johannesen33c960f2009-02-04 20:06:27 +00002018 DebugLoc dl = GA->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00002019 EVT PtrVT = getPointerTy();
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002020 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
Evan Chenge7e0d622009-11-06 22:24:13 +00002021 MachineFunction &MF = DAG.getMachineFunction();
2022 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002023 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002024 ARMConstantPoolValue *CPV =
Bill Wendling5bb77992011-10-01 08:00:54 +00002025 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2026 ARMCP::CPValue, PCAdj, ARMCP::TLSGD, true);
Evan Cheng1606e8e2009-03-13 07:51:59 +00002027 SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002028 Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument);
Evan Cheng9eda6892009-10-31 03:39:36 +00002029 Argument = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002030 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002031 false, false, false, 0);
Dan Gohman475871a2008-07-27 21:46:04 +00002032 SDValue Chain = Argument.getValue(1);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002033
Evan Chenge7e0d622009-11-06 22:24:13 +00002034 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002035 Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002036
2037 // call __tls_get_addr.
2038 ArgListTy Args;
2039 ArgListEntry Entry;
2040 Entry.Node = Argument;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002041 Entry.Ty = (Type *) Type::getInt32Ty(*DAG.getContext());
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002042 Args.push_back(Entry);
Dale Johannesen7d2ad622009-01-30 23:10:59 +00002043 // FIXME: is there useful debug info available here?
Dan Gohman475871a2008-07-27 21:46:04 +00002044 std::pair<SDValue, SDValue> CallResult =
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002045 LowerCallTo(Chain, (Type *) Type::getInt32Ty(*DAG.getContext()),
Evan Cheng59bc0602009-08-14 19:11:20 +00002046 false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002047 0, CallingConv::C, false, /*isReturnValueUsed=*/true,
Bill Wendling46ada192010-03-02 01:55:18 +00002048 DAG.getExternalSymbol("__tls_get_addr", PtrVT), Args, DAG, dl);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002049 return CallResult.first;
2050}
2051
2052// Lower ISD::GlobalTLSAddress using the "initial exec" or
2053// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00002054SDValue
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002055ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
Dan Gohmand858e902010-04-17 15:26:15 +00002056 SelectionDAG &DAG) const {
Dan Gohman46510a72010-04-15 01:51:59 +00002057 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen33c960f2009-02-04 20:06:27 +00002058 DebugLoc dl = GA->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00002059 SDValue Offset;
2060 SDValue Chain = DAG.getEntryNode();
Owen Andersone50ed302009-08-10 22:56:29 +00002061 EVT PtrVT = getPointerTy();
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002062 // Get the Thread Pointer
Dale Johannesen33c960f2009-02-04 20:06:27 +00002063 SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002064
Chris Lattner4fb63d02009-07-15 04:12:33 +00002065 if (GV->isDeclaration()) {
Evan Chenge7e0d622009-11-06 22:24:13 +00002066 MachineFunction &MF = DAG.getMachineFunction();
2067 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002068 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Evan Chenge7e0d622009-11-06 22:24:13 +00002069 // Initial exec model.
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002070 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2071 ARMConstantPoolValue *CPV =
Bill Wendling5bb77992011-10-01 08:00:54 +00002072 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2073 ARMCP::CPValue, PCAdj, ARMCP::GOTTPOFF,
2074 true);
Evan Cheng1606e8e2009-03-13 07:51:59 +00002075 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002076 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
Evan Cheng9eda6892009-10-31 03:39:36 +00002077 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002078 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002079 false, false, false, 0);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002080 Chain = Offset.getValue(1);
2081
Evan Chenge7e0d622009-11-06 22:24:13 +00002082 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002083 Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002084
Evan Cheng9eda6892009-10-31 03:39:36 +00002085 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002086 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002087 false, false, false, 0);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002088 } else {
2089 // local exec model
Bill Wendling5bb77992011-10-01 08:00:54 +00002090 ARMConstantPoolValue *CPV =
2091 ARMConstantPoolConstant::Create(GV, ARMCP::TPOFF);
Evan Cheng1606e8e2009-03-13 07:51:59 +00002092 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002093 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
Evan Cheng9eda6892009-10-31 03:39:36 +00002094 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002095 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002096 false, false, false, 0);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002097 }
2098
2099 // The address of the thread local variable is the add of the thread
2100 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00002101 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002102}
2103
Dan Gohman475871a2008-07-27 21:46:04 +00002104SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00002105ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00002106 // TODO: implement the "local dynamic" model
2107 assert(Subtarget->isTargetELF() &&
2108 "TLS not implemented for non-ELF targets");
2109 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
2110 // If the relocation model is PIC, use the "General Dynamic" TLS Model,
2111 // otherwise use the "Local Exec" TLS Model
2112 if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
2113 return LowerToTLSGeneralDynamicModel(GA, DAG);
2114 else
2115 return LowerToTLSExecModels(GA, DAG);
2116}
2117
Dan Gohman475871a2008-07-27 21:46:04 +00002118SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00002119 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00002120 EVT PtrVT = getPointerTy();
Dale Johannesen33c960f2009-02-04 20:06:27 +00002121 DebugLoc dl = Op.getDebugLoc();
Dan Gohman46510a72010-04-15 01:51:59 +00002122 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00002123 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2124 if (RelocM == Reloc::PIC_) {
Rafael Espindolabb46f522009-01-15 20:18:42 +00002125 bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility();
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00002126 ARMConstantPoolValue *CPV =
Bill Wendling5bb77992011-10-01 08:00:54 +00002127 ARMConstantPoolConstant::Create(GV,
2128 UseGOTOFF ? ARMCP::GOTOFF : ARMCP::GOT);
Evan Cheng1606e8e2009-03-13 07:51:59 +00002129 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002130 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Bob Wilson2dc4f542009-03-20 22:42:55 +00002131 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Anton Korobeynikov249fb332009-10-07 00:06:35 +00002132 CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002133 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002134 false, false, false, 0);
Dan Gohman475871a2008-07-27 21:46:04 +00002135 SDValue Chain = Result.getValue(1);
Dale Johannesenb300d2a2009-02-07 00:55:49 +00002136 SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002137 Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result, GOT);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00002138 if (!UseGOTOFF)
Anton Korobeynikov249fb332009-10-07 00:06:35 +00002139 Result = DAG.getLoad(PtrVT, dl, Chain, Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002140 MachinePointerInfo::getGOT(),
2141 false, false, false, 0);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00002142 return Result;
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002143 }
2144
2145 // If we have T2 ops, we can materialize the address directly via movt/movw
James Molloy015cca62011-10-26 08:53:19 +00002146 // pair. This is always cheaper.
2147 if (Subtarget->useMovt()) {
Evan Chengfc8475b2011-01-19 02:16:49 +00002148 ++NumMovwMovt;
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002149 // FIXME: Once remat is capable of dealing with instructions with register
2150 // operands, expand this into two nodes.
2151 return DAG.getNode(ARMISD::Wrapper, dl, PtrVT,
2152 DAG.getTargetGlobalAddress(GV, dl, PtrVT));
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00002153 } else {
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002154 SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
2155 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2156 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2157 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002158 false, false, false, 0);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00002159 }
2160}
2161
Dan Gohman475871a2008-07-27 21:46:04 +00002162SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00002163 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00002164 EVT PtrVT = getPointerTy();
Dale Johannesen33c960f2009-02-04 20:06:27 +00002165 DebugLoc dl = Op.getDebugLoc();
Dan Gohman46510a72010-04-15 01:51:59 +00002166 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Evan Chenga8e29892007-01-19 07:51:42 +00002167 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002168 MachineFunction &MF = DAG.getMachineFunction();
2169 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2170
Jakob Stoklund Olesen8f37a242012-01-07 20:49:15 +00002171 // FIXME: Enable this for static codegen when tool issues are fixed. Also
2172 // update ARMFastISel::ARMMaterializeGV.
Evan Chengf31151f2011-10-26 01:17:44 +00002173 if (Subtarget->useMovt() && RelocM != Reloc::Static) {
Evan Chengfc8475b2011-01-19 02:16:49 +00002174 ++NumMovwMovt;
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002175 // FIXME: Once remat is capable of dealing with instructions with register
2176 // operands, expand this into two nodes.
Evan Cheng53519f02011-01-21 18:55:51 +00002177 if (RelocM == Reloc::Static)
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002178 return DAG.getNode(ARMISD::Wrapper, dl, PtrVT,
2179 DAG.getTargetGlobalAddress(GV, dl, PtrVT));
2180
Evan Cheng53519f02011-01-21 18:55:51 +00002181 unsigned Wrapper = (RelocM == Reloc::PIC_)
2182 ? ARMISD::WrapperPIC : ARMISD::WrapperDYN;
2183 SDValue Result = DAG.getNode(Wrapper, dl, PtrVT,
Evan Cheng9fe20092011-01-20 08:34:58 +00002184 DAG.getTargetGlobalAddress(GV, dl, PtrVT));
Evan Chengfc8475b2011-01-19 02:16:49 +00002185 if (Subtarget->GVIsIndirectSymbol(GV, RelocM))
2186 Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002187 MachinePointerInfo::getGOT(),
2188 false, false, false, 0);
Evan Chengfc8475b2011-01-19 02:16:49 +00002189 return Result;
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002190 }
2191
2192 unsigned ARMPCLabelIndex = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002193 SDValue CPAddr;
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002194 if (RelocM == Reloc::Static) {
Evan Cheng1606e8e2009-03-13 07:51:59 +00002195 CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002196 } else {
2197 ARMPCLabelIndex = AFI->createPICLabelUId();
Evan Chenge4e4ed32009-08-28 23:18:09 +00002198 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb()?4:8);
2199 ARMConstantPoolValue *CPV =
Bill Wendling5bb77992011-10-01 08:00:54 +00002200 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue,
2201 PCAdj);
Evan Cheng1606e8e2009-03-13 07:51:59 +00002202 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Evan Chenga8e29892007-01-19 07:51:42 +00002203 }
Owen Anderson825b72b2009-08-11 20:47:22 +00002204 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Evan Chenga8e29892007-01-19 07:51:42 +00002205
Evan Cheng9eda6892009-10-31 03:39:36 +00002206 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002207 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002208 false, false, false, 0);
Dan Gohman475871a2008-07-27 21:46:04 +00002209 SDValue Chain = Result.getValue(1);
Evan Chenga8e29892007-01-19 07:51:42 +00002210
2211 if (RelocM == Reloc::PIC_) {
Evan Chenge7e0d622009-11-06 22:24:13 +00002212 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002213 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
Evan Chenga8e29892007-01-19 07:51:42 +00002214 }
Evan Chenge4e4ed32009-08-28 23:18:09 +00002215
Evan Cheng63476a82009-09-03 07:04:02 +00002216 if (Subtarget->GVIsIndirectSymbol(GV, RelocM))
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002217 Result = DAG.getLoad(PtrVT, dl, Chain, Result, MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002218 false, false, false, 0);
Evan Chenga8e29892007-01-19 07:51:42 +00002219
2220 return Result;
2221}
2222
Dan Gohman475871a2008-07-27 21:46:04 +00002223SDValue ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00002224 SelectionDAG &DAG) const {
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00002225 assert(Subtarget->isTargetELF() &&
2226 "GLOBAL OFFSET TABLE not implemented for non-ELF targets");
Evan Chenge7e0d622009-11-06 22:24:13 +00002227 MachineFunction &MF = DAG.getMachineFunction();
2228 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002229 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Owen Andersone50ed302009-08-10 22:56:29 +00002230 EVT PtrVT = getPointerTy();
Dale Johannesen33c960f2009-02-04 20:06:27 +00002231 DebugLoc dl = Op.getDebugLoc();
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00002232 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
Bill Wendlingfe31e672011-10-01 08:58:29 +00002233 ARMConstantPoolValue *CPV =
2234 ARMConstantPoolSymbol::Create(*DAG.getContext(), "_GLOBAL_OFFSET_TABLE_",
2235 ARMPCLabelIndex, PCAdj);
Evan Cheng1606e8e2009-03-13 07:51:59 +00002236 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002237 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Anton Korobeynikov249fb332009-10-07 00:06:35 +00002238 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002239 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002240 false, false, false, 0);
Evan Chenge7e0d622009-11-06 22:24:13 +00002241 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002242 return DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00002243}
2244
Jim Grosbach0e0da732009-05-12 23:59:14 +00002245SDValue
Jim Grosbach23ff7cf2010-05-26 20:22:18 +00002246ARMTargetLowering::LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const {
2247 DebugLoc dl = Op.getDebugLoc();
Jim Grosbach0798edd2010-05-27 23:49:24 +00002248 SDValue Val = DAG.getConstant(0, MVT::i32);
Bill Wendlingce370cf2011-10-07 21:25:38 +00002249 return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl,
2250 DAG.getVTList(MVT::i32, MVT::Other), Op.getOperand(0),
Jim Grosbach23ff7cf2010-05-26 20:22:18 +00002251 Op.getOperand(1), Val);
2252}
2253
2254SDValue
Jim Grosbach5eb19512010-05-22 01:06:18 +00002255ARMTargetLowering::LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const {
2256 DebugLoc dl = Op.getDebugLoc();
2257 return DAG.getNode(ARMISD::EH_SJLJ_LONGJMP, dl, MVT::Other, Op.getOperand(0),
2258 Op.getOperand(1), DAG.getConstant(0, MVT::i32));
2259}
2260
2261SDValue
Jim Grosbacha87ded22010-02-08 23:22:00 +00002262ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
Jim Grosbach7616b642010-06-16 23:45:49 +00002263 const ARMSubtarget *Subtarget) const {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002264 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Jim Grosbach0e0da732009-05-12 23:59:14 +00002265 DebugLoc dl = Op.getDebugLoc();
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +00002266 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00002267 default: return SDValue(); // Don't custom lower most intrinsics.
Bob Wilson916afdb2009-08-04 00:25:01 +00002268 case Intrinsic::arm_thread_pointer: {
Owen Andersone50ed302009-08-10 22:56:29 +00002269 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Bob Wilson916afdb2009-08-04 00:25:01 +00002270 return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2271 }
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002272 case Intrinsic::eh_sjlj_lsda: {
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002273 MachineFunction &MF = DAG.getMachineFunction();
Evan Chenge7e0d622009-11-06 22:24:13 +00002274 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Cheng5de5d4b2011-01-17 08:03:18 +00002275 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002276 EVT PtrVT = getPointerTy();
2277 DebugLoc dl = Op.getDebugLoc();
2278 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2279 SDValue CPAddr;
2280 unsigned PCAdj = (RelocM != Reloc::PIC_)
2281 ? 0 : (Subtarget->isThumb() ? 4 : 8);
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002282 ARMConstantPoolValue *CPV =
Bill Wendling5bb77992011-10-01 08:00:54 +00002283 ARMConstantPoolConstant::Create(MF.getFunction(), ARMPCLabelIndex,
2284 ARMCP::CPLSDA, PCAdj);
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002285 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002286 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002287 SDValue Result =
Evan Cheng9eda6892009-10-31 03:39:36 +00002288 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002289 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002290 false, false, false, 0);
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002291
2292 if (RelocM == Reloc::PIC_) {
Evan Chenge7e0d622009-11-06 22:24:13 +00002293 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Jim Grosbach1b747ad2009-08-11 00:09:57 +00002294 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2295 }
2296 return Result;
2297 }
Evan Cheng92e39162011-03-29 23:06:19 +00002298 case Intrinsic::arm_neon_vmulls:
2299 case Intrinsic::arm_neon_vmullu: {
2300 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmulls)
2301 ? ARMISD::VMULLs : ARMISD::VMULLu;
2302 return DAG.getNode(NewOpc, Op.getDebugLoc(), Op.getValueType(),
2303 Op.getOperand(1), Op.getOperand(2));
2304 }
Lauro Ramos Venancioe0cb36b2007-11-08 17:20:05 +00002305 }
2306}
2307
Jim Grosbach7c03dbd2009-12-14 21:24:16 +00002308static SDValue LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG,
Jim Grosbach7616b642010-06-16 23:45:49 +00002309 const ARMSubtarget *Subtarget) {
Jim Grosbach3728e962009-12-10 00:11:09 +00002310 DebugLoc dl = Op.getDebugLoc();
Bob Wilsonf74a4292010-10-30 00:54:37 +00002311 if (!Subtarget->hasDataBarrier()) {
2312 // Some ARMv6 cpus can support data barriers with an mcr instruction.
2313 // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
2314 // here.
Bob Wilson54f92562010-11-09 22:50:44 +00002315 assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() &&
Evan Cheng11db0682010-08-11 06:22:01 +00002316 "Unexpected ISD::MEMBARRIER encountered. Should be libcall!");
Bob Wilsonf74a4292010-10-30 00:54:37 +00002317 return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0),
Jim Grosbachc73993b2010-06-17 01:37:00 +00002318 DAG.getConstant(0, MVT::i32));
Evan Cheng11db0682010-08-11 06:22:01 +00002319 }
Bob Wilsonf74a4292010-10-30 00:54:37 +00002320
2321 SDValue Op5 = Op.getOperand(5);
2322 bool isDeviceBarrier = cast<ConstantSDNode>(Op5)->getZExtValue() != 0;
2323 unsigned isLL = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
2324 unsigned isLS = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
2325 bool isOnlyStoreBarrier = (isLL == 0 && isLS == 0);
2326
2327 ARM_MB::MemBOpt DMBOpt;
2328 if (isDeviceBarrier)
2329 DMBOpt = isOnlyStoreBarrier ? ARM_MB::ST : ARM_MB::SY;
2330 else
2331 DMBOpt = isOnlyStoreBarrier ? ARM_MB::ISHST : ARM_MB::ISH;
2332 return DAG.getNode(ARMISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0),
2333 DAG.getConstant(DMBOpt, MVT::i32));
Jim Grosbach3728e962009-12-10 00:11:09 +00002334}
2335
Eli Friedman26689ac2011-08-03 21:06:02 +00002336
2337static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG,
2338 const ARMSubtarget *Subtarget) {
2339 // FIXME: handle "fence singlethread" more efficiently.
2340 DebugLoc dl = Op.getDebugLoc();
Eli Friedman14648462011-07-27 22:21:52 +00002341 if (!Subtarget->hasDataBarrier()) {
2342 // Some ARMv6 cpus can support data barriers with an mcr instruction.
2343 // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
2344 // here.
2345 assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() &&
2346 "Unexpected ISD::MEMBARRIER encountered. Should be libcall!");
Eli Friedman26689ac2011-08-03 21:06:02 +00002347 return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0),
Eli Friedman14648462011-07-27 22:21:52 +00002348 DAG.getConstant(0, MVT::i32));
2349 }
2350
Eli Friedman26689ac2011-08-03 21:06:02 +00002351 return DAG.getNode(ARMISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0),
Eli Friedman989f61e2011-08-02 22:44:16 +00002352 DAG.getConstant(ARM_MB::ISH, MVT::i32));
Eli Friedman14648462011-07-27 22:21:52 +00002353}
2354
Evan Chengdfed19f2010-11-03 06:34:55 +00002355static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG,
2356 const ARMSubtarget *Subtarget) {
2357 // ARM pre v5TE and Thumb1 does not have preload instructions.
2358 if (!(Subtarget->isThumb2() ||
2359 (!Subtarget->isThumb1Only() && Subtarget->hasV5TEOps())))
2360 // Just preserve the chain.
2361 return Op.getOperand(0);
2362
2363 DebugLoc dl = Op.getDebugLoc();
Evan Cheng416941d2010-11-04 05:19:35 +00002364 unsigned isRead = ~cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() & 1;
2365 if (!isRead &&
2366 (!Subtarget->hasV7Ops() || !Subtarget->hasMPExtension()))
2367 // ARMv7 with MP extension has PLDW.
2368 return Op.getOperand(0);
Evan Chengdfed19f2010-11-03 06:34:55 +00002369
Bruno Cardoso Lopes9a767332011-06-14 04:58:37 +00002370 unsigned isData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
2371 if (Subtarget->isThumb()) {
Evan Chengdfed19f2010-11-03 06:34:55 +00002372 // Invert the bits.
Evan Cheng416941d2010-11-04 05:19:35 +00002373 isRead = ~isRead & 1;
Bruno Cardoso Lopes9a767332011-06-14 04:58:37 +00002374 isData = ~isData & 1;
2375 }
Evan Chengdfed19f2010-11-03 06:34:55 +00002376
2377 return DAG.getNode(ARMISD::PRELOAD, dl, MVT::Other, Op.getOperand(0),
Evan Cheng416941d2010-11-04 05:19:35 +00002378 Op.getOperand(1), DAG.getConstant(isRead, MVT::i32),
2379 DAG.getConstant(isData, MVT::i32));
Evan Chengdfed19f2010-11-03 06:34:55 +00002380}
2381
Dan Gohman1e93df62010-04-17 14:41:14 +00002382static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) {
2383 MachineFunction &MF = DAG.getMachineFunction();
2384 ARMFunctionInfo *FuncInfo = MF.getInfo<ARMFunctionInfo>();
2385
Evan Chenga8e29892007-01-19 07:51:42 +00002386 // vastart just stores the address of the VarArgsFrameIndex slot into the
2387 // memory location argument.
Dale Johannesen33c960f2009-02-04 20:06:27 +00002388 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00002389 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman1e93df62010-04-17 14:41:14 +00002390 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00002391 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002392 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2393 MachinePointerInfo(SV), false, false, 0);
Evan Chenga8e29892007-01-19 07:51:42 +00002394}
2395
Dan Gohman475871a2008-07-27 21:46:04 +00002396SDValue
Bob Wilson5bafff32009-06-22 23:27:02 +00002397ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
2398 SDValue &Root, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002399 DebugLoc dl) const {
Bob Wilson5bafff32009-06-22 23:27:02 +00002400 MachineFunction &MF = DAG.getMachineFunction();
2401 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2402
2403 TargetRegisterClass *RC;
David Goodwinf1daf7d2009-07-08 23:10:31 +00002404 if (AFI->isThumb1OnlyFunction())
Bob Wilson5bafff32009-06-22 23:27:02 +00002405 RC = ARM::tGPRRegisterClass;
2406 else
2407 RC = ARM::GPRRegisterClass;
2408
2409 // Transform the arguments stored in physical registers into virtual ones.
Devang Patel68e6bee2011-02-21 23:21:26 +00002410 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Owen Anderson825b72b2009-08-11 20:47:22 +00002411 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
Bob Wilson5bafff32009-06-22 23:27:02 +00002412
2413 SDValue ArgValue2;
2414 if (NextVA.isMemLoc()) {
Bob Wilson5bafff32009-06-22 23:27:02 +00002415 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Chenged2ae132010-07-03 00:40:23 +00002416 int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true);
Bob Wilson5bafff32009-06-22 23:27:02 +00002417
2418 // Create load node to retrieve arguments from the stack.
2419 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Evan Cheng9eda6892009-10-31 03:39:36 +00002420 ArgValue2 = DAG.getLoad(MVT::i32, dl, Root, FIN,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002421 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002422 false, false, false, 0);
Bob Wilson5bafff32009-06-22 23:27:02 +00002423 } else {
Devang Patel68e6bee2011-02-21 23:21:26 +00002424 Reg = MF.addLiveIn(NextVA.getLocReg(), RC);
Owen Anderson825b72b2009-08-11 20:47:22 +00002425 ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
Bob Wilson5bafff32009-06-22 23:27:02 +00002426 }
2427
Jim Grosbache5165492009-11-09 00:11:35 +00002428 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2);
Bob Wilson5bafff32009-06-22 23:27:02 +00002429}
2430
Stuart Hastingsc7315872011-04-20 16:47:52 +00002431void
2432ARMTargetLowering::computeRegArea(CCState &CCInfo, MachineFunction &MF,
2433 unsigned &VARegSize, unsigned &VARegSaveSize)
2434 const {
2435 unsigned NumGPRs;
2436 if (CCInfo.isFirstByValRegValid())
2437 NumGPRs = ARM::R4 - CCInfo.getFirstByValReg();
2438 else {
2439 unsigned int firstUnalloced;
2440 firstUnalloced = CCInfo.getFirstUnallocated(GPRArgRegs,
2441 sizeof(GPRArgRegs) /
2442 sizeof(GPRArgRegs[0]));
2443 NumGPRs = (firstUnalloced <= 3) ? (4 - firstUnalloced) : 0;
2444 }
2445
2446 unsigned Align = MF.getTarget().getFrameLowering()->getStackAlignment();
2447 VARegSize = NumGPRs * 4;
2448 VARegSaveSize = (VARegSize + Align - 1) & ~(Align - 1);
2449}
2450
2451// The remaining GPRs hold either the beginning of variable-argument
2452// data, or the beginning of an aggregate passed by value (usuall
2453// byval). Either way, we allocate stack slots adjacent to the data
2454// provided by our caller, and store the unallocated registers there.
2455// If this is a variadic function, the va_list pointer will begin with
2456// these values; otherwise, this reassembles a (byval) structure that
2457// was split between registers and memory.
2458void
2459ARMTargetLowering::VarArgStyleRegisters(CCState &CCInfo, SelectionDAG &DAG,
2460 DebugLoc dl, SDValue &Chain,
2461 unsigned ArgOffset) const {
2462 MachineFunction &MF = DAG.getMachineFunction();
2463 MachineFrameInfo *MFI = MF.getFrameInfo();
2464 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2465 unsigned firstRegToSaveIndex;
2466 if (CCInfo.isFirstByValRegValid())
2467 firstRegToSaveIndex = CCInfo.getFirstByValReg() - ARM::R0;
2468 else {
2469 firstRegToSaveIndex = CCInfo.getFirstUnallocated
2470 (GPRArgRegs, sizeof(GPRArgRegs) / sizeof(GPRArgRegs[0]));
2471 }
2472
2473 unsigned VARegSize, VARegSaveSize;
2474 computeRegArea(CCInfo, MF, VARegSize, VARegSaveSize);
2475 if (VARegSaveSize) {
2476 // If this function is vararg, store any remaining integer argument regs
2477 // to their spots on the stack so that they may be loaded by deferencing
2478 // the result of va_next.
2479 AFI->setVarArgsRegSaveSize(VARegSaveSize);
Eric Christopher5ac179c2011-04-29 23:12:01 +00002480 AFI->setVarArgsFrameIndex(MFI->CreateFixedObject(VARegSaveSize,
2481 ArgOffset + VARegSaveSize
2482 - VARegSize,
Stuart Hastingsc7315872011-04-20 16:47:52 +00002483 false));
2484 SDValue FIN = DAG.getFrameIndex(AFI->getVarArgsFrameIndex(),
2485 getPointerTy());
2486
2487 SmallVector<SDValue, 4> MemOps;
2488 for (; firstRegToSaveIndex < 4; ++firstRegToSaveIndex) {
2489 TargetRegisterClass *RC;
2490 if (AFI->isThumb1OnlyFunction())
2491 RC = ARM::tGPRRegisterClass;
2492 else
2493 RC = ARM::GPRRegisterClass;
2494
2495 unsigned VReg = MF.addLiveIn(GPRArgRegs[firstRegToSaveIndex], RC);
2496 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
2497 SDValue Store =
2498 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Eric Christopher5ac179c2011-04-29 23:12:01 +00002499 MachinePointerInfo::getFixedStack(AFI->getVarArgsFrameIndex()),
Stuart Hastingsc7315872011-04-20 16:47:52 +00002500 false, false, 0);
2501 MemOps.push_back(Store);
2502 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
2503 DAG.getConstant(4, getPointerTy()));
2504 }
2505 if (!MemOps.empty())
2506 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2507 &MemOps[0], MemOps.size());
2508 } else
2509 // This will point to the next argument passed via stack.
2510 AFI->setVarArgsFrameIndex(MFI->CreateFixedObject(4, ArgOffset, true));
2511}
2512
Bob Wilson5bafff32009-06-22 23:27:02 +00002513SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002514ARMTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002515 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002516 const SmallVectorImpl<ISD::InputArg>
2517 &Ins,
2518 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002519 SmallVectorImpl<SDValue> &InVals)
2520 const {
Bob Wilson1f595bb2009-04-17 19:07:39 +00002521 MachineFunction &MF = DAG.getMachineFunction();
2522 MachineFrameInfo *MFI = MF.getFrameInfo();
2523
Bob Wilson1f595bb2009-04-17 19:07:39 +00002524 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2525
2526 // Assign locations to all of the incoming arguments.
2527 SmallVector<CCValAssign, 16> ArgLocs;
Cameron Zwaricha86686e2011-06-10 20:59:24 +00002528 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2529 getTargetMachine(), ArgLocs, *DAG.getContext(), Prologue);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002530 CCInfo.AnalyzeFormalArguments(Ins,
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00002531 CCAssignFnForNode(CallConv, /* Return*/ false,
2532 isVarArg));
Bob Wilson1f595bb2009-04-17 19:07:39 +00002533
2534 SmallVector<SDValue, 16> ArgValues;
Stuart Hastingsf222e592011-02-28 17:17:53 +00002535 int lastInsIndex = -1;
Bob Wilson1f595bb2009-04-17 19:07:39 +00002536
Stuart Hastingsf222e592011-02-28 17:17:53 +00002537 SDValue ArgValue;
Bob Wilson1f595bb2009-04-17 19:07:39 +00002538 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2539 CCValAssign &VA = ArgLocs[i];
2540
Bob Wilsondee46d72009-04-17 20:35:10 +00002541 // Arguments stored in registers.
Bob Wilson1f595bb2009-04-17 19:07:39 +00002542 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002543 EVT RegVT = VA.getLocVT();
Bob Wilson1f595bb2009-04-17 19:07:39 +00002544
Bob Wilson1f595bb2009-04-17 19:07:39 +00002545 if (VA.needsCustom()) {
Bob Wilson5bafff32009-06-22 23:27:02 +00002546 // f64 and vector types are split up into multiple registers or
2547 // combinations of registers and stack slots.
Owen Anderson825b72b2009-08-11 20:47:22 +00002548 if (VA.getLocVT() == MVT::v2f64) {
Bob Wilson5bafff32009-06-22 23:27:02 +00002549 SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
Dan Gohman98ca4f22009-08-05 01:29:28 +00002550 Chain, DAG, dl);
Bob Wilson5bafff32009-06-22 23:27:02 +00002551 VA = ArgLocs[++i]; // skip ahead to next loc
Bob Wilson6a234f02010-04-13 22:03:22 +00002552 SDValue ArgValue2;
2553 if (VA.isMemLoc()) {
Evan Chenged2ae132010-07-03 00:40:23 +00002554 int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(), true);
Bob Wilson6a234f02010-04-13 22:03:22 +00002555 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2556 ArgValue2 = DAG.getLoad(MVT::f64, dl, Chain, FIN,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002557 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002558 false, false, false, 0);
Bob Wilson6a234f02010-04-13 22:03:22 +00002559 } else {
2560 ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
2561 Chain, DAG, dl);
2562 }
Owen Anderson825b72b2009-08-11 20:47:22 +00002563 ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
2564 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
Bob Wilson5bafff32009-06-22 23:27:02 +00002565 ArgValue, ArgValue1, DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002566 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
Bob Wilson5bafff32009-06-22 23:27:02 +00002567 ArgValue, ArgValue2, DAG.getIntPtrConstant(1));
2568 } else
Dan Gohman98ca4f22009-08-05 01:29:28 +00002569 ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl);
Bob Wilson1f595bb2009-04-17 19:07:39 +00002570
Bob Wilson5bafff32009-06-22 23:27:02 +00002571 } else {
2572 TargetRegisterClass *RC;
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00002573
Owen Anderson825b72b2009-08-11 20:47:22 +00002574 if (RegVT == MVT::f32)
Bob Wilson5bafff32009-06-22 23:27:02 +00002575 RC = ARM::SPRRegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002576 else if (RegVT == MVT::f64)
Bob Wilson5bafff32009-06-22 23:27:02 +00002577 RC = ARM::DPRRegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002578 else if (RegVT == MVT::v2f64)
Anton Korobeynikov567d14f2009-08-05 19:04:42 +00002579 RC = ARM::QPRRegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002580 else if (RegVT == MVT::i32)
Anton Korobeynikov058c2512009-08-05 20:15:19 +00002581 RC = (AFI->isThumb1OnlyFunction() ?
2582 ARM::tGPRRegisterClass : ARM::GPRRegisterClass);
Bob Wilson5bafff32009-06-22 23:27:02 +00002583 else
Anton Korobeynikov058c2512009-08-05 20:15:19 +00002584 llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
Bob Wilson5bafff32009-06-22 23:27:02 +00002585
2586 // Transform the arguments in physical registers into virtual ones.
Devang Patel68e6bee2011-02-21 23:21:26 +00002587 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002588 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Bob Wilson1f595bb2009-04-17 19:07:39 +00002589 }
2590
2591 // If this is an 8 or 16-bit value, it is really passed promoted
2592 // to 32 bits. Insert an assert[sz]ext to capture this, then
2593 // truncate to the right size.
2594 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002595 default: llvm_unreachable("Unknown loc info!");
Bob Wilson1f595bb2009-04-17 19:07:39 +00002596 case CCValAssign::Full: break;
2597 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002598 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Bob Wilson1f595bb2009-04-17 19:07:39 +00002599 break;
2600 case CCValAssign::SExt:
2601 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2602 DAG.getValueType(VA.getValVT()));
2603 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2604 break;
2605 case CCValAssign::ZExt:
2606 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2607 DAG.getValueType(VA.getValVT()));
2608 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2609 break;
2610 }
2611
Dan Gohman98ca4f22009-08-05 01:29:28 +00002612 InVals.push_back(ArgValue);
Bob Wilson1f595bb2009-04-17 19:07:39 +00002613
2614 } else { // VA.isRegLoc()
2615
2616 // sanity check
2617 assert(VA.isMemLoc());
Owen Anderson825b72b2009-08-11 20:47:22 +00002618 assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered");
Bob Wilson1f595bb2009-04-17 19:07:39 +00002619
Stuart Hastingsf222e592011-02-28 17:17:53 +00002620 int index = ArgLocs[i].getValNo();
Owen Anderson76706012011-04-05 21:48:57 +00002621
Stuart Hastingsf222e592011-02-28 17:17:53 +00002622 // Some Ins[] entries become multiple ArgLoc[] entries.
2623 // Process them only once.
2624 if (index != lastInsIndex)
2625 {
2626 ISD::ArgFlagsTy Flags = Ins[index].Flags;
Eric Christopher471e4222011-06-08 23:55:35 +00002627 // FIXME: For now, all byval parameter objects are marked mutable.
Eric Christopher5ac179c2011-04-29 23:12:01 +00002628 // This can be changed with more analysis.
2629 // In case of tail call optimization mark all arguments mutable.
2630 // Since they could be overwritten by lowering of arguments in case of
2631 // a tail call.
Stuart Hastingsf222e592011-02-28 17:17:53 +00002632 if (Flags.isByVal()) {
Stuart Hastingsc7315872011-04-20 16:47:52 +00002633 unsigned VARegSize, VARegSaveSize;
2634 computeRegArea(CCInfo, MF, VARegSize, VARegSaveSize);
2635 VarArgStyleRegisters(CCInfo, DAG, dl, Chain, 0);
2636 unsigned Bytes = Flags.getByValSize() - VARegSize;
Evan Chengee2e0e32011-03-30 23:44:13 +00002637 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
Stuart Hastingsc7315872011-04-20 16:47:52 +00002638 int FI = MFI->CreateFixedObject(Bytes,
2639 VA.getLocMemOffset(), false);
Stuart Hastingsf222e592011-02-28 17:17:53 +00002640 InVals.push_back(DAG.getFrameIndex(FI, getPointerTy()));
2641 } else {
2642 int FI = MFI->CreateFixedObject(VA.getLocVT().getSizeInBits()/8,
2643 VA.getLocMemOffset(), true);
Bob Wilson1f595bb2009-04-17 19:07:39 +00002644
Stuart Hastingsf222e592011-02-28 17:17:53 +00002645 // Create load nodes to retrieve arguments from the stack.
2646 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2647 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2648 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002649 false, false, false, 0));
Stuart Hastingsf222e592011-02-28 17:17:53 +00002650 }
2651 lastInsIndex = index;
2652 }
Bob Wilson1f595bb2009-04-17 19:07:39 +00002653 }
2654 }
2655
2656 // varargs
Stuart Hastingsc7315872011-04-20 16:47:52 +00002657 if (isVarArg)
2658 VarArgStyleRegisters(CCInfo, DAG, dl, Chain, CCInfo.getNextStackOffset());
Evan Chenga8e29892007-01-19 07:51:42 +00002659
Dan Gohman98ca4f22009-08-05 01:29:28 +00002660 return Chain;
Evan Chenga8e29892007-01-19 07:51:42 +00002661}
2662
2663/// isFloatingPointZero - Return true if this is +0.0.
Dan Gohman475871a2008-07-27 21:46:04 +00002664static bool isFloatingPointZero(SDValue Op) {
Evan Chenga8e29892007-01-19 07:51:42 +00002665 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johanneseneaf08942007-08-31 04:03:46 +00002666 return CFP->getValueAPF().isPosZero();
Gabor Greifba36cb52008-08-28 21:40:38 +00002667 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Evan Chenga8e29892007-01-19 07:51:42 +00002668 // Maybe this has already been legalized into the constant pool?
2669 if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
Dan Gohman475871a2008-07-27 21:46:04 +00002670 SDValue WrapperOp = Op.getOperand(1).getOperand(0);
Evan Chenga8e29892007-01-19 07:51:42 +00002671 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
Dan Gohman46510a72010-04-15 01:51:59 +00002672 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johanneseneaf08942007-08-31 04:03:46 +00002673 return CFP->getValueAPF().isPosZero();
Evan Chenga8e29892007-01-19 07:51:42 +00002674 }
2675 }
2676 return false;
2677}
2678
Evan Chenga8e29892007-01-19 07:51:42 +00002679/// Returns appropriate ARM CMP (cmp) and corresponding condition code for
2680/// the given operands.
Evan Cheng06b53c02009-11-12 07:13:11 +00002681SDValue
2682ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
Evan Cheng218977b2010-07-13 19:27:42 +00002683 SDValue &ARMcc, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002684 DebugLoc dl) const {
Gabor Greifba36cb52008-08-28 21:40:38 +00002685 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002686 unsigned C = RHSC->getZExtValue();
Evan Cheng06b53c02009-11-12 07:13:11 +00002687 if (!isLegalICmpImmediate(C)) {
Evan Chenga8e29892007-01-19 07:51:42 +00002688 // Constant does not fit, try adjusting it by one?
2689 switch (CC) {
2690 default: break;
2691 case ISD::SETLT:
Evan Chenga8e29892007-01-19 07:51:42 +00002692 case ISD::SETGE:
Daniel Dunbar3cc32832010-08-25 16:58:05 +00002693 if (C != 0x80000000 && isLegalICmpImmediate(C-1)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00002694 CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
Owen Anderson825b72b2009-08-11 20:47:22 +00002695 RHS = DAG.getConstant(C-1, MVT::i32);
Evan Cheng9a2ef952007-02-02 01:53:26 +00002696 }
2697 break;
2698 case ISD::SETULT:
2699 case ISD::SETUGE:
Daniel Dunbar3cc32832010-08-25 16:58:05 +00002700 if (C != 0 && isLegalICmpImmediate(C-1)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00002701 CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
Owen Anderson825b72b2009-08-11 20:47:22 +00002702 RHS = DAG.getConstant(C-1, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00002703 }
2704 break;
2705 case ISD::SETLE:
Evan Chenga8e29892007-01-19 07:51:42 +00002706 case ISD::SETGT:
Daniel Dunbar3cc32832010-08-25 16:58:05 +00002707 if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00002708 CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
Owen Anderson825b72b2009-08-11 20:47:22 +00002709 RHS = DAG.getConstant(C+1, MVT::i32);
Evan Cheng9a2ef952007-02-02 01:53:26 +00002710 }
2711 break;
2712 case ISD::SETULE:
2713 case ISD::SETUGT:
Daniel Dunbar3cc32832010-08-25 16:58:05 +00002714 if (C != 0xffffffff && isLegalICmpImmediate(C+1)) {
Evan Cheng9a2ef952007-02-02 01:53:26 +00002715 CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
Owen Anderson825b72b2009-08-11 20:47:22 +00002716 RHS = DAG.getConstant(C+1, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00002717 }
2718 break;
2719 }
2720 }
2721 }
2722
2723 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
Lauro Ramos Venancio99966632007-04-02 01:30:03 +00002724 ARMISD::NodeType CompareType;
2725 switch (CondCode) {
2726 default:
2727 CompareType = ARMISD::CMP;
2728 break;
2729 case ARMCC::EQ:
2730 case ARMCC::NE:
David Goodwinc0309b42009-06-29 15:33:01 +00002731 // Uses only Z Flag
2732 CompareType = ARMISD::CMPZ;
Lauro Ramos Venancio99966632007-04-02 01:30:03 +00002733 break;
2734 }
Evan Cheng218977b2010-07-13 19:27:42 +00002735 ARMcc = DAG.getConstant(CondCode, MVT::i32);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002736 return DAG.getNode(CompareType, dl, MVT::Glue, LHS, RHS);
Evan Chenga8e29892007-01-19 07:51:42 +00002737}
2738
2739/// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
Evan Cheng515fe3a2010-07-08 02:08:50 +00002740SDValue
Evan Cheng218977b2010-07-13 19:27:42 +00002741ARMTargetLowering::getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG,
Evan Cheng515fe3a2010-07-08 02:08:50 +00002742 DebugLoc dl) const {
Dan Gohman475871a2008-07-27 21:46:04 +00002743 SDValue Cmp;
Evan Chenga8e29892007-01-19 07:51:42 +00002744 if (!isFloatingPointZero(RHS))
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002745 Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Glue, LHS, RHS);
Evan Chenga8e29892007-01-19 07:51:42 +00002746 else
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002747 Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Glue, LHS);
2748 return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Glue, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00002749}
2750
Bob Wilson79f56c92011-03-08 01:17:20 +00002751/// duplicateCmp - Glue values can have only one use, so this function
2752/// duplicates a comparison node.
2753SDValue
2754ARMTargetLowering::duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const {
2755 unsigned Opc = Cmp.getOpcode();
2756 DebugLoc DL = Cmp.getDebugLoc();
2757 if (Opc == ARMISD::CMP || Opc == ARMISD::CMPZ)
2758 return DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
2759
2760 assert(Opc == ARMISD::FMSTAT && "unexpected comparison operation");
2761 Cmp = Cmp.getOperand(0);
2762 Opc = Cmp.getOpcode();
2763 if (Opc == ARMISD::CMPFP)
2764 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
2765 else {
2766 assert(Opc == ARMISD::CMPFPw0 && "unexpected operand of FMSTAT");
2767 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0));
2768 }
2769 return DAG.getNode(ARMISD::FMSTAT, DL, MVT::Glue, Cmp);
2770}
2771
Bill Wendlingde2b1512010-08-11 08:43:16 +00002772SDValue ARMTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
2773 SDValue Cond = Op.getOperand(0);
2774 SDValue SelectTrue = Op.getOperand(1);
2775 SDValue SelectFalse = Op.getOperand(2);
2776 DebugLoc dl = Op.getDebugLoc();
2777
2778 // Convert:
2779 //
2780 // (select (cmov 1, 0, cond), t, f) -> (cmov t, f, cond)
2781 // (select (cmov 0, 1, cond), t, f) -> (cmov f, t, cond)
2782 //
2783 if (Cond.getOpcode() == ARMISD::CMOV && Cond.hasOneUse()) {
2784 const ConstantSDNode *CMOVTrue =
2785 dyn_cast<ConstantSDNode>(Cond.getOperand(0));
2786 const ConstantSDNode *CMOVFalse =
2787 dyn_cast<ConstantSDNode>(Cond.getOperand(1));
2788
2789 if (CMOVTrue && CMOVFalse) {
2790 unsigned CMOVTrueVal = CMOVTrue->getZExtValue();
2791 unsigned CMOVFalseVal = CMOVFalse->getZExtValue();
2792
2793 SDValue True;
2794 SDValue False;
2795 if (CMOVTrueVal == 1 && CMOVFalseVal == 0) {
2796 True = SelectTrue;
2797 False = SelectFalse;
2798 } else if (CMOVTrueVal == 0 && CMOVFalseVal == 1) {
2799 True = SelectFalse;
2800 False = SelectTrue;
2801 }
2802
2803 if (True.getNode() && False.getNode()) {
Evan Chengb936e302011-05-18 18:59:17 +00002804 EVT VT = Op.getValueType();
Bill Wendlingde2b1512010-08-11 08:43:16 +00002805 SDValue ARMcc = Cond.getOperand(2);
2806 SDValue CCR = Cond.getOperand(3);
Bob Wilson79f56c92011-03-08 01:17:20 +00002807 SDValue Cmp = duplicateCmp(Cond.getOperand(4), DAG);
Evan Chengb936e302011-05-18 18:59:17 +00002808 assert(True.getValueType() == VT);
2809 return DAG.getNode(ARMISD::CMOV, dl, VT, True, False, ARMcc, CCR, Cmp);
Bill Wendlingde2b1512010-08-11 08:43:16 +00002810 }
2811 }
2812 }
2813
2814 return DAG.getSelectCC(dl, Cond,
2815 DAG.getConstant(0, Cond.getValueType()),
2816 SelectTrue, SelectFalse, ISD::SETNE);
2817}
2818
Dan Gohmand858e902010-04-17 15:26:15 +00002819SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00002820 EVT VT = Op.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00002821 SDValue LHS = Op.getOperand(0);
2822 SDValue RHS = Op.getOperand(1);
Evan Chenga8e29892007-01-19 07:51:42 +00002823 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Dan Gohman475871a2008-07-27 21:46:04 +00002824 SDValue TrueVal = Op.getOperand(2);
2825 SDValue FalseVal = Op.getOperand(3);
Dale Johannesende064702009-02-06 21:50:26 +00002826 DebugLoc dl = Op.getDebugLoc();
Evan Chenga8e29892007-01-19 07:51:42 +00002827
Owen Anderson825b72b2009-08-11 20:47:22 +00002828 if (LHS.getValueType() == MVT::i32) {
Evan Cheng218977b2010-07-13 19:27:42 +00002829 SDValue ARMcc;
Owen Anderson825b72b2009-08-11 20:47:22 +00002830 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Cheng218977b2010-07-13 19:27:42 +00002831 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
Jim Grosbachb04546f2011-09-13 20:30:37 +00002832 return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, CCR,Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00002833 }
2834
2835 ARMCC::CondCodes CondCode, CondCode2;
Bob Wilsoncd3b9a42009-09-09 23:14:54 +00002836 FPCCToARMCC(CC, CondCode, CondCode2);
Evan Chenga8e29892007-01-19 07:51:42 +00002837
Evan Cheng218977b2010-07-13 19:27:42 +00002838 SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32);
2839 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00002840 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Dale Johannesende064702009-02-06 21:50:26 +00002841 SDValue Result = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal,
Evan Cheng218977b2010-07-13 19:27:42 +00002842 ARMcc, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00002843 if (CondCode2 != ARMCC::AL) {
Evan Cheng218977b2010-07-13 19:27:42 +00002844 SDValue ARMcc2 = DAG.getConstant(CondCode2, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +00002845 // FIXME: Needs another CMP because flag can have but one use.
Evan Cheng218977b2010-07-13 19:27:42 +00002846 SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl);
Bob Wilson2dc4f542009-03-20 22:42:55 +00002847 Result = DAG.getNode(ARMISD::CMOV, dl, VT,
Evan Cheng218977b2010-07-13 19:27:42 +00002848 Result, TrueVal, ARMcc2, CCR, Cmp2);
Evan Chenga8e29892007-01-19 07:51:42 +00002849 }
2850 return Result;
2851}
2852
Evan Cheng218977b2010-07-13 19:27:42 +00002853/// canChangeToInt - Given the fp compare operand, return true if it is suitable
2854/// to morph to an integer compare sequence.
2855static bool canChangeToInt(SDValue Op, bool &SeenZero,
2856 const ARMSubtarget *Subtarget) {
2857 SDNode *N = Op.getNode();
2858 if (!N->hasOneUse())
2859 // Otherwise it requires moving the value from fp to integer registers.
2860 return false;
2861 if (!N->getNumValues())
2862 return false;
2863 EVT VT = Op.getValueType();
2864 if (VT != MVT::f32 && !Subtarget->isFPBrccSlow())
2865 // f32 case is generally profitable. f64 case only makes sense when vcmpe +
2866 // vmrs are very slow, e.g. cortex-a8.
2867 return false;
2868
2869 if (isFloatingPointZero(Op)) {
2870 SeenZero = true;
2871 return true;
2872 }
2873 return ISD::isNormalLoad(N);
2874}
2875
2876static SDValue bitcastf32Toi32(SDValue Op, SelectionDAG &DAG) {
2877 if (isFloatingPointZero(Op))
2878 return DAG.getConstant(0, MVT::i32);
2879
2880 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op))
2881 return DAG.getLoad(MVT::i32, Op.getDebugLoc(),
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002882 Ld->getChain(), Ld->getBasePtr(), Ld->getPointerInfo(),
Evan Cheng218977b2010-07-13 19:27:42 +00002883 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002884 Ld->isInvariant(), Ld->getAlignment());
Evan Cheng218977b2010-07-13 19:27:42 +00002885
2886 llvm_unreachable("Unknown VFP cmp argument!");
2887}
2888
2889static void expandf64Toi32(SDValue Op, SelectionDAG &DAG,
2890 SDValue &RetVal1, SDValue &RetVal2) {
2891 if (isFloatingPointZero(Op)) {
2892 RetVal1 = DAG.getConstant(0, MVT::i32);
2893 RetVal2 = DAG.getConstant(0, MVT::i32);
2894 return;
2895 }
2896
2897 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) {
2898 SDValue Ptr = Ld->getBasePtr();
2899 RetVal1 = DAG.getLoad(MVT::i32, Op.getDebugLoc(),
2900 Ld->getChain(), Ptr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002901 Ld->getPointerInfo(),
Evan Cheng218977b2010-07-13 19:27:42 +00002902 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002903 Ld->isInvariant(), Ld->getAlignment());
Evan Cheng218977b2010-07-13 19:27:42 +00002904
2905 EVT PtrType = Ptr.getValueType();
2906 unsigned NewAlign = MinAlign(Ld->getAlignment(), 4);
2907 SDValue NewPtr = DAG.getNode(ISD::ADD, Op.getDebugLoc(),
2908 PtrType, Ptr, DAG.getConstant(4, PtrType));
2909 RetVal2 = DAG.getLoad(MVT::i32, Op.getDebugLoc(),
2910 Ld->getChain(), NewPtr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002911 Ld->getPointerInfo().getWithOffset(4),
Evan Cheng218977b2010-07-13 19:27:42 +00002912 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002913 Ld->isInvariant(), NewAlign);
Evan Cheng218977b2010-07-13 19:27:42 +00002914 return;
2915 }
2916
2917 llvm_unreachable("Unknown VFP cmp argument!");
2918}
2919
2920/// OptimizeVFPBrcond - With -enable-unsafe-fp-math, it's legal to optimize some
2921/// f32 and even f64 comparisons to integer ones.
2922SDValue
2923ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const {
2924 SDValue Chain = Op.getOperand(0);
Evan Chenga8e29892007-01-19 07:51:42 +00002925 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
Evan Cheng218977b2010-07-13 19:27:42 +00002926 SDValue LHS = Op.getOperand(2);
2927 SDValue RHS = Op.getOperand(3);
2928 SDValue Dest = Op.getOperand(4);
2929 DebugLoc dl = Op.getDebugLoc();
2930
2931 bool SeenZero = false;
2932 if (canChangeToInt(LHS, SeenZero, Subtarget) &&
2933 canChangeToInt(RHS, SeenZero, Subtarget) &&
Evan Cheng60108e92010-07-15 22:07:12 +00002934 // If one of the operand is zero, it's safe to ignore the NaN case since
2935 // we only care about equality comparisons.
2936 (SeenZero || (DAG.isKnownNeverNaN(LHS) && DAG.isKnownNeverNaN(RHS)))) {
Bob Wilson1b772f92011-03-08 01:17:16 +00002937 // If unsafe fp math optimization is enabled and there are no other uses of
2938 // the CMP operands, and the condition code is EQ or NE, we can optimize it
Evan Cheng218977b2010-07-13 19:27:42 +00002939 // to an integer comparison.
2940 if (CC == ISD::SETOEQ)
2941 CC = ISD::SETEQ;
2942 else if (CC == ISD::SETUNE)
2943 CC = ISD::SETNE;
2944
2945 SDValue ARMcc;
2946 if (LHS.getValueType() == MVT::f32) {
2947 LHS = bitcastf32Toi32(LHS, DAG);
2948 RHS = bitcastf32Toi32(RHS, DAG);
2949 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
2950 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
2951 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
2952 Chain, Dest, ARMcc, CCR, Cmp);
2953 }
2954
2955 SDValue LHS1, LHS2;
2956 SDValue RHS1, RHS2;
2957 expandf64Toi32(LHS, DAG, LHS1, LHS2);
2958 expandf64Toi32(RHS, DAG, RHS1, RHS2);
2959 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
2960 ARMcc = DAG.getConstant(CondCode, MVT::i32);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002961 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
Evan Cheng218977b2010-07-13 19:27:42 +00002962 SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest };
2963 return DAG.getNode(ARMISD::BCC_i64, dl, VTList, Ops, 7);
2964 }
2965
2966 return SDValue();
2967}
2968
2969SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
2970 SDValue Chain = Op.getOperand(0);
2971 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
2972 SDValue LHS = Op.getOperand(2);
2973 SDValue RHS = Op.getOperand(3);
2974 SDValue Dest = Op.getOperand(4);
Dale Johannesende064702009-02-06 21:50:26 +00002975 DebugLoc dl = Op.getDebugLoc();
Evan Chenga8e29892007-01-19 07:51:42 +00002976
Owen Anderson825b72b2009-08-11 20:47:22 +00002977 if (LHS.getValueType() == MVT::i32) {
Evan Cheng218977b2010-07-13 19:27:42 +00002978 SDValue ARMcc;
2979 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00002980 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +00002981 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
Evan Cheng218977b2010-07-13 19:27:42 +00002982 Chain, Dest, ARMcc, CCR, Cmp);
Evan Chenga8e29892007-01-19 07:51:42 +00002983 }
2984
Owen Anderson825b72b2009-08-11 20:47:22 +00002985 assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
Evan Cheng218977b2010-07-13 19:27:42 +00002986
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002987 if (getTargetMachine().Options.UnsafeFPMath &&
Evan Cheng218977b2010-07-13 19:27:42 +00002988 (CC == ISD::SETEQ || CC == ISD::SETOEQ ||
2989 CC == ISD::SETNE || CC == ISD::SETUNE)) {
2990 SDValue Result = OptimizeVFPBrcond(Op, DAG);
2991 if (Result.getNode())
2992 return Result;
2993 }
2994
Evan Chenga8e29892007-01-19 07:51:42 +00002995 ARMCC::CondCodes CondCode, CondCode2;
Bob Wilsoncd3b9a42009-09-09 23:14:54 +00002996 FPCCToARMCC(CC, CondCode, CondCode2);
Bob Wilson2dc4f542009-03-20 22:42:55 +00002997
Evan Cheng218977b2010-07-13 19:27:42 +00002998 SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32);
2999 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003000 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003001 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
Evan Cheng218977b2010-07-13 19:27:42 +00003002 SDValue Ops[] = { Chain, Dest, ARMcc, CCR, Cmp };
Dale Johannesende064702009-02-06 21:50:26 +00003003 SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops, 5);
Evan Chenga8e29892007-01-19 07:51:42 +00003004 if (CondCode2 != ARMCC::AL) {
Evan Cheng218977b2010-07-13 19:27:42 +00003005 ARMcc = DAG.getConstant(CondCode2, MVT::i32);
3006 SDValue Ops[] = { Res, Dest, ARMcc, CCR, Res.getValue(1) };
Dale Johannesende064702009-02-06 21:50:26 +00003007 Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops, 5);
Evan Chenga8e29892007-01-19 07:51:42 +00003008 }
3009 return Res;
3010}
3011
Dan Gohmand858e902010-04-17 15:26:15 +00003012SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00003013 SDValue Chain = Op.getOperand(0);
3014 SDValue Table = Op.getOperand(1);
3015 SDValue Index = Op.getOperand(2);
Dale Johannesen33c960f2009-02-04 20:06:27 +00003016 DebugLoc dl = Op.getDebugLoc();
Evan Chenga8e29892007-01-19 07:51:42 +00003017
Owen Andersone50ed302009-08-10 22:56:29 +00003018 EVT PTy = getPointerTy();
Evan Chenga8e29892007-01-19 07:51:42 +00003019 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
3020 ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>();
Bob Wilson3eadf002009-07-14 18:44:34 +00003021 SDValue UId = DAG.getConstant(AFI->createJumpTableUId(), PTy);
Dan Gohman475871a2008-07-27 21:46:04 +00003022 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
Owen Anderson825b72b2009-08-11 20:47:22 +00003023 Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI, UId);
Evan Chenge7c329b2009-07-28 20:53:24 +00003024 Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, PTy));
3025 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Evan Cheng66ac5312009-07-25 00:33:29 +00003026 if (Subtarget->isThumb2()) {
3027 // Thumb2 uses a two-level jump. That is, it jumps into the jump table
3028 // which does another jump to the destination. This also makes it easier
3029 // to translate it to TBB / TBH later.
3030 // FIXME: This might not work if the function is extremely large.
Owen Anderson825b72b2009-08-11 20:47:22 +00003031 return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain,
Evan Cheng5657c012009-07-29 02:18:14 +00003032 Addr, Op.getOperand(2), JTI, UId);
Evan Cheng66ac5312009-07-25 00:33:29 +00003033 }
Evan Cheng66ac5312009-07-25 00:33:29 +00003034 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng9eda6892009-10-31 03:39:36 +00003035 Addr = DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00003036 MachinePointerInfo::getJumpTable(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003037 false, false, false, 0);
Evan Cheng66ac5312009-07-25 00:33:29 +00003038 Chain = Addr.getValue(1);
Dale Johannesen33c960f2009-02-04 20:06:27 +00003039 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table);
Owen Anderson825b72b2009-08-11 20:47:22 +00003040 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
Evan Cheng66ac5312009-07-25 00:33:29 +00003041 } else {
Evan Cheng9eda6892009-10-31 03:39:36 +00003042 Addr = DAG.getLoad(PTy, dl, Chain, Addr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00003043 MachinePointerInfo::getJumpTable(),
3044 false, false, false, 0);
Evan Cheng66ac5312009-07-25 00:33:29 +00003045 Chain = Addr.getValue(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00003046 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
Evan Cheng66ac5312009-07-25 00:33:29 +00003047 }
Evan Chenga8e29892007-01-19 07:51:42 +00003048}
3049
Eli Friedman14e809c2011-11-09 23:36:02 +00003050static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
David Blaikie810d6d32012-01-16 05:17:39 +00003051 assert(Op.getValueType().getVectorElementType() == MVT::i32
3052 && "Unexpected custom lowering");
Eli Friedman14e809c2011-11-09 23:36:02 +00003053
3054 if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::f32)
3055 return Op;
3056 return DAG.UnrollVectorOp(Op.getNode());
3057}
3058
Bob Wilson76a312b2010-03-19 22:51:32 +00003059static SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
Eli Friedman14e809c2011-11-09 23:36:02 +00003060 EVT VT = Op.getValueType();
3061 if (VT.isVector())
3062 return LowerVectorFP_TO_INT(Op, DAG);
3063
Bob Wilson76a312b2010-03-19 22:51:32 +00003064 DebugLoc dl = Op.getDebugLoc();
3065 unsigned Opc;
3066
3067 switch (Op.getOpcode()) {
3068 default:
3069 assert(0 && "Invalid opcode!");
3070 case ISD::FP_TO_SINT:
3071 Opc = ARMISD::FTOSI;
3072 break;
3073 case ISD::FP_TO_UINT:
3074 Opc = ARMISD::FTOUI;
3075 break;
3076 }
3077 Op = DAG.getNode(Opc, dl, MVT::f32, Op.getOperand(0));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003078 return DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
Bob Wilson76a312b2010-03-19 22:51:32 +00003079}
3080
Cameron Zwarich3007d332011-03-29 21:41:55 +00003081static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
3082 EVT VT = Op.getValueType();
3083 DebugLoc dl = Op.getDebugLoc();
3084
Eli Friedman14e809c2011-11-09 23:36:02 +00003085 if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::i32) {
3086 if (VT.getVectorElementType() == MVT::f32)
3087 return Op;
3088 return DAG.UnrollVectorOp(Op.getNode());
3089 }
3090
Duncan Sands1f6a3292011-08-12 14:54:45 +00003091 assert(Op.getOperand(0).getValueType() == MVT::v4i16 &&
3092 "Invalid type for custom lowering!");
Cameron Zwarich3007d332011-03-29 21:41:55 +00003093 if (VT != MVT::v4f32)
3094 return DAG.UnrollVectorOp(Op.getNode());
3095
3096 unsigned CastOpc;
3097 unsigned Opc;
3098 switch (Op.getOpcode()) {
3099 default:
3100 assert(0 && "Invalid opcode!");
3101 case ISD::SINT_TO_FP:
3102 CastOpc = ISD::SIGN_EXTEND;
3103 Opc = ISD::SINT_TO_FP;
3104 break;
3105 case ISD::UINT_TO_FP:
3106 CastOpc = ISD::ZERO_EXTEND;
3107 Opc = ISD::UINT_TO_FP;
3108 break;
3109 }
3110
3111 Op = DAG.getNode(CastOpc, dl, MVT::v4i32, Op.getOperand(0));
3112 return DAG.getNode(Opc, dl, VT, Op);
3113}
3114
Bob Wilson76a312b2010-03-19 22:51:32 +00003115static SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
3116 EVT VT = Op.getValueType();
Cameron Zwarich3007d332011-03-29 21:41:55 +00003117 if (VT.isVector())
3118 return LowerVectorINT_TO_FP(Op, DAG);
3119
Bob Wilson76a312b2010-03-19 22:51:32 +00003120 DebugLoc dl = Op.getDebugLoc();
3121 unsigned Opc;
3122
3123 switch (Op.getOpcode()) {
3124 default:
3125 assert(0 && "Invalid opcode!");
3126 case ISD::SINT_TO_FP:
3127 Opc = ARMISD::SITOF;
3128 break;
3129 case ISD::UINT_TO_FP:
3130 Opc = ARMISD::UITOF;
3131 break;
3132 }
3133
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003134 Op = DAG.getNode(ISD::BITCAST, dl, MVT::f32, Op.getOperand(0));
Bob Wilson76a312b2010-03-19 22:51:32 +00003135 return DAG.getNode(Opc, dl, VT, Op);
3136}
3137
Evan Cheng515fe3a2010-07-08 02:08:50 +00003138SDValue ARMTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Evan Chenga8e29892007-01-19 07:51:42 +00003139 // Implement fcopysign with a fabs and a conditional fneg.
Dan Gohman475871a2008-07-27 21:46:04 +00003140 SDValue Tmp0 = Op.getOperand(0);
3141 SDValue Tmp1 = Op.getOperand(1);
Dale Johannesende064702009-02-06 21:50:26 +00003142 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00003143 EVT VT = Op.getValueType();
3144 EVT SrcVT = Tmp1.getValueType();
Evan Chenge573fb32011-02-23 02:24:55 +00003145 bool InGPR = Tmp0.getOpcode() == ISD::BITCAST ||
3146 Tmp0.getOpcode() == ARMISD::VMOVDRR;
3147 bool UseNEON = !InGPR && Subtarget->hasNEON();
3148
3149 if (UseNEON) {
3150 // Use VBSL to copy the sign bit.
3151 unsigned EncodedVal = ARM_AM::createNEONModImm(0x6, 0x80);
3152 SDValue Mask = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v2i32,
3153 DAG.getTargetConstant(EncodedVal, MVT::i32));
3154 EVT OpVT = (VT == MVT::f32) ? MVT::v2i32 : MVT::v1i64;
3155 if (VT == MVT::f64)
3156 Mask = DAG.getNode(ARMISD::VSHL, dl, OpVT,
3157 DAG.getNode(ISD::BITCAST, dl, OpVT, Mask),
3158 DAG.getConstant(32, MVT::i32));
3159 else /*if (VT == MVT::f32)*/
3160 Tmp0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp0);
3161 if (SrcVT == MVT::f32) {
3162 Tmp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp1);
3163 if (VT == MVT::f64)
3164 Tmp1 = DAG.getNode(ARMISD::VSHL, dl, OpVT,
3165 DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1),
3166 DAG.getConstant(32, MVT::i32));
Evan Cheng9eec66e2011-04-15 01:31:00 +00003167 } else if (VT == MVT::f32)
3168 Tmp1 = DAG.getNode(ARMISD::VSHRu, dl, MVT::v1i64,
3169 DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, Tmp1),
3170 DAG.getConstant(32, MVT::i32));
Evan Chenge573fb32011-02-23 02:24:55 +00003171 Tmp0 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp0);
3172 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1);
3173
3174 SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff),
3175 MVT::i32);
3176 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes);
3177 SDValue MaskNot = DAG.getNode(ISD::XOR, dl, OpVT, Mask,
3178 DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes));
Owen Anderson76706012011-04-05 21:48:57 +00003179
Evan Chenge573fb32011-02-23 02:24:55 +00003180 SDValue Res = DAG.getNode(ISD::OR, dl, OpVT,
3181 DAG.getNode(ISD::AND, dl, OpVT, Tmp1, Mask),
3182 DAG.getNode(ISD::AND, dl, OpVT, Tmp0, MaskNot));
Evan Chengc24ab5c2011-02-28 18:45:27 +00003183 if (VT == MVT::f32) {
Evan Chenge573fb32011-02-23 02:24:55 +00003184 Res = DAG.getNode(ISD::BITCAST, dl, MVT::v2f32, Res);
3185 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, Res,
3186 DAG.getConstant(0, MVT::i32));
3187 } else {
3188 Res = DAG.getNode(ISD::BITCAST, dl, MVT::f64, Res);
3189 }
3190
3191 return Res;
3192 }
Evan Chengc143dd42011-02-11 02:28:55 +00003193
3194 // Bitcast operand 1 to i32.
3195 if (SrcVT == MVT::f64)
3196 Tmp1 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
3197 &Tmp1, 1).getValue(1);
3198 Tmp1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp1);
3199
Evan Chenge573fb32011-02-23 02:24:55 +00003200 // Or in the signbit with integer operations.
3201 SDValue Mask1 = DAG.getConstant(0x80000000, MVT::i32);
3202 SDValue Mask2 = DAG.getConstant(0x7fffffff, MVT::i32);
3203 Tmp1 = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp1, Mask1);
3204 if (VT == MVT::f32) {
3205 Tmp0 = DAG.getNode(ISD::AND, dl, MVT::i32,
3206 DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp0), Mask2);
3207 return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
3208 DAG.getNode(ISD::OR, dl, MVT::i32, Tmp0, Tmp1));
Evan Chengc143dd42011-02-11 02:28:55 +00003209 }
3210
Evan Chenge573fb32011-02-23 02:24:55 +00003211 // f64: Or the high part with signbit and then combine two parts.
3212 Tmp0 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
3213 &Tmp0, 1);
3214 SDValue Lo = Tmp0.getValue(0);
3215 SDValue Hi = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp0.getValue(1), Mask2);
3216 Hi = DAG.getNode(ISD::OR, dl, MVT::i32, Hi, Tmp1);
3217 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Evan Chenga8e29892007-01-19 07:51:42 +00003218}
3219
Evan Cheng2457f2c2010-05-22 01:47:14 +00003220SDValue ARMTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const{
3221 MachineFunction &MF = DAG.getMachineFunction();
3222 MachineFrameInfo *MFI = MF.getFrameInfo();
3223 MFI->setReturnAddressIsTaken(true);
3224
3225 EVT VT = Op.getValueType();
3226 DebugLoc dl = Op.getDebugLoc();
3227 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
3228 if (Depth) {
3229 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
3230 SDValue Offset = DAG.getConstant(4, MVT::i32);
3231 return DAG.getLoad(VT, dl, DAG.getEntryNode(),
3232 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003233 MachinePointerInfo(), false, false, false, 0);
Evan Cheng2457f2c2010-05-22 01:47:14 +00003234 }
3235
3236 // Return LR, which contains the return address. Mark it an implicit live-in.
Devang Patel68e6bee2011-02-21 23:21:26 +00003237 unsigned Reg = MF.addLiveIn(ARM::LR, getRegClassFor(MVT::i32));
Evan Cheng2457f2c2010-05-22 01:47:14 +00003238 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
3239}
3240
Dan Gohmand858e902010-04-17 15:26:15 +00003241SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Jim Grosbach0e0da732009-05-12 23:59:14 +00003242 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
3243 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00003244
Owen Andersone50ed302009-08-10 22:56:29 +00003245 EVT VT = Op.getValueType();
Jim Grosbach0e0da732009-05-12 23:59:14 +00003246 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
3247 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Chengcd828612009-06-18 23:14:30 +00003248 unsigned FrameReg = (Subtarget->isThumb() || Subtarget->isTargetDarwin())
Jim Grosbach0e0da732009-05-12 23:59:14 +00003249 ? ARM::R7 : ARM::R11;
3250 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
3251 while (Depth--)
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00003252 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
3253 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003254 false, false, false, 0);
Jim Grosbach0e0da732009-05-12 23:59:14 +00003255 return FrameAddr;
3256}
3257
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003258/// ExpandBITCAST - If the target supports VFP, this function is called to
Bob Wilson9f3f0612010-04-17 05:30:19 +00003259/// expand a bit convert where either the source or destination type is i64 to
3260/// use a VMOVDRR or VMOVRRD node. This should not be done when the non-i64
3261/// operand type is illegal (e.g., v2f32 for a target that doesn't support
3262/// vectors), since the legalizer won't know what to do with that.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003263static SDValue ExpandBITCAST(SDNode *N, SelectionDAG &DAG) {
Bob Wilson9f3f0612010-04-17 05:30:19 +00003264 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3265 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003266 SDValue Op = N->getOperand(0);
Bob Wilson164cd8b2010-04-14 20:45:23 +00003267
Bob Wilson9f3f0612010-04-17 05:30:19 +00003268 // This function is only supposed to be called for i64 types, either as the
3269 // source or destination of the bit convert.
3270 EVT SrcVT = Op.getValueType();
3271 EVT DstVT = N->getValueType(0);
3272 assert((SrcVT == MVT::i64 || DstVT == MVT::i64) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003273 "ExpandBITCAST called for non-i64 type");
Bob Wilson164cd8b2010-04-14 20:45:23 +00003274
Bob Wilson9f3f0612010-04-17 05:30:19 +00003275 // Turn i64->f64 into VMOVDRR.
3276 if (SrcVT == MVT::i64 && TLI.isTypeLegal(DstVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003277 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
3278 DAG.getConstant(0, MVT::i32));
3279 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
3280 DAG.getConstant(1, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003281 return DAG.getNode(ISD::BITCAST, dl, DstVT,
Bob Wilson1114f562010-06-11 22:45:25 +00003282 DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi));
Evan Chengc7c77292008-11-04 19:57:48 +00003283 }
Bob Wilson2dc4f542009-03-20 22:42:55 +00003284
Jim Grosbache5165492009-11-09 00:11:35 +00003285 // Turn f64->i64 into VMOVRRD.
Bob Wilson9f3f0612010-04-17 05:30:19 +00003286 if (DstVT == MVT::i64 && TLI.isTypeLegal(SrcVT)) {
3287 SDValue Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
3288 DAG.getVTList(MVT::i32, MVT::i32), &Op, 1);
3289 // Merge the pieces into a single i64 value.
3290 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1));
3291 }
Bob Wilson2dc4f542009-03-20 22:42:55 +00003292
Bob Wilson9f3f0612010-04-17 05:30:19 +00003293 return SDValue();
Chris Lattner27a6c732007-11-24 07:07:01 +00003294}
3295
Bob Wilson5bafff32009-06-22 23:27:02 +00003296/// getZeroVector - Returns a vector of specified type with all zero elements.
Bob Wilsoncba270d2010-07-13 21:16:48 +00003297/// Zero vectors are used to represent vector negation and in those cases
3298/// will be implemented with the NEON VNEG instruction. However, VNEG does
3299/// not support i64 elements, so sometimes the zero vectors will need to be
3300/// explicitly constructed. Regardless, use a canonical VMOV to create the
3301/// zero vector.
Owen Andersone50ed302009-08-10 22:56:29 +00003302static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Bob Wilson5bafff32009-06-22 23:27:02 +00003303 assert(VT.isVector() && "Expected a vector type");
Bob Wilsoncba270d2010-07-13 21:16:48 +00003304 // The canonical modified immediate encoding of a zero vector is....0!
3305 SDValue EncodedVal = DAG.getTargetConstant(0, MVT::i32);
3306 EVT VmovVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
3307 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003308 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
Bob Wilson5bafff32009-06-22 23:27:02 +00003309}
3310
Jim Grosbachb4a976c2009-10-31 21:00:56 +00003311/// LowerShiftRightParts - Lower SRA_PARTS, which returns two
3312/// i32 values and take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00003313SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op,
3314 SelectionDAG &DAG) const {
Jim Grosbachb4a976c2009-10-31 21:00:56 +00003315 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
3316 EVT VT = Op.getValueType();
3317 unsigned VTBits = VT.getSizeInBits();
3318 DebugLoc dl = Op.getDebugLoc();
3319 SDValue ShOpLo = Op.getOperand(0);
3320 SDValue ShOpHi = Op.getOperand(1);
3321 SDValue ShAmt = Op.getOperand(2);
Evan Cheng218977b2010-07-13 19:27:42 +00003322 SDValue ARMcc;
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +00003323 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
Jim Grosbachb4a976c2009-10-31 21:00:56 +00003324
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +00003325 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
3326
Jim Grosbachb4a976c2009-10-31 21:00:56 +00003327 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
3328 DAG.getConstant(VTBits, MVT::i32), ShAmt);
3329 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
3330 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
3331 DAG.getConstant(VTBits, MVT::i32));
3332 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
3333 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +00003334 SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
Jim Grosbachb4a976c2009-10-31 21:00:56 +00003335
3336 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3337 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
Evan Cheng218977b2010-07-13 19:27:42 +00003338 ARMcc, DAG, dl);
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +00003339 SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
Evan Cheng218977b2010-07-13 19:27:42 +00003340 SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc,
Jim Grosbachb4a976c2009-10-31 21:00:56 +00003341 CCR, Cmp);
3342
3343 SDValue Ops[2] = { Lo, Hi };
3344 return DAG.getMergeValues(Ops, 2, dl);
3345}
3346
Jim Grosbachc2b879f2009-10-31 19:38:01 +00003347/// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
3348/// i32 values and take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00003349SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op,
3350 SelectionDAG &DAG) const {
Jim Grosbachc2b879f2009-10-31 19:38:01 +00003351 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
3352 EVT VT = Op.getValueType();
3353 unsigned VTBits = VT.getSizeInBits();
3354 DebugLoc dl = Op.getDebugLoc();
3355 SDValue ShOpLo = Op.getOperand(0);
3356 SDValue ShOpHi = Op.getOperand(1);
3357 SDValue ShAmt = Op.getOperand(2);
Evan Cheng218977b2010-07-13 19:27:42 +00003358 SDValue ARMcc;
Jim Grosbachc2b879f2009-10-31 19:38:01 +00003359
3360 assert(Op.getOpcode() == ISD::SHL_PARTS);
3361 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
3362 DAG.getConstant(VTBits, MVT::i32), ShAmt);
3363 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
3364 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
3365 DAG.getConstant(VTBits, MVT::i32));
3366 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
3367 SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
3368
3369 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
3370 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3371 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
Evan Cheng218977b2010-07-13 19:27:42 +00003372 ARMcc, DAG, dl);
Jim Grosbachc2b879f2009-10-31 19:38:01 +00003373 SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Evan Cheng218977b2010-07-13 19:27:42 +00003374 SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMcc,
Jim Grosbachc2b879f2009-10-31 19:38:01 +00003375 CCR, Cmp);
3376
3377 SDValue Ops[2] = { Lo, Hi };
3378 return DAG.getMergeValues(Ops, 2, dl);
3379}
3380
Jim Grosbach4725ca72010-09-08 03:54:02 +00003381SDValue ARMTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
Nate Begemand1fb5832010-08-03 21:31:55 +00003382 SelectionDAG &DAG) const {
3383 // The rounding mode is in bits 23:22 of the FPSCR.
3384 // The ARM rounding mode value to FLT_ROUNDS mapping is 0->1, 1->2, 2->3, 3->0
3385 // The formula we use to implement this is (((FPSCR + 1 << 22) >> 22) & 3)
3386 // so that the shift + and get folded into a bitfield extract.
3387 DebugLoc dl = Op.getDebugLoc();
3388 SDValue FPSCR = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::i32,
3389 DAG.getConstant(Intrinsic::arm_get_fpscr,
3390 MVT::i32));
Jim Grosbach4725ca72010-09-08 03:54:02 +00003391 SDValue FltRounds = DAG.getNode(ISD::ADD, dl, MVT::i32, FPSCR,
Nate Begemand1fb5832010-08-03 21:31:55 +00003392 DAG.getConstant(1U << 22, MVT::i32));
3393 SDValue RMODE = DAG.getNode(ISD::SRL, dl, MVT::i32, FltRounds,
3394 DAG.getConstant(22, MVT::i32));
Jim Grosbach4725ca72010-09-08 03:54:02 +00003395 return DAG.getNode(ISD::AND, dl, MVT::i32, RMODE,
Nate Begemand1fb5832010-08-03 21:31:55 +00003396 DAG.getConstant(3, MVT::i32));
3397}
3398
Jim Grosbach3482c802010-01-18 19:58:49 +00003399static SDValue LowerCTTZ(SDNode *N, SelectionDAG &DAG,
3400 const ARMSubtarget *ST) {
3401 EVT VT = N->getValueType(0);
3402 DebugLoc dl = N->getDebugLoc();
3403
3404 if (!ST->hasV6T2Ops())
3405 return SDValue();
3406
3407 SDValue rbit = DAG.getNode(ARMISD::RBIT, dl, VT, N->getOperand(0));
3408 return DAG.getNode(ISD::CTLZ, dl, VT, rbit);
3409}
3410
Bob Wilson5bafff32009-06-22 23:27:02 +00003411static SDValue LowerShift(SDNode *N, SelectionDAG &DAG,
3412 const ARMSubtarget *ST) {
Owen Andersone50ed302009-08-10 22:56:29 +00003413 EVT VT = N->getValueType(0);
Bob Wilson5bafff32009-06-22 23:27:02 +00003414 DebugLoc dl = N->getDebugLoc();
3415
Bob Wilsond5448bb2010-11-18 21:16:28 +00003416 if (!VT.isVector())
3417 return SDValue();
3418
Bob Wilson5bafff32009-06-22 23:27:02 +00003419 // Lower vector shifts on NEON to use VSHL.
Bob Wilsond5448bb2010-11-18 21:16:28 +00003420 assert(ST->hasNEON() && "unexpected vector shift");
Bob Wilson5bafff32009-06-22 23:27:02 +00003421
Bob Wilsond5448bb2010-11-18 21:16:28 +00003422 // Left shifts translate directly to the vshiftu intrinsic.
3423 if (N->getOpcode() == ISD::SHL)
Bob Wilson5bafff32009-06-22 23:27:02 +00003424 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Bob Wilsond5448bb2010-11-18 21:16:28 +00003425 DAG.getConstant(Intrinsic::arm_neon_vshiftu, MVT::i32),
3426 N->getOperand(0), N->getOperand(1));
3427
3428 assert((N->getOpcode() == ISD::SRA ||
3429 N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode");
3430
3431 // NEON uses the same intrinsics for both left and right shifts. For
3432 // right shifts, the shift amounts are negative, so negate the vector of
3433 // shift amounts.
3434 EVT ShiftVT = N->getOperand(1).getValueType();
3435 SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT,
3436 getZeroVector(ShiftVT, DAG, dl),
3437 N->getOperand(1));
3438 Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ?
3439 Intrinsic::arm_neon_vshifts :
3440 Intrinsic::arm_neon_vshiftu);
3441 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
3442 DAG.getConstant(vshiftInt, MVT::i32),
3443 N->getOperand(0), NegatedCount);
3444}
3445
3446static SDValue Expand64BitShift(SDNode *N, SelectionDAG &DAG,
3447 const ARMSubtarget *ST) {
3448 EVT VT = N->getValueType(0);
3449 DebugLoc dl = N->getDebugLoc();
Bob Wilson5bafff32009-06-22 23:27:02 +00003450
Eli Friedmance392eb2009-08-22 03:13:10 +00003451 // We can get here for a node like i32 = ISD::SHL i32, i64
3452 if (VT != MVT::i64)
3453 return SDValue();
3454
3455 assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) &&
Chris Lattner27a6c732007-11-24 07:07:01 +00003456 "Unknown shift to lower!");
Duncan Sands1607f052008-12-01 11:39:25 +00003457
Chris Lattner27a6c732007-11-24 07:07:01 +00003458 // We only lower SRA, SRL of 1 here, all others use generic lowering.
3459 if (!isa<ConstantSDNode>(N->getOperand(1)) ||
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003460 cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 1)
Duncan Sands1607f052008-12-01 11:39:25 +00003461 return SDValue();
Bob Wilson2dc4f542009-03-20 22:42:55 +00003462
Chris Lattner27a6c732007-11-24 07:07:01 +00003463 // If we are in thumb mode, we don't have RRX.
David Goodwinf1daf7d2009-07-08 23:10:31 +00003464 if (ST->isThumb1Only()) return SDValue();
Bob Wilson2dc4f542009-03-20 22:42:55 +00003465
Chris Lattner27a6c732007-11-24 07:07:01 +00003466 // Okay, we have a 64-bit SRA or SRL of 1. Lower this to an RRX expr.
Owen Anderson825b72b2009-08-11 20:47:22 +00003467 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
Bob Wilsonab3912e2010-05-25 03:36:52 +00003468 DAG.getConstant(0, MVT::i32));
Owen Anderson825b72b2009-08-11 20:47:22 +00003469 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
Bob Wilsonab3912e2010-05-25 03:36:52 +00003470 DAG.getConstant(1, MVT::i32));
Bob Wilson2dc4f542009-03-20 22:42:55 +00003471
Chris Lattner27a6c732007-11-24 07:07:01 +00003472 // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
3473 // captures the result into a carry flag.
3474 unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003475 Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Glue), &Hi, 1);
Bob Wilson2dc4f542009-03-20 22:42:55 +00003476
Chris Lattner27a6c732007-11-24 07:07:01 +00003477 // The low part is an ARMISD::RRX operand, which shifts the carry in.
Owen Anderson825b72b2009-08-11 20:47:22 +00003478 Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1));
Bob Wilson2dc4f542009-03-20 22:42:55 +00003479
Chris Lattner27a6c732007-11-24 07:07:01 +00003480 // Merge the pieces into a single i64 value.
Owen Anderson825b72b2009-08-11 20:47:22 +00003481 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
Chris Lattner27a6c732007-11-24 07:07:01 +00003482}
3483
Bob Wilson5bafff32009-06-22 23:27:02 +00003484static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
3485 SDValue TmpOp0, TmpOp1;
3486 bool Invert = false;
3487 bool Swap = false;
3488 unsigned Opc = 0;
3489
3490 SDValue Op0 = Op.getOperand(0);
3491 SDValue Op1 = Op.getOperand(1);
3492 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00003493 EVT VT = Op.getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00003494 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
3495 DebugLoc dl = Op.getDebugLoc();
3496
3497 if (Op.getOperand(1).getValueType().isFloatingPoint()) {
3498 switch (SetCCOpcode) {
David Blaikie4d6ccb52012-01-20 21:51:11 +00003499 default: llvm_unreachable("Illegal FP comparison");
Bob Wilson5bafff32009-06-22 23:27:02 +00003500 case ISD::SETUNE:
3501 case ISD::SETNE: Invert = true; // Fallthrough
3502 case ISD::SETOEQ:
3503 case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
3504 case ISD::SETOLT:
3505 case ISD::SETLT: Swap = true; // Fallthrough
3506 case ISD::SETOGT:
3507 case ISD::SETGT: Opc = ARMISD::VCGT; break;
3508 case ISD::SETOLE:
3509 case ISD::SETLE: Swap = true; // Fallthrough
3510 case ISD::SETOGE:
3511 case ISD::SETGE: Opc = ARMISD::VCGE; break;
3512 case ISD::SETUGE: Swap = true; // Fallthrough
3513 case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
3514 case ISD::SETUGT: Swap = true; // Fallthrough
3515 case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
3516 case ISD::SETUEQ: Invert = true; // Fallthrough
3517 case ISD::SETONE:
3518 // Expand this to (OLT | OGT).
3519 TmpOp0 = Op0;
3520 TmpOp1 = Op1;
3521 Opc = ISD::OR;
3522 Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
3523 Op1 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp0, TmpOp1);
3524 break;
3525 case ISD::SETUO: Invert = true; // Fallthrough
3526 case ISD::SETO:
3527 // Expand this to (OLT | OGE).
3528 TmpOp0 = Op0;
3529 TmpOp1 = Op1;
3530 Opc = ISD::OR;
3531 Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
3532 Op1 = DAG.getNode(ARMISD::VCGE, dl, VT, TmpOp0, TmpOp1);
3533 break;
3534 }
3535 } else {
3536 // Integer comparisons.
3537 switch (SetCCOpcode) {
David Blaikie4d6ccb52012-01-20 21:51:11 +00003538 default: llvm_unreachable("Illegal integer comparison");
Bob Wilson5bafff32009-06-22 23:27:02 +00003539 case ISD::SETNE: Invert = true;
3540 case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
3541 case ISD::SETLT: Swap = true;
3542 case ISD::SETGT: Opc = ARMISD::VCGT; break;
3543 case ISD::SETLE: Swap = true;
3544 case ISD::SETGE: Opc = ARMISD::VCGE; break;
3545 case ISD::SETULT: Swap = true;
3546 case ISD::SETUGT: Opc = ARMISD::VCGTU; break;
3547 case ISD::SETULE: Swap = true;
3548 case ISD::SETUGE: Opc = ARMISD::VCGEU; break;
3549 }
3550
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003551 // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero).
Bob Wilson5bafff32009-06-22 23:27:02 +00003552 if (Opc == ARMISD::VCEQ) {
3553
3554 SDValue AndOp;
3555 if (ISD::isBuildVectorAllZeros(Op1.getNode()))
3556 AndOp = Op0;
3557 else if (ISD::isBuildVectorAllZeros(Op0.getNode()))
3558 AndOp = Op1;
3559
3560 // Ignore bitconvert.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003561 if (AndOp.getNode() && AndOp.getOpcode() == ISD::BITCAST)
Bob Wilson5bafff32009-06-22 23:27:02 +00003562 AndOp = AndOp.getOperand(0);
3563
3564 if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) {
3565 Opc = ARMISD::VTST;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003566 Op0 = DAG.getNode(ISD::BITCAST, dl, VT, AndOp.getOperand(0));
3567 Op1 = DAG.getNode(ISD::BITCAST, dl, VT, AndOp.getOperand(1));
Bob Wilson5bafff32009-06-22 23:27:02 +00003568 Invert = !Invert;
3569 }
3570 }
3571 }
3572
3573 if (Swap)
3574 std::swap(Op0, Op1);
3575
Owen Andersonc24cb352010-11-08 23:21:22 +00003576 // If one of the operands is a constant vector zero, attempt to fold the
3577 // comparison to a specialized compare-against-zero form.
3578 SDValue SingleOp;
3579 if (ISD::isBuildVectorAllZeros(Op1.getNode()))
3580 SingleOp = Op0;
3581 else if (ISD::isBuildVectorAllZeros(Op0.getNode())) {
3582 if (Opc == ARMISD::VCGE)
3583 Opc = ARMISD::VCLEZ;
3584 else if (Opc == ARMISD::VCGT)
3585 Opc = ARMISD::VCLTZ;
3586 SingleOp = Op1;
3587 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003588
Owen Andersonc24cb352010-11-08 23:21:22 +00003589 SDValue Result;
3590 if (SingleOp.getNode()) {
3591 switch (Opc) {
3592 case ARMISD::VCEQ:
3593 Result = DAG.getNode(ARMISD::VCEQZ, dl, VT, SingleOp); break;
3594 case ARMISD::VCGE:
3595 Result = DAG.getNode(ARMISD::VCGEZ, dl, VT, SingleOp); break;
3596 case ARMISD::VCLEZ:
3597 Result = DAG.getNode(ARMISD::VCLEZ, dl, VT, SingleOp); break;
3598 case ARMISD::VCGT:
3599 Result = DAG.getNode(ARMISD::VCGTZ, dl, VT, SingleOp); break;
3600 case ARMISD::VCLTZ:
3601 Result = DAG.getNode(ARMISD::VCLTZ, dl, VT, SingleOp); break;
3602 default:
3603 Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
3604 }
3605 } else {
3606 Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
3607 }
Bob Wilson5bafff32009-06-22 23:27:02 +00003608
3609 if (Invert)
3610 Result = DAG.getNOT(dl, Result, VT);
3611
3612 return Result;
3613}
3614
Bob Wilsond3c42842010-06-14 22:19:57 +00003615/// isNEONModifiedImm - Check if the specified splat value corresponds to a
3616/// valid vector constant for a NEON instruction with a "modified immediate"
Bob Wilsoncba270d2010-07-13 21:16:48 +00003617/// operand (e.g., VMOV). If so, return the encoded value.
Bob Wilsond3c42842010-06-14 22:19:57 +00003618static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
3619 unsigned SplatBitSize, SelectionDAG &DAG,
Owen Anderson36fa3ea2010-11-05 21:57:54 +00003620 EVT &VT, bool is128Bits, NEONModImmType type) {
Bob Wilson6dce00c2010-07-13 04:44:34 +00003621 unsigned OpCmode, Imm;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003622
Bob Wilson827b2102010-06-15 19:05:35 +00003623 // SplatBitSize is set to the smallest size that splats the vector, so a
3624 // zero vector will always have SplatBitSize == 8. However, NEON modified
3625 // immediate instructions others than VMOV do not support the 8-bit encoding
3626 // of a zero vector, and the default encoding of zero is supposed to be the
3627 // 32-bit version.
3628 if (SplatBits == 0)
3629 SplatBitSize = 32;
3630
Bob Wilson5bafff32009-06-22 23:27:02 +00003631 switch (SplatBitSize) {
3632 case 8:
Owen Anderson36fa3ea2010-11-05 21:57:54 +00003633 if (type != VMOVModImm)
Bob Wilson7e3f0d22010-07-14 06:31:50 +00003634 return SDValue();
Bob Wilson1a913ed2010-06-11 21:34:50 +00003635 // Any 1-byte value is OK. Op=0, Cmode=1110.
Bob Wilson5bafff32009-06-22 23:27:02 +00003636 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
Bob Wilson6dce00c2010-07-13 04:44:34 +00003637 OpCmode = 0xe;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003638 Imm = SplatBits;
Bob Wilsoncba270d2010-07-13 21:16:48 +00003639 VT = is128Bits ? MVT::v16i8 : MVT::v8i8;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003640 break;
Bob Wilson5bafff32009-06-22 23:27:02 +00003641
3642 case 16:
3643 // NEON's 16-bit VMOV supports splat values where only one byte is nonzero.
Bob Wilsoncba270d2010-07-13 21:16:48 +00003644 VT = is128Bits ? MVT::v8i16 : MVT::v4i16;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003645 if ((SplatBits & ~0xff) == 0) {
3646 // Value = 0x00nn: Op=x, Cmode=100x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003647 OpCmode = 0x8;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003648 Imm = SplatBits;
3649 break;
3650 }
3651 if ((SplatBits & ~0xff00) == 0) {
3652 // Value = 0xnn00: Op=x, Cmode=101x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003653 OpCmode = 0xa;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003654 Imm = SplatBits >> 8;
3655 break;
3656 }
3657 return SDValue();
Bob Wilson5bafff32009-06-22 23:27:02 +00003658
3659 case 32:
3660 // NEON's 32-bit VMOV supports splat values where:
3661 // * only one byte is nonzero, or
3662 // * the least significant byte is 0xff and the second byte is nonzero, or
3663 // * the least significant 2 bytes are 0xff and the third is nonzero.
Bob Wilsoncba270d2010-07-13 21:16:48 +00003664 VT = is128Bits ? MVT::v4i32 : MVT::v2i32;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003665 if ((SplatBits & ~0xff) == 0) {
3666 // Value = 0x000000nn: Op=x, Cmode=000x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003667 OpCmode = 0;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003668 Imm = SplatBits;
3669 break;
3670 }
3671 if ((SplatBits & ~0xff00) == 0) {
3672 // Value = 0x0000nn00: Op=x, Cmode=001x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003673 OpCmode = 0x2;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003674 Imm = SplatBits >> 8;
3675 break;
3676 }
3677 if ((SplatBits & ~0xff0000) == 0) {
3678 // Value = 0x00nn0000: Op=x, Cmode=010x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003679 OpCmode = 0x4;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003680 Imm = SplatBits >> 16;
3681 break;
3682 }
3683 if ((SplatBits & ~0xff000000) == 0) {
3684 // Value = 0xnn000000: Op=x, Cmode=011x.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003685 OpCmode = 0x6;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003686 Imm = SplatBits >> 24;
3687 break;
3688 }
Bob Wilson5bafff32009-06-22 23:27:02 +00003689
Owen Anderson36fa3ea2010-11-05 21:57:54 +00003690 // cmode == 0b1100 and cmode == 0b1101 are not supported for VORR or VBIC
3691 if (type == OtherModImm) return SDValue();
3692
Bob Wilson5bafff32009-06-22 23:27:02 +00003693 if ((SplatBits & ~0xffff) == 0 &&
Bob Wilson1a913ed2010-06-11 21:34:50 +00003694 ((SplatBits | SplatUndef) & 0xff) == 0xff) {
3695 // Value = 0x0000nnff: Op=x, Cmode=1100.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003696 OpCmode = 0xc;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003697 Imm = SplatBits >> 8;
3698 SplatBits |= 0xff;
3699 break;
3700 }
Bob Wilson5bafff32009-06-22 23:27:02 +00003701
3702 if ((SplatBits & ~0xffffff) == 0 &&
Bob Wilson1a913ed2010-06-11 21:34:50 +00003703 ((SplatBits | SplatUndef) & 0xffff) == 0xffff) {
3704 // Value = 0x00nnffff: Op=x, Cmode=1101.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003705 OpCmode = 0xd;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003706 Imm = SplatBits >> 16;
3707 SplatBits |= 0xffff;
3708 break;
3709 }
Bob Wilson5bafff32009-06-22 23:27:02 +00003710
3711 // Note: there are a few 32-bit splat values (specifically: 00ffff00,
3712 // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not
3713 // VMOV.I32. A (very) minor optimization would be to replicate the value
3714 // and fall through here to test for a valid 64-bit splat. But, then the
3715 // caller would also need to check and handle the change in size.
Bob Wilson1a913ed2010-06-11 21:34:50 +00003716 return SDValue();
Bob Wilson5bafff32009-06-22 23:27:02 +00003717
3718 case 64: {
Owen Anderson36fa3ea2010-11-05 21:57:54 +00003719 if (type != VMOVModImm)
Bob Wilson827b2102010-06-15 19:05:35 +00003720 return SDValue();
Bob Wilson7e3f0d22010-07-14 06:31:50 +00003721 // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff.
Bob Wilson5bafff32009-06-22 23:27:02 +00003722 uint64_t BitMask = 0xff;
3723 uint64_t Val = 0;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003724 unsigned ImmMask = 1;
3725 Imm = 0;
Bob Wilson5bafff32009-06-22 23:27:02 +00003726 for (int ByteNum = 0; ByteNum < 8; ++ByteNum) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00003727 if (((SplatBits | SplatUndef) & BitMask) == BitMask) {
Bob Wilson5bafff32009-06-22 23:27:02 +00003728 Val |= BitMask;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003729 Imm |= ImmMask;
3730 } else if ((SplatBits & BitMask) != 0) {
Bob Wilson5bafff32009-06-22 23:27:02 +00003731 return SDValue();
Bob Wilson1a913ed2010-06-11 21:34:50 +00003732 }
Bob Wilson5bafff32009-06-22 23:27:02 +00003733 BitMask <<= 8;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003734 ImmMask <<= 1;
Bob Wilson5bafff32009-06-22 23:27:02 +00003735 }
Bob Wilson1a913ed2010-06-11 21:34:50 +00003736 // Op=1, Cmode=1110.
Bob Wilson6dce00c2010-07-13 04:44:34 +00003737 OpCmode = 0x1e;
Bob Wilson1a913ed2010-06-11 21:34:50 +00003738 SplatBits = Val;
Bob Wilsoncba270d2010-07-13 21:16:48 +00003739 VT = is128Bits ? MVT::v2i64 : MVT::v1i64;
Bob Wilson5bafff32009-06-22 23:27:02 +00003740 break;
3741 }
3742
Bob Wilson1a913ed2010-06-11 21:34:50 +00003743 default:
Bob Wilsondc076da2010-06-19 05:32:09 +00003744 llvm_unreachable("unexpected size for isNEONModifiedImm");
Bob Wilson1a913ed2010-06-11 21:34:50 +00003745 }
3746
Bob Wilsoncba270d2010-07-13 21:16:48 +00003747 unsigned EncodedVal = ARM_AM::createNEONModImm(OpCmode, Imm);
3748 return DAG.getTargetConstant(EncodedVal, MVT::i32);
Bob Wilson5bafff32009-06-22 23:27:02 +00003749}
3750
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003751static bool isVEXTMask(ArrayRef<int> M, EVT VT,
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003752 bool &ReverseVEXT, unsigned &Imm) {
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003753 unsigned NumElts = VT.getVectorNumElements();
3754 ReverseVEXT = false;
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003755
3756 // Assume that the first shuffle index is not UNDEF. Fail if it is.
3757 if (M[0] < 0)
3758 return false;
3759
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003760 Imm = M[0];
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003761
3762 // If this is a VEXT shuffle, the immediate value is the index of the first
3763 // element. The other shuffle indices must be the successive elements after
3764 // the first one.
3765 unsigned ExpectedElt = Imm;
3766 for (unsigned i = 1; i < NumElts; ++i) {
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003767 // Increment the expected index. If it wraps around, it may still be
3768 // a VEXT but the source vectors must be swapped.
3769 ExpectedElt += 1;
3770 if (ExpectedElt == NumElts * 2) {
3771 ExpectedElt = 0;
3772 ReverseVEXT = true;
3773 }
3774
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003775 if (M[i] < 0) continue; // ignore UNDEF indices
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003776 if (ExpectedElt != static_cast<unsigned>(M[i]))
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003777 return false;
3778 }
3779
3780 // Adjust the index value if the source operands will be swapped.
3781 if (ReverseVEXT)
3782 Imm -= NumElts;
3783
Bob Wilsonde95c1b82009-08-19 17:03:43 +00003784 return true;
3785}
3786
Bob Wilson8bb9e482009-07-26 00:39:34 +00003787/// isVREVMask - Check if a vector shuffle corresponds to a VREV
3788/// instruction with the specified blocksize. (The order of the elements
3789/// within each block of the vector is reversed.)
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003790static bool isVREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
Bob Wilson8bb9e482009-07-26 00:39:34 +00003791 assert((BlockSize==16 || BlockSize==32 || BlockSize==64) &&
3792 "Only possible block sizes for VREV are: 16, 32, 64");
3793
Bob Wilson8bb9e482009-07-26 00:39:34 +00003794 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
Bob Wilson20d10812009-10-21 21:36:27 +00003795 if (EltSz == 64)
3796 return false;
3797
3798 unsigned NumElts = VT.getVectorNumElements();
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00003799 unsigned BlockElts = M[0] + 1;
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003800 // If the first shuffle index is UNDEF, be optimistic.
3801 if (M[0] < 0)
3802 BlockElts = BlockSize / EltSz;
Bob Wilson8bb9e482009-07-26 00:39:34 +00003803
3804 if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
3805 return false;
3806
3807 for (unsigned i = 0; i < NumElts; ++i) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003808 if (M[i] < 0) continue; // ignore UNDEF indices
3809 if ((unsigned) M[i] != (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts))
Bob Wilson8bb9e482009-07-26 00:39:34 +00003810 return false;
3811 }
3812
3813 return true;
3814}
3815
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003816static bool isVTBLMask(ArrayRef<int> M, EVT VT) {
Bill Wendling0d4c9d92011-03-15 21:15:20 +00003817 // We can handle <8 x i8> vector shuffles. If the index in the mask is out of
3818 // range, then 0 is placed into the resulting vector. So pretty much any mask
3819 // of 8 elements can work here.
3820 return VT == MVT::v8i8 && M.size() == 8;
3821}
3822
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003823static bool isVTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
Bob Wilson20d10812009-10-21 21:36:27 +00003824 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3825 if (EltSz == 64)
3826 return false;
3827
Bob Wilsonc692cb72009-08-21 20:54:19 +00003828 unsigned NumElts = VT.getVectorNumElements();
3829 WhichResult = (M[0] == 0 ? 0 : 1);
3830 for (unsigned i = 0; i < NumElts; i += 2) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003831 if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
3832 (M[i+1] >= 0 && (unsigned) M[i+1] != i + NumElts + WhichResult))
Bob Wilsonc692cb72009-08-21 20:54:19 +00003833 return false;
3834 }
3835 return true;
3836}
3837
Bob Wilson324f4f12009-12-03 06:40:55 +00003838/// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of
3839/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
3840/// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003841static bool isVTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
Bob Wilson324f4f12009-12-03 06:40:55 +00003842 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3843 if (EltSz == 64)
3844 return false;
3845
3846 unsigned NumElts = VT.getVectorNumElements();
3847 WhichResult = (M[0] == 0 ? 0 : 1);
3848 for (unsigned i = 0; i < NumElts; i += 2) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003849 if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
3850 (M[i+1] >= 0 && (unsigned) M[i+1] != i + WhichResult))
Bob Wilson324f4f12009-12-03 06:40:55 +00003851 return false;
3852 }
3853 return true;
3854}
3855
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003856static bool isVUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
Bob Wilson20d10812009-10-21 21:36:27 +00003857 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3858 if (EltSz == 64)
3859 return false;
3860
Bob Wilsonc692cb72009-08-21 20:54:19 +00003861 unsigned NumElts = VT.getVectorNumElements();
3862 WhichResult = (M[0] == 0 ? 0 : 1);
3863 for (unsigned i = 0; i != NumElts; ++i) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003864 if (M[i] < 0) continue; // ignore UNDEF indices
Bob Wilsonc692cb72009-08-21 20:54:19 +00003865 if ((unsigned) M[i] != 2 * i + WhichResult)
3866 return false;
3867 }
3868
3869 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
Bob Wilson20d10812009-10-21 21:36:27 +00003870 if (VT.is64BitVector() && EltSz == 32)
Bob Wilsonc692cb72009-08-21 20:54:19 +00003871 return false;
3872
3873 return true;
3874}
3875
Bob Wilson324f4f12009-12-03 06:40:55 +00003876/// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of
3877/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
3878/// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003879static bool isVUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
Bob Wilson324f4f12009-12-03 06:40:55 +00003880 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3881 if (EltSz == 64)
3882 return false;
3883
3884 unsigned Half = VT.getVectorNumElements() / 2;
3885 WhichResult = (M[0] == 0 ? 0 : 1);
3886 for (unsigned j = 0; j != 2; ++j) {
3887 unsigned Idx = WhichResult;
3888 for (unsigned i = 0; i != Half; ++i) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003889 int MIdx = M[i + j * Half];
3890 if (MIdx >= 0 && (unsigned) MIdx != Idx)
Bob Wilson324f4f12009-12-03 06:40:55 +00003891 return false;
3892 Idx += 2;
3893 }
3894 }
3895
3896 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
3897 if (VT.is64BitVector() && EltSz == 32)
3898 return false;
3899
3900 return true;
3901}
3902
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003903static bool isVZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
Bob Wilson20d10812009-10-21 21:36:27 +00003904 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3905 if (EltSz == 64)
3906 return false;
3907
Bob Wilsonc692cb72009-08-21 20:54:19 +00003908 unsigned NumElts = VT.getVectorNumElements();
3909 WhichResult = (M[0] == 0 ? 0 : 1);
3910 unsigned Idx = WhichResult * NumElts / 2;
3911 for (unsigned i = 0; i != NumElts; i += 2) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003912 if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
3913 (M[i+1] >= 0 && (unsigned) M[i+1] != Idx + NumElts))
Bob Wilsonc692cb72009-08-21 20:54:19 +00003914 return false;
3915 Idx += 1;
3916 }
3917
3918 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
Bob Wilson20d10812009-10-21 21:36:27 +00003919 if (VT.is64BitVector() && EltSz == 32)
Bob Wilsonc692cb72009-08-21 20:54:19 +00003920 return false;
3921
3922 return true;
3923}
3924
Bob Wilson324f4f12009-12-03 06:40:55 +00003925/// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of
3926/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
3927/// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003928static bool isVZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
Bob Wilson324f4f12009-12-03 06:40:55 +00003929 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
3930 if (EltSz == 64)
3931 return false;
3932
3933 unsigned NumElts = VT.getVectorNumElements();
3934 WhichResult = (M[0] == 0 ? 0 : 1);
3935 unsigned Idx = WhichResult * NumElts / 2;
3936 for (unsigned i = 0; i != NumElts; i += 2) {
Bob Wilson7aaf5bf2010-08-17 05:54:34 +00003937 if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
3938 (M[i+1] >= 0 && (unsigned) M[i+1] != Idx))
Bob Wilson324f4f12009-12-03 06:40:55 +00003939 return false;
3940 Idx += 1;
3941 }
3942
3943 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
3944 if (VT.is64BitVector() && EltSz == 32)
3945 return false;
3946
3947 return true;
3948}
3949
Dale Johannesenf630c712010-07-29 20:10:08 +00003950// If N is an integer constant that can be moved into a register in one
3951// instruction, return an SDValue of such a constant (will become a MOV
3952// instruction). Otherwise return null.
3953static SDValue IsSingleInstrConstant(SDValue N, SelectionDAG &DAG,
3954 const ARMSubtarget *ST, DebugLoc dl) {
3955 uint64_t Val;
3956 if (!isa<ConstantSDNode>(N))
3957 return SDValue();
3958 Val = cast<ConstantSDNode>(N)->getZExtValue();
3959
3960 if (ST->isThumb1Only()) {
3961 if (Val <= 255 || ~Val <= 255)
3962 return DAG.getConstant(Val, MVT::i32);
3963 } else {
3964 if (ARM_AM::getSOImmVal(Val) != -1 || ARM_AM::getSOImmVal(~Val) != -1)
3965 return DAG.getConstant(Val, MVT::i32);
3966 }
3967 return SDValue();
3968}
3969
Bob Wilson5bafff32009-06-22 23:27:02 +00003970// If this is a case we can't handle, return null and let the default
3971// expansion code take care of it.
Bob Wilson11a1dff2011-01-07 21:37:30 +00003972SDValue ARMTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
3973 const ARMSubtarget *ST) const {
Bob Wilsond06791f2009-08-13 01:57:47 +00003974 BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
Bob Wilson5bafff32009-06-22 23:27:02 +00003975 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00003976 EVT VT = Op.getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00003977
3978 APInt SplatBits, SplatUndef;
3979 unsigned SplatBitSize;
3980 bool HasAnyUndefs;
3981 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
Anton Korobeynikov71624cc2009-08-29 00:08:18 +00003982 if (SplatBitSize <= 64) {
Bob Wilsond3c42842010-06-14 22:19:57 +00003983 // Check if an immediate VMOV works.
Bob Wilsoncba270d2010-07-13 21:16:48 +00003984 EVT VmovVT;
Bob Wilsond3c42842010-06-14 22:19:57 +00003985 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
Bob Wilsoncba270d2010-07-13 21:16:48 +00003986 SplatUndef.getZExtValue(), SplatBitSize,
Owen Anderson36fa3ea2010-11-05 21:57:54 +00003987 DAG, VmovVT, VT.is128BitVector(),
3988 VMOVModImm);
Bob Wilsoncba270d2010-07-13 21:16:48 +00003989 if (Val.getNode()) {
3990 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003991 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
Bob Wilsoncba270d2010-07-13 21:16:48 +00003992 }
Bob Wilson7e3f0d22010-07-14 06:31:50 +00003993
3994 // Try an immediate VMVN.
Eli Friedman8e4d0422011-10-13 22:40:23 +00003995 uint64_t NegatedImm = (~SplatBits).getZExtValue();
Bob Wilson7e3f0d22010-07-14 06:31:50 +00003996 Val = isNEONModifiedImm(NegatedImm,
3997 SplatUndef.getZExtValue(), SplatBitSize,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003998 DAG, VmovVT, VT.is128BitVector(),
Owen Anderson36fa3ea2010-11-05 21:57:54 +00003999 VMVNModImm);
Bob Wilson7e3f0d22010-07-14 06:31:50 +00004000 if (Val.getNode()) {
4001 SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004002 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
Bob Wilson7e3f0d22010-07-14 06:31:50 +00004003 }
Evan Chengeaa192a2011-11-15 02:12:34 +00004004
4005 // Use vmov.f32 to materialize other v2f32 and v4f32 splats.
Eli Friedman2f21e8c2011-12-15 22:56:53 +00004006 if ((VT == MVT::v2f32 || VT == MVT::v4f32) && SplatBitSize == 32) {
Eli Friedmaneffab8f2011-12-09 23:54:42 +00004007 int ImmVal = ARM_AM::getFP32Imm(SplatBits);
Evan Chengeaa192a2011-11-15 02:12:34 +00004008 if (ImmVal != -1) {
4009 SDValue Val = DAG.getTargetConstant(ImmVal, MVT::i32);
4010 return DAG.getNode(ARMISD::VMOVFPIMM, dl, VT, Val);
4011 }
4012 }
Anton Korobeynikov71624cc2009-08-29 00:08:18 +00004013 }
Bob Wilsoncf661e22009-07-30 00:31:25 +00004014 }
4015
Bob Wilsonbe751cf2010-05-22 00:23:12 +00004016 // Scan through the operands to see if only one value is used.
4017 unsigned NumElts = VT.getVectorNumElements();
4018 bool isOnlyLowElement = true;
4019 bool usesOnlyOneValue = true;
4020 bool isConstant = true;
4021 SDValue Value;
4022 for (unsigned i = 0; i < NumElts; ++i) {
4023 SDValue V = Op.getOperand(i);
4024 if (V.getOpcode() == ISD::UNDEF)
4025 continue;
4026 if (i > 0)
4027 isOnlyLowElement = false;
4028 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
4029 isConstant = false;
4030
4031 if (!Value.getNode())
4032 Value = V;
4033 else if (V != Value)
4034 usesOnlyOneValue = false;
4035 }
4036
4037 if (!Value.getNode())
4038 return DAG.getUNDEF(VT);
4039
4040 if (isOnlyLowElement)
4041 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
4042
Dale Johannesenf630c712010-07-29 20:10:08 +00004043 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4044
Dale Johannesen575cd142010-10-19 20:00:17 +00004045 // Use VDUP for non-constant splats. For f32 constant splats, reduce to
4046 // i32 and try again.
4047 if (usesOnlyOneValue && EltSize <= 32) {
4048 if (!isConstant)
4049 return DAG.getNode(ARMISD::VDUP, dl, VT, Value);
4050 if (VT.getVectorElementType().isFloatingPoint()) {
4051 SmallVector<SDValue, 8> Ops;
4052 for (unsigned i = 0; i < NumElts; ++i)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004053 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, MVT::i32,
Dale Johannesen575cd142010-10-19 20:00:17 +00004054 Op.getOperand(i)));
Nate Begemanbf5be262010-11-10 21:35:41 +00004055 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
4056 SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], NumElts);
Dale Johannesene4d31592010-10-20 22:03:37 +00004057 Val = LowerBUILD_VECTOR(Val, DAG, ST);
4058 if (Val.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004059 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
Dale Johannesenf630c712010-07-29 20:10:08 +00004060 }
Dale Johannesen575cd142010-10-19 20:00:17 +00004061 SDValue Val = IsSingleInstrConstant(Value, DAG, ST, dl);
4062 if (Val.getNode())
4063 return DAG.getNode(ARMISD::VDUP, dl, VT, Val);
Dale Johannesenf630c712010-07-29 20:10:08 +00004064 }
4065
4066 // If all elements are constants and the case above didn't get hit, fall back
4067 // to the default expansion, which will generate a load from the constant
4068 // pool.
Bob Wilsonbe751cf2010-05-22 00:23:12 +00004069 if (isConstant)
4070 return SDValue();
4071
Bob Wilson11a1dff2011-01-07 21:37:30 +00004072 // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
4073 if (NumElts >= 4) {
4074 SDValue shuffle = ReconstructShuffle(Op, DAG);
4075 if (shuffle != SDValue())
4076 return shuffle;
4077 }
4078
Bob Wilsonbe751cf2010-05-22 00:23:12 +00004079 // Vectors with 32- or 64-bit elements can be built by directly assigning
Bob Wilson40cbe7d2010-06-04 00:04:02 +00004080 // the subregisters. Lower it to an ARMISD::BUILD_VECTOR so the operands
4081 // will be legalized.
Bob Wilsonbe751cf2010-05-22 00:23:12 +00004082 if (EltSize >= 32) {
4083 // Do the expansion with floating-point types, since that is what the VFP
4084 // registers are defined to use, and since i64 is not legal.
4085 EVT EltVT = EVT::getFloatingPointVT(EltSize);
4086 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
Bob Wilson40cbe7d2010-06-04 00:04:02 +00004087 SmallVector<SDValue, 8> Ops;
4088 for (unsigned i = 0; i < NumElts; ++i)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004089 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, EltVT, Op.getOperand(i)));
Bob Wilson40cbe7d2010-06-04 00:04:02 +00004090 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, &Ops[0],NumElts);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004091 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
Bob Wilson5bafff32009-06-22 23:27:02 +00004092 }
4093
4094 return SDValue();
4095}
4096
Bob Wilson11a1dff2011-01-07 21:37:30 +00004097// Gather data to see if the operation can be modelled as a
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004098// shuffle in combination with VEXTs.
Eric Christopher41262da2011-01-14 23:50:53 +00004099SDValue ARMTargetLowering::ReconstructShuffle(SDValue Op,
4100 SelectionDAG &DAG) const {
Bob Wilson11a1dff2011-01-07 21:37:30 +00004101 DebugLoc dl = Op.getDebugLoc();
4102 EVT VT = Op.getValueType();
4103 unsigned NumElts = VT.getVectorNumElements();
4104
4105 SmallVector<SDValue, 2> SourceVecs;
4106 SmallVector<unsigned, 2> MinElts;
4107 SmallVector<unsigned, 2> MaxElts;
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004108
Bob Wilson11a1dff2011-01-07 21:37:30 +00004109 for (unsigned i = 0; i < NumElts; ++i) {
4110 SDValue V = Op.getOperand(i);
4111 if (V.getOpcode() == ISD::UNDEF)
4112 continue;
4113 else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) {
4114 // A shuffle can only come from building a vector from various
4115 // elements of other vectors.
4116 return SDValue();
Eli Friedman46995fa2011-10-14 23:58:49 +00004117 } else if (V.getOperand(0).getValueType().getVectorElementType() !=
4118 VT.getVectorElementType()) {
4119 // This code doesn't know how to handle shuffles where the vector
4120 // element types do not match (this happens because type legalization
4121 // promotes the return type of EXTRACT_VECTOR_ELT).
4122 // FIXME: It might be appropriate to extend this code to handle
4123 // mismatched types.
4124 return SDValue();
Bob Wilson11a1dff2011-01-07 21:37:30 +00004125 }
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004126
Bob Wilson11a1dff2011-01-07 21:37:30 +00004127 // Record this extraction against the appropriate vector if possible...
4128 SDValue SourceVec = V.getOperand(0);
4129 unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
4130 bool FoundSource = false;
4131 for (unsigned j = 0; j < SourceVecs.size(); ++j) {
4132 if (SourceVecs[j] == SourceVec) {
4133 if (MinElts[j] > EltNo)
4134 MinElts[j] = EltNo;
4135 if (MaxElts[j] < EltNo)
4136 MaxElts[j] = EltNo;
4137 FoundSource = true;
4138 break;
4139 }
4140 }
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004141
Bob Wilson11a1dff2011-01-07 21:37:30 +00004142 // Or record a new source if not...
4143 if (!FoundSource) {
4144 SourceVecs.push_back(SourceVec);
4145 MinElts.push_back(EltNo);
4146 MaxElts.push_back(EltNo);
4147 }
4148 }
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004149
Bob Wilson11a1dff2011-01-07 21:37:30 +00004150 // Currently only do something sane when at most two source vectors
4151 // involved.
4152 if (SourceVecs.size() > 2)
4153 return SDValue();
4154
4155 SDValue ShuffleSrcs[2] = {DAG.getUNDEF(VT), DAG.getUNDEF(VT) };
4156 int VEXTOffsets[2] = {0, 0};
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004157
Bob Wilson11a1dff2011-01-07 21:37:30 +00004158 // This loop extracts the usage patterns of the source vectors
4159 // and prepares appropriate SDValues for a shuffle if possible.
4160 for (unsigned i = 0; i < SourceVecs.size(); ++i) {
4161 if (SourceVecs[i].getValueType() == VT) {
4162 // No VEXT necessary
4163 ShuffleSrcs[i] = SourceVecs[i];
4164 VEXTOffsets[i] = 0;
4165 continue;
4166 } else if (SourceVecs[i].getValueType().getVectorNumElements() < NumElts) {
4167 // It probably isn't worth padding out a smaller vector just to
4168 // break it down again in a shuffle.
4169 return SDValue();
4170 }
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004171
Bob Wilson11a1dff2011-01-07 21:37:30 +00004172 // Since only 64-bit and 128-bit vectors are legal on ARM and
4173 // we've eliminated the other cases...
Bob Wilson70f85732011-01-07 23:40:46 +00004174 assert(SourceVecs[i].getValueType().getVectorNumElements() == 2*NumElts &&
4175 "unexpected vector sizes in ReconstructShuffle");
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004176
Bob Wilson11a1dff2011-01-07 21:37:30 +00004177 if (MaxElts[i] - MinElts[i] >= NumElts) {
4178 // Span too large for a VEXT to cope
4179 return SDValue();
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004180 }
4181
Bob Wilson11a1dff2011-01-07 21:37:30 +00004182 if (MinElts[i] >= NumElts) {
4183 // The extraction can just take the second half
4184 VEXTOffsets[i] = NumElts;
Eric Christopher41262da2011-01-14 23:50:53 +00004185 ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
4186 SourceVecs[i],
Bob Wilson11a1dff2011-01-07 21:37:30 +00004187 DAG.getIntPtrConstant(NumElts));
4188 } else if (MaxElts[i] < NumElts) {
4189 // The extraction can just take the first half
4190 VEXTOffsets[i] = 0;
Eric Christopher41262da2011-01-14 23:50:53 +00004191 ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
4192 SourceVecs[i],
Bob Wilson11a1dff2011-01-07 21:37:30 +00004193 DAG.getIntPtrConstant(0));
4194 } else {
4195 // An actual VEXT is needed
4196 VEXTOffsets[i] = MinElts[i];
Eric Christopher41262da2011-01-14 23:50:53 +00004197 SDValue VEXTSrc1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
4198 SourceVecs[i],
Bob Wilson11a1dff2011-01-07 21:37:30 +00004199 DAG.getIntPtrConstant(0));
Eric Christopher41262da2011-01-14 23:50:53 +00004200 SDValue VEXTSrc2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
4201 SourceVecs[i],
Bob Wilson11a1dff2011-01-07 21:37:30 +00004202 DAG.getIntPtrConstant(NumElts));
4203 ShuffleSrcs[i] = DAG.getNode(ARMISD::VEXT, dl, VT, VEXTSrc1, VEXTSrc2,
4204 DAG.getConstant(VEXTOffsets[i], MVT::i32));
4205 }
4206 }
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004207
Bob Wilson11a1dff2011-01-07 21:37:30 +00004208 SmallVector<int, 8> Mask;
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004209
Bob Wilson11a1dff2011-01-07 21:37:30 +00004210 for (unsigned i = 0; i < NumElts; ++i) {
4211 SDValue Entry = Op.getOperand(i);
4212 if (Entry.getOpcode() == ISD::UNDEF) {
4213 Mask.push_back(-1);
4214 continue;
4215 }
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004216
Bob Wilson11a1dff2011-01-07 21:37:30 +00004217 SDValue ExtractVec = Entry.getOperand(0);
Eric Christopher41262da2011-01-14 23:50:53 +00004218 int ExtractElt = cast<ConstantSDNode>(Op.getOperand(i)
4219 .getOperand(1))->getSExtValue();
Bob Wilson11a1dff2011-01-07 21:37:30 +00004220 if (ExtractVec == SourceVecs[0]) {
4221 Mask.push_back(ExtractElt - VEXTOffsets[0]);
4222 } else {
4223 Mask.push_back(ExtractElt + NumElts - VEXTOffsets[1]);
4224 }
4225 }
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004226
Bob Wilson11a1dff2011-01-07 21:37:30 +00004227 // Final check before we try to produce nonsense...
4228 if (isShuffleMaskLegal(Mask, VT))
Eric Christopher41262da2011-01-14 23:50:53 +00004229 return DAG.getVectorShuffle(VT, dl, ShuffleSrcs[0], ShuffleSrcs[1],
4230 &Mask[0]);
Andrew Trick7fa75ce2011-01-19 02:26:13 +00004231
Bob Wilson11a1dff2011-01-07 21:37:30 +00004232 return SDValue();
4233}
4234
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00004235/// isShuffleMaskLegal - Targets can use this to indicate that they only
4236/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
4237/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
4238/// are assumed to be legal.
4239bool
4240ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
4241 EVT VT) const {
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004242 if (VT.getVectorNumElements() == 4 &&
4243 (VT.is128BitVector() || VT.is64BitVector())) {
4244 unsigned PFIndexes[4];
4245 for (unsigned i = 0; i != 4; ++i) {
4246 if (M[i] < 0)
4247 PFIndexes[i] = 8;
4248 else
4249 PFIndexes[i] = M[i];
4250 }
4251
4252 // Compute the index in the perfect shuffle table.
4253 unsigned PFTableIndex =
4254 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
4255 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
4256 unsigned Cost = (PFEntry >> 30);
4257
4258 if (Cost <= 4)
4259 return true;
4260 }
4261
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00004262 bool ReverseVEXT;
Bob Wilsonc692cb72009-08-21 20:54:19 +00004263 unsigned Imm, WhichResult;
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00004264
Bob Wilson53dd2452010-06-07 23:53:38 +00004265 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4266 return (EltSize >= 32 ||
4267 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00004268 isVREVMask(M, VT, 64) ||
4269 isVREVMask(M, VT, 32) ||
4270 isVREVMask(M, VT, 16) ||
Bob Wilsonc692cb72009-08-21 20:54:19 +00004271 isVEXTMask(M, VT, ReverseVEXT, Imm) ||
Bill Wendling0d4c9d92011-03-15 21:15:20 +00004272 isVTBLMask(M, VT) ||
Bob Wilsonc692cb72009-08-21 20:54:19 +00004273 isVTRNMask(M, VT, WhichResult) ||
4274 isVUZPMask(M, VT, WhichResult) ||
Bob Wilson324f4f12009-12-03 06:40:55 +00004275 isVZIPMask(M, VT, WhichResult) ||
4276 isVTRN_v_undef_Mask(M, VT, WhichResult) ||
4277 isVUZP_v_undef_Mask(M, VT, WhichResult) ||
4278 isVZIP_v_undef_Mask(M, VT, WhichResult));
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00004279}
4280
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004281/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
4282/// the specified operations to build the shuffle.
4283static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
4284 SDValue RHS, SelectionDAG &DAG,
4285 DebugLoc dl) {
4286 unsigned OpNum = (PFEntry >> 26) & 0x0F;
4287 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
4288 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
4289
4290 enum {
4291 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
4292 OP_VREV,
4293 OP_VDUP0,
4294 OP_VDUP1,
4295 OP_VDUP2,
4296 OP_VDUP3,
4297 OP_VEXT1,
4298 OP_VEXT2,
4299 OP_VEXT3,
4300 OP_VUZPL, // VUZP, left result
4301 OP_VUZPR, // VUZP, right result
4302 OP_VZIPL, // VZIP, left result
4303 OP_VZIPR, // VZIP, right result
4304 OP_VTRNL, // VTRN, left result
4305 OP_VTRNR // VTRN, right result
4306 };
4307
4308 if (OpNum == OP_COPY) {
4309 if (LHSID == (1*9+2)*9+3) return LHS;
4310 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
4311 return RHS;
4312 }
4313
4314 SDValue OpLHS, OpRHS;
4315 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
4316 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
4317 EVT VT = OpLHS.getValueType();
4318
4319 switch (OpNum) {
4320 default: llvm_unreachable("Unknown shuffle opcode!");
4321 case OP_VREV:
Tanya Lattner2a8eb722011-05-18 06:42:21 +00004322 // VREV divides the vector in half and swaps within the half.
Tanya Lattnerdb282472011-05-18 21:44:54 +00004323 if (VT.getVectorElementType() == MVT::i32 ||
4324 VT.getVectorElementType() == MVT::f32)
Tanya Lattner2a8eb722011-05-18 06:42:21 +00004325 return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS);
4326 // vrev <4 x i16> -> VREV32
4327 if (VT.getVectorElementType() == MVT::i16)
4328 return DAG.getNode(ARMISD::VREV32, dl, VT, OpLHS);
4329 // vrev <4 x i8> -> VREV16
4330 assert(VT.getVectorElementType() == MVT::i8);
4331 return DAG.getNode(ARMISD::VREV16, dl, VT, OpLHS);
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004332 case OP_VDUP0:
4333 case OP_VDUP1:
4334 case OP_VDUP2:
4335 case OP_VDUP3:
4336 return DAG.getNode(ARMISD::VDUPLANE, dl, VT,
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00004337 OpLHS, DAG.getConstant(OpNum-OP_VDUP0, MVT::i32));
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004338 case OP_VEXT1:
4339 case OP_VEXT2:
4340 case OP_VEXT3:
4341 return DAG.getNode(ARMISD::VEXT, dl, VT,
4342 OpLHS, OpRHS,
4343 DAG.getConstant(OpNum-OP_VEXT1+1, MVT::i32));
4344 case OP_VUZPL:
4345 case OP_VUZPR:
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00004346 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004347 OpLHS, OpRHS).getValue(OpNum-OP_VUZPL);
4348 case OP_VZIPL:
4349 case OP_VZIPR:
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00004350 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004351 OpLHS, OpRHS).getValue(OpNum-OP_VZIPL);
4352 case OP_VTRNL:
4353 case OP_VTRNR:
Anton Korobeynikov051cfd62009-08-21 12:41:42 +00004354 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
4355 OpLHS, OpRHS).getValue(OpNum-OP_VTRNL);
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004356 }
4357}
4358
Bill Wendling69a05a72011-03-14 23:02:38 +00004359static SDValue LowerVECTOR_SHUFFLEv8i8(SDValue Op,
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004360 ArrayRef<int> ShuffleMask,
Bill Wendling69a05a72011-03-14 23:02:38 +00004361 SelectionDAG &DAG) {
4362 // Check to see if we can use the VTBL instruction.
4363 SDValue V1 = Op.getOperand(0);
4364 SDValue V2 = Op.getOperand(1);
4365 DebugLoc DL = Op.getDebugLoc();
4366
4367 SmallVector<SDValue, 8> VTBLMask;
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004368 for (ArrayRef<int>::iterator
Bill Wendling69a05a72011-03-14 23:02:38 +00004369 I = ShuffleMask.begin(), E = ShuffleMask.end(); I != E; ++I)
4370 VTBLMask.push_back(DAG.getConstant(*I, MVT::i32));
4371
4372 if (V2.getNode()->getOpcode() == ISD::UNDEF)
4373 return DAG.getNode(ARMISD::VTBL1, DL, MVT::v8i8, V1,
4374 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8,
4375 &VTBLMask[0], 8));
Bill Wendlinga24cb402011-03-15 20:47:26 +00004376
Owen Anderson76706012011-04-05 21:48:57 +00004377 return DAG.getNode(ARMISD::VTBL2, DL, MVT::v8i8, V1, V2,
Bill Wendlinga24cb402011-03-15 20:47:26 +00004378 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8,
4379 &VTBLMask[0], 8));
Bill Wendling69a05a72011-03-14 23:02:38 +00004380}
4381
Bob Wilson5bafff32009-06-22 23:27:02 +00004382static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004383 SDValue V1 = Op.getOperand(0);
4384 SDValue V2 = Op.getOperand(1);
Bob Wilsond8e17572009-08-12 22:31:50 +00004385 DebugLoc dl = Op.getDebugLoc();
4386 EVT VT = Op.getValueType();
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004387 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
Bob Wilsond8e17572009-08-12 22:31:50 +00004388
Bob Wilson28865062009-08-13 02:13:04 +00004389 // Convert shuffles that are directly supported on NEON to target-specific
4390 // DAG nodes, instead of keeping them as shuffles and matching them again
4391 // during code selection. This is more efficient and avoids the possibility
4392 // of inconsistencies between legalization and selection.
Bob Wilsonbfcbb502009-08-13 06:01:30 +00004393 // FIXME: floating-point vectors should be canonicalized to integer vectors
4394 // of the same time so that they get CSEd properly.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004395 ArrayRef<int> ShuffleMask = SVN->getMask();
Anton Korobeynikovd0ac2342009-08-21 12:40:07 +00004396
Bob Wilson53dd2452010-06-07 23:53:38 +00004397 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4398 if (EltSize <= 32) {
4399 if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) {
4400 int Lane = SVN->getSplatIndex();
4401 // If this is undef splat, generate it via "just" vdup, if possible.
4402 if (Lane == -1) Lane = 0;
Anton Korobeynikov2ae0eec2009-11-02 00:12:06 +00004403
Dan Gohman65fd6562011-11-03 21:49:52 +00004404 // Test if V1 is a SCALAR_TO_VECTOR.
Bob Wilson53dd2452010-06-07 23:53:38 +00004405 if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4406 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
4407 }
Dan Gohman65fd6562011-11-03 21:49:52 +00004408 // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR
4409 // (and probably will turn into a SCALAR_TO_VECTOR once legalization
4410 // reaches it).
4411 if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR &&
4412 !isa<ConstantSDNode>(V1.getOperand(0))) {
4413 bool IsScalarToVector = true;
4414 for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i)
4415 if (V1.getOperand(i).getOpcode() != ISD::UNDEF) {
4416 IsScalarToVector = false;
4417 break;
4418 }
4419 if (IsScalarToVector)
4420 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
4421 }
Bob Wilson53dd2452010-06-07 23:53:38 +00004422 return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1,
4423 DAG.getConstant(Lane, MVT::i32));
Bob Wilsonc1d287b2009-08-14 05:13:08 +00004424 }
Bob Wilson53dd2452010-06-07 23:53:38 +00004425
4426 bool ReverseVEXT;
4427 unsigned Imm;
4428 if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) {
4429 if (ReverseVEXT)
4430 std::swap(V1, V2);
4431 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2,
4432 DAG.getConstant(Imm, MVT::i32));
4433 }
4434
4435 if (isVREVMask(ShuffleMask, VT, 64))
4436 return DAG.getNode(ARMISD::VREV64, dl, VT, V1);
4437 if (isVREVMask(ShuffleMask, VT, 32))
4438 return DAG.getNode(ARMISD::VREV32, dl, VT, V1);
4439 if (isVREVMask(ShuffleMask, VT, 16))
4440 return DAG.getNode(ARMISD::VREV16, dl, VT, V1);
4441
4442 // Check for Neon shuffles that modify both input vectors in place.
4443 // If both results are used, i.e., if there are two shuffles with the same
4444 // source operands and with masks corresponding to both results of one of
4445 // these operations, DAG memoization will ensure that a single node is
4446 // used for both shuffles.
4447 unsigned WhichResult;
4448 if (isVTRNMask(ShuffleMask, VT, WhichResult))
4449 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
4450 V1, V2).getValue(WhichResult);
4451 if (isVUZPMask(ShuffleMask, VT, WhichResult))
4452 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
4453 V1, V2).getValue(WhichResult);
4454 if (isVZIPMask(ShuffleMask, VT, WhichResult))
4455 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
4456 V1, V2).getValue(WhichResult);
4457
4458 if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult))
4459 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
4460 V1, V1).getValue(WhichResult);
4461 if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult))
4462 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
4463 V1, V1).getValue(WhichResult);
4464 if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult))
4465 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
4466 V1, V1).getValue(WhichResult);
Bob Wilson0ce37102009-08-14 05:08:32 +00004467 }
Bob Wilsonde95c1b82009-08-19 17:03:43 +00004468
Bob Wilsonc692cb72009-08-21 20:54:19 +00004469 // If the shuffle is not directly supported and it has 4 elements, use
4470 // the PerfectShuffle-generated table to synthesize it from other shuffles.
Bob Wilsonbe751cf2010-05-22 00:23:12 +00004471 unsigned NumElts = VT.getVectorNumElements();
4472 if (NumElts == 4) {
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004473 unsigned PFIndexes[4];
4474 for (unsigned i = 0; i != 4; ++i) {
4475 if (ShuffleMask[i] < 0)
4476 PFIndexes[i] = 8;
4477 else
4478 PFIndexes[i] = ShuffleMask[i];
4479 }
4480
4481 // Compute the index in the perfect shuffle table.
4482 unsigned PFTableIndex =
4483 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Anton Korobeynikov1c8e5812009-08-21 12:41:24 +00004484 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
4485 unsigned Cost = (PFEntry >> 30);
4486
4487 if (Cost <= 4)
4488 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
4489 }
Bob Wilsond8e17572009-08-12 22:31:50 +00004490
Bob Wilson40cbe7d2010-06-04 00:04:02 +00004491 // Implement shuffles with 32- or 64-bit elements as ARMISD::BUILD_VECTORs.
Bob Wilsonbe751cf2010-05-22 00:23:12 +00004492 if (EltSize >= 32) {
4493 // Do the expansion with floating-point types, since that is what the VFP
4494 // registers are defined to use, and since i64 is not legal.
4495 EVT EltVT = EVT::getFloatingPointVT(EltSize);
4496 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004497 V1 = DAG.getNode(ISD::BITCAST, dl, VecVT, V1);
4498 V2 = DAG.getNode(ISD::BITCAST, dl, VecVT, V2);
Bob Wilson40cbe7d2010-06-04 00:04:02 +00004499 SmallVector<SDValue, 8> Ops;
Bob Wilsonbe751cf2010-05-22 00:23:12 +00004500 for (unsigned i = 0; i < NumElts; ++i) {
Bob Wilson63b88452010-05-20 18:39:53 +00004501 if (ShuffleMask[i] < 0)
Bob Wilson40cbe7d2010-06-04 00:04:02 +00004502 Ops.push_back(DAG.getUNDEF(EltVT));
4503 else
4504 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
4505 ShuffleMask[i] < (int)NumElts ? V1 : V2,
4506 DAG.getConstant(ShuffleMask[i] & (NumElts-1),
4507 MVT::i32)));
Bob Wilson63b88452010-05-20 18:39:53 +00004508 }
Bob Wilson40cbe7d2010-06-04 00:04:02 +00004509 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, &Ops[0],NumElts);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004510 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
Bob Wilson63b88452010-05-20 18:39:53 +00004511 }
4512
Bill Wendling69a05a72011-03-14 23:02:38 +00004513 if (VT == MVT::v8i8) {
4514 SDValue NewOp = LowerVECTOR_SHUFFLEv8i8(Op, ShuffleMask, DAG);
4515 if (NewOp.getNode())
4516 return NewOp;
4517 }
4518
Bob Wilson22cac0d2009-08-14 05:16:33 +00004519 return SDValue();
Bob Wilson5bafff32009-06-22 23:27:02 +00004520}
4521
Eli Friedman5c89cb82011-10-24 23:08:52 +00004522static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
4523 // INSERT_VECTOR_ELT is legal only for immediate indexes.
4524 SDValue Lane = Op.getOperand(2);
4525 if (!isa<ConstantSDNode>(Lane))
4526 return SDValue();
4527
4528 return Op;
4529}
4530
Bob Wilson5bafff32009-06-22 23:27:02 +00004531static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Bob Wilson3468c2e2010-11-03 16:24:50 +00004532 // EXTRACT_VECTOR_ELT is legal only for immediate indexes.
Bob Wilson5bafff32009-06-22 23:27:02 +00004533 SDValue Lane = Op.getOperand(1);
Bob Wilson3468c2e2010-11-03 16:24:50 +00004534 if (!isa<ConstantSDNode>(Lane))
4535 return SDValue();
4536
4537 SDValue Vec = Op.getOperand(0);
4538 if (Op.getValueType() == MVT::i32 &&
4539 Vec.getValueType().getVectorElementType().getSizeInBits() < 32) {
4540 DebugLoc dl = Op.getDebugLoc();
4541 return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane);
4542 }
4543
4544 return Op;
Bob Wilson5bafff32009-06-22 23:27:02 +00004545}
4546
Bob Wilsona6d65862009-08-03 20:36:38 +00004547static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
4548 // The only time a CONCAT_VECTORS operation can have legal types is when
4549 // two 64-bit vectors are concatenated to a 128-bit vector.
4550 assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 &&
4551 "unexpected CONCAT_VECTORS");
4552 DebugLoc dl = Op.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00004553 SDValue Val = DAG.getUNDEF(MVT::v2f64);
Bob Wilsona6d65862009-08-03 20:36:38 +00004554 SDValue Op0 = Op.getOperand(0);
4555 SDValue Op1 = Op.getOperand(1);
4556 if (Op0.getOpcode() != ISD::UNDEF)
Owen Anderson825b72b2009-08-11 20:47:22 +00004557 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004558 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op0),
Bob Wilsona6d65862009-08-03 20:36:38 +00004559 DAG.getIntPtrConstant(0));
4560 if (Op1.getOpcode() != ISD::UNDEF)
Owen Anderson825b72b2009-08-11 20:47:22 +00004561 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004562 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op1),
Bob Wilsona6d65862009-08-03 20:36:38 +00004563 DAG.getIntPtrConstant(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004564 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Val);
Bob Wilson5bafff32009-06-22 23:27:02 +00004565}
4566
Bob Wilson626613d2010-11-23 19:38:38 +00004567/// isExtendedBUILD_VECTOR - Check if N is a constant BUILD_VECTOR where each
4568/// element has been zero/sign-extended, depending on the isSigned parameter,
4569/// from an integer type half its size.
4570static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG,
4571 bool isSigned) {
4572 // A v2i64 BUILD_VECTOR will have been legalized to a BITCAST from v4i32.
4573 EVT VT = N->getValueType(0);
4574 if (VT == MVT::v2i64 && N->getOpcode() == ISD::BITCAST) {
4575 SDNode *BVN = N->getOperand(0).getNode();
4576 if (BVN->getValueType(0) != MVT::v4i32 ||
4577 BVN->getOpcode() != ISD::BUILD_VECTOR)
4578 return false;
4579 unsigned LoElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0;
4580 unsigned HiElt = 1 - LoElt;
4581 ConstantSDNode *Lo0 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt));
4582 ConstantSDNode *Hi0 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt));
4583 ConstantSDNode *Lo1 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt+2));
4584 ConstantSDNode *Hi1 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt+2));
4585 if (!Lo0 || !Hi0 || !Lo1 || !Hi1)
4586 return false;
4587 if (isSigned) {
4588 if (Hi0->getSExtValue() == Lo0->getSExtValue() >> 32 &&
4589 Hi1->getSExtValue() == Lo1->getSExtValue() >> 32)
4590 return true;
4591 } else {
4592 if (Hi0->isNullValue() && Hi1->isNullValue())
4593 return true;
4594 }
4595 return false;
4596 }
4597
4598 if (N->getOpcode() != ISD::BUILD_VECTOR)
4599 return false;
4600
4601 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
4602 SDNode *Elt = N->getOperand(i).getNode();
4603 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) {
4604 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4605 unsigned HalfSize = EltSize / 2;
4606 if (isSigned) {
Bob Wilson9d45de22011-10-18 18:46:49 +00004607 if (!isIntN(HalfSize, C->getSExtValue()))
Bob Wilson626613d2010-11-23 19:38:38 +00004608 return false;
4609 } else {
Bob Wilson9d45de22011-10-18 18:46:49 +00004610 if (!isUIntN(HalfSize, C->getZExtValue()))
Bob Wilson626613d2010-11-23 19:38:38 +00004611 return false;
4612 }
4613 continue;
4614 }
4615 return false;
4616 }
4617
4618 return true;
4619}
4620
4621/// isSignExtended - Check if a node is a vector value that is sign-extended
4622/// or a constant BUILD_VECTOR with sign-extended elements.
4623static bool isSignExtended(SDNode *N, SelectionDAG &DAG) {
4624 if (N->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N))
4625 return true;
4626 if (isExtendedBUILD_VECTOR(N, DAG, true))
4627 return true;
4628 return false;
4629}
4630
4631/// isZeroExtended - Check if a node is a vector value that is zero-extended
4632/// or a constant BUILD_VECTOR with zero-extended elements.
4633static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) {
4634 if (N->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N))
4635 return true;
4636 if (isExtendedBUILD_VECTOR(N, DAG, false))
4637 return true;
4638 return false;
4639}
4640
4641/// SkipExtension - For a node that is a SIGN_EXTEND, ZERO_EXTEND, extending
4642/// load, or BUILD_VECTOR with extended elements, return the unextended value.
Bob Wilsond0b69cf2010-09-01 23:50:19 +00004643static SDValue SkipExtension(SDNode *N, SelectionDAG &DAG) {
4644 if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND)
4645 return N->getOperand(0);
Bob Wilson626613d2010-11-23 19:38:38 +00004646 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
4647 return DAG.getLoad(LD->getMemoryVT(), N->getDebugLoc(), LD->getChain(),
4648 LD->getBasePtr(), LD->getPointerInfo(), LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004649 LD->isNonTemporal(), LD->isInvariant(),
4650 LD->getAlignment());
Bob Wilson626613d2010-11-23 19:38:38 +00004651 // Otherwise, the value must be a BUILD_VECTOR. For v2i64, it will
4652 // have been legalized as a BITCAST from v4i32.
4653 if (N->getOpcode() == ISD::BITCAST) {
4654 SDNode *BVN = N->getOperand(0).getNode();
4655 assert(BVN->getOpcode() == ISD::BUILD_VECTOR &&
4656 BVN->getValueType(0) == MVT::v4i32 && "expected v4i32 BUILD_VECTOR");
4657 unsigned LowElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0;
4658 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), MVT::v2i32,
4659 BVN->getOperand(LowElt), BVN->getOperand(LowElt+2));
4660 }
4661 // Construct a new BUILD_VECTOR with elements truncated to half the size.
4662 assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR");
4663 EVT VT = N->getValueType(0);
4664 unsigned EltSize = VT.getVectorElementType().getSizeInBits() / 2;
4665 unsigned NumElts = VT.getVectorNumElements();
4666 MVT TruncVT = MVT::getIntegerVT(EltSize);
4667 SmallVector<SDValue, 8> Ops;
4668 for (unsigned i = 0; i != NumElts; ++i) {
4669 ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i));
4670 const APInt &CInt = C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004671 Ops.push_back(DAG.getConstant(CInt.trunc(EltSize), TruncVT));
Bob Wilson626613d2010-11-23 19:38:38 +00004672 }
4673 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
4674 MVT::getVectorVT(TruncVT, NumElts), Ops.data(), NumElts);
Bob Wilsond0b69cf2010-09-01 23:50:19 +00004675}
4676
Evan Cheng78fe9ab2011-03-29 01:56:09 +00004677static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) {
4678 unsigned Opcode = N->getOpcode();
4679 if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
4680 SDNode *N0 = N->getOperand(0).getNode();
4681 SDNode *N1 = N->getOperand(1).getNode();
4682 return N0->hasOneUse() && N1->hasOneUse() &&
4683 isSignExtended(N0, DAG) && isSignExtended(N1, DAG);
4684 }
4685 return false;
4686}
4687
4688static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) {
4689 unsigned Opcode = N->getOpcode();
4690 if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
4691 SDNode *N0 = N->getOperand(0).getNode();
4692 SDNode *N1 = N->getOperand(1).getNode();
4693 return N0->hasOneUse() && N1->hasOneUse() &&
4694 isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG);
4695 }
4696 return false;
4697}
4698
Bob Wilsond0b69cf2010-09-01 23:50:19 +00004699static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) {
4700 // Multiplications are only custom-lowered for 128-bit vectors so that
4701 // VMULL can be detected. Otherwise v2i64 multiplications are not legal.
4702 EVT VT = Op.getValueType();
4703 assert(VT.is128BitVector() && "unexpected type for custom-lowering ISD::MUL");
4704 SDNode *N0 = Op.getOperand(0).getNode();
4705 SDNode *N1 = Op.getOperand(1).getNode();
4706 unsigned NewOpc = 0;
Evan Cheng78fe9ab2011-03-29 01:56:09 +00004707 bool isMLA = false;
4708 bool isN0SExt = isSignExtended(N0, DAG);
4709 bool isN1SExt = isSignExtended(N1, DAG);
4710 if (isN0SExt && isN1SExt)
Bob Wilsond0b69cf2010-09-01 23:50:19 +00004711 NewOpc = ARMISD::VMULLs;
Evan Cheng78fe9ab2011-03-29 01:56:09 +00004712 else {
4713 bool isN0ZExt = isZeroExtended(N0, DAG);
4714 bool isN1ZExt = isZeroExtended(N1, DAG);
4715 if (isN0ZExt && isN1ZExt)
4716 NewOpc = ARMISD::VMULLu;
4717 else if (isN1SExt || isN1ZExt) {
4718 // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these
4719 // into (s/zext A * s/zext C) + (s/zext B * s/zext C)
4720 if (isN1SExt && isAddSubSExt(N0, DAG)) {
4721 NewOpc = ARMISD::VMULLs;
4722 isMLA = true;
4723 } else if (isN1ZExt && isAddSubZExt(N0, DAG)) {
4724 NewOpc = ARMISD::VMULLu;
4725 isMLA = true;
4726 } else if (isN0ZExt && isAddSubZExt(N1, DAG)) {
4727 std::swap(N0, N1);
4728 NewOpc = ARMISD::VMULLu;
4729 isMLA = true;
4730 }
4731 }
4732
4733 if (!NewOpc) {
4734 if (VT == MVT::v2i64)
4735 // Fall through to expand this. It is not legal.
4736 return SDValue();
4737 else
4738 // Other vector multiplications are legal.
4739 return Op;
4740 }
4741 }
Bob Wilsond0b69cf2010-09-01 23:50:19 +00004742
4743 // Legalize to a VMULL instruction.
4744 DebugLoc DL = Op.getDebugLoc();
Evan Cheng78fe9ab2011-03-29 01:56:09 +00004745 SDValue Op0;
Bob Wilsond0b69cf2010-09-01 23:50:19 +00004746 SDValue Op1 = SkipExtension(N1, DAG);
Evan Cheng78fe9ab2011-03-29 01:56:09 +00004747 if (!isMLA) {
4748 Op0 = SkipExtension(N0, DAG);
4749 assert(Op0.getValueType().is64BitVector() &&
4750 Op1.getValueType().is64BitVector() &&
4751 "unexpected types for extended operands to VMULL");
4752 return DAG.getNode(NewOpc, DL, VT, Op0, Op1);
4753 }
Bob Wilsond0b69cf2010-09-01 23:50:19 +00004754
Evan Cheng78fe9ab2011-03-29 01:56:09 +00004755 // Optimizing (zext A + zext B) * C, to (VMULL A, C) + (VMULL B, C) during
4756 // isel lowering to take advantage of no-stall back to back vmul + vmla.
4757 // vmull q0, d4, d6
4758 // vmlal q0, d5, d6
4759 // is faster than
4760 // vaddl q0, d4, d5
4761 // vmovl q1, d6
4762 // vmul q0, q0, q1
4763 SDValue N00 = SkipExtension(N0->getOperand(0).getNode(), DAG);
4764 SDValue N01 = SkipExtension(N0->getOperand(1).getNode(), DAG);
4765 EVT Op1VT = Op1.getValueType();
4766 return DAG.getNode(N0->getOpcode(), DL, VT,
4767 DAG.getNode(NewOpc, DL, VT,
4768 DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1),
4769 DAG.getNode(NewOpc, DL, VT,
4770 DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1));
Bob Wilsond0b69cf2010-09-01 23:50:19 +00004771}
4772
Owen Anderson76706012011-04-05 21:48:57 +00004773static SDValue
Nate Begeman7973f352011-02-11 20:53:29 +00004774LowerSDIV_v4i8(SDValue X, SDValue Y, DebugLoc dl, SelectionDAG &DAG) {
4775 // Convert to float
4776 // float4 xf = vcvt_f32_s32(vmovl_s16(a.lo));
4777 // float4 yf = vcvt_f32_s32(vmovl_s16(b.lo));
4778 X = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, X);
4779 Y = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, Y);
4780 X = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, X);
4781 Y = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, Y);
4782 // Get reciprocal estimate.
4783 // float4 recip = vrecpeq_f32(yf);
Owen Anderson76706012011-04-05 21:48:57 +00004784 Y = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Nate Begeman7973f352011-02-11 20:53:29 +00004785 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), Y);
4786 // Because char has a smaller range than uchar, we can actually get away
4787 // without any newton steps. This requires that we use a weird bias
4788 // of 0xb000, however (again, this has been exhaustively tested).
4789 // float4 result = as_float4(as_int4(xf*recip) + 0xb000);
4790 X = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, X, Y);
4791 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, X);
4792 Y = DAG.getConstant(0xb000, MVT::i32);
4793 Y = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Y, Y, Y, Y);
4794 X = DAG.getNode(ISD::ADD, dl, MVT::v4i32, X, Y);
4795 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, X);
4796 // Convert back to short.
4797 X = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, X);
4798 X = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, X);
4799 return X;
4800}
4801
Owen Anderson76706012011-04-05 21:48:57 +00004802static SDValue
Nate Begeman7973f352011-02-11 20:53:29 +00004803LowerSDIV_v4i16(SDValue N0, SDValue N1, DebugLoc dl, SelectionDAG &DAG) {
4804 SDValue N2;
4805 // Convert to float.
4806 // float4 yf = vcvt_f32_s32(vmovl_s16(y));
4807 // float4 xf = vcvt_f32_s32(vmovl_s16(x));
4808 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N0);
4809 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N1);
4810 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
4811 N1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
Owen Anderson76706012011-04-05 21:48:57 +00004812
Nate Begeman7973f352011-02-11 20:53:29 +00004813 // Use reciprocal estimate and one refinement step.
4814 // float4 recip = vrecpeq_f32(yf);
4815 // recip *= vrecpsq_f32(yf, recip);
Owen Anderson76706012011-04-05 21:48:57 +00004816 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Nate Begeman7973f352011-02-11 20:53:29 +00004817 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), N1);
Owen Anderson76706012011-04-05 21:48:57 +00004818 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Nate Begeman7973f352011-02-11 20:53:29 +00004819 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
4820 N1, N2);
4821 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
4822 // Because short has a smaller range than ushort, we can actually get away
4823 // with only a single newton step. This requires that we use a weird bias
4824 // of 89, however (again, this has been exhaustively tested).
Mon P Wang28e2b1d2011-05-19 04:15:07 +00004825 // float4 result = as_float4(as_int4(xf*recip) + 0x89);
Nate Begeman7973f352011-02-11 20:53:29 +00004826 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
4827 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
Mon P Wang28e2b1d2011-05-19 04:15:07 +00004828 N1 = DAG.getConstant(0x89, MVT::i32);
Nate Begeman7973f352011-02-11 20:53:29 +00004829 N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
4830 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
4831 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
4832 // Convert back to integer and return.
4833 // return vmovn_s32(vcvt_s32_f32(result));
4834 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
4835 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
4836 return N0;
4837}
4838
4839static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
4840 EVT VT = Op.getValueType();
4841 assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
4842 "unexpected type for custom-lowering ISD::SDIV");
4843
4844 DebugLoc dl = Op.getDebugLoc();
4845 SDValue N0 = Op.getOperand(0);
4846 SDValue N1 = Op.getOperand(1);
4847 SDValue N2, N3;
Owen Anderson76706012011-04-05 21:48:57 +00004848
Nate Begeman7973f352011-02-11 20:53:29 +00004849 if (VT == MVT::v8i8) {
4850 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N0);
4851 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N1);
Owen Anderson76706012011-04-05 21:48:57 +00004852
Nate Begeman7973f352011-02-11 20:53:29 +00004853 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
4854 DAG.getIntPtrConstant(4));
4855 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
Owen Anderson76706012011-04-05 21:48:57 +00004856 DAG.getIntPtrConstant(4));
Nate Begeman7973f352011-02-11 20:53:29 +00004857 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
4858 DAG.getIntPtrConstant(0));
4859 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
4860 DAG.getIntPtrConstant(0));
4861
4862 N0 = LowerSDIV_v4i8(N0, N1, dl, DAG); // v4i16
4863 N2 = LowerSDIV_v4i8(N2, N3, dl, DAG); // v4i16
4864
4865 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
4866 N0 = LowerCONCAT_VECTORS(N0, DAG);
Owen Anderson76706012011-04-05 21:48:57 +00004867
Nate Begeman7973f352011-02-11 20:53:29 +00004868 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v8i8, N0);
4869 return N0;
4870 }
4871 return LowerSDIV_v4i16(N0, N1, dl, DAG);
4872}
4873
4874static SDValue LowerUDIV(SDValue Op, SelectionDAG &DAG) {
4875 EVT VT = Op.getValueType();
4876 assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
4877 "unexpected type for custom-lowering ISD::UDIV");
4878
4879 DebugLoc dl = Op.getDebugLoc();
4880 SDValue N0 = Op.getOperand(0);
4881 SDValue N1 = Op.getOperand(1);
4882 SDValue N2, N3;
Owen Anderson76706012011-04-05 21:48:57 +00004883
Nate Begeman7973f352011-02-11 20:53:29 +00004884 if (VT == MVT::v8i8) {
4885 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N0);
4886 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N1);
Owen Anderson76706012011-04-05 21:48:57 +00004887
Nate Begeman7973f352011-02-11 20:53:29 +00004888 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
4889 DAG.getIntPtrConstant(4));
4890 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
Owen Anderson76706012011-04-05 21:48:57 +00004891 DAG.getIntPtrConstant(4));
Nate Begeman7973f352011-02-11 20:53:29 +00004892 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
4893 DAG.getIntPtrConstant(0));
4894 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
4895 DAG.getIntPtrConstant(0));
Owen Anderson76706012011-04-05 21:48:57 +00004896
Nate Begeman7973f352011-02-11 20:53:29 +00004897 N0 = LowerSDIV_v4i16(N0, N1, dl, DAG); // v4i16
4898 N2 = LowerSDIV_v4i16(N2, N3, dl, DAG); // v4i16
Owen Anderson76706012011-04-05 21:48:57 +00004899
Nate Begeman7973f352011-02-11 20:53:29 +00004900 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
4901 N0 = LowerCONCAT_VECTORS(N0, DAG);
Owen Anderson76706012011-04-05 21:48:57 +00004902
4903 N0 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v8i8,
Nate Begeman7973f352011-02-11 20:53:29 +00004904 DAG.getConstant(Intrinsic::arm_neon_vqmovnsu, MVT::i32),
4905 N0);
4906 return N0;
4907 }
Owen Anderson76706012011-04-05 21:48:57 +00004908
Nate Begeman7973f352011-02-11 20:53:29 +00004909 // v4i16 sdiv ... Convert to float.
4910 // float4 yf = vcvt_f32_s32(vmovl_u16(y));
4911 // float4 xf = vcvt_f32_s32(vmovl_u16(x));
4912 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N0);
4913 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N1);
4914 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
Mon P Wang28e2b1d2011-05-19 04:15:07 +00004915 SDValue BN1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
Nate Begeman7973f352011-02-11 20:53:29 +00004916
4917 // Use reciprocal estimate and two refinement steps.
4918 // float4 recip = vrecpeq_f32(yf);
4919 // recip *= vrecpsq_f32(yf, recip);
4920 // recip *= vrecpsq_f32(yf, recip);
Owen Anderson76706012011-04-05 21:48:57 +00004921 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Mon P Wang28e2b1d2011-05-19 04:15:07 +00004922 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), BN1);
Owen Anderson76706012011-04-05 21:48:57 +00004923 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Nate Begeman7973f352011-02-11 20:53:29 +00004924 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
Mon P Wang28e2b1d2011-05-19 04:15:07 +00004925 BN1, N2);
Nate Begeman7973f352011-02-11 20:53:29 +00004926 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
Owen Anderson76706012011-04-05 21:48:57 +00004927 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Nate Begeman7973f352011-02-11 20:53:29 +00004928 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
Mon P Wang28e2b1d2011-05-19 04:15:07 +00004929 BN1, N2);
Nate Begeman7973f352011-02-11 20:53:29 +00004930 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
4931 // Simply multiplying by the reciprocal estimate can leave us a few ulps
4932 // too low, so we add 2 ulps (exhaustive testing shows that this is enough,
4933 // and that it will never cause us to return an answer too large).
Mon P Wang28e2b1d2011-05-19 04:15:07 +00004934 // float4 result = as_float4(as_int4(xf*recip) + 2);
Nate Begeman7973f352011-02-11 20:53:29 +00004935 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
4936 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
4937 N1 = DAG.getConstant(2, MVT::i32);
4938 N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
4939 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
4940 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
4941 // Convert back to integer and return.
4942 // return vmovn_u32(vcvt_s32_f32(result));
4943 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
4944 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
4945 return N0;
4946}
4947
Evan Cheng342e3162011-08-30 01:34:54 +00004948static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
4949 EVT VT = Op.getNode()->getValueType(0);
4950 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
4951
4952 unsigned Opc;
4953 bool ExtraOp = false;
4954 switch (Op.getOpcode()) {
4955 default: assert(0 && "Invalid code");
4956 case ISD::ADDC: Opc = ARMISD::ADDC; break;
4957 case ISD::ADDE: Opc = ARMISD::ADDE; ExtraOp = true; break;
4958 case ISD::SUBC: Opc = ARMISD::SUBC; break;
4959 case ISD::SUBE: Opc = ARMISD::SUBE; ExtraOp = true; break;
4960 }
4961
4962 if (!ExtraOp)
4963 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
4964 Op.getOperand(1));
4965 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
4966 Op.getOperand(1), Op.getOperand(2));
4967}
4968
Eli Friedman74bf18c2011-09-15 22:26:18 +00004969static SDValue LowerAtomicLoadStore(SDValue Op, SelectionDAG &DAG) {
Eli Friedman7cc15662011-09-15 22:18:49 +00004970 // Monotonic load/store is legal for all targets
4971 if (cast<AtomicSDNode>(Op)->getOrdering() <= Monotonic)
4972 return Op;
4973
4974 // Aquire/Release load/store is not legal for targets without a
4975 // dmb or equivalent available.
4976 return SDValue();
4977}
4978
4979
Eli Friedman2bdffe42011-08-31 00:31:29 +00004980static void
Eli Friedman4d3f3292011-08-31 17:52:22 +00004981ReplaceATOMIC_OP_64(SDNode *Node, SmallVectorImpl<SDValue>& Results,
4982 SelectionDAG &DAG, unsigned NewOp) {
Eli Friedman2bdffe42011-08-31 00:31:29 +00004983 DebugLoc dl = Node->getDebugLoc();
Duncan Sands17001ce2011-10-18 12:44:00 +00004984 assert (Node->getValueType(0) == MVT::i64 &&
4985 "Only know how to expand i64 atomics");
Eli Friedman2bdffe42011-08-31 00:31:29 +00004986
Eli Friedman4d3f3292011-08-31 17:52:22 +00004987 SmallVector<SDValue, 6> Ops;
4988 Ops.push_back(Node->getOperand(0)); // Chain
4989 Ops.push_back(Node->getOperand(1)); // Ptr
4990 // Low part of Val1
4991 Ops.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
4992 Node->getOperand(2), DAG.getIntPtrConstant(0)));
4993 // High part of Val1
4994 Ops.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
4995 Node->getOperand(2), DAG.getIntPtrConstant(1)));
Andrew Trick3af7a672011-09-20 03:06:13 +00004996 if (NewOp == ARMISD::ATOMCMPXCHG64_DAG) {
Eli Friedman4d3f3292011-08-31 17:52:22 +00004997 // High part of Val1
4998 Ops.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
4999 Node->getOperand(3), DAG.getIntPtrConstant(0)));
5000 // High part of Val2
5001 Ops.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
5002 Node->getOperand(3), DAG.getIntPtrConstant(1)));
5003 }
Eli Friedman2bdffe42011-08-31 00:31:29 +00005004 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
5005 SDValue Result =
Eli Friedman4d3f3292011-08-31 17:52:22 +00005006 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops.data(), Ops.size(), MVT::i64,
Eli Friedman2bdffe42011-08-31 00:31:29 +00005007 cast<MemSDNode>(Node)->getMemOperand());
Eli Friedman4d3f3292011-08-31 17:52:22 +00005008 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1) };
Eli Friedman2bdffe42011-08-31 00:31:29 +00005009 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
5010 Results.push_back(Result.getValue(2));
5011}
5012
Dan Gohmand858e902010-04-17 15:26:15 +00005013SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Chenga8e29892007-01-19 07:51:42 +00005014 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005015 default: llvm_unreachable("Don't know how to custom lower this!");
Evan Chenga8e29892007-01-19 07:51:42 +00005016 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilsonddb16df2009-10-30 05:45:42 +00005017 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00005018 case ISD::GlobalAddress:
5019 return Subtarget->isTargetDarwin() ? LowerGlobalAddressDarwin(Op, DAG) :
5020 LowerGlobalAddressELF(Op, DAG);
Bill Wendling69a05a72011-03-14 23:02:38 +00005021 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendlingde2b1512010-08-11 08:43:16 +00005022 case ISD::SELECT: return LowerSELECT(Op, DAG);
Evan Cheng06b53c02009-11-12 07:13:11 +00005023 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
5024 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00005025 case ISD::BR_JT: return LowerBR_JT(Op, DAG);
Dan Gohman1e93df62010-04-17 14:41:14 +00005026 case ISD::VASTART: return LowerVASTART(Op, DAG);
Jim Grosbach7c03dbd2009-12-14 21:24:16 +00005027 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op, DAG, Subtarget);
Eli Friedman14648462011-07-27 22:21:52 +00005028 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG, Subtarget);
Evan Chengdfed19f2010-11-03 06:34:55 +00005029 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG, Subtarget);
Bob Wilson76a312b2010-03-19 22:51:32 +00005030 case ISD::SINT_TO_FP:
5031 case ISD::UINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
5032 case ISD::FP_TO_SINT:
5033 case ISD::FP_TO_UINT: return LowerFP_TO_INT(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00005034 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng2457f2c2010-05-22 01:47:14 +00005035 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Jim Grosbach0e0da732009-05-12 23:59:14 +00005036 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00005037 case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
Jim Grosbach23ff7cf2010-05-26 20:22:18 +00005038 case ISD::EH_SJLJ_SETJMP: return LowerEH_SJLJ_SETJMP(Op, DAG);
Jim Grosbach5eb19512010-05-22 01:06:18 +00005039 case ISD::EH_SJLJ_LONGJMP: return LowerEH_SJLJ_LONGJMP(Op, DAG);
Jim Grosbacha87ded22010-02-08 23:22:00 +00005040 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG,
5041 Subtarget);
Evan Cheng21a61792011-03-14 18:02:30 +00005042 case ISD::BITCAST: return ExpandBITCAST(Op.getNode(), DAG);
Bob Wilson5bafff32009-06-22 23:27:02 +00005043 case ISD::SHL:
Chris Lattner27a6c732007-11-24 07:07:01 +00005044 case ISD::SRL:
Bob Wilson5bafff32009-06-22 23:27:02 +00005045 case ISD::SRA: return LowerShift(Op.getNode(), DAG, Subtarget);
Evan Cheng06b53c02009-11-12 07:13:11 +00005046 case ISD::SHL_PARTS: return LowerShiftLeftParts(Op, DAG);
Jim Grosbachbcf2f2c2009-10-31 21:42:19 +00005047 case ISD::SRL_PARTS:
Evan Cheng06b53c02009-11-12 07:13:11 +00005048 case ISD::SRA_PARTS: return LowerShiftRightParts(Op, DAG);
Jim Grosbach3482c802010-01-18 19:58:49 +00005049 case ISD::CTTZ: return LowerCTTZ(Op.getNode(), DAG, Subtarget);
Duncan Sands28b77e92011-09-06 19:07:46 +00005050 case ISD::SETCC: return LowerVSETCC(Op, DAG);
Dale Johannesenf630c712010-07-29 20:10:08 +00005051 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG, Subtarget);
Bob Wilson5bafff32009-06-22 23:27:02 +00005052 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
Eli Friedman5c89cb82011-10-24 23:08:52 +00005053 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Bob Wilson5bafff32009-06-22 23:27:02 +00005054 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
Bob Wilsona6d65862009-08-03 20:36:38 +00005055 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Bob Wilsonb31a11b2010-08-20 04:54:02 +00005056 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Bob Wilsond0b69cf2010-09-01 23:50:19 +00005057 case ISD::MUL: return LowerMUL(Op, DAG);
Nate Begeman7973f352011-02-11 20:53:29 +00005058 case ISD::SDIV: return LowerSDIV(Op, DAG);
5059 case ISD::UDIV: return LowerUDIV(Op, DAG);
Evan Cheng342e3162011-08-30 01:34:54 +00005060 case ISD::ADDC:
5061 case ISD::ADDE:
5062 case ISD::SUBC:
5063 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Eli Friedman7cc15662011-09-15 22:18:49 +00005064 case ISD::ATOMIC_LOAD:
Eli Friedman74bf18c2011-09-15 22:26:18 +00005065 case ISD::ATOMIC_STORE: return LowerAtomicLoadStore(Op, DAG);
Evan Chenga8e29892007-01-19 07:51:42 +00005066 }
Evan Chenga8e29892007-01-19 07:51:42 +00005067}
5068
Duncan Sands1607f052008-12-01 11:39:25 +00005069/// ReplaceNodeResults - Replace the results of node with an illegal result
5070/// type with new values built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00005071void ARMTargetLowering::ReplaceNodeResults(SDNode *N,
5072 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00005073 SelectionDAG &DAG) const {
Bob Wilson164cd8b2010-04-14 20:45:23 +00005074 SDValue Res;
Chris Lattner27a6c732007-11-24 07:07:01 +00005075 switch (N->getOpcode()) {
Duncan Sands1607f052008-12-01 11:39:25 +00005076 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00005077 llvm_unreachable("Don't know how to custom expand this!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005078 case ISD::BITCAST:
5079 Res = ExpandBITCAST(N, DAG);
Bob Wilson164cd8b2010-04-14 20:45:23 +00005080 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005081 case ISD::SRL:
Bob Wilson164cd8b2010-04-14 20:45:23 +00005082 case ISD::SRA:
Bob Wilsond5448bb2010-11-18 21:16:28 +00005083 Res = Expand64BitShift(N, DAG, Subtarget);
Bob Wilson164cd8b2010-04-14 20:45:23 +00005084 break;
Eli Friedman2bdffe42011-08-31 00:31:29 +00005085 case ISD::ATOMIC_LOAD_ADD:
Eli Friedman4d3f3292011-08-31 17:52:22 +00005086 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMADD64_DAG);
Eli Friedman2bdffe42011-08-31 00:31:29 +00005087 return;
5088 case ISD::ATOMIC_LOAD_AND:
Eli Friedman4d3f3292011-08-31 17:52:22 +00005089 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMAND64_DAG);
Eli Friedman2bdffe42011-08-31 00:31:29 +00005090 return;
5091 case ISD::ATOMIC_LOAD_NAND:
Eli Friedman4d3f3292011-08-31 17:52:22 +00005092 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMNAND64_DAG);
Eli Friedman2bdffe42011-08-31 00:31:29 +00005093 return;
5094 case ISD::ATOMIC_LOAD_OR:
Eli Friedman4d3f3292011-08-31 17:52:22 +00005095 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMOR64_DAG);
Eli Friedman2bdffe42011-08-31 00:31:29 +00005096 return;
5097 case ISD::ATOMIC_LOAD_SUB:
Eli Friedman4d3f3292011-08-31 17:52:22 +00005098 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMSUB64_DAG);
Eli Friedman2bdffe42011-08-31 00:31:29 +00005099 return;
5100 case ISD::ATOMIC_LOAD_XOR:
Eli Friedman4d3f3292011-08-31 17:52:22 +00005101 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMXOR64_DAG);
Eli Friedman2bdffe42011-08-31 00:31:29 +00005102 return;
5103 case ISD::ATOMIC_SWAP:
Eli Friedman4d3f3292011-08-31 17:52:22 +00005104 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMSWAP64_DAG);
Eli Friedman2bdffe42011-08-31 00:31:29 +00005105 return;
Eli Friedman4d3f3292011-08-31 17:52:22 +00005106 case ISD::ATOMIC_CMP_SWAP:
5107 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMCMPXCHG64_DAG);
5108 return;
Duncan Sands1607f052008-12-01 11:39:25 +00005109 }
Bob Wilson164cd8b2010-04-14 20:45:23 +00005110 if (Res.getNode())
5111 Results.push_back(Res);
Chris Lattner27a6c732007-11-24 07:07:01 +00005112}
Chris Lattner27a6c732007-11-24 07:07:01 +00005113
Evan Chenga8e29892007-01-19 07:51:42 +00005114//===----------------------------------------------------------------------===//
5115// ARM Scheduler Hooks
5116//===----------------------------------------------------------------------===//
5117
5118MachineBasicBlock *
Jim Grosbache801dc42009-12-12 01:40:06 +00005119ARMTargetLowering::EmitAtomicCmpSwap(MachineInstr *MI,
5120 MachineBasicBlock *BB,
5121 unsigned Size) const {
Jim Grosbach5278eb82009-12-11 01:42:04 +00005122 unsigned dest = MI->getOperand(0).getReg();
5123 unsigned ptr = MI->getOperand(1).getReg();
5124 unsigned oldval = MI->getOperand(2).getReg();
5125 unsigned newval = MI->getOperand(3).getReg();
Jim Grosbach5278eb82009-12-11 01:42:04 +00005126 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5127 DebugLoc dl = MI->getDebugLoc();
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005128 bool isThumb2 = Subtarget->isThumb2();
Jim Grosbach5278eb82009-12-11 01:42:04 +00005129
Cameron Zwarich7d336c02011-05-18 02:20:07 +00005130 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
5131 unsigned scratch =
Cameron Zwarich141ec632011-05-18 02:29:50 +00005132 MRI.createVirtualRegister(isThumb2 ? ARM::rGPRRegisterClass
Cameron Zwarich7d336c02011-05-18 02:20:07 +00005133 : ARM::GPRRegisterClass);
5134
5135 if (isThumb2) {
Cameron Zwarich141ec632011-05-18 02:29:50 +00005136 MRI.constrainRegClass(dest, ARM::rGPRRegisterClass);
5137 MRI.constrainRegClass(oldval, ARM::rGPRRegisterClass);
5138 MRI.constrainRegClass(newval, ARM::rGPRRegisterClass);
Cameron Zwarich7d336c02011-05-18 02:20:07 +00005139 }
5140
Jim Grosbach5278eb82009-12-11 01:42:04 +00005141 unsigned ldrOpc, strOpc;
5142 switch (Size) {
5143 default: llvm_unreachable("unsupported size for AtomicCmpSwap!");
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005144 case 1:
5145 ldrOpc = isThumb2 ? ARM::t2LDREXB : ARM::LDREXB;
Evan Chengaa261022011-02-07 18:50:47 +00005146 strOpc = isThumb2 ? ARM::t2STREXB : ARM::STREXB;
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005147 break;
5148 case 2:
5149 ldrOpc = isThumb2 ? ARM::t2LDREXH : ARM::LDREXH;
5150 strOpc = isThumb2 ? ARM::t2STREXH : ARM::STREXH;
5151 break;
5152 case 4:
5153 ldrOpc = isThumb2 ? ARM::t2LDREX : ARM::LDREX;
5154 strOpc = isThumb2 ? ARM::t2STREX : ARM::STREX;
5155 break;
Jim Grosbach5278eb82009-12-11 01:42:04 +00005156 }
5157
5158 MachineFunction *MF = BB->getParent();
5159 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5160 MachineFunction::iterator It = BB;
5161 ++It; // insert the new blocks after the current block
5162
5163 MachineBasicBlock *loop1MBB = MF->CreateMachineBasicBlock(LLVM_BB);
5164 MachineBasicBlock *loop2MBB = MF->CreateMachineBasicBlock(LLVM_BB);
5165 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
5166 MF->insert(It, loop1MBB);
5167 MF->insert(It, loop2MBB);
5168 MF->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00005169
5170 // Transfer the remainder of BB and its successor edges to exitMBB.
5171 exitMBB->splice(exitMBB->begin(), BB,
5172 llvm::next(MachineBasicBlock::iterator(MI)),
5173 BB->end());
5174 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Jim Grosbach5278eb82009-12-11 01:42:04 +00005175
5176 // thisMBB:
5177 // ...
5178 // fallthrough --> loop1MBB
5179 BB->addSuccessor(loop1MBB);
5180
5181 // loop1MBB:
5182 // ldrex dest, [ptr]
5183 // cmp dest, oldval
5184 // bne exitMBB
5185 BB = loop1MBB;
Jim Grosbachb6aed502011-09-09 18:37:27 +00005186 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr);
5187 if (ldrOpc == ARM::t2LDREX)
5188 MIB.addImm(0);
5189 AddDefaultPred(MIB);
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005190 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
Jim Grosbach5278eb82009-12-11 01:42:04 +00005191 .addReg(dest).addReg(oldval));
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005192 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
5193 .addMBB(exitMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
Jim Grosbach5278eb82009-12-11 01:42:04 +00005194 BB->addSuccessor(loop2MBB);
5195 BB->addSuccessor(exitMBB);
5196
5197 // loop2MBB:
5198 // strex scratch, newval, [ptr]
5199 // cmp scratch, #0
5200 // bne loop1MBB
5201 BB = loop2MBB;
Jim Grosbachb6aed502011-09-09 18:37:27 +00005202 MIB = BuildMI(BB, dl, TII->get(strOpc), scratch).addReg(newval).addReg(ptr);
5203 if (strOpc == ARM::t2STREX)
5204 MIB.addImm(0);
5205 AddDefaultPred(MIB);
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005206 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
Jim Grosbach5278eb82009-12-11 01:42:04 +00005207 .addReg(scratch).addImm(0));
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005208 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
5209 .addMBB(loop1MBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
Jim Grosbach5278eb82009-12-11 01:42:04 +00005210 BB->addSuccessor(loop1MBB);
5211 BB->addSuccessor(exitMBB);
5212
5213 // exitMBB:
5214 // ...
5215 BB = exitMBB;
Jim Grosbach5efaed32010-01-15 00:18:34 +00005216
Dan Gohman14152b42010-07-06 20:24:04 +00005217 MI->eraseFromParent(); // The instruction is gone now.
Jim Grosbach5efaed32010-01-15 00:18:34 +00005218
Jim Grosbach5278eb82009-12-11 01:42:04 +00005219 return BB;
5220}
5221
5222MachineBasicBlock *
Jim Grosbache801dc42009-12-12 01:40:06 +00005223ARMTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
5224 unsigned Size, unsigned BinOpcode) const {
Jim Grosbachc3c23542009-12-14 04:22:04 +00005225 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
5226 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5227
5228 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Jim Grosbach867bbbf2010-01-15 00:22:18 +00005229 MachineFunction *MF = BB->getParent();
Jim Grosbachc3c23542009-12-14 04:22:04 +00005230 MachineFunction::iterator It = BB;
5231 ++It;
5232
5233 unsigned dest = MI->getOperand(0).getReg();
5234 unsigned ptr = MI->getOperand(1).getReg();
5235 unsigned incr = MI->getOperand(2).getReg();
5236 DebugLoc dl = MI->getDebugLoc();
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005237 bool isThumb2 = Subtarget->isThumb2();
Cameron Zwarichde64aaf2011-05-27 23:54:00 +00005238
5239 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
5240 if (isThumb2) {
5241 MRI.constrainRegClass(dest, ARM::rGPRRegisterClass);
5242 MRI.constrainRegClass(ptr, ARM::rGPRRegisterClass);
5243 }
5244
Jim Grosbachc3c23542009-12-14 04:22:04 +00005245 unsigned ldrOpc, strOpc;
5246 switch (Size) {
5247 default: llvm_unreachable("unsupported size for AtomicCmpSwap!");
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005248 case 1:
5249 ldrOpc = isThumb2 ? ARM::t2LDREXB : ARM::LDREXB;
Jakob Stoklund Olesen15913c92010-01-13 19:54:39 +00005250 strOpc = isThumb2 ? ARM::t2STREXB : ARM::STREXB;
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005251 break;
5252 case 2:
5253 ldrOpc = isThumb2 ? ARM::t2LDREXH : ARM::LDREXH;
5254 strOpc = isThumb2 ? ARM::t2STREXH : ARM::STREXH;
5255 break;
5256 case 4:
5257 ldrOpc = isThumb2 ? ARM::t2LDREX : ARM::LDREX;
5258 strOpc = isThumb2 ? ARM::t2STREX : ARM::STREX;
5259 break;
Jim Grosbachc3c23542009-12-14 04:22:04 +00005260 }
5261
Jim Grosbach867bbbf2010-01-15 00:22:18 +00005262 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
5263 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
5264 MF->insert(It, loopMBB);
5265 MF->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00005266
5267 // Transfer the remainder of BB and its successor edges to exitMBB.
5268 exitMBB->splice(exitMBB->begin(), BB,
5269 llvm::next(MachineBasicBlock::iterator(MI)),
5270 BB->end());
5271 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Jim Grosbachc3c23542009-12-14 04:22:04 +00005272
Cameron Zwarichde64aaf2011-05-27 23:54:00 +00005273 TargetRegisterClass *TRC =
5274 isThumb2 ? ARM::tGPRRegisterClass : ARM::GPRRegisterClass;
5275 unsigned scratch = MRI.createVirtualRegister(TRC);
5276 unsigned scratch2 = (!BinOpcode) ? incr : MRI.createVirtualRegister(TRC);
Jim Grosbachc3c23542009-12-14 04:22:04 +00005277
5278 // thisMBB:
5279 // ...
5280 // fallthrough --> loopMBB
5281 BB->addSuccessor(loopMBB);
5282
5283 // loopMBB:
5284 // ldrex dest, ptr
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005285 // <binop> scratch2, dest, incr
5286 // strex scratch, scratch2, ptr
Jim Grosbachc3c23542009-12-14 04:22:04 +00005287 // cmp scratch, #0
5288 // bne- loopMBB
5289 // fallthrough --> exitMBB
5290 BB = loopMBB;
Jim Grosbachb6aed502011-09-09 18:37:27 +00005291 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr);
5292 if (ldrOpc == ARM::t2LDREX)
5293 MIB.addImm(0);
5294 AddDefaultPred(MIB);
Jim Grosbachc67b5562009-12-15 00:12:35 +00005295 if (BinOpcode) {
5296 // operand order needs to go the other way for NAND
5297 if (BinOpcode == ARM::BICrr || BinOpcode == ARM::t2BICrr)
5298 AddDefaultPred(BuildMI(BB, dl, TII->get(BinOpcode), scratch2).
5299 addReg(incr).addReg(dest)).addReg(0);
5300 else
5301 AddDefaultPred(BuildMI(BB, dl, TII->get(BinOpcode), scratch2).
5302 addReg(dest).addReg(incr)).addReg(0);
5303 }
Jim Grosbachc3c23542009-12-14 04:22:04 +00005304
Jim Grosbachb6aed502011-09-09 18:37:27 +00005305 MIB = BuildMI(BB, dl, TII->get(strOpc), scratch).addReg(scratch2).addReg(ptr);
5306 if (strOpc == ARM::t2STREX)
5307 MIB.addImm(0);
5308 AddDefaultPred(MIB);
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005309 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
Jim Grosbachc3c23542009-12-14 04:22:04 +00005310 .addReg(scratch).addImm(0));
Jim Grosbacha36c8f22009-12-14 20:14:59 +00005311 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
5312 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
Jim Grosbachc3c23542009-12-14 04:22:04 +00005313
5314 BB->addSuccessor(loopMBB);
5315 BB->addSuccessor(exitMBB);
5316
5317 // exitMBB:
5318 // ...
5319 BB = exitMBB;
Evan Cheng102ebf12009-12-21 19:53:39 +00005320
Dan Gohman14152b42010-07-06 20:24:04 +00005321 MI->eraseFromParent(); // The instruction is gone now.
Evan Cheng102ebf12009-12-21 19:53:39 +00005322
Jim Grosbachc3c23542009-12-14 04:22:04 +00005323 return BB;
Jim Grosbache801dc42009-12-12 01:40:06 +00005324}
5325
Jim Grosbachf7da8822011-04-26 19:44:18 +00005326MachineBasicBlock *
5327ARMTargetLowering::EmitAtomicBinaryMinMax(MachineInstr *MI,
5328 MachineBasicBlock *BB,
5329 unsigned Size,
5330 bool signExtend,
5331 ARMCC::CondCodes Cond) const {
5332 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5333
5334 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5335 MachineFunction *MF = BB->getParent();
5336 MachineFunction::iterator It = BB;
5337 ++It;
5338
5339 unsigned dest = MI->getOperand(0).getReg();
5340 unsigned ptr = MI->getOperand(1).getReg();
5341 unsigned incr = MI->getOperand(2).getReg();
5342 unsigned oldval = dest;
5343 DebugLoc dl = MI->getDebugLoc();
Jim Grosbachf7da8822011-04-26 19:44:18 +00005344 bool isThumb2 = Subtarget->isThumb2();
Cameron Zwarichde64aaf2011-05-27 23:54:00 +00005345
5346 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
5347 if (isThumb2) {
5348 MRI.constrainRegClass(dest, ARM::rGPRRegisterClass);
5349 MRI.constrainRegClass(ptr, ARM::rGPRRegisterClass);
5350 }
5351
Jim Grosbachf7da8822011-04-26 19:44:18 +00005352 unsigned ldrOpc, strOpc, extendOpc;
5353 switch (Size) {
5354 default: llvm_unreachable("unsupported size for AtomicCmpSwap!");
5355 case 1:
5356 ldrOpc = isThumb2 ? ARM::t2LDREXB : ARM::LDREXB;
5357 strOpc = isThumb2 ? ARM::t2STREXB : ARM::STREXB;
Jim Grosbachc5a8c862011-07-27 16:47:19 +00005358 extendOpc = isThumb2 ? ARM::t2SXTB : ARM::SXTB;
Jim Grosbachf7da8822011-04-26 19:44:18 +00005359 break;
5360 case 2:
5361 ldrOpc = isThumb2 ? ARM::t2LDREXH : ARM::LDREXH;
5362 strOpc = isThumb2 ? ARM::t2STREXH : ARM::STREXH;
Jim Grosbachc5a8c862011-07-27 16:47:19 +00005363 extendOpc = isThumb2 ? ARM::t2SXTH : ARM::SXTH;
Jim Grosbachf7da8822011-04-26 19:44:18 +00005364 break;
5365 case 4:
5366 ldrOpc = isThumb2 ? ARM::t2LDREX : ARM::LDREX;
5367 strOpc = isThumb2 ? ARM::t2STREX : ARM::STREX;
5368 extendOpc = 0;
5369 break;
5370 }
5371
5372 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
5373 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
5374 MF->insert(It, loopMBB);
5375 MF->insert(It, exitMBB);
5376
5377 // Transfer the remainder of BB and its successor edges to exitMBB.
5378 exitMBB->splice(exitMBB->begin(), BB,
5379 llvm::next(MachineBasicBlock::iterator(MI)),
5380 BB->end());
5381 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
5382
Cameron Zwarichde64aaf2011-05-27 23:54:00 +00005383 TargetRegisterClass *TRC =
5384 isThumb2 ? ARM::tGPRRegisterClass : ARM::GPRRegisterClass;
5385 unsigned scratch = MRI.createVirtualRegister(TRC);
5386 unsigned scratch2 = MRI.createVirtualRegister(TRC);
Jim Grosbachf7da8822011-04-26 19:44:18 +00005387
5388 // thisMBB:
5389 // ...
5390 // fallthrough --> loopMBB
5391 BB->addSuccessor(loopMBB);
5392
5393 // loopMBB:
5394 // ldrex dest, ptr
5395 // (sign extend dest, if required)
5396 // cmp dest, incr
5397 // cmov.cond scratch2, dest, incr
5398 // strex scratch, scratch2, ptr
5399 // cmp scratch, #0
5400 // bne- loopMBB
5401 // fallthrough --> exitMBB
5402 BB = loopMBB;
Jim Grosbachb6aed502011-09-09 18:37:27 +00005403 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr);
5404 if (ldrOpc == ARM::t2LDREX)
5405 MIB.addImm(0);
5406 AddDefaultPred(MIB);
Jim Grosbachf7da8822011-04-26 19:44:18 +00005407
5408 // Sign extend the value, if necessary.
5409 if (signExtend && extendOpc) {
Cameron Zwarichde64aaf2011-05-27 23:54:00 +00005410 oldval = MRI.createVirtualRegister(ARM::GPRRegisterClass);
Jim Grosbachc5a8c862011-07-27 16:47:19 +00005411 AddDefaultPred(BuildMI(BB, dl, TII->get(extendOpc), oldval)
5412 .addReg(dest)
5413 .addImm(0));
Jim Grosbachf7da8822011-04-26 19:44:18 +00005414 }
5415
5416 // Build compare and cmov instructions.
5417 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
5418 .addReg(oldval).addReg(incr));
5419 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2MOVCCr : ARM::MOVCCr), scratch2)
5420 .addReg(oldval).addReg(incr).addImm(Cond).addReg(ARM::CPSR);
5421
Jim Grosbachb6aed502011-09-09 18:37:27 +00005422 MIB = BuildMI(BB, dl, TII->get(strOpc), scratch).addReg(scratch2).addReg(ptr);
5423 if (strOpc == ARM::t2STREX)
5424 MIB.addImm(0);
5425 AddDefaultPred(MIB);
Jim Grosbachf7da8822011-04-26 19:44:18 +00005426 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
5427 .addReg(scratch).addImm(0));
5428 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
5429 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
5430
5431 BB->addSuccessor(loopMBB);
5432 BB->addSuccessor(exitMBB);
5433
5434 // exitMBB:
5435 // ...
5436 BB = exitMBB;
5437
5438 MI->eraseFromParent(); // The instruction is gone now.
5439
5440 return BB;
5441}
5442
Eli Friedman2bdffe42011-08-31 00:31:29 +00005443MachineBasicBlock *
5444ARMTargetLowering::EmitAtomicBinary64(MachineInstr *MI, MachineBasicBlock *BB,
5445 unsigned Op1, unsigned Op2,
Eli Friedman4d3f3292011-08-31 17:52:22 +00005446 bool NeedsCarry, bool IsCmpxchg) const {
Eli Friedman2bdffe42011-08-31 00:31:29 +00005447 // This also handles ATOMIC_SWAP, indicated by Op1==0.
5448 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5449
5450 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5451 MachineFunction *MF = BB->getParent();
5452 MachineFunction::iterator It = BB;
5453 ++It;
5454
5455 unsigned destlo = MI->getOperand(0).getReg();
5456 unsigned desthi = MI->getOperand(1).getReg();
5457 unsigned ptr = MI->getOperand(2).getReg();
5458 unsigned vallo = MI->getOperand(3).getReg();
5459 unsigned valhi = MI->getOperand(4).getReg();
5460 DebugLoc dl = MI->getDebugLoc();
5461 bool isThumb2 = Subtarget->isThumb2();
5462
5463 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
5464 if (isThumb2) {
5465 MRI.constrainRegClass(destlo, ARM::rGPRRegisterClass);
5466 MRI.constrainRegClass(desthi, ARM::rGPRRegisterClass);
5467 MRI.constrainRegClass(ptr, ARM::rGPRRegisterClass);
5468 }
5469
5470 unsigned ldrOpc = isThumb2 ? ARM::t2LDREXD : ARM::LDREXD;
5471 unsigned strOpc = isThumb2 ? ARM::t2STREXD : ARM::STREXD;
5472
5473 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
Eli Friedman7df496d2011-09-01 22:27:41 +00005474 MachineBasicBlock *contBB = 0, *cont2BB = 0;
Eli Friedman4d3f3292011-08-31 17:52:22 +00005475 if (IsCmpxchg) {
5476 contBB = MF->CreateMachineBasicBlock(LLVM_BB);
5477 cont2BB = MF->CreateMachineBasicBlock(LLVM_BB);
5478 }
Eli Friedman2bdffe42011-08-31 00:31:29 +00005479 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
5480 MF->insert(It, loopMBB);
Eli Friedman4d3f3292011-08-31 17:52:22 +00005481 if (IsCmpxchg) {
5482 MF->insert(It, contBB);
5483 MF->insert(It, cont2BB);
5484 }
Eli Friedman2bdffe42011-08-31 00:31:29 +00005485 MF->insert(It, exitMBB);
5486
5487 // Transfer the remainder of BB and its successor edges to exitMBB.
5488 exitMBB->splice(exitMBB->begin(), BB,
5489 llvm::next(MachineBasicBlock::iterator(MI)),
5490 BB->end());
5491 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
5492
5493 TargetRegisterClass *TRC =
5494 isThumb2 ? ARM::tGPRRegisterClass : ARM::GPRRegisterClass;
5495 unsigned storesuccess = MRI.createVirtualRegister(TRC);
5496
5497 // thisMBB:
5498 // ...
5499 // fallthrough --> loopMBB
5500 BB->addSuccessor(loopMBB);
5501
5502 // loopMBB:
5503 // ldrexd r2, r3, ptr
5504 // <binopa> r0, r2, incr
5505 // <binopb> r1, r3, incr
5506 // strexd storesuccess, r0, r1, ptr
5507 // cmp storesuccess, #0
5508 // bne- loopMBB
5509 // fallthrough --> exitMBB
5510 //
5511 // Note that the registers are explicitly specified because there is not any
5512 // way to force the register allocator to allocate a register pair.
5513 //
Andrew Trick3af7a672011-09-20 03:06:13 +00005514 // FIXME: The hardcoded registers are not necessary for Thumb2, but we
Eli Friedman2bdffe42011-08-31 00:31:29 +00005515 // need to properly enforce the restriction that the two output registers
5516 // for ldrexd must be different.
5517 BB = loopMBB;
5518 // Load
5519 AddDefaultPred(BuildMI(BB, dl, TII->get(ldrOpc))
5520 .addReg(ARM::R2, RegState::Define)
5521 .addReg(ARM::R3, RegState::Define).addReg(ptr));
5522 // Copy r2/r3 into dest. (This copy will normally be coalesced.)
5523 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), destlo).addReg(ARM::R2);
5524 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), desthi).addReg(ARM::R3);
Eli Friedman4d3f3292011-08-31 17:52:22 +00005525
5526 if (IsCmpxchg) {
5527 // Add early exit
5528 for (unsigned i = 0; i < 2; i++) {
5529 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr :
5530 ARM::CMPrr))
5531 .addReg(i == 0 ? destlo : desthi)
5532 .addReg(i == 0 ? vallo : valhi));
5533 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
5534 .addMBB(exitMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
5535 BB->addSuccessor(exitMBB);
5536 BB->addSuccessor(i == 0 ? contBB : cont2BB);
5537 BB = (i == 0 ? contBB : cont2BB);
5538 }
5539
5540 // Copy to physregs for strexd
5541 unsigned setlo = MI->getOperand(5).getReg();
5542 unsigned sethi = MI->getOperand(6).getReg();
5543 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), ARM::R0).addReg(setlo);
5544 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), ARM::R1).addReg(sethi);
5545 } else if (Op1) {
Eli Friedman2bdffe42011-08-31 00:31:29 +00005546 // Perform binary operation
5547 AddDefaultPred(BuildMI(BB, dl, TII->get(Op1), ARM::R0)
5548 .addReg(destlo).addReg(vallo))
5549 .addReg(NeedsCarry ? ARM::CPSR : 0, getDefRegState(NeedsCarry));
5550 AddDefaultPred(BuildMI(BB, dl, TII->get(Op2), ARM::R1)
5551 .addReg(desthi).addReg(valhi)).addReg(0);
5552 } else {
5553 // Copy to physregs for strexd
5554 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), ARM::R0).addReg(vallo);
5555 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), ARM::R1).addReg(valhi);
5556 }
5557
5558 // Store
5559 AddDefaultPred(BuildMI(BB, dl, TII->get(strOpc), storesuccess)
5560 .addReg(ARM::R0).addReg(ARM::R1).addReg(ptr));
5561 // Cmp+jump
5562 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
5563 .addReg(storesuccess).addImm(0));
5564 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
5565 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
5566
5567 BB->addSuccessor(loopMBB);
5568 BB->addSuccessor(exitMBB);
5569
5570 // exitMBB:
5571 // ...
5572 BB = exitMBB;
5573
5574 MI->eraseFromParent(); // The instruction is gone now.
5575
5576 return BB;
5577}
5578
Bill Wendlinge29fa1d2011-10-06 22:18:16 +00005579/// SetupEntryBlockForSjLj - Insert code into the entry block that creates and
5580/// registers the function context.
5581void ARMTargetLowering::
5582SetupEntryBlockForSjLj(MachineInstr *MI, MachineBasicBlock *MBB,
5583 MachineBasicBlock *DispatchBB, int FI) const {
Bill Wendlingf7e4aef2011-10-03 21:25:38 +00005584 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5585 DebugLoc dl = MI->getDebugLoc();
5586 MachineFunction *MF = MBB->getParent();
5587 MachineRegisterInfo *MRI = &MF->getRegInfo();
5588 MachineConstantPool *MCP = MF->getConstantPool();
5589 ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
5590 const Function *F = MF->getFunction();
Bill Wendlingf7e4aef2011-10-03 21:25:38 +00005591
Bill Wendlingf7e4aef2011-10-03 21:25:38 +00005592 bool isThumb = Subtarget->isThumb();
Bill Wendlingff4216a2011-10-03 22:44:15 +00005593 bool isThumb2 = Subtarget->isThumb2();
Bill Wendlinge29fa1d2011-10-06 22:18:16 +00005594
Bill Wendlingf7e4aef2011-10-03 21:25:38 +00005595 unsigned PCLabelId = AFI->createPICLabelUId();
Bill Wendlingff4216a2011-10-03 22:44:15 +00005596 unsigned PCAdj = (isThumb || isThumb2) ? 4 : 8;
Bill Wendlingf7e4aef2011-10-03 21:25:38 +00005597 ARMConstantPoolValue *CPV =
5598 ARMConstantPoolMBB::Create(F->getContext(), DispatchBB, PCLabelId, PCAdj);
5599 unsigned CPI = MCP->getConstantPoolIndex(CPV, 4);
5600
5601 const TargetRegisterClass *TRC =
5602 isThumb ? ARM::tGPRRegisterClass : ARM::GPRRegisterClass;
5603
Bill Wendlinge29fa1d2011-10-06 22:18:16 +00005604 // Grab constant pool and fixed stack memory operands.
5605 MachineMemOperand *CPMMO =
5606 MF->getMachineMemOperand(MachinePointerInfo::getConstantPool(),
5607 MachineMemOperand::MOLoad, 4, 4);
5608
5609 MachineMemOperand *FIMMOSt =
5610 MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
5611 MachineMemOperand::MOStore, 4, 4);
5612
5613 // Load the address of the dispatch MBB into the jump buffer.
5614 if (isThumb2) {
5615 // Incoming value: jbuf
5616 // ldr.n r5, LCPI1_1
5617 // orr r5, r5, #1
5618 // add r5, pc
5619 // str r5, [$jbuf, #+4] ; &jbuf[1]
5620 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
5621 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2LDRpci), NewVReg1)
5622 .addConstantPoolIndex(CPI)
5623 .addMemOperand(CPMMO));
5624 // Set the low bit because of thumb mode.
5625 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
5626 AddDefaultCC(
5627 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2ORRri), NewVReg2)
5628 .addReg(NewVReg1, RegState::Kill)
5629 .addImm(0x01)));
5630 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
5631 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg3)
5632 .addReg(NewVReg2, RegState::Kill)
5633 .addImm(PCLabelId);
5634 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2STRi12))
5635 .addReg(NewVReg3, RegState::Kill)
5636 .addFrameIndex(FI)
5637 .addImm(36) // &jbuf[1] :: pc
5638 .addMemOperand(FIMMOSt));
5639 } else if (isThumb) {
5640 // Incoming value: jbuf
5641 // ldr.n r1, LCPI1_4
5642 // add r1, pc
5643 // mov r2, #1
5644 // orrs r1, r2
5645 // add r2, $jbuf, #+4 ; &jbuf[1]
5646 // str r1, [r2]
5647 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
5648 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tLDRpci), NewVReg1)
5649 .addConstantPoolIndex(CPI)
5650 .addMemOperand(CPMMO));
5651 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
5652 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg2)
5653 .addReg(NewVReg1, RegState::Kill)
5654 .addImm(PCLabelId);
5655 // Set the low bit because of thumb mode.
5656 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
5657 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tMOVi8), NewVReg3)
5658 .addReg(ARM::CPSR, RegState::Define)
5659 .addImm(1));
5660 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
5661 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tORR), NewVReg4)
5662 .addReg(ARM::CPSR, RegState::Define)
5663 .addReg(NewVReg2, RegState::Kill)
5664 .addReg(NewVReg3, RegState::Kill));
5665 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
5666 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tADDrSPi), NewVReg5)
5667 .addFrameIndex(FI)
5668 .addImm(36)); // &jbuf[1] :: pc
5669 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tSTRi))
5670 .addReg(NewVReg4, RegState::Kill)
5671 .addReg(NewVReg5, RegState::Kill)
5672 .addImm(0)
5673 .addMemOperand(FIMMOSt));
5674 } else {
5675 // Incoming value: jbuf
5676 // ldr r1, LCPI1_1
5677 // add r1, pc, r1
5678 // str r1, [$jbuf, #+4] ; &jbuf[1]
5679 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
5680 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::LDRi12), NewVReg1)
5681 .addConstantPoolIndex(CPI)
5682 .addImm(0)
5683 .addMemOperand(CPMMO));
5684 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
5685 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::PICADD), NewVReg2)
5686 .addReg(NewVReg1, RegState::Kill)
5687 .addImm(PCLabelId));
5688 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::STRi12))
5689 .addReg(NewVReg2, RegState::Kill)
5690 .addFrameIndex(FI)
5691 .addImm(36) // &jbuf[1] :: pc
5692 .addMemOperand(FIMMOSt));
5693 }
5694}
5695
5696MachineBasicBlock *ARMTargetLowering::
5697EmitSjLjDispatchBlock(MachineInstr *MI, MachineBasicBlock *MBB) const {
5698 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5699 DebugLoc dl = MI->getDebugLoc();
5700 MachineFunction *MF = MBB->getParent();
5701 MachineRegisterInfo *MRI = &MF->getRegInfo();
5702 ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
5703 MachineFrameInfo *MFI = MF->getFrameInfo();
5704 int FI = MFI->getFunctionContextIndex();
5705
5706 const TargetRegisterClass *TRC =
5707 Subtarget->isThumb() ? ARM::tGPRRegisterClass : ARM::GPRRegisterClass;
5708
Bill Wendling04f15b42011-10-06 21:29:56 +00005709 // Get a mapping of the call site numbers to all of the landing pads they're
5710 // associated with.
Bill Wendling2a850152011-10-05 00:02:33 +00005711 DenseMap<unsigned, SmallVector<MachineBasicBlock*, 2> > CallSiteNumToLPad;
5712 unsigned MaxCSNum = 0;
5713 MachineModuleInfo &MMI = MF->getMMI();
5714 for (MachineFunction::iterator BB = MF->begin(), E = MF->end(); BB != E; ++BB) {
5715 if (!BB->isLandingPad()) continue;
5716
5717 // FIXME: We should assert that the EH_LABEL is the first MI in the landing
5718 // pad.
5719 for (MachineBasicBlock::iterator
5720 II = BB->begin(), IE = BB->end(); II != IE; ++II) {
5721 if (!II->isEHLabel()) continue;
5722
5723 MCSymbol *Sym = II->getOperand(0).getMCSymbol();
Bill Wendling5cbef192011-10-05 23:28:57 +00005724 if (!MMI.hasCallSiteLandingPad(Sym)) continue;
Bill Wendling2a850152011-10-05 00:02:33 +00005725
Bill Wendling5cbef192011-10-05 23:28:57 +00005726 SmallVectorImpl<unsigned> &CallSiteIdxs = MMI.getCallSiteLandingPad(Sym);
5727 for (SmallVectorImpl<unsigned>::iterator
5728 CSI = CallSiteIdxs.begin(), CSE = CallSiteIdxs.end();
5729 CSI != CSE; ++CSI) {
5730 CallSiteNumToLPad[*CSI].push_back(BB);
5731 MaxCSNum = std::max(MaxCSNum, *CSI);
5732 }
Bill Wendling2a850152011-10-05 00:02:33 +00005733 break;
5734 }
5735 }
5736
5737 // Get an ordered list of the machine basic blocks for the jump table.
5738 std::vector<MachineBasicBlock*> LPadList;
Bill Wendling2acf6382011-10-07 23:18:02 +00005739 SmallPtrSet<MachineBasicBlock*, 64> InvokeBBs;
Bill Wendling2a850152011-10-05 00:02:33 +00005740 LPadList.reserve(CallSiteNumToLPad.size());
5741 for (unsigned I = 1; I <= MaxCSNum; ++I) {
5742 SmallVectorImpl<MachineBasicBlock*> &MBBList = CallSiteNumToLPad[I];
5743 for (SmallVectorImpl<MachineBasicBlock*>::iterator
Bill Wendling2acf6382011-10-07 23:18:02 +00005744 II = MBBList.begin(), IE = MBBList.end(); II != IE; ++II) {
Bill Wendling2a850152011-10-05 00:02:33 +00005745 LPadList.push_back(*II);
Bill Wendling2acf6382011-10-07 23:18:02 +00005746 InvokeBBs.insert((*II)->pred_begin(), (*II)->pred_end());
5747 }
Bill Wendling2a850152011-10-05 00:02:33 +00005748 }
5749
Bill Wendling5cbef192011-10-05 23:28:57 +00005750 assert(!LPadList.empty() &&
5751 "No landing pad destinations for the dispatch jump table!");
5752
Bill Wendling04f15b42011-10-06 21:29:56 +00005753 // Create the jump table and associated information.
Bill Wendling2a850152011-10-05 00:02:33 +00005754 MachineJumpTableInfo *JTI =
5755 MF->getOrCreateJumpTableInfo(MachineJumpTableInfo::EK_Inline);
5756 unsigned MJTI = JTI->createJumpTableIndex(LPadList);
5757 unsigned UId = AFI->createJumpTableUId();
5758
Bill Wendling04f15b42011-10-06 21:29:56 +00005759 // Create the MBBs for the dispatch code.
Bill Wendlinge29fa1d2011-10-06 22:18:16 +00005760
5761 // Shove the dispatch's address into the return slot in the function context.
5762 MachineBasicBlock *DispatchBB = MF->CreateMachineBasicBlock();
5763 DispatchBB->setIsLandingPad();
Bill Wendlinge29fa1d2011-10-06 22:18:16 +00005764
Bill Wendlingbb734682011-10-05 00:39:32 +00005765 MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock();
Bill Wendling083a8eb2011-10-06 23:37:36 +00005766 BuildMI(TrapBB, dl, TII->get(Subtarget->isThumb() ? ARM::tTRAP : ARM::TRAP));
Bill Wendlingbb734682011-10-05 00:39:32 +00005767 DispatchBB->addSuccessor(TrapBB);
5768
5769 MachineBasicBlock *DispContBB = MF->CreateMachineBasicBlock();
5770 DispatchBB->addSuccessor(DispContBB);
Bill Wendling2a850152011-10-05 00:02:33 +00005771
Bill Wendlinga48ed4f2011-10-17 21:32:56 +00005772 // Insert and MBBs.
Bill Wendling930193c2011-10-06 00:53:33 +00005773 MF->insert(MF->end(), DispatchBB);
5774 MF->insert(MF->end(), DispContBB);
5775 MF->insert(MF->end(), TrapBB);
Bill Wendling930193c2011-10-06 00:53:33 +00005776
Bill Wendlinge29fa1d2011-10-06 22:18:16 +00005777 // Insert code into the entry block that creates and registers the function
5778 // context.
5779 SetupEntryBlockForSjLj(MI, MBB, DispatchBB, FI);
5780
Bill Wendlinge29fa1d2011-10-06 22:18:16 +00005781 MachineMemOperand *FIMMOLd =
Bill Wendling04f15b42011-10-06 21:29:56 +00005782 MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
Bill Wendling083a8eb2011-10-06 23:37:36 +00005783 MachineMemOperand::MOLoad |
5784 MachineMemOperand::MOVolatile, 4, 4);
Bill Wendling930193c2011-10-06 00:53:33 +00005785
Bob Wilsonf4aea8f2011-12-22 23:39:48 +00005786 if (AFI->isThumb1OnlyFunction())
5787 BuildMI(DispatchBB, dl, TII->get(ARM::tInt_eh_sjlj_dispatchsetup));
5788 else if (!Subtarget->hasVFP2())
5789 BuildMI(DispatchBB, dl, TII->get(ARM::Int_eh_sjlj_dispatchsetup_nofp));
5790 else
5791 BuildMI(DispatchBB, dl, TII->get(ARM::Int_eh_sjlj_dispatchsetup));
Bob Wilsoneaab6ef2011-11-16 07:11:57 +00005792
Bill Wendling952cb502011-10-18 22:49:07 +00005793 unsigned NumLPads = LPadList.size();
Bill Wendling95ce2e92011-10-06 22:53:00 +00005794 if (Subtarget->isThumb2()) {
5795 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
5796 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2LDRi12), NewVReg1)
5797 .addFrameIndex(FI)
5798 .addImm(4)
5799 .addMemOperand(FIMMOLd));
Bill Wendlingb9fecf42011-10-18 21:55:58 +00005800
Bill Wendling952cb502011-10-18 22:49:07 +00005801 if (NumLPads < 256) {
5802 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPri))
5803 .addReg(NewVReg1)
5804 .addImm(LPadList.size()));
5805 } else {
5806 unsigned VReg1 = MRI->createVirtualRegister(TRC);
5807 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVi16), VReg1)
Bill Wendling15a1a222011-10-18 23:19:55 +00005808 .addImm(NumLPads & 0xFFFF));
5809
5810 unsigned VReg2 = VReg1;
5811 if ((NumLPads & 0xFFFF0000) != 0) {
5812 VReg2 = MRI->createVirtualRegister(TRC);
5813 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVTi16), VReg2)
5814 .addReg(VReg1)
5815 .addImm(NumLPads >> 16));
5816 }
5817
Bill Wendling952cb502011-10-18 22:49:07 +00005818 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPrr))
5819 .addReg(NewVReg1)
5820 .addReg(VReg2));
5821 }
Bill Wendlingb9fecf42011-10-18 21:55:58 +00005822
Bill Wendling95ce2e92011-10-06 22:53:00 +00005823 BuildMI(DispatchBB, dl, TII->get(ARM::t2Bcc))
5824 .addMBB(TrapBB)
5825 .addImm(ARMCC::HI)
5826 .addReg(ARM::CPSR);
Bill Wendlingbb734682011-10-05 00:39:32 +00005827
Bill Wendlingb9fecf42011-10-18 21:55:58 +00005828 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
5829 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::t2LEApcrelJT),NewVReg3)
Bill Wendling95ce2e92011-10-06 22:53:00 +00005830 .addJumpTableIndex(MJTI)
5831 .addImm(UId));
Bill Wendling2a850152011-10-05 00:02:33 +00005832
Bill Wendlingb9fecf42011-10-18 21:55:58 +00005833 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
Bill Wendling95ce2e92011-10-06 22:53:00 +00005834 AddDefaultCC(
5835 AddDefaultPred(
Bill Wendlingb9fecf42011-10-18 21:55:58 +00005836 BuildMI(DispContBB, dl, TII->get(ARM::t2ADDrs), NewVReg4)
5837 .addReg(NewVReg3, RegState::Kill)
Bill Wendling95ce2e92011-10-06 22:53:00 +00005838 .addReg(NewVReg1)
5839 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
5840
5841 BuildMI(DispContBB, dl, TII->get(ARM::t2BR_JT))
Bill Wendlingb9fecf42011-10-18 21:55:58 +00005842 .addReg(NewVReg4, RegState::Kill)
Bill Wendling2a850152011-10-05 00:02:33 +00005843 .addReg(NewVReg1)
Bill Wendling95ce2e92011-10-06 22:53:00 +00005844 .addJumpTableIndex(MJTI)
5845 .addImm(UId);
5846 } else if (Subtarget->isThumb()) {
Bill Wendling083a8eb2011-10-06 23:37:36 +00005847 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
5848 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRspi), NewVReg1)
5849 .addFrameIndex(FI)
5850 .addImm(1)
5851 .addMemOperand(FIMMOLd));
Bill Wendlingf1083d42011-10-07 22:08:37 +00005852
Bill Wendlinga5871dc2011-10-18 23:11:05 +00005853 if (NumLPads < 256) {
5854 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPi8))
5855 .addReg(NewVReg1)
5856 .addImm(NumLPads));
5857 } else {
5858 MachineConstantPool *ConstantPool = MF->getConstantPool();
Bill Wendling922ad782011-10-19 09:24:02 +00005859 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
5860 const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
5861
5862 // MachineConstantPool wants an explicit alignment.
5863 unsigned Align = getTargetData()->getPrefTypeAlignment(Int32Ty);
5864 if (Align == 0)
5865 Align = getTargetData()->getTypeAllocSize(C->getType());
5866 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
Bill Wendlinga5871dc2011-10-18 23:11:05 +00005867
5868 unsigned VReg1 = MRI->createVirtualRegister(TRC);
5869 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRpci))
5870 .addReg(VReg1, RegState::Define)
5871 .addConstantPoolIndex(Idx));
5872 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPr))
5873 .addReg(NewVReg1)
5874 .addReg(VReg1));
5875 }
5876
Bill Wendling083a8eb2011-10-06 23:37:36 +00005877 BuildMI(DispatchBB, dl, TII->get(ARM::tBcc))
5878 .addMBB(TrapBB)
5879 .addImm(ARMCC::HI)
5880 .addReg(ARM::CPSR);
5881
5882 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
5883 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLSLri), NewVReg2)
5884 .addReg(ARM::CPSR, RegState::Define)
5885 .addReg(NewVReg1)
5886 .addImm(2));
5887
5888 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
Bill Wendling217f0e92011-10-06 23:41:14 +00005889 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLEApcrelJT), NewVReg3)
Bill Wendling083a8eb2011-10-06 23:37:36 +00005890 .addJumpTableIndex(MJTI)
5891 .addImm(UId));
5892
5893 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
5894 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg4)
5895 .addReg(ARM::CPSR, RegState::Define)
5896 .addReg(NewVReg2, RegState::Kill)
5897 .addReg(NewVReg3));
5898
5899 MachineMemOperand *JTMMOLd =
5900 MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
5901 MachineMemOperand::MOLoad, 4, 4);
5902
5903 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
5904 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLDRi), NewVReg5)
5905 .addReg(NewVReg4, RegState::Kill)
5906 .addImm(0)
5907 .addMemOperand(JTMMOLd));
5908
5909 unsigned NewVReg6 = MRI->createVirtualRegister(TRC);
5910 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg6)
5911 .addReg(ARM::CPSR, RegState::Define)
5912 .addReg(NewVReg5, RegState::Kill)
5913 .addReg(NewVReg3));
5914
5915 BuildMI(DispContBB, dl, TII->get(ARM::tBR_JTr))
5916 .addReg(NewVReg6, RegState::Kill)
5917 .addJumpTableIndex(MJTI)
5918 .addImm(UId);
Bill Wendling95ce2e92011-10-06 22:53:00 +00005919 } else {
5920 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
5921 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRi12), NewVReg1)
5922 .addFrameIndex(FI)
5923 .addImm(4)
5924 .addMemOperand(FIMMOLd));
Bill Wendling564392b2011-10-18 22:11:18 +00005925
Bill Wendling85f3a0a2011-10-18 22:52:20 +00005926 if (NumLPads < 256) {
5927 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPri))
5928 .addReg(NewVReg1)
5929 .addImm(NumLPads));
Bill Wendling922ad782011-10-19 09:24:02 +00005930 } else if (Subtarget->hasV6T2Ops() && isUInt<16>(NumLPads)) {
Bill Wendling85f3a0a2011-10-18 22:52:20 +00005931 unsigned VReg1 = MRI->createVirtualRegister(TRC);
5932 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVi16), VReg1)
Bill Wendling15a1a222011-10-18 23:19:55 +00005933 .addImm(NumLPads & 0xFFFF));
5934
5935 unsigned VReg2 = VReg1;
5936 if ((NumLPads & 0xFFFF0000) != 0) {
5937 VReg2 = MRI->createVirtualRegister(TRC);
5938 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVTi16), VReg2)
5939 .addReg(VReg1)
5940 .addImm(NumLPads >> 16));
5941 }
5942
Bill Wendling85f3a0a2011-10-18 22:52:20 +00005943 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
5944 .addReg(NewVReg1)
5945 .addReg(VReg2));
Bill Wendling922ad782011-10-19 09:24:02 +00005946 } else {
5947 MachineConstantPool *ConstantPool = MF->getConstantPool();
5948 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
5949 const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
5950
5951 // MachineConstantPool wants an explicit alignment.
5952 unsigned Align = getTargetData()->getPrefTypeAlignment(Int32Ty);
5953 if (Align == 0)
5954 Align = getTargetData()->getTypeAllocSize(C->getType());
5955 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
5956
5957 unsigned VReg1 = MRI->createVirtualRegister(TRC);
5958 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRcp))
5959 .addReg(VReg1, RegState::Define)
Bill Wendling767f8be2011-10-20 20:37:11 +00005960 .addConstantPoolIndex(Idx)
5961 .addImm(0));
Bill Wendling922ad782011-10-19 09:24:02 +00005962 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
5963 .addReg(NewVReg1)
5964 .addReg(VReg1, RegState::Kill));
Bill Wendling85f3a0a2011-10-18 22:52:20 +00005965 }
5966
Bill Wendling95ce2e92011-10-06 22:53:00 +00005967 BuildMI(DispatchBB, dl, TII->get(ARM::Bcc))
5968 .addMBB(TrapBB)
5969 .addImm(ARMCC::HI)
5970 .addReg(ARM::CPSR);
Bill Wendling2a850152011-10-05 00:02:33 +00005971
Bill Wendling564392b2011-10-18 22:11:18 +00005972 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
Bill Wendling95ce2e92011-10-06 22:53:00 +00005973 AddDefaultCC(
Bill Wendling564392b2011-10-18 22:11:18 +00005974 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::MOVsi), NewVReg3)
Bill Wendling95ce2e92011-10-06 22:53:00 +00005975 .addReg(NewVReg1)
5976 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
Bill Wendling564392b2011-10-18 22:11:18 +00005977 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
5978 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::LEApcrelJT), NewVReg4)
Bill Wendling95ce2e92011-10-06 22:53:00 +00005979 .addJumpTableIndex(MJTI)
5980 .addImm(UId));
5981
5982 MachineMemOperand *JTMMOLd =
5983 MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
5984 MachineMemOperand::MOLoad, 4, 4);
Bill Wendling564392b2011-10-18 22:11:18 +00005985 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
Bill Wendling95ce2e92011-10-06 22:53:00 +00005986 AddDefaultPred(
Bill Wendling564392b2011-10-18 22:11:18 +00005987 BuildMI(DispContBB, dl, TII->get(ARM::LDRrs), NewVReg5)
5988 .addReg(NewVReg3, RegState::Kill)
5989 .addReg(NewVReg4)
Bill Wendling95ce2e92011-10-06 22:53:00 +00005990 .addImm(0)
5991 .addMemOperand(JTMMOLd));
5992
5993 BuildMI(DispContBB, dl, TII->get(ARM::BR_JTadd))
Bill Wendling564392b2011-10-18 22:11:18 +00005994 .addReg(NewVReg5, RegState::Kill)
5995 .addReg(NewVReg4)
Bill Wendling95ce2e92011-10-06 22:53:00 +00005996 .addJumpTableIndex(MJTI)
5997 .addImm(UId);
5998 }
Bill Wendling2a850152011-10-05 00:02:33 +00005999
Bill Wendlingbb734682011-10-05 00:39:32 +00006000 // Add the jump table entries as successors to the MBB.
Bill Wendling2acf6382011-10-07 23:18:02 +00006001 MachineBasicBlock *PrevMBB = 0;
Bill Wendlingbb734682011-10-05 00:39:32 +00006002 for (std::vector<MachineBasicBlock*>::iterator
Bill Wendling2acf6382011-10-07 23:18:02 +00006003 I = LPadList.begin(), E = LPadList.end(); I != E; ++I) {
6004 MachineBasicBlock *CurMBB = *I;
6005 if (PrevMBB != CurMBB)
6006 DispContBB->addSuccessor(CurMBB);
6007 PrevMBB = CurMBB;
6008 }
6009
Bill Wendling24bb9252011-10-17 05:25:09 +00006010 // N.B. the order the invoke BBs are processed in doesn't matter here.
Bill Wendling969c9ef2011-10-14 23:34:37 +00006011 const ARMBaseInstrInfo *AII = static_cast<const ARMBaseInstrInfo*>(TII);
6012 const ARMBaseRegisterInfo &RI = AII->getRegisterInfo();
6013 const unsigned *SavedRegs = RI.getCalleeSavedRegs(MF);
Bill Wendlingf7b02072011-10-18 18:30:49 +00006014 SmallVector<MachineBasicBlock*, 64> MBBLPads;
Bill Wendling2acf6382011-10-07 23:18:02 +00006015 for (SmallPtrSet<MachineBasicBlock*, 64>::iterator
6016 I = InvokeBBs.begin(), E = InvokeBBs.end(); I != E; ++I) {
6017 MachineBasicBlock *BB = *I;
Bill Wendling969c9ef2011-10-14 23:34:37 +00006018
6019 // Remove the landing pad successor from the invoke block and replace it
6020 // with the new dispatch block.
Bill Wendlingde39d862011-10-26 07:16:18 +00006021 SmallVector<MachineBasicBlock*, 4> Successors(BB->succ_begin(),
6022 BB->succ_end());
6023 while (!Successors.empty()) {
6024 MachineBasicBlock *SMBB = Successors.pop_back_val();
Bill Wendling2acf6382011-10-07 23:18:02 +00006025 if (SMBB->isLandingPad()) {
6026 BB->removeSuccessor(SMBB);
Bill Wendlingf7b02072011-10-18 18:30:49 +00006027 MBBLPads.push_back(SMBB);
Bill Wendling2acf6382011-10-07 23:18:02 +00006028 }
6029 }
6030
6031 BB->addSuccessor(DispatchBB);
Bill Wendling969c9ef2011-10-14 23:34:37 +00006032
6033 // Find the invoke call and mark all of the callee-saved registers as
6034 // 'implicit defined' so that they're spilled. This prevents code from
6035 // moving instructions to before the EH block, where they will never be
6036 // executed.
6037 for (MachineBasicBlock::reverse_iterator
6038 II = BB->rbegin(), IE = BB->rend(); II != IE; ++II) {
Evan Cheng5a96b3d2011-12-07 07:15:52 +00006039 if (!II->isCall()) continue;
Bill Wendling969c9ef2011-10-14 23:34:37 +00006040
6041 DenseMap<unsigned, bool> DefRegs;
6042 for (MachineInstr::mop_iterator
6043 OI = II->operands_begin(), OE = II->operands_end();
6044 OI != OE; ++OI) {
6045 if (!OI->isReg()) continue;
6046 DefRegs[OI->getReg()] = true;
6047 }
6048
6049 MachineInstrBuilder MIB(&*II);
6050
Bill Wendling5d798592011-10-14 23:55:44 +00006051 for (unsigned i = 0; SavedRegs[i] != 0; ++i) {
Bill Wendlingb8dcb312011-10-22 00:29:28 +00006052 unsigned Reg = SavedRegs[i];
6053 if (Subtarget->isThumb2() &&
6054 !ARM::tGPRRegisterClass->contains(Reg) &&
6055 !ARM::hGPRRegisterClass->contains(Reg))
6056 continue;
6057 else if (Subtarget->isThumb1Only() &&
6058 !ARM::tGPRRegisterClass->contains(Reg))
6059 continue;
6060 else if (!Subtarget->isThumb() &&
6061 !ARM::GPRRegisterClass->contains(Reg))
6062 continue;
6063 if (!DefRegs[Reg])
6064 MIB.addReg(Reg, RegState::ImplicitDefine | RegState::Dead);
Bill Wendling5d798592011-10-14 23:55:44 +00006065 }
Bill Wendling969c9ef2011-10-14 23:34:37 +00006066
6067 break;
6068 }
Bill Wendling2acf6382011-10-07 23:18:02 +00006069 }
Bill Wendlingbb734682011-10-05 00:39:32 +00006070
Bill Wendlingf7b02072011-10-18 18:30:49 +00006071 // Mark all former landing pads as non-landing pads. The dispatch is the only
6072 // landing pad now.
6073 for (SmallVectorImpl<MachineBasicBlock*>::iterator
6074 I = MBBLPads.begin(), E = MBBLPads.end(); I != E; ++I)
6075 (*I)->setIsLandingPad(false);
6076
Bill Wendlingbb734682011-10-05 00:39:32 +00006077 // The instruction is gone now.
6078 MI->eraseFromParent();
6079
Bill Wendlingf7e4aef2011-10-03 21:25:38 +00006080 return MBB;
6081}
6082
Evan Cheng218977b2010-07-13 19:27:42 +00006083static
6084MachineBasicBlock *OtherSucc(MachineBasicBlock *MBB, MachineBasicBlock *Succ) {
6085 for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
6086 E = MBB->succ_end(); I != E; ++I)
6087 if (*I != Succ)
6088 return *I;
6089 llvm_unreachable("Expecting a BB with two successors!");
6090}
6091
Jim Grosbache801dc42009-12-12 01:40:06 +00006092MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00006093ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00006094 MachineBasicBlock *BB) const {
Evan Chenga8e29892007-01-19 07:51:42 +00006095 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Dale Johannesenb6728402009-02-13 02:25:56 +00006096 DebugLoc dl = MI->getDebugLoc();
Jim Grosbacha36c8f22009-12-14 20:14:59 +00006097 bool isThumb2 = Subtarget->isThumb2();
Evan Chenga8e29892007-01-19 07:51:42 +00006098 switch (MI->getOpcode()) {
Andrew Trick1c3af772011-04-23 03:55:32 +00006099 default: {
Jim Grosbach5278eb82009-12-11 01:42:04 +00006100 MI->dump();
Evan Cheng86198642009-08-07 00:34:42 +00006101 llvm_unreachable("Unexpected instr type to insert");
Andrew Trick1c3af772011-04-23 03:55:32 +00006102 }
Jim Grosbachee2c2a42011-09-16 21:55:56 +00006103 // The Thumb2 pre-indexed stores have the same MI operands, they just
6104 // define them differently in the .td files from the isel patterns, so
6105 // they need pseudos.
6106 case ARM::t2STR_preidx:
6107 MI->setDesc(TII->get(ARM::t2STR_PRE));
6108 return BB;
6109 case ARM::t2STRB_preidx:
6110 MI->setDesc(TII->get(ARM::t2STRB_PRE));
6111 return BB;
6112 case ARM::t2STRH_preidx:
6113 MI->setDesc(TII->get(ARM::t2STRH_PRE));
6114 return BB;
6115
Jim Grosbach19dec202011-08-05 20:35:44 +00006116 case ARM::STRi_preidx:
6117 case ARM::STRBi_preidx: {
Jim Grosbach6cd57162011-08-09 21:22:41 +00006118 unsigned NewOpc = MI->getOpcode() == ARM::STRi_preidx ?
Jim Grosbach19dec202011-08-05 20:35:44 +00006119 ARM::STR_PRE_IMM : ARM::STRB_PRE_IMM;
6120 // Decode the offset.
6121 unsigned Offset = MI->getOperand(4).getImm();
6122 bool isSub = ARM_AM::getAM2Op(Offset) == ARM_AM::sub;
6123 Offset = ARM_AM::getAM2Offset(Offset);
6124 if (isSub)
6125 Offset = -Offset;
6126
Jim Grosbach4dfe2202011-08-12 21:02:34 +00006127 MachineMemOperand *MMO = *MI->memoperands_begin();
Benjamin Kramer2753ae32011-08-27 17:36:14 +00006128 BuildMI(*BB, MI, dl, TII->get(NewOpc))
Jim Grosbach19dec202011-08-05 20:35:44 +00006129 .addOperand(MI->getOperand(0)) // Rn_wb
6130 .addOperand(MI->getOperand(1)) // Rt
6131 .addOperand(MI->getOperand(2)) // Rn
6132 .addImm(Offset) // offset (skip GPR==zero_reg)
6133 .addOperand(MI->getOperand(5)) // pred
Jim Grosbach4dfe2202011-08-12 21:02:34 +00006134 .addOperand(MI->getOperand(6))
6135 .addMemOperand(MMO);
Jim Grosbach19dec202011-08-05 20:35:44 +00006136 MI->eraseFromParent();
6137 return BB;
6138 }
6139 case ARM::STRr_preidx:
Jim Grosbach7b8f46c2011-08-11 21:17:22 +00006140 case ARM::STRBr_preidx:
6141 case ARM::STRH_preidx: {
6142 unsigned NewOpc;
6143 switch (MI->getOpcode()) {
6144 default: llvm_unreachable("unexpected opcode!");
6145 case ARM::STRr_preidx: NewOpc = ARM::STR_PRE_REG; break;
6146 case ARM::STRBr_preidx: NewOpc = ARM::STRB_PRE_REG; break;
6147 case ARM::STRH_preidx: NewOpc = ARM::STRH_PRE; break;
6148 }
Jim Grosbach19dec202011-08-05 20:35:44 +00006149 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(NewOpc));
6150 for (unsigned i = 0; i < MI->getNumOperands(); ++i)
6151 MIB.addOperand(MI->getOperand(i));
6152 MI->eraseFromParent();
6153 return BB;
6154 }
Jim Grosbacha36c8f22009-12-14 20:14:59 +00006155 case ARM::ATOMIC_LOAD_ADD_I8:
6156 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr);
6157 case ARM::ATOMIC_LOAD_ADD_I16:
6158 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr);
6159 case ARM::ATOMIC_LOAD_ADD_I32:
6160 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr);
Jim Grosbach5278eb82009-12-11 01:42:04 +00006161
Jim Grosbacha36c8f22009-12-14 20:14:59 +00006162 case ARM::ATOMIC_LOAD_AND_I8:
6163 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr);
6164 case ARM::ATOMIC_LOAD_AND_I16:
6165 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr);
6166 case ARM::ATOMIC_LOAD_AND_I32:
6167 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr);
Jim Grosbach5278eb82009-12-11 01:42:04 +00006168
Jim Grosbacha36c8f22009-12-14 20:14:59 +00006169 case ARM::ATOMIC_LOAD_OR_I8:
6170 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr);
6171 case ARM::ATOMIC_LOAD_OR_I16:
6172 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr);
6173 case ARM::ATOMIC_LOAD_OR_I32:
6174 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr);
Jim Grosbach5278eb82009-12-11 01:42:04 +00006175
Jim Grosbacha36c8f22009-12-14 20:14:59 +00006176 case ARM::ATOMIC_LOAD_XOR_I8:
6177 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2EORrr : ARM::EORrr);
6178 case ARM::ATOMIC_LOAD_XOR_I16:
6179 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2EORrr : ARM::EORrr);
6180 case ARM::ATOMIC_LOAD_XOR_I32:
6181 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2EORrr : ARM::EORrr);
Jim Grosbache801dc42009-12-12 01:40:06 +00006182
Jim Grosbacha36c8f22009-12-14 20:14:59 +00006183 case ARM::ATOMIC_LOAD_NAND_I8:
6184 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2BICrr : ARM::BICrr);
6185 case ARM::ATOMIC_LOAD_NAND_I16:
6186 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2BICrr : ARM::BICrr);
6187 case ARM::ATOMIC_LOAD_NAND_I32:
6188 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2BICrr : ARM::BICrr);
Jim Grosbache801dc42009-12-12 01:40:06 +00006189
Jim Grosbacha36c8f22009-12-14 20:14:59 +00006190 case ARM::ATOMIC_LOAD_SUB_I8:
6191 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr);
6192 case ARM::ATOMIC_LOAD_SUB_I16:
6193 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr);
6194 case ARM::ATOMIC_LOAD_SUB_I32:
6195 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr);
Jim Grosbache801dc42009-12-12 01:40:06 +00006196
Jim Grosbachf7da8822011-04-26 19:44:18 +00006197 case ARM::ATOMIC_LOAD_MIN_I8:
6198 return EmitAtomicBinaryMinMax(MI, BB, 1, true, ARMCC::LT);
6199 case ARM::ATOMIC_LOAD_MIN_I16:
6200 return EmitAtomicBinaryMinMax(MI, BB, 2, true, ARMCC::LT);
6201 case ARM::ATOMIC_LOAD_MIN_I32:
6202 return EmitAtomicBinaryMinMax(MI, BB, 4, true, ARMCC::LT);
6203
6204 case ARM::ATOMIC_LOAD_MAX_I8:
6205 return EmitAtomicBinaryMinMax(MI, BB, 1, true, ARMCC::GT);
6206 case ARM::ATOMIC_LOAD_MAX_I16:
6207 return EmitAtomicBinaryMinMax(MI, BB, 2, true, ARMCC::GT);
6208 case ARM::ATOMIC_LOAD_MAX_I32:
6209 return EmitAtomicBinaryMinMax(MI, BB, 4, true, ARMCC::GT);
6210
6211 case ARM::ATOMIC_LOAD_UMIN_I8:
6212 return EmitAtomicBinaryMinMax(MI, BB, 1, false, ARMCC::LO);
6213 case ARM::ATOMIC_LOAD_UMIN_I16:
6214 return EmitAtomicBinaryMinMax(MI, BB, 2, false, ARMCC::LO);
6215 case ARM::ATOMIC_LOAD_UMIN_I32:
6216 return EmitAtomicBinaryMinMax(MI, BB, 4, false, ARMCC::LO);
6217
6218 case ARM::ATOMIC_LOAD_UMAX_I8:
6219 return EmitAtomicBinaryMinMax(MI, BB, 1, false, ARMCC::HI);
6220 case ARM::ATOMIC_LOAD_UMAX_I16:
6221 return EmitAtomicBinaryMinMax(MI, BB, 2, false, ARMCC::HI);
6222 case ARM::ATOMIC_LOAD_UMAX_I32:
6223 return EmitAtomicBinaryMinMax(MI, BB, 4, false, ARMCC::HI);
6224
Jim Grosbacha36c8f22009-12-14 20:14:59 +00006225 case ARM::ATOMIC_SWAP_I8: return EmitAtomicBinary(MI, BB, 1, 0);
6226 case ARM::ATOMIC_SWAP_I16: return EmitAtomicBinary(MI, BB, 2, 0);
6227 case ARM::ATOMIC_SWAP_I32: return EmitAtomicBinary(MI, BB, 4, 0);
Jim Grosbache801dc42009-12-12 01:40:06 +00006228
6229 case ARM::ATOMIC_CMP_SWAP_I8: return EmitAtomicCmpSwap(MI, BB, 1);
6230 case ARM::ATOMIC_CMP_SWAP_I16: return EmitAtomicCmpSwap(MI, BB, 2);
6231 case ARM::ATOMIC_CMP_SWAP_I32: return EmitAtomicCmpSwap(MI, BB, 4);
Jim Grosbach5278eb82009-12-11 01:42:04 +00006232
Eli Friedman2bdffe42011-08-31 00:31:29 +00006233
6234 case ARM::ATOMADD6432:
6235 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr,
Eli Friedman4d3f3292011-08-31 17:52:22 +00006236 isThumb2 ? ARM::t2ADCrr : ARM::ADCrr,
6237 /*NeedsCarry*/ true);
Eli Friedman2bdffe42011-08-31 00:31:29 +00006238 case ARM::ATOMSUB6432:
6239 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr,
Eli Friedman4d3f3292011-08-31 17:52:22 +00006240 isThumb2 ? ARM::t2SBCrr : ARM::SBCrr,
6241 /*NeedsCarry*/ true);
Eli Friedman2bdffe42011-08-31 00:31:29 +00006242 case ARM::ATOMOR6432:
6243 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr,
Eli Friedman4d3f3292011-08-31 17:52:22 +00006244 isThumb2 ? ARM::t2ORRrr : ARM::ORRrr);
Eli Friedman2bdffe42011-08-31 00:31:29 +00006245 case ARM::ATOMXOR6432:
6246 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2EORrr : ARM::EORrr,
Eli Friedman4d3f3292011-08-31 17:52:22 +00006247 isThumb2 ? ARM::t2EORrr : ARM::EORrr);
Eli Friedman2bdffe42011-08-31 00:31:29 +00006248 case ARM::ATOMAND6432:
6249 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr,
Eli Friedman4d3f3292011-08-31 17:52:22 +00006250 isThumb2 ? ARM::t2ANDrr : ARM::ANDrr);
Eli Friedman2bdffe42011-08-31 00:31:29 +00006251 case ARM::ATOMSWAP6432:
6252 return EmitAtomicBinary64(MI, BB, 0, 0, false);
Eli Friedman4d3f3292011-08-31 17:52:22 +00006253 case ARM::ATOMCMPXCHG6432:
6254 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr,
6255 isThumb2 ? ARM::t2SBCrr : ARM::SBCrr,
6256 /*NeedsCarry*/ false, /*IsCmpxchg*/true);
Eli Friedman2bdffe42011-08-31 00:31:29 +00006257
Evan Cheng007ea272009-08-12 05:17:19 +00006258 case ARM::tMOVCCr_pseudo: {
Evan Chenga8e29892007-01-19 07:51:42 +00006259 // To "insert" a SELECT_CC instruction, we actually have to insert the
6260 // diamond control-flow pattern. The incoming instruction knows the
6261 // destination vreg to set, the condition code register to branch on, the
6262 // true/false values to select between, and a branch opcode to use.
6263 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006264 MachineFunction::iterator It = BB;
Evan Chenga8e29892007-01-19 07:51:42 +00006265 ++It;
6266
6267 // thisMBB:
6268 // ...
6269 // TrueVal = ...
6270 // cmpTY ccX, r1, r2
6271 // bCC copy1MBB
6272 // fallthrough --> copy0MBB
6273 MachineBasicBlock *thisMBB = BB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006274 MachineFunction *F = BB->getParent();
6275 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
6276 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dan Gohman258c58c2010-07-06 15:49:48 +00006277 F->insert(It, copy0MBB);
6278 F->insert(It, sinkMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00006279
6280 // Transfer the remainder of BB and its successor edges to sinkMBB.
6281 sinkMBB->splice(sinkMBB->begin(), BB,
6282 llvm::next(MachineBasicBlock::iterator(MI)),
6283 BB->end());
6284 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
6285
Dan Gohman258c58c2010-07-06 15:49:48 +00006286 BB->addSuccessor(copy0MBB);
6287 BB->addSuccessor(sinkMBB);
Dan Gohmanb81c7712010-07-06 15:18:19 +00006288
Dan Gohman14152b42010-07-06 20:24:04 +00006289 BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB)
6290 .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
6291
Evan Chenga8e29892007-01-19 07:51:42 +00006292 // copy0MBB:
6293 // %FalseValue = ...
6294 // # fallthrough to sinkMBB
6295 BB = copy0MBB;
6296
6297 // Update machine-CFG edges
6298 BB->addSuccessor(sinkMBB);
6299
6300 // sinkMBB:
6301 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
6302 // ...
6303 BB = sinkMBB;
Dan Gohman14152b42010-07-06 20:24:04 +00006304 BuildMI(*BB, BB->begin(), dl,
6305 TII->get(ARM::PHI), MI->getOperand(0).getReg())
Evan Chenga8e29892007-01-19 07:51:42 +00006306 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
6307 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
6308
Dan Gohman14152b42010-07-06 20:24:04 +00006309 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Chenga8e29892007-01-19 07:51:42 +00006310 return BB;
6311 }
Evan Cheng86198642009-08-07 00:34:42 +00006312
Evan Cheng218977b2010-07-13 19:27:42 +00006313 case ARM::BCCi64:
6314 case ARM::BCCZi64: {
Bob Wilson3c904692010-12-23 22:45:49 +00006315 // If there is an unconditional branch to the other successor, remove it.
6316 BB->erase(llvm::next(MachineBasicBlock::iterator(MI)), BB->end());
Andrew Trick7fa75ce2011-01-19 02:26:13 +00006317
Evan Cheng218977b2010-07-13 19:27:42 +00006318 // Compare both parts that make up the double comparison separately for
6319 // equality.
6320 bool RHSisZero = MI->getOpcode() == ARM::BCCZi64;
6321
6322 unsigned LHS1 = MI->getOperand(1).getReg();
6323 unsigned LHS2 = MI->getOperand(2).getReg();
6324 if (RHSisZero) {
6325 AddDefaultPred(BuildMI(BB, dl,
6326 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
6327 .addReg(LHS1).addImm(0));
6328 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
6329 .addReg(LHS2).addImm(0)
6330 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
6331 } else {
6332 unsigned RHS1 = MI->getOperand(3).getReg();
6333 unsigned RHS2 = MI->getOperand(4).getReg();
6334 AddDefaultPred(BuildMI(BB, dl,
6335 TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
6336 .addReg(LHS1).addReg(RHS1));
6337 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
6338 .addReg(LHS2).addReg(RHS2)
6339 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
6340 }
6341
6342 MachineBasicBlock *destMBB = MI->getOperand(RHSisZero ? 3 : 5).getMBB();
6343 MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB);
6344 if (MI->getOperand(0).getImm() == ARMCC::NE)
6345 std::swap(destMBB, exitMBB);
6346
6347 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
6348 .addMBB(destMBB).addImm(ARMCC::EQ).addReg(ARM::CPSR);
Owen Anderson51f6a7a2011-09-09 21:48:23 +00006349 if (isThumb2)
6350 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2B)).addMBB(exitMBB));
6351 else
6352 BuildMI(BB, dl, TII->get(ARM::B)) .addMBB(exitMBB);
Evan Cheng218977b2010-07-13 19:27:42 +00006353
6354 MI->eraseFromParent(); // The pseudo instruction is gone now.
6355 return BB;
6356 }
Bill Wendlingef2c86f2011-10-10 22:59:55 +00006357
Bill Wendling5bc85282011-10-17 20:37:20 +00006358 case ARM::Int_eh_sjlj_setjmp:
6359 case ARM::Int_eh_sjlj_setjmp_nofp:
6360 case ARM::tInt_eh_sjlj_setjmp:
6361 case ARM::t2Int_eh_sjlj_setjmp:
6362 case ARM::t2Int_eh_sjlj_setjmp_nofp:
6363 EmitSjLjDispatchBlock(MI, BB);
6364 return BB;
6365
Bill Wendlingef2c86f2011-10-10 22:59:55 +00006366 case ARM::ABS:
6367 case ARM::t2ABS: {
6368 // To insert an ABS instruction, we have to insert the
6369 // diamond control-flow pattern. The incoming instruction knows the
6370 // source vreg to test against 0, the destination vreg to set,
6371 // the condition code register to branch on, the
Andrew Trick7f5f0da2011-10-18 18:40:53 +00006372 // true/false values to select between, and a branch opcode to use.
Bill Wendlingef2c86f2011-10-10 22:59:55 +00006373 // It transforms
6374 // V1 = ABS V0
6375 // into
6376 // V2 = MOVS V0
6377 // BCC (branch to SinkBB if V0 >= 0)
6378 // RSBBB: V3 = RSBri V2, 0 (compute ABS if V2 < 0)
Andrew Trick7f5f0da2011-10-18 18:40:53 +00006379 // SinkBB: V1 = PHI(V2, V3)
Bill Wendlingef2c86f2011-10-10 22:59:55 +00006380 const BasicBlock *LLVM_BB = BB->getBasicBlock();
6381 MachineFunction::iterator BBI = BB;
6382 ++BBI;
6383 MachineFunction *Fn = BB->getParent();
6384 MachineBasicBlock *RSBBB = Fn->CreateMachineBasicBlock(LLVM_BB);
6385 MachineBasicBlock *SinkBB = Fn->CreateMachineBasicBlock(LLVM_BB);
6386 Fn->insert(BBI, RSBBB);
6387 Fn->insert(BBI, SinkBB);
6388
6389 unsigned int ABSSrcReg = MI->getOperand(1).getReg();
6390 unsigned int ABSDstReg = MI->getOperand(0).getReg();
6391 bool isThumb2 = Subtarget->isThumb2();
6392 MachineRegisterInfo &MRI = Fn->getRegInfo();
6393 // In Thumb mode S must not be specified if source register is the SP or
6394 // PC and if destination register is the SP, so restrict register class
6395 unsigned NewMovDstReg = MRI.createVirtualRegister(
6396 isThumb2 ? ARM::rGPRRegisterClass : ARM::GPRRegisterClass);
6397 unsigned NewRsbDstReg = MRI.createVirtualRegister(
6398 isThumb2 ? ARM::rGPRRegisterClass : ARM::GPRRegisterClass);
6399
6400 // Transfer the remainder of BB and its successor edges to sinkMBB.
6401 SinkBB->splice(SinkBB->begin(), BB,
6402 llvm::next(MachineBasicBlock::iterator(MI)),
6403 BB->end());
6404 SinkBB->transferSuccessorsAndUpdatePHIs(BB);
6405
6406 BB->addSuccessor(RSBBB);
6407 BB->addSuccessor(SinkBB);
6408
6409 // fall through to SinkMBB
6410 RSBBB->addSuccessor(SinkBB);
6411
6412 // insert a movs at the end of BB
6413 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2MOVr : ARM::MOVr),
6414 NewMovDstReg)
6415 .addReg(ABSSrcReg, RegState::Kill)
6416 .addImm((unsigned)ARMCC::AL).addReg(0)
6417 .addReg(ARM::CPSR, RegState::Define);
6418
6419 // insert a bcc with opposite CC to ARMCC::MI at the end of BB
Andrew Trick7f5f0da2011-10-18 18:40:53 +00006420 BuildMI(BB, dl,
Bill Wendlingef2c86f2011-10-10 22:59:55 +00006421 TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)).addMBB(SinkBB)
6422 .addImm(ARMCC::getOppositeCondition(ARMCC::MI)).addReg(ARM::CPSR);
6423
6424 // insert rsbri in RSBBB
6425 // Note: BCC and rsbri will be converted into predicated rsbmi
6426 // by if-conversion pass
Andrew Trick7f5f0da2011-10-18 18:40:53 +00006427 BuildMI(*RSBBB, RSBBB->begin(), dl,
Bill Wendlingef2c86f2011-10-10 22:59:55 +00006428 TII->get(isThumb2 ? ARM::t2RSBri : ARM::RSBri), NewRsbDstReg)
6429 .addReg(NewMovDstReg, RegState::Kill)
6430 .addImm(0).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
6431
Andrew Trick7f5f0da2011-10-18 18:40:53 +00006432 // insert PHI in SinkBB,
Bill Wendlingef2c86f2011-10-10 22:59:55 +00006433 // reuse ABSDstReg to not change uses of ABS instruction
6434 BuildMI(*SinkBB, SinkBB->begin(), dl,
6435 TII->get(ARM::PHI), ABSDstReg)
6436 .addReg(NewRsbDstReg).addMBB(RSBBB)
6437 .addReg(NewMovDstReg).addMBB(BB);
6438
6439 // remove ABS instruction
Andrew Trick7f5f0da2011-10-18 18:40:53 +00006440 MI->eraseFromParent();
Bill Wendlingef2c86f2011-10-10 22:59:55 +00006441
6442 // return last added BB
6443 return SinkBB;
6444 }
Evan Chenga8e29892007-01-19 07:51:42 +00006445 }
6446}
6447
Evan Cheng37fefc22011-08-30 19:09:48 +00006448void ARMTargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI,
6449 SDNode *Node) const {
Evan Cheng5a96b3d2011-12-07 07:15:52 +00006450 if (!MI->hasPostISelHook()) {
Andrew Trick3be654f2011-09-21 02:20:46 +00006451 assert(!convertAddSubFlagsOpcode(MI->getOpcode()) &&
6452 "Pseudo flag-setting opcodes must be marked with 'hasPostISelHook'");
6453 return;
6454 }
6455
Evan Cheng5a96b3d2011-12-07 07:15:52 +00006456 const MCInstrDesc *MCID = &MI->getDesc();
Andrew Trick4815d562011-09-20 03:17:40 +00006457 // Adjust potentially 's' setting instructions after isel, i.e. ADC, SBC, RSB,
6458 // RSC. Coming out of isel, they have an implicit CPSR def, but the optional
6459 // operand is still set to noreg. If needed, set the optional operand's
6460 // register to CPSR, and remove the redundant implicit def.
Andrew Trick3be654f2011-09-21 02:20:46 +00006461 //
Andrew Trick90b7b122011-10-18 19:18:52 +00006462 // e.g. ADCS (..., CPSR<imp-def>) -> ADC (... opt:CPSR<def>).
Andrew Trick4815d562011-09-20 03:17:40 +00006463
Andrew Trick3be654f2011-09-21 02:20:46 +00006464 // Rename pseudo opcodes.
6465 unsigned NewOpc = convertAddSubFlagsOpcode(MI->getOpcode());
6466 if (NewOpc) {
6467 const ARMBaseInstrInfo *TII =
6468 static_cast<const ARMBaseInstrInfo*>(getTargetMachine().getInstrInfo());
Andrew Trick90b7b122011-10-18 19:18:52 +00006469 MCID = &TII->get(NewOpc);
6470
6471 assert(MCID->getNumOperands() == MI->getDesc().getNumOperands() + 1 &&
6472 "converted opcode should be the same except for cc_out");
6473
6474 MI->setDesc(*MCID);
6475
6476 // Add the optional cc_out operand
6477 MI->addOperand(MachineOperand::CreateReg(0, /*isDef=*/true));
Andrew Trick3be654f2011-09-21 02:20:46 +00006478 }
Andrew Trick90b7b122011-10-18 19:18:52 +00006479 unsigned ccOutIdx = MCID->getNumOperands() - 1;
Andrew Trick4815d562011-09-20 03:17:40 +00006480
6481 // Any ARM instruction that sets the 's' bit should specify an optional
6482 // "cc_out" operand in the last operand position.
Evan Cheng5a96b3d2011-12-07 07:15:52 +00006483 if (!MI->hasOptionalDef() || !MCID->OpInfo[ccOutIdx].isOptionalDef()) {
Andrew Trick3be654f2011-09-21 02:20:46 +00006484 assert(!NewOpc && "Optional cc_out operand required");
Andrew Trick4815d562011-09-20 03:17:40 +00006485 return;
6486 }
Andrew Trick3be654f2011-09-21 02:20:46 +00006487 // Look for an implicit def of CPSR added by MachineInstr ctor. Remove it
6488 // since we already have an optional CPSR def.
Andrew Trick4815d562011-09-20 03:17:40 +00006489 bool definesCPSR = false;
6490 bool deadCPSR = false;
Andrew Trick90b7b122011-10-18 19:18:52 +00006491 for (unsigned i = MCID->getNumOperands(), e = MI->getNumOperands();
Andrew Trick4815d562011-09-20 03:17:40 +00006492 i != e; ++i) {
6493 const MachineOperand &MO = MI->getOperand(i);
6494 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR) {
6495 definesCPSR = true;
6496 if (MO.isDead())
6497 deadCPSR = true;
6498 MI->RemoveOperand(i);
6499 break;
Evan Cheng37fefc22011-08-30 19:09:48 +00006500 }
6501 }
Andrew Trick4815d562011-09-20 03:17:40 +00006502 if (!definesCPSR) {
Andrew Trick3be654f2011-09-21 02:20:46 +00006503 assert(!NewOpc && "Optional cc_out operand required");
Andrew Trick4815d562011-09-20 03:17:40 +00006504 return;
6505 }
6506 assert(deadCPSR == !Node->hasAnyUseOfValue(1) && "inconsistent dead flag");
Andrew Trick3be654f2011-09-21 02:20:46 +00006507 if (deadCPSR) {
6508 assert(!MI->getOperand(ccOutIdx).getReg() &&
6509 "expect uninitialized optional cc_out operand");
Andrew Trick4815d562011-09-20 03:17:40 +00006510 return;
Andrew Trick3be654f2011-09-21 02:20:46 +00006511 }
Andrew Trick4815d562011-09-20 03:17:40 +00006512
Andrew Trick3be654f2011-09-21 02:20:46 +00006513 // If this instruction was defined with an optional CPSR def and its dag node
6514 // had a live implicit CPSR def, then activate the optional CPSR def.
Andrew Trick4815d562011-09-20 03:17:40 +00006515 MachineOperand &MO = MI->getOperand(ccOutIdx);
6516 MO.setReg(ARM::CPSR);
6517 MO.setIsDef(true);
Evan Cheng37fefc22011-08-30 19:09:48 +00006518}
6519
Evan Chenga8e29892007-01-19 07:51:42 +00006520//===----------------------------------------------------------------------===//
6521// ARM Optimization Hooks
6522//===----------------------------------------------------------------------===//
6523
Chris Lattnerd1980a52009-03-12 06:52:53 +00006524static
6525SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp,
6526 TargetLowering::DAGCombinerInfo &DCI) {
Chris Lattnerd1980a52009-03-12 06:52:53 +00006527 SelectionDAG &DAG = DCI.DAG;
6528 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00006529 EVT VT = N->getValueType(0);
Chris Lattnerd1980a52009-03-12 06:52:53 +00006530 unsigned Opc = N->getOpcode();
6531 bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC;
6532 SDValue LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1);
6533 SDValue RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2);
6534 ISD::CondCode CC = ISD::SETCC_INVALID;
6535
6536 if (isSlctCC) {
6537 CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get();
6538 } else {
6539 SDValue CCOp = Slct.getOperand(0);
6540 if (CCOp.getOpcode() == ISD::SETCC)
6541 CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get();
6542 }
6543
6544 bool DoXform = false;
6545 bool InvCC = false;
6546 assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) &&
6547 "Bad input!");
6548
6549 if (LHS.getOpcode() == ISD::Constant &&
6550 cast<ConstantSDNode>(LHS)->isNullValue()) {
6551 DoXform = true;
6552 } else if (CC != ISD::SETCC_INVALID &&
6553 RHS.getOpcode() == ISD::Constant &&
6554 cast<ConstantSDNode>(RHS)->isNullValue()) {
6555 std::swap(LHS, RHS);
6556 SDValue Op0 = Slct.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006557 EVT OpVT = isSlctCC ? Op0.getValueType() :
Chris Lattnerd1980a52009-03-12 06:52:53 +00006558 Op0.getOperand(0).getValueType();
6559 bool isInt = OpVT.isInteger();
6560 CC = ISD::getSetCCInverse(CC, isInt);
6561
6562 if (!TLI.isCondCodeLegal(CC, OpVT))
6563 return SDValue(); // Inverse operator isn't legal.
6564
6565 DoXform = true;
6566 InvCC = true;
6567 }
6568
6569 if (DoXform) {
6570 SDValue Result = DAG.getNode(Opc, RHS.getDebugLoc(), VT, OtherOp, RHS);
6571 if (isSlctCC)
6572 return DAG.getSelectCC(N->getDebugLoc(), OtherOp, Result,
6573 Slct.getOperand(0), Slct.getOperand(1), CC);
6574 SDValue CCOp = Slct.getOperand(0);
6575 if (InvCC)
6576 CCOp = DAG.getSetCC(Slct.getDebugLoc(), CCOp.getValueType(),
6577 CCOp.getOperand(0), CCOp.getOperand(1), CC);
6578 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
6579 CCOp, OtherOp, Result);
6580 }
6581 return SDValue();
6582}
6583
Eric Christopherfa6f5912011-06-29 21:10:36 +00006584// AddCombineToVPADDL- For pair-wise add on neon, use the vpaddl instruction
Tanya Lattner189531f2011-06-14 23:48:48 +00006585// (only after legalization).
6586static SDValue AddCombineToVPADDL(SDNode *N, SDValue N0, SDValue N1,
6587 TargetLowering::DAGCombinerInfo &DCI,
6588 const ARMSubtarget *Subtarget) {
6589
6590 // Only perform optimization if after legalize, and if NEON is available. We
6591 // also expected both operands to be BUILD_VECTORs.
6592 if (DCI.isBeforeLegalize() || !Subtarget->hasNEON()
6593 || N0.getOpcode() != ISD::BUILD_VECTOR
6594 || N1.getOpcode() != ISD::BUILD_VECTOR)
6595 return SDValue();
6596
6597 // Check output type since VPADDL operand elements can only be 8, 16, or 32.
6598 EVT VT = N->getValueType(0);
6599 if (!VT.isInteger() || VT.getVectorElementType() == MVT::i64)
6600 return SDValue();
6601
6602 // Check that the vector operands are of the right form.
6603 // N0 and N1 are BUILD_VECTOR nodes with N number of EXTRACT_VECTOR
6604 // operands, where N is the size of the formed vector.
6605 // Each EXTRACT_VECTOR should have the same input vector and odd or even
6606 // index such that we have a pair wise add pattern.
Tanya Lattner189531f2011-06-14 23:48:48 +00006607
6608 // Grab the vector that all EXTRACT_VECTOR nodes should be referencing.
Bob Wilson7a10ab72011-06-15 06:04:34 +00006609 if (N0->getOperand(0)->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
Tanya Lattner189531f2011-06-14 23:48:48 +00006610 return SDValue();
Bob Wilson7a10ab72011-06-15 06:04:34 +00006611 SDValue Vec = N0->getOperand(0)->getOperand(0);
6612 SDNode *V = Vec.getNode();
6613 unsigned nextIndex = 0;
Tanya Lattner189531f2011-06-14 23:48:48 +00006614
Eric Christopherfa6f5912011-06-29 21:10:36 +00006615 // For each operands to the ADD which are BUILD_VECTORs,
Tanya Lattner189531f2011-06-14 23:48:48 +00006616 // check to see if each of their operands are an EXTRACT_VECTOR with
6617 // the same vector and appropriate index.
6618 for (unsigned i = 0, e = N0->getNumOperands(); i != e; ++i) {
6619 if (N0->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT
6620 && N1->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
Eric Christopherfa6f5912011-06-29 21:10:36 +00006621
Tanya Lattner189531f2011-06-14 23:48:48 +00006622 SDValue ExtVec0 = N0->getOperand(i);
6623 SDValue ExtVec1 = N1->getOperand(i);
Eric Christopherfa6f5912011-06-29 21:10:36 +00006624
Tanya Lattner189531f2011-06-14 23:48:48 +00006625 // First operand is the vector, verify its the same.
6626 if (V != ExtVec0->getOperand(0).getNode() ||
6627 V != ExtVec1->getOperand(0).getNode())
6628 return SDValue();
Eric Christopherfa6f5912011-06-29 21:10:36 +00006629
Tanya Lattner189531f2011-06-14 23:48:48 +00006630 // Second is the constant, verify its correct.
6631 ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(ExtVec0->getOperand(1));
6632 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(ExtVec1->getOperand(1));
Eric Christopherfa6f5912011-06-29 21:10:36 +00006633
Tanya Lattner189531f2011-06-14 23:48:48 +00006634 // For the constant, we want to see all the even or all the odd.
6635 if (!C0 || !C1 || C0->getZExtValue() != nextIndex
6636 || C1->getZExtValue() != nextIndex+1)
6637 return SDValue();
6638
6639 // Increment index.
6640 nextIndex+=2;
Eric Christopherfa6f5912011-06-29 21:10:36 +00006641 } else
Tanya Lattner189531f2011-06-14 23:48:48 +00006642 return SDValue();
6643 }
6644
6645 // Create VPADDL node.
6646 SelectionDAG &DAG = DCI.DAG;
6647 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Tanya Lattner189531f2011-06-14 23:48:48 +00006648
6649 // Build operand list.
6650 SmallVector<SDValue, 8> Ops;
6651 Ops.push_back(DAG.getConstant(Intrinsic::arm_neon_vpaddls,
6652 TLI.getPointerTy()));
6653
6654 // Input is the vector.
6655 Ops.push_back(Vec);
Eric Christopherfa6f5912011-06-29 21:10:36 +00006656
Tanya Lattner189531f2011-06-14 23:48:48 +00006657 // Get widened type and narrowed type.
6658 MVT widenType;
6659 unsigned numElem = VT.getVectorNumElements();
6660 switch (VT.getVectorElementType().getSimpleVT().SimpleTy) {
6661 case MVT::i8: widenType = MVT::getVectorVT(MVT::i16, numElem); break;
6662 case MVT::i16: widenType = MVT::getVectorVT(MVT::i32, numElem); break;
6663 case MVT::i32: widenType = MVT::getVectorVT(MVT::i64, numElem); break;
6664 default:
6665 assert(0 && "Invalid vector element type for padd optimization.");
6666 }
6667
6668 SDValue tmp = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, N->getDebugLoc(),
6669 widenType, &Ops[0], Ops.size());
6670 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, tmp);
6671}
6672
Bob Wilson3d5792a2010-07-29 20:34:14 +00006673/// PerformADDCombineWithOperands - Try DAG combinations for an ADD with
6674/// operands N0 and N1. This is a helper for PerformADDCombine that is
6675/// called with the default operands, and if that fails, with commuted
6676/// operands.
6677static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1,
Tanya Lattner189531f2011-06-14 23:48:48 +00006678 TargetLowering::DAGCombinerInfo &DCI,
6679 const ARMSubtarget *Subtarget){
6680
6681 // Attempt to create vpaddl for this add.
6682 SDValue Result = AddCombineToVPADDL(N, N0, N1, DCI, Subtarget);
6683 if (Result.getNode())
6684 return Result;
Eric Christopherfa6f5912011-06-29 21:10:36 +00006685
Chris Lattnerd1980a52009-03-12 06:52:53 +00006686 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
6687 if (N0.getOpcode() == ISD::SELECT && N0.getNode()->hasOneUse()) {
6688 SDValue Result = combineSelectAndUse(N, N0, N1, DCI);
6689 if (Result.getNode()) return Result;
6690 }
Chris Lattnerd1980a52009-03-12 06:52:53 +00006691 return SDValue();
6692}
6693
Bob Wilson3d5792a2010-07-29 20:34:14 +00006694/// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
6695///
6696static SDValue PerformADDCombine(SDNode *N,
Tanya Lattner189531f2011-06-14 23:48:48 +00006697 TargetLowering::DAGCombinerInfo &DCI,
6698 const ARMSubtarget *Subtarget) {
Bob Wilson3d5792a2010-07-29 20:34:14 +00006699 SDValue N0 = N->getOperand(0);
6700 SDValue N1 = N->getOperand(1);
6701
6702 // First try with the default operand order.
Tanya Lattner189531f2011-06-14 23:48:48 +00006703 SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI, Subtarget);
Bob Wilson3d5792a2010-07-29 20:34:14 +00006704 if (Result.getNode())
6705 return Result;
6706
6707 // If that didn't work, try again with the operands commuted.
Tanya Lattner189531f2011-06-14 23:48:48 +00006708 return PerformADDCombineWithOperands(N, N1, N0, DCI, Subtarget);
Bob Wilson3d5792a2010-07-29 20:34:14 +00006709}
6710
Chris Lattnerd1980a52009-03-12 06:52:53 +00006711/// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB.
Bob Wilson3d5792a2010-07-29 20:34:14 +00006712///
Chris Lattnerd1980a52009-03-12 06:52:53 +00006713static SDValue PerformSUBCombine(SDNode *N,
6714 TargetLowering::DAGCombinerInfo &DCI) {
Bob Wilson3d5792a2010-07-29 20:34:14 +00006715 SDValue N0 = N->getOperand(0);
6716 SDValue N1 = N->getOperand(1);
Bob Wilson2dc4f542009-03-20 22:42:55 +00006717
Chris Lattnerd1980a52009-03-12 06:52:53 +00006718 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
6719 if (N1.getOpcode() == ISD::SELECT && N1.getNode()->hasOneUse()) {
6720 SDValue Result = combineSelectAndUse(N, N1, N0, DCI);
6721 if (Result.getNode()) return Result;
6722 }
Bob Wilson2dc4f542009-03-20 22:42:55 +00006723
Chris Lattnerd1980a52009-03-12 06:52:53 +00006724 return SDValue();
6725}
6726
Evan Cheng463d3582011-03-31 19:38:48 +00006727/// PerformVMULCombine
6728/// Distribute (A + B) * C to (A * C) + (B * C) to take advantage of the
6729/// special multiplier accumulator forwarding.
6730/// vmul d3, d0, d2
6731/// vmla d3, d1, d2
6732/// is faster than
6733/// vadd d3, d0, d1
6734/// vmul d3, d3, d2
6735static SDValue PerformVMULCombine(SDNode *N,
6736 TargetLowering::DAGCombinerInfo &DCI,
6737 const ARMSubtarget *Subtarget) {
6738 if (!Subtarget->hasVMLxForwarding())
6739 return SDValue();
6740
6741 SelectionDAG &DAG = DCI.DAG;
6742 SDValue N0 = N->getOperand(0);
6743 SDValue N1 = N->getOperand(1);
6744 unsigned Opcode = N0.getOpcode();
6745 if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
6746 Opcode != ISD::FADD && Opcode != ISD::FSUB) {
Chad Rosier689edc82011-06-16 01:21:54 +00006747 Opcode = N1.getOpcode();
Evan Cheng463d3582011-03-31 19:38:48 +00006748 if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
6749 Opcode != ISD::FADD && Opcode != ISD::FSUB)
6750 return SDValue();
6751 std::swap(N0, N1);
6752 }
6753
6754 EVT VT = N->getValueType(0);
6755 DebugLoc DL = N->getDebugLoc();
6756 SDValue N00 = N0->getOperand(0);
6757 SDValue N01 = N0->getOperand(1);
6758 return DAG.getNode(Opcode, DL, VT,
6759 DAG.getNode(ISD::MUL, DL, VT, N00, N1),
6760 DAG.getNode(ISD::MUL, DL, VT, N01, N1));
6761}
6762
Anton Korobeynikova9790d72010-05-15 18:16:59 +00006763static SDValue PerformMULCombine(SDNode *N,
6764 TargetLowering::DAGCombinerInfo &DCI,
6765 const ARMSubtarget *Subtarget) {
6766 SelectionDAG &DAG = DCI.DAG;
6767
6768 if (Subtarget->isThumb1Only())
6769 return SDValue();
6770
Anton Korobeynikova9790d72010-05-15 18:16:59 +00006771 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
6772 return SDValue();
6773
6774 EVT VT = N->getValueType(0);
Evan Cheng463d3582011-03-31 19:38:48 +00006775 if (VT.is64BitVector() || VT.is128BitVector())
6776 return PerformVMULCombine(N, DCI, Subtarget);
Anton Korobeynikova9790d72010-05-15 18:16:59 +00006777 if (VT != MVT::i32)
6778 return SDValue();
6779
6780 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
6781 if (!C)
6782 return SDValue();
6783
6784 uint64_t MulAmt = C->getZExtValue();
6785 unsigned ShiftAmt = CountTrailingZeros_64(MulAmt);
6786 ShiftAmt = ShiftAmt & (32 - 1);
6787 SDValue V = N->getOperand(0);
6788 DebugLoc DL = N->getDebugLoc();
Anton Korobeynikova9790d72010-05-15 18:16:59 +00006789
Anton Korobeynikov4878b842010-05-16 08:54:20 +00006790 SDValue Res;
6791 MulAmt >>= ShiftAmt;
6792 if (isPowerOf2_32(MulAmt - 1)) {
6793 // (mul x, 2^N + 1) => (add (shl x, N), x)
6794 Res = DAG.getNode(ISD::ADD, DL, VT,
6795 V, DAG.getNode(ISD::SHL, DL, VT,
6796 V, DAG.getConstant(Log2_32(MulAmt-1),
6797 MVT::i32)));
6798 } else if (isPowerOf2_32(MulAmt + 1)) {
6799 // (mul x, 2^N - 1) => (sub (shl x, N), x)
6800 Res = DAG.getNode(ISD::SUB, DL, VT,
6801 DAG.getNode(ISD::SHL, DL, VT,
6802 V, DAG.getConstant(Log2_32(MulAmt+1),
6803 MVT::i32)),
6804 V);
6805 } else
Anton Korobeynikova9790d72010-05-15 18:16:59 +00006806 return SDValue();
Anton Korobeynikov4878b842010-05-16 08:54:20 +00006807
6808 if (ShiftAmt != 0)
6809 Res = DAG.getNode(ISD::SHL, DL, VT, Res,
6810 DAG.getConstant(ShiftAmt, MVT::i32));
Anton Korobeynikova9790d72010-05-15 18:16:59 +00006811
6812 // Do not add new nodes to DAG combiner worklist.
Anton Korobeynikov4878b842010-05-16 08:54:20 +00006813 DCI.CombineTo(N, Res, false);
Anton Korobeynikova9790d72010-05-15 18:16:59 +00006814 return SDValue();
6815}
6816
Owen Anderson080c0922010-11-05 19:27:46 +00006817static SDValue PerformANDCombine(SDNode *N,
6818 TargetLowering::DAGCombinerInfo &DCI) {
Owen Anderson76706012011-04-05 21:48:57 +00006819
Owen Anderson080c0922010-11-05 19:27:46 +00006820 // Attempt to use immediate-form VBIC
6821 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
6822 DebugLoc dl = N->getDebugLoc();
6823 EVT VT = N->getValueType(0);
6824 SelectionDAG &DAG = DCI.DAG;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006825
Tanya Lattner0433b212011-04-07 15:24:20 +00006826 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
6827 return SDValue();
Andrew Trick1c3af772011-04-23 03:55:32 +00006828
Owen Anderson080c0922010-11-05 19:27:46 +00006829 APInt SplatBits, SplatUndef;
6830 unsigned SplatBitSize;
6831 bool HasAnyUndefs;
6832 if (BVN &&
6833 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
6834 if (SplatBitSize <= 64) {
6835 EVT VbicVT;
6836 SDValue Val = isNEONModifiedImm((~SplatBits).getZExtValue(),
6837 SplatUndef.getZExtValue(), SplatBitSize,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006838 DAG, VbicVT, VT.is128BitVector(),
Owen Anderson36fa3ea2010-11-05 21:57:54 +00006839 OtherModImm);
Owen Anderson080c0922010-11-05 19:27:46 +00006840 if (Val.getNode()) {
6841 SDValue Input =
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006842 DAG.getNode(ISD::BITCAST, dl, VbicVT, N->getOperand(0));
Owen Anderson080c0922010-11-05 19:27:46 +00006843 SDValue Vbic = DAG.getNode(ARMISD::VBICIMM, dl, VbicVT, Input, Val);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006844 return DAG.getNode(ISD::BITCAST, dl, VT, Vbic);
Owen Anderson080c0922010-11-05 19:27:46 +00006845 }
6846 }
6847 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006848
Owen Anderson080c0922010-11-05 19:27:46 +00006849 return SDValue();
6850}
6851
Jim Grosbach469bbdb2010-07-16 23:05:05 +00006852/// PerformORCombine - Target-specific dag combine xforms for ISD::OR
6853static SDValue PerformORCombine(SDNode *N,
6854 TargetLowering::DAGCombinerInfo &DCI,
6855 const ARMSubtarget *Subtarget) {
Owen Anderson60f48702010-11-03 23:15:26 +00006856 // Attempt to use immediate-form VORR
6857 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
6858 DebugLoc dl = N->getDebugLoc();
6859 EVT VT = N->getValueType(0);
6860 SelectionDAG &DAG = DCI.DAG;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006861
Tanya Lattner0433b212011-04-07 15:24:20 +00006862 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
6863 return SDValue();
Andrew Trick1c3af772011-04-23 03:55:32 +00006864
Owen Anderson60f48702010-11-03 23:15:26 +00006865 APInt SplatBits, SplatUndef;
6866 unsigned SplatBitSize;
6867 bool HasAnyUndefs;
6868 if (BVN && Subtarget->hasNEON() &&
6869 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
6870 if (SplatBitSize <= 64) {
6871 EVT VorrVT;
6872 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
6873 SplatUndef.getZExtValue(), SplatBitSize,
Owen Anderson36fa3ea2010-11-05 21:57:54 +00006874 DAG, VorrVT, VT.is128BitVector(),
6875 OtherModImm);
Owen Anderson60f48702010-11-03 23:15:26 +00006876 if (Val.getNode()) {
6877 SDValue Input =
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006878 DAG.getNode(ISD::BITCAST, dl, VorrVT, N->getOperand(0));
Owen Anderson60f48702010-11-03 23:15:26 +00006879 SDValue Vorr = DAG.getNode(ARMISD::VORRIMM, dl, VorrVT, Input, Val);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006880 return DAG.getNode(ISD::BITCAST, dl, VT, Vorr);
Owen Anderson60f48702010-11-03 23:15:26 +00006881 }
6882 }
6883 }
6884
Cameron Zwarichc0e6d782011-03-30 23:01:21 +00006885 SDValue N0 = N->getOperand(0);
6886 if (N0.getOpcode() != ISD::AND)
6887 return SDValue();
6888 SDValue N1 = N->getOperand(1);
6889
6890 // (or (and B, A), (and C, ~A)) => (VBSL A, B, C) when A is a constant.
6891 if (Subtarget->hasNEON() && N1.getOpcode() == ISD::AND && VT.isVector() &&
6892 DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
6893 APInt SplatUndef;
6894 unsigned SplatBitSize;
6895 bool HasAnyUndefs;
6896
6897 BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(1));
6898 APInt SplatBits0;
6899 if (BVN0 && BVN0->isConstantSplat(SplatBits0, SplatUndef, SplatBitSize,
6900 HasAnyUndefs) && !HasAnyUndefs) {
6901 BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(1));
6902 APInt SplatBits1;
6903 if (BVN1 && BVN1->isConstantSplat(SplatBits1, SplatUndef, SplatBitSize,
6904 HasAnyUndefs) && !HasAnyUndefs &&
6905 SplatBits0 == ~SplatBits1) {
6906 // Canonicalize the vector type to make instruction selection simpler.
6907 EVT CanonicalVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
6908 SDValue Result = DAG.getNode(ARMISD::VBSL, dl, CanonicalVT,
6909 N0->getOperand(1), N0->getOperand(0),
Cameron Zwarich5af60ce2011-04-13 21:01:19 +00006910 N1->getOperand(0));
Cameron Zwarichc0e6d782011-03-30 23:01:21 +00006911 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
6912 }
6913 }
6914 }
6915
Jim Grosbach54238562010-07-17 03:30:54 +00006916 // Try to use the ARM/Thumb2 BFI (bitfield insert) instruction when
6917 // reasonable.
6918
Jim Grosbach469bbdb2010-07-16 23:05:05 +00006919 // BFI is only available on V6T2+
6920 if (Subtarget->isThumb1Only() || !Subtarget->hasV6T2Ops())
6921 return SDValue();
6922
Jim Grosbach54238562010-07-17 03:30:54 +00006923 DebugLoc DL = N->getDebugLoc();
6924 // 1) or (and A, mask), val => ARMbfi A, val, mask
6925 // iff (val & mask) == val
6926 //
6927 // 2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
6928 // 2a) iff isBitFieldInvertedMask(mask) && isBitFieldInvertedMask(~mask2)
Eric Christopher29aeed12011-03-26 01:21:03 +00006929 // && mask == ~mask2
Jim Grosbach54238562010-07-17 03:30:54 +00006930 // 2b) iff isBitFieldInvertedMask(~mask) && isBitFieldInvertedMask(mask2)
Eric Christopher29aeed12011-03-26 01:21:03 +00006931 // && ~mask == mask2
Jim Grosbach54238562010-07-17 03:30:54 +00006932 // (i.e., copy a bitfield value into another bitfield of the same width)
Jim Grosbach469bbdb2010-07-16 23:05:05 +00006933
Jim Grosbach469bbdb2010-07-16 23:05:05 +00006934 if (VT != MVT::i32)
6935 return SDValue();
6936
Evan Cheng30fb13f2010-12-13 20:32:54 +00006937 SDValue N00 = N0.getOperand(0);
Jim Grosbach54238562010-07-17 03:30:54 +00006938
Jim Grosbach469bbdb2010-07-16 23:05:05 +00006939 // The value and the mask need to be constants so we can verify this is
6940 // actually a bitfield set. If the mask is 0xffff, we can do better
6941 // via a movt instruction, so don't use BFI in that case.
Evan Cheng30fb13f2010-12-13 20:32:54 +00006942 SDValue MaskOp = N0.getOperand(1);
6943 ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(MaskOp);
6944 if (!MaskC)
Jim Grosbach469bbdb2010-07-16 23:05:05 +00006945 return SDValue();
Evan Cheng30fb13f2010-12-13 20:32:54 +00006946 unsigned Mask = MaskC->getZExtValue();
Jim Grosbach469bbdb2010-07-16 23:05:05 +00006947 if (Mask == 0xffff)
6948 return SDValue();
Jim Grosbach54238562010-07-17 03:30:54 +00006949 SDValue Res;
6950 // Case (1): or (and A, mask), val => ARMbfi A, val, mask
Evan Cheng30fb13f2010-12-13 20:32:54 +00006951 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
6952 if (N1C) {
6953 unsigned Val = N1C->getZExtValue();
Evan Chenga9688c42010-12-11 04:11:38 +00006954 if ((Val & ~Mask) != Val)
Jim Grosbach54238562010-07-17 03:30:54 +00006955 return SDValue();
Jim Grosbach469bbdb2010-07-16 23:05:05 +00006956
Evan Chenga9688c42010-12-11 04:11:38 +00006957 if (ARM::isBitFieldInvertedMask(Mask)) {
6958 Val >>= CountTrailingZeros_32(~Mask);
Jim Grosbach469bbdb2010-07-16 23:05:05 +00006959
Evan Cheng30fb13f2010-12-13 20:32:54 +00006960 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00,
Evan Chenga9688c42010-12-11 04:11:38 +00006961 DAG.getConstant(Val, MVT::i32),
6962 DAG.getConstant(Mask, MVT::i32));
6963
6964 // Do not add new nodes to DAG combiner worklist.
6965 DCI.CombineTo(N, Res, false);
Evan Cheng30fb13f2010-12-13 20:32:54 +00006966 return SDValue();
Evan Chenga9688c42010-12-11 04:11:38 +00006967 }
Jim Grosbach54238562010-07-17 03:30:54 +00006968 } else if (N1.getOpcode() == ISD::AND) {
6969 // case (2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
Evan Cheng30fb13f2010-12-13 20:32:54 +00006970 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
6971 if (!N11C)
Jim Grosbach54238562010-07-17 03:30:54 +00006972 return SDValue();
Evan Cheng30fb13f2010-12-13 20:32:54 +00006973 unsigned Mask2 = N11C->getZExtValue();
Jim Grosbach54238562010-07-17 03:30:54 +00006974
Eric Christopher29aeed12011-03-26 01:21:03 +00006975 // Mask and ~Mask2 (or reverse) must be equivalent for the BFI pattern
6976 // as is to match.
Jim Grosbach54238562010-07-17 03:30:54 +00006977 if (ARM::isBitFieldInvertedMask(Mask) &&
Eric Christopher29aeed12011-03-26 01:21:03 +00006978 (Mask == ~Mask2)) {
Jim Grosbach54238562010-07-17 03:30:54 +00006979 // The pack halfword instruction works better for masks that fit it,
6980 // so use that when it's available.
6981 if (Subtarget->hasT2ExtractPack() &&
6982 (Mask == 0xffff || Mask == 0xffff0000))
6983 return SDValue();
6984 // 2a
Eric Christopher29aeed12011-03-26 01:21:03 +00006985 unsigned amt = CountTrailingZeros_32(Mask2);
Jim Grosbach54238562010-07-17 03:30:54 +00006986 Res = DAG.getNode(ISD::SRL, DL, VT, N1.getOperand(0),
Eric Christopher29aeed12011-03-26 01:21:03 +00006987 DAG.getConstant(amt, MVT::i32));
Evan Cheng30fb13f2010-12-13 20:32:54 +00006988 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, Res,
Jim Grosbach54238562010-07-17 03:30:54 +00006989 DAG.getConstant(Mask, MVT::i32));
6990 // Do not add new nodes to DAG combiner worklist.
6991 DCI.CombineTo(N, Res, false);
Evan Cheng30fb13f2010-12-13 20:32:54 +00006992 return SDValue();
Jim Grosbach54238562010-07-17 03:30:54 +00006993 } else if (ARM::isBitFieldInvertedMask(~Mask) &&
Eric Christopher29aeed12011-03-26 01:21:03 +00006994 (~Mask == Mask2)) {
Jim Grosbach54238562010-07-17 03:30:54 +00006995 // The pack halfword instruction works better for masks that fit it,
6996 // so use that when it's available.
6997 if (Subtarget->hasT2ExtractPack() &&
6998 (Mask2 == 0xffff || Mask2 == 0xffff0000))
6999 return SDValue();
7000 // 2b
7001 unsigned lsb = CountTrailingZeros_32(Mask);
Evan Cheng30fb13f2010-12-13 20:32:54 +00007002 Res = DAG.getNode(ISD::SRL, DL, VT, N00,
Jim Grosbach54238562010-07-17 03:30:54 +00007003 DAG.getConstant(lsb, MVT::i32));
7004 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1.getOperand(0), Res,
Eric Christopher29aeed12011-03-26 01:21:03 +00007005 DAG.getConstant(Mask2, MVT::i32));
Jim Grosbach54238562010-07-17 03:30:54 +00007006 // Do not add new nodes to DAG combiner worklist.
7007 DCI.CombineTo(N, Res, false);
Evan Cheng30fb13f2010-12-13 20:32:54 +00007008 return SDValue();
Jim Grosbach54238562010-07-17 03:30:54 +00007009 }
7010 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007011
Evan Cheng30fb13f2010-12-13 20:32:54 +00007012 if (DAG.MaskedValueIsZero(N1, MaskC->getAPIntValue()) &&
7013 N00.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N00.getOperand(1)) &&
7014 ARM::isBitFieldInvertedMask(~Mask)) {
7015 // Case (3): or (and (shl A, #shamt), mask), B => ARMbfi B, A, ~mask
7016 // where lsb(mask) == #shamt and masked bits of B are known zero.
7017 SDValue ShAmt = N00.getOperand(1);
7018 unsigned ShAmtC = cast<ConstantSDNode>(ShAmt)->getZExtValue();
7019 unsigned LSB = CountTrailingZeros_32(Mask);
7020 if (ShAmtC != LSB)
7021 return SDValue();
7022
7023 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1, N00.getOperand(0),
7024 DAG.getConstant(~Mask, MVT::i32));
7025
7026 // Do not add new nodes to DAG combiner worklist.
7027 DCI.CombineTo(N, Res, false);
7028 }
7029
Jim Grosbach469bbdb2010-07-16 23:05:05 +00007030 return SDValue();
7031}
7032
Evan Chengbf188ae2011-06-15 01:12:31 +00007033/// PerformBFICombine - (bfi A, (and B, Mask1), Mask2) -> (bfi A, B, Mask2) iff
7034/// the bits being cleared by the AND are not demanded by the BFI.
Evan Cheng0c1aec12010-12-14 03:22:07 +00007035static SDValue PerformBFICombine(SDNode *N,
7036 TargetLowering::DAGCombinerInfo &DCI) {
7037 SDValue N1 = N->getOperand(1);
7038 if (N1.getOpcode() == ISD::AND) {
7039 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
7040 if (!N11C)
7041 return SDValue();
Evan Chengbf188ae2011-06-15 01:12:31 +00007042 unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue();
7043 unsigned LSB = CountTrailingZeros_32(~InvMask);
7044 unsigned Width = (32 - CountLeadingZeros_32(~InvMask)) - LSB;
7045 unsigned Mask = (1 << Width)-1;
Evan Cheng0c1aec12010-12-14 03:22:07 +00007046 unsigned Mask2 = N11C->getZExtValue();
Evan Chengbf188ae2011-06-15 01:12:31 +00007047 if ((Mask & (~Mask2)) == 0)
Evan Cheng0c1aec12010-12-14 03:22:07 +00007048 return DCI.DAG.getNode(ARMISD::BFI, N->getDebugLoc(), N->getValueType(0),
7049 N->getOperand(0), N1.getOperand(0),
7050 N->getOperand(2));
7051 }
7052 return SDValue();
7053}
7054
Bob Wilson0b8ccb82010-09-22 22:09:21 +00007055/// PerformVMOVRRDCombine - Target-specific dag combine xforms for
7056/// ARMISD::VMOVRRD.
7057static SDValue PerformVMOVRRDCombine(SDNode *N,
7058 TargetLowering::DAGCombinerInfo &DCI) {
7059 // vmovrrd(vmovdrr x, y) -> x,y
7060 SDValue InDouble = N->getOperand(0);
7061 if (InDouble.getOpcode() == ARMISD::VMOVDRR)
7062 return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1));
Cameron Zwarich4071a712011-04-02 02:40:43 +00007063
7064 // vmovrrd(load f64) -> (load i32), (load i32)
7065 SDNode *InNode = InDouble.getNode();
7066 if (ISD::isNormalLoad(InNode) && InNode->hasOneUse() &&
7067 InNode->getValueType(0) == MVT::f64 &&
7068 InNode->getOperand(1).getOpcode() == ISD::FrameIndex &&
7069 !cast<LoadSDNode>(InNode)->isVolatile()) {
7070 // TODO: Should this be done for non-FrameIndex operands?
7071 LoadSDNode *LD = cast<LoadSDNode>(InNode);
7072
7073 SelectionDAG &DAG = DCI.DAG;
7074 DebugLoc DL = LD->getDebugLoc();
7075 SDValue BasePtr = LD->getBasePtr();
7076 SDValue NewLD1 = DAG.getLoad(MVT::i32, DL, LD->getChain(), BasePtr,
7077 LD->getPointerInfo(), LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007078 LD->isNonTemporal(), LD->isInvariant(),
7079 LD->getAlignment());
Cameron Zwarich4071a712011-04-02 02:40:43 +00007080
7081 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
7082 DAG.getConstant(4, MVT::i32));
7083 SDValue NewLD2 = DAG.getLoad(MVT::i32, DL, NewLD1.getValue(1), OffsetPtr,
7084 LD->getPointerInfo(), LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007085 LD->isNonTemporal(), LD->isInvariant(),
Cameron Zwarich4071a712011-04-02 02:40:43 +00007086 std::min(4U, LD->getAlignment() / 2));
7087
7088 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), NewLD2.getValue(1));
7089 SDValue Result = DCI.CombineTo(N, NewLD1, NewLD2);
7090 DCI.RemoveFromWorklist(LD);
7091 DAG.DeleteNode(LD);
7092 return Result;
7093 }
7094
Bob Wilson0b8ccb82010-09-22 22:09:21 +00007095 return SDValue();
7096}
7097
7098/// PerformVMOVDRRCombine - Target-specific dag combine xforms for
7099/// ARMISD::VMOVDRR. This is also used for BUILD_VECTORs with 2 operands.
7100static SDValue PerformVMOVDRRCombine(SDNode *N, SelectionDAG &DAG) {
7101 // N=vmovrrd(X); vmovdrr(N:0, N:1) -> bit_convert(X)
7102 SDValue Op0 = N->getOperand(0);
7103 SDValue Op1 = N->getOperand(1);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007104 if (Op0.getOpcode() == ISD::BITCAST)
Bob Wilson0b8ccb82010-09-22 22:09:21 +00007105 Op0 = Op0.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007106 if (Op1.getOpcode() == ISD::BITCAST)
Bob Wilson0b8ccb82010-09-22 22:09:21 +00007107 Op1 = Op1.getOperand(0);
7108 if (Op0.getOpcode() == ARMISD::VMOVRRD &&
7109 Op0.getNode() == Op1.getNode() &&
7110 Op0.getResNo() == 0 && Op1.getResNo() == 1)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007111 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bob Wilson0b8ccb82010-09-22 22:09:21 +00007112 N->getValueType(0), Op0.getOperand(0));
7113 return SDValue();
7114}
7115
Bob Wilson31600902010-12-21 06:43:19 +00007116/// PerformSTORECombine - Target-specific dag combine xforms for
7117/// ISD::STORE.
7118static SDValue PerformSTORECombine(SDNode *N,
7119 TargetLowering::DAGCombinerInfo &DCI) {
7120 // Bitcast an i64 store extracted from a vector to f64.
7121 // Otherwise, the i64 value will be legalized to a pair of i32 values.
7122 StoreSDNode *St = cast<StoreSDNode>(N);
7123 SDValue StVal = St->getValue();
Cameron Zwarichd0aacbc2011-04-12 02:24:17 +00007124 if (!ISD::isNormalStore(St) || St->isVolatile())
7125 return SDValue();
7126
7127 if (StVal.getNode()->getOpcode() == ARMISD::VMOVDRR &&
7128 StVal.getNode()->hasOneUse() && !St->isVolatile()) {
7129 SelectionDAG &DAG = DCI.DAG;
7130 DebugLoc DL = St->getDebugLoc();
7131 SDValue BasePtr = St->getBasePtr();
7132 SDValue NewST1 = DAG.getStore(St->getChain(), DL,
7133 StVal.getNode()->getOperand(0), BasePtr,
7134 St->getPointerInfo(), St->isVolatile(),
7135 St->isNonTemporal(), St->getAlignment());
7136
7137 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
7138 DAG.getConstant(4, MVT::i32));
7139 return DAG.getStore(NewST1.getValue(0), DL, StVal.getNode()->getOperand(1),
7140 OffsetPtr, St->getPointerInfo(), St->isVolatile(),
7141 St->isNonTemporal(),
7142 std::min(4U, St->getAlignment() / 2));
7143 }
7144
7145 if (StVal.getValueType() != MVT::i64 ||
Bob Wilson31600902010-12-21 06:43:19 +00007146 StVal.getNode()->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
7147 return SDValue();
7148
7149 SelectionDAG &DAG = DCI.DAG;
7150 DebugLoc dl = StVal.getDebugLoc();
7151 SDValue IntVec = StVal.getOperand(0);
7152 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
7153 IntVec.getValueType().getVectorNumElements());
7154 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, IntVec);
7155 SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
7156 Vec, StVal.getOperand(1));
7157 dl = N->getDebugLoc();
7158 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt);
7159 // Make the DAGCombiner fold the bitcasts.
7160 DCI.AddToWorklist(Vec.getNode());
7161 DCI.AddToWorklist(ExtElt.getNode());
7162 DCI.AddToWorklist(V.getNode());
7163 return DAG.getStore(St->getChain(), dl, V, St->getBasePtr(),
7164 St->getPointerInfo(), St->isVolatile(),
7165 St->isNonTemporal(), St->getAlignment(),
7166 St->getTBAAInfo());
7167}
7168
7169/// hasNormalLoadOperand - Check if any of the operands of a BUILD_VECTOR node
7170/// are normal, non-volatile loads. If so, it is profitable to bitcast an
7171/// i64 vector to have f64 elements, since the value can then be loaded
7172/// directly into a VFP register.
7173static bool hasNormalLoadOperand(SDNode *N) {
7174 unsigned NumElts = N->getValueType(0).getVectorNumElements();
7175 for (unsigned i = 0; i < NumElts; ++i) {
7176 SDNode *Elt = N->getOperand(i).getNode();
7177 if (ISD::isNormalLoad(Elt) && !cast<LoadSDNode>(Elt)->isVolatile())
7178 return true;
7179 }
7180 return false;
7181}
7182
Bob Wilson75f02882010-09-17 22:59:05 +00007183/// PerformBUILD_VECTORCombine - Target-specific dag combine xforms for
7184/// ISD::BUILD_VECTOR.
Bob Wilson31600902010-12-21 06:43:19 +00007185static SDValue PerformBUILD_VECTORCombine(SDNode *N,
7186 TargetLowering::DAGCombinerInfo &DCI){
Bob Wilson75f02882010-09-17 22:59:05 +00007187 // build_vector(N=ARMISD::VMOVRRD(X), N:1) -> bit_convert(X):
7188 // VMOVRRD is introduced when legalizing i64 types. It forces the i64 value
7189 // into a pair of GPRs, which is fine when the value is used as a scalar,
7190 // but if the i64 value is converted to a vector, we need to undo the VMOVRRD.
Bob Wilson31600902010-12-21 06:43:19 +00007191 SelectionDAG &DAG = DCI.DAG;
7192 if (N->getNumOperands() == 2) {
7193 SDValue RV = PerformVMOVDRRCombine(N, DAG);
7194 if (RV.getNode())
7195 return RV;
7196 }
Bob Wilson75f02882010-09-17 22:59:05 +00007197
Bob Wilson31600902010-12-21 06:43:19 +00007198 // Load i64 elements as f64 values so that type legalization does not split
7199 // them up into i32 values.
7200 EVT VT = N->getValueType(0);
7201 if (VT.getVectorElementType() != MVT::i64 || !hasNormalLoadOperand(N))
7202 return SDValue();
7203 DebugLoc dl = N->getDebugLoc();
7204 SmallVector<SDValue, 8> Ops;
7205 unsigned NumElts = VT.getVectorNumElements();
7206 for (unsigned i = 0; i < NumElts; ++i) {
7207 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(i));
7208 Ops.push_back(V);
7209 // Make the DAGCombiner fold the bitcast.
7210 DCI.AddToWorklist(V.getNode());
7211 }
7212 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, NumElts);
7213 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, FloatVT, Ops.data(), NumElts);
7214 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
7215}
7216
7217/// PerformInsertEltCombine - Target-specific dag combine xforms for
7218/// ISD::INSERT_VECTOR_ELT.
7219static SDValue PerformInsertEltCombine(SDNode *N,
7220 TargetLowering::DAGCombinerInfo &DCI) {
7221 // Bitcast an i64 load inserted into a vector to f64.
7222 // Otherwise, the i64 value will be legalized to a pair of i32 values.
7223 EVT VT = N->getValueType(0);
7224 SDNode *Elt = N->getOperand(1).getNode();
7225 if (VT.getVectorElementType() != MVT::i64 ||
7226 !ISD::isNormalLoad(Elt) || cast<LoadSDNode>(Elt)->isVolatile())
7227 return SDValue();
7228
7229 SelectionDAG &DAG = DCI.DAG;
7230 DebugLoc dl = N->getDebugLoc();
7231 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
7232 VT.getVectorNumElements());
7233 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, N->getOperand(0));
7234 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(1));
7235 // Make the DAGCombiner fold the bitcasts.
7236 DCI.AddToWorklist(Vec.getNode());
7237 DCI.AddToWorklist(V.getNode());
7238 SDValue InsElt = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, FloatVT,
7239 Vec, V, N->getOperand(2));
7240 return DAG.getNode(ISD::BITCAST, dl, VT, InsElt);
Bob Wilson75f02882010-09-17 22:59:05 +00007241}
7242
Bob Wilsonf20700c2010-10-27 20:38:28 +00007243/// PerformVECTOR_SHUFFLECombine - Target-specific dag combine xforms for
7244/// ISD::VECTOR_SHUFFLE.
7245static SDValue PerformVECTOR_SHUFFLECombine(SDNode *N, SelectionDAG &DAG) {
7246 // The LLVM shufflevector instruction does not require the shuffle mask
7247 // length to match the operand vector length, but ISD::VECTOR_SHUFFLE does
7248 // have that requirement. When translating to ISD::VECTOR_SHUFFLE, if the
7249 // operands do not match the mask length, they are extended by concatenating
7250 // them with undef vectors. That is probably the right thing for other
7251 // targets, but for NEON it is better to concatenate two double-register
7252 // size vector operands into a single quad-register size vector. Do that
7253 // transformation here:
7254 // shuffle(concat(v1, undef), concat(v2, undef)) ->
7255 // shuffle(concat(v1, v2), undef)
7256 SDValue Op0 = N->getOperand(0);
7257 SDValue Op1 = N->getOperand(1);
7258 if (Op0.getOpcode() != ISD::CONCAT_VECTORS ||
7259 Op1.getOpcode() != ISD::CONCAT_VECTORS ||
7260 Op0.getNumOperands() != 2 ||
7261 Op1.getNumOperands() != 2)
7262 return SDValue();
7263 SDValue Concat0Op1 = Op0.getOperand(1);
7264 SDValue Concat1Op1 = Op1.getOperand(1);
7265 if (Concat0Op1.getOpcode() != ISD::UNDEF ||
7266 Concat1Op1.getOpcode() != ISD::UNDEF)
7267 return SDValue();
7268 // Skip the transformation if any of the types are illegal.
7269 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7270 EVT VT = N->getValueType(0);
7271 if (!TLI.isTypeLegal(VT) ||
7272 !TLI.isTypeLegal(Concat0Op1.getValueType()) ||
7273 !TLI.isTypeLegal(Concat1Op1.getValueType()))
7274 return SDValue();
7275
7276 SDValue NewConcat = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
7277 Op0.getOperand(0), Op1.getOperand(0));
7278 // Translate the shuffle mask.
7279 SmallVector<int, 16> NewMask;
7280 unsigned NumElts = VT.getVectorNumElements();
7281 unsigned HalfElts = NumElts/2;
7282 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7283 for (unsigned n = 0; n < NumElts; ++n) {
7284 int MaskElt = SVN->getMaskElt(n);
7285 int NewElt = -1;
Bob Wilson1fa9d302010-10-27 23:49:00 +00007286 if (MaskElt < (int)HalfElts)
Bob Wilsonf20700c2010-10-27 20:38:28 +00007287 NewElt = MaskElt;
Bob Wilson1fa9d302010-10-27 23:49:00 +00007288 else if (MaskElt >= (int)NumElts && MaskElt < (int)(NumElts + HalfElts))
Bob Wilsonf20700c2010-10-27 20:38:28 +00007289 NewElt = HalfElts + MaskElt - NumElts;
7290 NewMask.push_back(NewElt);
7291 }
7292 return DAG.getVectorShuffle(VT, N->getDebugLoc(), NewConcat,
7293 DAG.getUNDEF(VT), NewMask.data());
7294}
7295
Bob Wilson1c3ef902011-02-07 17:43:21 +00007296/// CombineBaseUpdate - Target-specific DAG combine function for VLDDUP and
7297/// NEON load/store intrinsics to merge base address updates.
7298static SDValue CombineBaseUpdate(SDNode *N,
7299 TargetLowering::DAGCombinerInfo &DCI) {
7300 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
7301 return SDValue();
7302
7303 SelectionDAG &DAG = DCI.DAG;
7304 bool isIntrinsic = (N->getOpcode() == ISD::INTRINSIC_VOID ||
7305 N->getOpcode() == ISD::INTRINSIC_W_CHAIN);
7306 unsigned AddrOpIdx = (isIntrinsic ? 2 : 1);
7307 SDValue Addr = N->getOperand(AddrOpIdx);
7308
7309 // Search for a use of the address operand that is an increment.
7310 for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
7311 UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
7312 SDNode *User = *UI;
7313 if (User->getOpcode() != ISD::ADD ||
7314 UI.getUse().getResNo() != Addr.getResNo())
7315 continue;
7316
7317 // Check that the add is independent of the load/store. Otherwise, folding
7318 // it would create a cycle.
7319 if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
7320 continue;
7321
7322 // Find the new opcode for the updating load/store.
7323 bool isLoad = true;
7324 bool isLaneOp = false;
7325 unsigned NewOpc = 0;
7326 unsigned NumVecs = 0;
7327 if (isIntrinsic) {
7328 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
7329 switch (IntNo) {
7330 default: assert(0 && "unexpected intrinsic for Neon base update");
7331 case Intrinsic::arm_neon_vld1: NewOpc = ARMISD::VLD1_UPD;
7332 NumVecs = 1; break;
7333 case Intrinsic::arm_neon_vld2: NewOpc = ARMISD::VLD2_UPD;
7334 NumVecs = 2; break;
7335 case Intrinsic::arm_neon_vld3: NewOpc = ARMISD::VLD3_UPD;
7336 NumVecs = 3; break;
7337 case Intrinsic::arm_neon_vld4: NewOpc = ARMISD::VLD4_UPD;
7338 NumVecs = 4; break;
7339 case Intrinsic::arm_neon_vld2lane: NewOpc = ARMISD::VLD2LN_UPD;
7340 NumVecs = 2; isLaneOp = true; break;
7341 case Intrinsic::arm_neon_vld3lane: NewOpc = ARMISD::VLD3LN_UPD;
7342 NumVecs = 3; isLaneOp = true; break;
7343 case Intrinsic::arm_neon_vld4lane: NewOpc = ARMISD::VLD4LN_UPD;
7344 NumVecs = 4; isLaneOp = true; break;
7345 case Intrinsic::arm_neon_vst1: NewOpc = ARMISD::VST1_UPD;
7346 NumVecs = 1; isLoad = false; break;
7347 case Intrinsic::arm_neon_vst2: NewOpc = ARMISD::VST2_UPD;
7348 NumVecs = 2; isLoad = false; break;
7349 case Intrinsic::arm_neon_vst3: NewOpc = ARMISD::VST3_UPD;
7350 NumVecs = 3; isLoad = false; break;
7351 case Intrinsic::arm_neon_vst4: NewOpc = ARMISD::VST4_UPD;
7352 NumVecs = 4; isLoad = false; break;
7353 case Intrinsic::arm_neon_vst2lane: NewOpc = ARMISD::VST2LN_UPD;
7354 NumVecs = 2; isLoad = false; isLaneOp = true; break;
7355 case Intrinsic::arm_neon_vst3lane: NewOpc = ARMISD::VST3LN_UPD;
7356 NumVecs = 3; isLoad = false; isLaneOp = true; break;
7357 case Intrinsic::arm_neon_vst4lane: NewOpc = ARMISD::VST4LN_UPD;
7358 NumVecs = 4; isLoad = false; isLaneOp = true; break;
7359 }
7360 } else {
7361 isLaneOp = true;
7362 switch (N->getOpcode()) {
7363 default: assert(0 && "unexpected opcode for Neon base update");
7364 case ARMISD::VLD2DUP: NewOpc = ARMISD::VLD2DUP_UPD; NumVecs = 2; break;
7365 case ARMISD::VLD3DUP: NewOpc = ARMISD::VLD3DUP_UPD; NumVecs = 3; break;
7366 case ARMISD::VLD4DUP: NewOpc = ARMISD::VLD4DUP_UPD; NumVecs = 4; break;
7367 }
7368 }
7369
7370 // Find the size of memory referenced by the load/store.
7371 EVT VecTy;
7372 if (isLoad)
7373 VecTy = N->getValueType(0);
Owen Anderson76706012011-04-05 21:48:57 +00007374 else
Bob Wilson1c3ef902011-02-07 17:43:21 +00007375 VecTy = N->getOperand(AddrOpIdx+1).getValueType();
7376 unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
7377 if (isLaneOp)
7378 NumBytes /= VecTy.getVectorNumElements();
7379
7380 // If the increment is a constant, it must match the memory ref size.
7381 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
7382 if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
7383 uint64_t IncVal = CInc->getZExtValue();
7384 if (IncVal != NumBytes)
7385 continue;
7386 } else if (NumBytes >= 3 * 16) {
7387 // VLD3/4 and VST3/4 for 128-bit vectors are implemented with two
7388 // separate instructions that make it harder to use a non-constant update.
7389 continue;
7390 }
7391
7392 // Create the new updating load/store node.
7393 EVT Tys[6];
7394 unsigned NumResultVecs = (isLoad ? NumVecs : 0);
7395 unsigned n;
7396 for (n = 0; n < NumResultVecs; ++n)
7397 Tys[n] = VecTy;
7398 Tys[n++] = MVT::i32;
7399 Tys[n] = MVT::Other;
7400 SDVTList SDTys = DAG.getVTList(Tys, NumResultVecs+2);
7401 SmallVector<SDValue, 8> Ops;
7402 Ops.push_back(N->getOperand(0)); // incoming chain
7403 Ops.push_back(N->getOperand(AddrOpIdx));
7404 Ops.push_back(Inc);
7405 for (unsigned i = AddrOpIdx + 1; i < N->getNumOperands(); ++i) {
7406 Ops.push_back(N->getOperand(i));
7407 }
7408 MemIntrinsicSDNode *MemInt = cast<MemIntrinsicSDNode>(N);
7409 SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, N->getDebugLoc(), SDTys,
7410 Ops.data(), Ops.size(),
7411 MemInt->getMemoryVT(),
7412 MemInt->getMemOperand());
7413
7414 // Update the uses.
7415 std::vector<SDValue> NewResults;
7416 for (unsigned i = 0; i < NumResultVecs; ++i) {
7417 NewResults.push_back(SDValue(UpdN.getNode(), i));
7418 }
7419 NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs+1)); // chain
7420 DCI.CombineTo(N, NewResults);
7421 DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
7422
7423 break;
Owen Anderson76706012011-04-05 21:48:57 +00007424 }
Bob Wilson1c3ef902011-02-07 17:43:21 +00007425 return SDValue();
7426}
7427
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00007428/// CombineVLDDUP - For a VDUPLANE node N, check if its source operand is a
7429/// vldN-lane (N > 1) intrinsic, and if all the other uses of that intrinsic
7430/// are also VDUPLANEs. If so, combine them to a vldN-dup operation and
7431/// return true.
7432static bool CombineVLDDUP(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
7433 SelectionDAG &DAG = DCI.DAG;
7434 EVT VT = N->getValueType(0);
7435 // vldN-dup instructions only support 64-bit vectors for N > 1.
7436 if (!VT.is64BitVector())
7437 return false;
7438
7439 // Check if the VDUPLANE operand is a vldN-dup intrinsic.
7440 SDNode *VLD = N->getOperand(0).getNode();
7441 if (VLD->getOpcode() != ISD::INTRINSIC_W_CHAIN)
7442 return false;
7443 unsigned NumVecs = 0;
7444 unsigned NewOpc = 0;
7445 unsigned IntNo = cast<ConstantSDNode>(VLD->getOperand(1))->getZExtValue();
7446 if (IntNo == Intrinsic::arm_neon_vld2lane) {
7447 NumVecs = 2;
7448 NewOpc = ARMISD::VLD2DUP;
7449 } else if (IntNo == Intrinsic::arm_neon_vld3lane) {
7450 NumVecs = 3;
7451 NewOpc = ARMISD::VLD3DUP;
7452 } else if (IntNo == Intrinsic::arm_neon_vld4lane) {
7453 NumVecs = 4;
7454 NewOpc = ARMISD::VLD4DUP;
7455 } else {
7456 return false;
7457 }
7458
7459 // First check that all the vldN-lane uses are VDUPLANEs and that the lane
7460 // numbers match the load.
7461 unsigned VLDLaneNo =
7462 cast<ConstantSDNode>(VLD->getOperand(NumVecs+3))->getZExtValue();
7463 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
7464 UI != UE; ++UI) {
7465 // Ignore uses of the chain result.
7466 if (UI.getUse().getResNo() == NumVecs)
7467 continue;
7468 SDNode *User = *UI;
7469 if (User->getOpcode() != ARMISD::VDUPLANE ||
7470 VLDLaneNo != cast<ConstantSDNode>(User->getOperand(1))->getZExtValue())
7471 return false;
7472 }
7473
7474 // Create the vldN-dup node.
7475 EVT Tys[5];
7476 unsigned n;
7477 for (n = 0; n < NumVecs; ++n)
7478 Tys[n] = VT;
7479 Tys[n] = MVT::Other;
7480 SDVTList SDTys = DAG.getVTList(Tys, NumVecs+1);
7481 SDValue Ops[] = { VLD->getOperand(0), VLD->getOperand(2) };
7482 MemIntrinsicSDNode *VLDMemInt = cast<MemIntrinsicSDNode>(VLD);
7483 SDValue VLDDup = DAG.getMemIntrinsicNode(NewOpc, VLD->getDebugLoc(), SDTys,
7484 Ops, 2, VLDMemInt->getMemoryVT(),
7485 VLDMemInt->getMemOperand());
7486
7487 // Update the uses.
7488 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
7489 UI != UE; ++UI) {
7490 unsigned ResNo = UI.getUse().getResNo();
7491 // Ignore uses of the chain result.
7492 if (ResNo == NumVecs)
7493 continue;
7494 SDNode *User = *UI;
7495 DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo));
7496 }
7497
7498 // Now the vldN-lane intrinsic is dead except for its chain result.
7499 // Update uses of the chain.
7500 std::vector<SDValue> VLDDupResults;
7501 for (unsigned n = 0; n < NumVecs; ++n)
7502 VLDDupResults.push_back(SDValue(VLDDup.getNode(), n));
7503 VLDDupResults.push_back(SDValue(VLDDup.getNode(), NumVecs));
7504 DCI.CombineTo(VLD, VLDDupResults);
7505
7506 return true;
7507}
7508
Bob Wilson9e82bf12010-07-14 01:22:12 +00007509/// PerformVDUPLANECombine - Target-specific dag combine xforms for
7510/// ARMISD::VDUPLANE.
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00007511static SDValue PerformVDUPLANECombine(SDNode *N,
7512 TargetLowering::DAGCombinerInfo &DCI) {
Bob Wilson9e82bf12010-07-14 01:22:12 +00007513 SDValue Op = N->getOperand(0);
Bob Wilson9e82bf12010-07-14 01:22:12 +00007514
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00007515 // If the source is a vldN-lane (N > 1) intrinsic, and all the other uses
7516 // of that intrinsic are also VDUPLANEs, combine them to a vldN-dup operation.
7517 if (CombineVLDDUP(N, DCI))
7518 return SDValue(N, 0);
7519
7520 // If the source is already a VMOVIMM or VMVNIMM splat, the VDUPLANE is
7521 // redundant. Ignore bit_converts for now; element sizes are checked below.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007522 while (Op.getOpcode() == ISD::BITCAST)
Bob Wilson9e82bf12010-07-14 01:22:12 +00007523 Op = Op.getOperand(0);
Bob Wilson7e3f0d22010-07-14 06:31:50 +00007524 if (Op.getOpcode() != ARMISD::VMOVIMM && Op.getOpcode() != ARMISD::VMVNIMM)
Bob Wilson9e82bf12010-07-14 01:22:12 +00007525 return SDValue();
7526
7527 // Make sure the VMOV element size is not bigger than the VDUPLANE elements.
7528 unsigned EltSize = Op.getValueType().getVectorElementType().getSizeInBits();
7529 // The canonical VMOV for a zero vector uses a 32-bit element size.
7530 unsigned Imm = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7531 unsigned EltBits;
7532 if (ARM_AM::decodeNEONModImm(Imm, EltBits) == 0)
7533 EltSize = 8;
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00007534 EVT VT = N->getValueType(0);
Bob Wilson9e82bf12010-07-14 01:22:12 +00007535 if (EltSize > VT.getVectorElementType().getSizeInBits())
7536 return SDValue();
7537
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00007538 return DCI.DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Bob Wilson9e82bf12010-07-14 01:22:12 +00007539}
7540
Eric Christopherfa6f5912011-06-29 21:10:36 +00007541// isConstVecPow2 - Return true if each vector element is a power of 2, all
Chad Rosieref01edf2011-06-24 19:23:04 +00007542// elements are the same constant, C, and Log2(C) ranges from 1 to 32.
7543static bool isConstVecPow2(SDValue ConstVec, bool isSigned, uint64_t &C)
7544{
Chad Rosier118c9a02011-06-28 17:26:57 +00007545 integerPart cN;
7546 integerPart c0 = 0;
Chad Rosieref01edf2011-06-24 19:23:04 +00007547 for (unsigned I = 0, E = ConstVec.getValueType().getVectorNumElements();
7548 I != E; I++) {
7549 ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(ConstVec.getOperand(I));
7550 if (!C)
7551 return false;
7552
Eric Christopherfa6f5912011-06-29 21:10:36 +00007553 bool isExact;
Chad Rosieref01edf2011-06-24 19:23:04 +00007554 APFloat APF = C->getValueAPF();
7555 if (APF.convertToInteger(&cN, 64, isSigned, APFloat::rmTowardZero, &isExact)
7556 != APFloat::opOK || !isExact)
7557 return false;
7558
7559 c0 = (I == 0) ? cN : c0;
7560 if (!isPowerOf2_64(cN) || c0 != cN || Log2_64(c0) < 1 || Log2_64(c0) > 32)
7561 return false;
7562 }
7563 C = c0;
7564 return true;
7565}
7566
7567/// PerformVCVTCombine - VCVT (floating-point to fixed-point, Advanced SIMD)
7568/// can replace combinations of VMUL and VCVT (floating-point to integer)
7569/// when the VMUL has a constant operand that is a power of 2.
7570///
7571/// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
7572/// vmul.f32 d16, d17, d16
7573/// vcvt.s32.f32 d16, d16
7574/// becomes:
7575/// vcvt.s32.f32 d16, d16, #3
7576static SDValue PerformVCVTCombine(SDNode *N,
7577 TargetLowering::DAGCombinerInfo &DCI,
7578 const ARMSubtarget *Subtarget) {
7579 SelectionDAG &DAG = DCI.DAG;
7580 SDValue Op = N->getOperand(0);
7581
7582 if (!Subtarget->hasNEON() || !Op.getValueType().isVector() ||
7583 Op.getOpcode() != ISD::FMUL)
7584 return SDValue();
7585
7586 uint64_t C;
7587 SDValue N0 = Op->getOperand(0);
7588 SDValue ConstVec = Op->getOperand(1);
7589 bool isSigned = N->getOpcode() == ISD::FP_TO_SINT;
7590
Eric Christopherfa6f5912011-06-29 21:10:36 +00007591 if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
Chad Rosieref01edf2011-06-24 19:23:04 +00007592 !isConstVecPow2(ConstVec, isSigned, C))
7593 return SDValue();
7594
7595 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfp2fxs :
7596 Intrinsic::arm_neon_vcvtfp2fxu;
7597 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, N->getDebugLoc(),
7598 N->getValueType(0),
Eric Christopherfa6f5912011-06-29 21:10:36 +00007599 DAG.getConstant(IntrinsicOpcode, MVT::i32), N0,
Chad Rosieref01edf2011-06-24 19:23:04 +00007600 DAG.getConstant(Log2_64(C), MVT::i32));
7601}
7602
7603/// PerformVDIVCombine - VCVT (fixed-point to floating-point, Advanced SIMD)
7604/// can replace combinations of VCVT (integer to floating-point) and VDIV
7605/// when the VDIV has a constant operand that is a power of 2.
7606///
7607/// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
7608/// vcvt.f32.s32 d16, d16
7609/// vdiv.f32 d16, d17, d16
7610/// becomes:
7611/// vcvt.f32.s32 d16, d16, #3
7612static SDValue PerformVDIVCombine(SDNode *N,
7613 TargetLowering::DAGCombinerInfo &DCI,
7614 const ARMSubtarget *Subtarget) {
7615 SelectionDAG &DAG = DCI.DAG;
7616 SDValue Op = N->getOperand(0);
7617 unsigned OpOpcode = Op.getNode()->getOpcode();
7618
7619 if (!Subtarget->hasNEON() || !N->getValueType(0).isVector() ||
7620 (OpOpcode != ISD::SINT_TO_FP && OpOpcode != ISD::UINT_TO_FP))
7621 return SDValue();
7622
7623 uint64_t C;
7624 SDValue ConstVec = N->getOperand(1);
7625 bool isSigned = OpOpcode == ISD::SINT_TO_FP;
7626
7627 if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
7628 !isConstVecPow2(ConstVec, isSigned, C))
7629 return SDValue();
7630
Eric Christopherfa6f5912011-06-29 21:10:36 +00007631 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfxs2fp :
Chad Rosieref01edf2011-06-24 19:23:04 +00007632 Intrinsic::arm_neon_vcvtfxu2fp;
7633 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, N->getDebugLoc(),
7634 Op.getValueType(),
Eric Christopherfa6f5912011-06-29 21:10:36 +00007635 DAG.getConstant(IntrinsicOpcode, MVT::i32),
Chad Rosieref01edf2011-06-24 19:23:04 +00007636 Op.getOperand(0), DAG.getConstant(Log2_64(C), MVT::i32));
7637}
7638
7639/// Getvshiftimm - Check if this is a valid build_vector for the immediate
Bob Wilson5bafff32009-06-22 23:27:02 +00007640/// operand of a vector shift operation, where all the elements of the
7641/// build_vector must have the same constant integer value.
7642static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
7643 // Ignore bit_converts.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007644 while (Op.getOpcode() == ISD::BITCAST)
Bob Wilson5bafff32009-06-22 23:27:02 +00007645 Op = Op.getOperand(0);
7646 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
7647 APInt SplatBits, SplatUndef;
7648 unsigned SplatBitSize;
7649 bool HasAnyUndefs;
7650 if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
7651 HasAnyUndefs, ElementBits) ||
7652 SplatBitSize > ElementBits)
7653 return false;
7654 Cnt = SplatBits.getSExtValue();
7655 return true;
7656}
7657
7658/// isVShiftLImm - Check if this is a valid build_vector for the immediate
7659/// operand of a vector shift left operation. That value must be in the range:
7660/// 0 <= Value < ElementBits for a left shift; or
7661/// 0 <= Value <= ElementBits for a long left shift.
Owen Andersone50ed302009-08-10 22:56:29 +00007662static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
Bob Wilson5bafff32009-06-22 23:27:02 +00007663 assert(VT.isVector() && "vector shift count is not a vector type");
7664 unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
7665 if (! getVShiftImm(Op, ElementBits, Cnt))
7666 return false;
7667 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
7668}
7669
7670/// isVShiftRImm - Check if this is a valid build_vector for the immediate
7671/// operand of a vector shift right operation. For a shift opcode, the value
7672/// is positive, but for an intrinsic the value count must be negative. The
7673/// absolute value must be in the range:
7674/// 1 <= |Value| <= ElementBits for a right shift; or
7675/// 1 <= |Value| <= ElementBits/2 for a narrow right shift.
Owen Andersone50ed302009-08-10 22:56:29 +00007676static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic,
Bob Wilson5bafff32009-06-22 23:27:02 +00007677 int64_t &Cnt) {
7678 assert(VT.isVector() && "vector shift count is not a vector type");
7679 unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
7680 if (! getVShiftImm(Op, ElementBits, Cnt))
7681 return false;
7682 if (isIntrinsic)
7683 Cnt = -Cnt;
7684 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits));
7685}
7686
7687/// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics.
7688static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) {
7689 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
7690 switch (IntNo) {
7691 default:
7692 // Don't do anything for most intrinsics.
7693 break;
7694
7695 // Vector shifts: check for immediate versions and lower them.
7696 // Note: This is done during DAG combining instead of DAG legalizing because
7697 // the build_vectors for 64-bit vector element shift counts are generally
7698 // not legal, and it is hard to see their values after they get legalized to
7699 // loads from a constant pool.
7700 case Intrinsic::arm_neon_vshifts:
7701 case Intrinsic::arm_neon_vshiftu:
7702 case Intrinsic::arm_neon_vshiftls:
7703 case Intrinsic::arm_neon_vshiftlu:
7704 case Intrinsic::arm_neon_vshiftn:
7705 case Intrinsic::arm_neon_vrshifts:
7706 case Intrinsic::arm_neon_vrshiftu:
7707 case Intrinsic::arm_neon_vrshiftn:
7708 case Intrinsic::arm_neon_vqshifts:
7709 case Intrinsic::arm_neon_vqshiftu:
7710 case Intrinsic::arm_neon_vqshiftsu:
7711 case Intrinsic::arm_neon_vqshiftns:
7712 case Intrinsic::arm_neon_vqshiftnu:
7713 case Intrinsic::arm_neon_vqshiftnsu:
7714 case Intrinsic::arm_neon_vqrshiftns:
7715 case Intrinsic::arm_neon_vqrshiftnu:
7716 case Intrinsic::arm_neon_vqrshiftnsu: {
Owen Andersone50ed302009-08-10 22:56:29 +00007717 EVT VT = N->getOperand(1).getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00007718 int64_t Cnt;
7719 unsigned VShiftOpc = 0;
7720
7721 switch (IntNo) {
7722 case Intrinsic::arm_neon_vshifts:
7723 case Intrinsic::arm_neon_vshiftu:
7724 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) {
7725 VShiftOpc = ARMISD::VSHL;
7726 break;
7727 }
7728 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) {
7729 VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ?
7730 ARMISD::VSHRs : ARMISD::VSHRu);
7731 break;
7732 }
7733 return SDValue();
7734
7735 case Intrinsic::arm_neon_vshiftls:
7736 case Intrinsic::arm_neon_vshiftlu:
7737 if (isVShiftLImm(N->getOperand(2), VT, true, Cnt))
7738 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007739 llvm_unreachable("invalid shift count for vshll intrinsic");
Bob Wilson5bafff32009-06-22 23:27:02 +00007740
7741 case Intrinsic::arm_neon_vrshifts:
7742 case Intrinsic::arm_neon_vrshiftu:
7743 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt))
7744 break;
7745 return SDValue();
7746
7747 case Intrinsic::arm_neon_vqshifts:
7748 case Intrinsic::arm_neon_vqshiftu:
7749 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
7750 break;
7751 return SDValue();
7752
7753 case Intrinsic::arm_neon_vqshiftsu:
7754 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
7755 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007756 llvm_unreachable("invalid shift count for vqshlu intrinsic");
Bob Wilson5bafff32009-06-22 23:27:02 +00007757
7758 case Intrinsic::arm_neon_vshiftn:
7759 case Intrinsic::arm_neon_vrshiftn:
7760 case Intrinsic::arm_neon_vqshiftns:
7761 case Intrinsic::arm_neon_vqshiftnu:
7762 case Intrinsic::arm_neon_vqshiftnsu:
7763 case Intrinsic::arm_neon_vqrshiftns:
7764 case Intrinsic::arm_neon_vqrshiftnu:
7765 case Intrinsic::arm_neon_vqrshiftnsu:
7766 // Narrowing shifts require an immediate right shift.
7767 if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt))
7768 break;
Jim Grosbach18f30e62010-06-02 21:53:11 +00007769 llvm_unreachable("invalid shift count for narrowing vector shift "
7770 "intrinsic");
Bob Wilson5bafff32009-06-22 23:27:02 +00007771
7772 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00007773 llvm_unreachable("unhandled vector shift");
Bob Wilson5bafff32009-06-22 23:27:02 +00007774 }
7775
7776 switch (IntNo) {
7777 case Intrinsic::arm_neon_vshifts:
7778 case Intrinsic::arm_neon_vshiftu:
7779 // Opcode already set above.
7780 break;
7781 case Intrinsic::arm_neon_vshiftls:
7782 case Intrinsic::arm_neon_vshiftlu:
7783 if (Cnt == VT.getVectorElementType().getSizeInBits())
7784 VShiftOpc = ARMISD::VSHLLi;
7785 else
7786 VShiftOpc = (IntNo == Intrinsic::arm_neon_vshiftls ?
7787 ARMISD::VSHLLs : ARMISD::VSHLLu);
7788 break;
7789 case Intrinsic::arm_neon_vshiftn:
7790 VShiftOpc = ARMISD::VSHRN; break;
7791 case Intrinsic::arm_neon_vrshifts:
7792 VShiftOpc = ARMISD::VRSHRs; break;
7793 case Intrinsic::arm_neon_vrshiftu:
7794 VShiftOpc = ARMISD::VRSHRu; break;
7795 case Intrinsic::arm_neon_vrshiftn:
7796 VShiftOpc = ARMISD::VRSHRN; break;
7797 case Intrinsic::arm_neon_vqshifts:
7798 VShiftOpc = ARMISD::VQSHLs; break;
7799 case Intrinsic::arm_neon_vqshiftu:
7800 VShiftOpc = ARMISD::VQSHLu; break;
7801 case Intrinsic::arm_neon_vqshiftsu:
7802 VShiftOpc = ARMISD::VQSHLsu; break;
7803 case Intrinsic::arm_neon_vqshiftns:
7804 VShiftOpc = ARMISD::VQSHRNs; break;
7805 case Intrinsic::arm_neon_vqshiftnu:
7806 VShiftOpc = ARMISD::VQSHRNu; break;
7807 case Intrinsic::arm_neon_vqshiftnsu:
7808 VShiftOpc = ARMISD::VQSHRNsu; break;
7809 case Intrinsic::arm_neon_vqrshiftns:
7810 VShiftOpc = ARMISD::VQRSHRNs; break;
7811 case Intrinsic::arm_neon_vqrshiftnu:
7812 VShiftOpc = ARMISD::VQRSHRNu; break;
7813 case Intrinsic::arm_neon_vqrshiftnsu:
7814 VShiftOpc = ARMISD::VQRSHRNsu; break;
7815 }
7816
7817 return DAG.getNode(VShiftOpc, N->getDebugLoc(), N->getValueType(0),
Owen Anderson825b72b2009-08-11 20:47:22 +00007818 N->getOperand(1), DAG.getConstant(Cnt, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00007819 }
7820
7821 case Intrinsic::arm_neon_vshiftins: {
Owen Andersone50ed302009-08-10 22:56:29 +00007822 EVT VT = N->getOperand(1).getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00007823 int64_t Cnt;
7824 unsigned VShiftOpc = 0;
7825
7826 if (isVShiftLImm(N->getOperand(3), VT, false, Cnt))
7827 VShiftOpc = ARMISD::VSLI;
7828 else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt))
7829 VShiftOpc = ARMISD::VSRI;
7830 else {
Torok Edwinc23197a2009-07-14 16:55:14 +00007831 llvm_unreachable("invalid shift count for vsli/vsri intrinsic");
Bob Wilson5bafff32009-06-22 23:27:02 +00007832 }
7833
7834 return DAG.getNode(VShiftOpc, N->getDebugLoc(), N->getValueType(0),
7835 N->getOperand(1), N->getOperand(2),
Owen Anderson825b72b2009-08-11 20:47:22 +00007836 DAG.getConstant(Cnt, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00007837 }
7838
7839 case Intrinsic::arm_neon_vqrshifts:
7840 case Intrinsic::arm_neon_vqrshiftu:
7841 // No immediate versions of these to check for.
7842 break;
7843 }
7844
7845 return SDValue();
7846}
7847
7848/// PerformShiftCombine - Checks for immediate versions of vector shifts and
7849/// lowers them. As with the vector shift intrinsics, this is done during DAG
7850/// combining instead of DAG legalizing because the build_vectors for 64-bit
7851/// vector element shift counts are generally not legal, and it is hard to see
7852/// their values after they get legalized to loads from a constant pool.
7853static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG,
7854 const ARMSubtarget *ST) {
Owen Andersone50ed302009-08-10 22:56:29 +00007855 EVT VT = N->getValueType(0);
Bob Wilson5bafff32009-06-22 23:27:02 +00007856
7857 // Nothing to be done for scalar shifts.
Tanya Lattner9684a7c2010-11-18 22:06:46 +00007858 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7859 if (!VT.isVector() || !TLI.isTypeLegal(VT))
Bob Wilson5bafff32009-06-22 23:27:02 +00007860 return SDValue();
7861
7862 assert(ST->hasNEON() && "unexpected vector shift");
7863 int64_t Cnt;
7864
7865 switch (N->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007866 default: llvm_unreachable("unexpected shift opcode");
Bob Wilson5bafff32009-06-22 23:27:02 +00007867
7868 case ISD::SHL:
7869 if (isVShiftLImm(N->getOperand(1), VT, false, Cnt))
7870 return DAG.getNode(ARMISD::VSHL, N->getDebugLoc(), VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +00007871 DAG.getConstant(Cnt, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00007872 break;
7873
7874 case ISD::SRA:
7875 case ISD::SRL:
7876 if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) {
7877 unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ?
7878 ARMISD::VSHRs : ARMISD::VSHRu);
7879 return DAG.getNode(VShiftOpc, N->getDebugLoc(), VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +00007880 DAG.getConstant(Cnt, MVT::i32));
Bob Wilson5bafff32009-06-22 23:27:02 +00007881 }
7882 }
7883 return SDValue();
7884}
7885
7886/// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND,
7887/// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND.
7888static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG,
7889 const ARMSubtarget *ST) {
7890 SDValue N0 = N->getOperand(0);
7891
7892 // Check for sign- and zero-extensions of vector extract operations of 8-
7893 // and 16-bit vector elements. NEON supports these directly. They are
7894 // handled during DAG combining because type legalization will promote them
7895 // to 32-bit types and it is messy to recognize the operations after that.
7896 if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
7897 SDValue Vec = N0.getOperand(0);
7898 SDValue Lane = N0.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00007899 EVT VT = N->getValueType(0);
7900 EVT EltVT = N0.getValueType();
Bob Wilson5bafff32009-06-22 23:27:02 +00007901 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7902
Owen Anderson825b72b2009-08-11 20:47:22 +00007903 if (VT == MVT::i32 &&
7904 (EltVT == MVT::i8 || EltVT == MVT::i16) &&
Bob Wilson3468c2e2010-11-03 16:24:50 +00007905 TLI.isTypeLegal(Vec.getValueType()) &&
7906 isa<ConstantSDNode>(Lane)) {
Bob Wilson5bafff32009-06-22 23:27:02 +00007907
7908 unsigned Opc = 0;
7909 switch (N->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007910 default: llvm_unreachable("unexpected opcode");
Bob Wilson5bafff32009-06-22 23:27:02 +00007911 case ISD::SIGN_EXTEND:
7912 Opc = ARMISD::VGETLANEs;
7913 break;
7914 case ISD::ZERO_EXTEND:
7915 case ISD::ANY_EXTEND:
7916 Opc = ARMISD::VGETLANEu;
7917 break;
7918 }
7919 return DAG.getNode(Opc, N->getDebugLoc(), VT, Vec, Lane);
7920 }
7921 }
7922
7923 return SDValue();
7924}
7925
Bob Wilson9f6c4c12010-02-18 06:05:53 +00007926/// PerformSELECT_CCCombine - Target-specific DAG combining for ISD::SELECT_CC
7927/// to match f32 max/min patterns to use NEON vmax/vmin instructions.
7928static SDValue PerformSELECT_CCCombine(SDNode *N, SelectionDAG &DAG,
7929 const ARMSubtarget *ST) {
7930 // If the target supports NEON, try to use vmax/vmin instructions for f32
Evan Cheng60108e92010-07-15 22:07:12 +00007931 // selects like "x < y ? x : y". Unless the NoNaNsFPMath option is set,
Bob Wilson9f6c4c12010-02-18 06:05:53 +00007932 // be careful about NaNs: NEON's vmax/vmin return NaN if either operand is
7933 // a NaN; only do the transformation when it matches that behavior.
7934
7935 // For now only do this when using NEON for FP operations; if using VFP, it
7936 // is not obvious that the benefit outweighs the cost of switching to the
7937 // NEON pipeline.
7938 if (!ST->hasNEON() || !ST->useNEONForSinglePrecisionFP() ||
7939 N->getValueType(0) != MVT::f32)
7940 return SDValue();
7941
7942 SDValue CondLHS = N->getOperand(0);
7943 SDValue CondRHS = N->getOperand(1);
7944 SDValue LHS = N->getOperand(2);
7945 SDValue RHS = N->getOperand(3);
7946 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
7947
7948 unsigned Opcode = 0;
7949 bool IsReversed;
Bob Wilsone742bb52010-02-24 22:15:53 +00007950 if (DAG.isEqualTo(LHS, CondLHS) && DAG.isEqualTo(RHS, CondRHS)) {
Bob Wilson9f6c4c12010-02-18 06:05:53 +00007951 IsReversed = false; // x CC y ? x : y
Bob Wilsone742bb52010-02-24 22:15:53 +00007952 } else if (DAG.isEqualTo(LHS, CondRHS) && DAG.isEqualTo(RHS, CondLHS)) {
Bob Wilson9f6c4c12010-02-18 06:05:53 +00007953 IsReversed = true ; // x CC y ? y : x
7954 } else {
7955 return SDValue();
7956 }
7957
Bob Wilsone742bb52010-02-24 22:15:53 +00007958 bool IsUnordered;
Bob Wilson9f6c4c12010-02-18 06:05:53 +00007959 switch (CC) {
7960 default: break;
7961 case ISD::SETOLT:
7962 case ISD::SETOLE:
7963 case ISD::SETLT:
7964 case ISD::SETLE:
Bob Wilson9f6c4c12010-02-18 06:05:53 +00007965 case ISD::SETULT:
7966 case ISD::SETULE:
Bob Wilsone742bb52010-02-24 22:15:53 +00007967 // If LHS is NaN, an ordered comparison will be false and the result will
7968 // be the RHS, but vmin(NaN, RHS) = NaN. Avoid this by checking that LHS
7969 // != NaN. Likewise, for unordered comparisons, check for RHS != NaN.
7970 IsUnordered = (CC == ISD::SETULT || CC == ISD::SETULE);
7971 if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
7972 break;
7973 // For less-than-or-equal comparisons, "+0 <= -0" will be true but vmin
7974 // will return -0, so vmin can only be used for unsafe math or if one of
7975 // the operands is known to be nonzero.
7976 if ((CC == ISD::SETLE || CC == ISD::SETOLE || CC == ISD::SETULE) &&
Nick Lewycky8a8d4792011-12-02 22:16:29 +00007977 !DAG.getTarget().Options.UnsafeFPMath &&
Bob Wilsone742bb52010-02-24 22:15:53 +00007978 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
7979 break;
7980 Opcode = IsReversed ? ARMISD::FMAX : ARMISD::FMIN;
Bob Wilson9f6c4c12010-02-18 06:05:53 +00007981 break;
7982
7983 case ISD::SETOGT:
7984 case ISD::SETOGE:
7985 case ISD::SETGT:
7986 case ISD::SETGE:
Bob Wilson9f6c4c12010-02-18 06:05:53 +00007987 case ISD::SETUGT:
7988 case ISD::SETUGE:
Bob Wilsone742bb52010-02-24 22:15:53 +00007989 // If LHS is NaN, an ordered comparison will be false and the result will
7990 // be the RHS, but vmax(NaN, RHS) = NaN. Avoid this by checking that LHS
7991 // != NaN. Likewise, for unordered comparisons, check for RHS != NaN.
7992 IsUnordered = (CC == ISD::SETUGT || CC == ISD::SETUGE);
7993 if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
7994 break;
7995 // For greater-than-or-equal comparisons, "-0 >= +0" will be true but vmax
7996 // will return +0, so vmax can only be used for unsafe math or if one of
7997 // the operands is known to be nonzero.
7998 if ((CC == ISD::SETGE || CC == ISD::SETOGE || CC == ISD::SETUGE) &&
Nick Lewycky8a8d4792011-12-02 22:16:29 +00007999 !DAG.getTarget().Options.UnsafeFPMath &&
Bob Wilsone742bb52010-02-24 22:15:53 +00008000 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
8001 break;
8002 Opcode = IsReversed ? ARMISD::FMIN : ARMISD::FMAX;
Bob Wilson9f6c4c12010-02-18 06:05:53 +00008003 break;
8004 }
8005
8006 if (!Opcode)
8007 return SDValue();
8008 return DAG.getNode(Opcode, N->getDebugLoc(), N->getValueType(0), LHS, RHS);
8009}
8010
Evan Chenge721f5c2011-07-13 00:42:17 +00008011/// PerformCMOVCombine - Target-specific DAG combining for ARMISD::CMOV.
8012SDValue
8013ARMTargetLowering::PerformCMOVCombine(SDNode *N, SelectionDAG &DAG) const {
8014 SDValue Cmp = N->getOperand(4);
8015 if (Cmp.getOpcode() != ARMISD::CMPZ)
8016 // Only looking at EQ and NE cases.
8017 return SDValue();
8018
8019 EVT VT = N->getValueType(0);
8020 DebugLoc dl = N->getDebugLoc();
8021 SDValue LHS = Cmp.getOperand(0);
8022 SDValue RHS = Cmp.getOperand(1);
8023 SDValue FalseVal = N->getOperand(0);
8024 SDValue TrueVal = N->getOperand(1);
8025 SDValue ARMcc = N->getOperand(2);
Jim Grosbachb04546f2011-09-13 20:30:37 +00008026 ARMCC::CondCodes CC =
8027 (ARMCC::CondCodes)cast<ConstantSDNode>(ARMcc)->getZExtValue();
Evan Chenge721f5c2011-07-13 00:42:17 +00008028
8029 // Simplify
8030 // mov r1, r0
8031 // cmp r1, x
8032 // mov r0, y
8033 // moveq r0, x
8034 // to
8035 // cmp r0, x
8036 // movne r0, y
8037 //
8038 // mov r1, r0
8039 // cmp r1, x
8040 // mov r0, x
8041 // movne r0, y
8042 // to
8043 // cmp r0, x
8044 // movne r0, y
8045 /// FIXME: Turn this into a target neutral optimization?
8046 SDValue Res;
Evan Cheng9b88d2d2011-09-28 23:16:31 +00008047 if (CC == ARMCC::NE && FalseVal == RHS && FalseVal != LHS) {
Evan Chenge721f5c2011-07-13 00:42:17 +00008048 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, TrueVal, ARMcc,
8049 N->getOperand(3), Cmp);
8050 } else if (CC == ARMCC::EQ && TrueVal == RHS) {
8051 SDValue ARMcc;
8052 SDValue NewCmp = getARMCmp(LHS, RHS, ISD::SETNE, ARMcc, DAG, dl);
8053 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, FalseVal, ARMcc,
8054 N->getOperand(3), NewCmp);
8055 }
8056
8057 if (Res.getNode()) {
8058 APInt KnownZero, KnownOne;
8059 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
8060 DAG.ComputeMaskedBits(SDValue(N,0), Mask, KnownZero, KnownOne);
8061 // Capture demanded bits information that would be otherwise lost.
8062 if (KnownZero == 0xfffffffe)
8063 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
8064 DAG.getValueType(MVT::i1));
8065 else if (KnownZero == 0xffffff00)
8066 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
8067 DAG.getValueType(MVT::i8));
8068 else if (KnownZero == 0xffff0000)
8069 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
8070 DAG.getValueType(MVT::i16));
8071 }
8072
8073 return Res;
8074}
8075
Dan Gohman475871a2008-07-27 21:46:04 +00008076SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N,
Bob Wilson2dc4f542009-03-20 22:42:55 +00008077 DAGCombinerInfo &DCI) const {
Chris Lattnerf1b1c5e2007-11-27 22:36:16 +00008078 switch (N->getOpcode()) {
8079 default: break;
Tanya Lattner189531f2011-06-14 23:48:48 +00008080 case ISD::ADD: return PerformADDCombine(N, DCI, Subtarget);
Bob Wilson9f6c4c12010-02-18 06:05:53 +00008081 case ISD::SUB: return PerformSUBCombine(N, DCI);
Anton Korobeynikova9790d72010-05-15 18:16:59 +00008082 case ISD::MUL: return PerformMULCombine(N, DCI, Subtarget);
Jim Grosbach469bbdb2010-07-16 23:05:05 +00008083 case ISD::OR: return PerformORCombine(N, DCI, Subtarget);
Owen Anderson080c0922010-11-05 19:27:46 +00008084 case ISD::AND: return PerformANDCombine(N, DCI);
Evan Cheng0c1aec12010-12-14 03:22:07 +00008085 case ARMISD::BFI: return PerformBFICombine(N, DCI);
Jim Grosbache5165492009-11-09 00:11:35 +00008086 case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI);
Bob Wilson0b8ccb82010-09-22 22:09:21 +00008087 case ARMISD::VMOVDRR: return PerformVMOVDRRCombine(N, DCI.DAG);
Bob Wilson31600902010-12-21 06:43:19 +00008088 case ISD::STORE: return PerformSTORECombine(N, DCI);
8089 case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DCI);
8090 case ISD::INSERT_VECTOR_ELT: return PerformInsertEltCombine(N, DCI);
Bob Wilsonf20700c2010-10-27 20:38:28 +00008091 case ISD::VECTOR_SHUFFLE: return PerformVECTOR_SHUFFLECombine(N, DCI.DAG);
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +00008092 case ARMISD::VDUPLANE: return PerformVDUPLANECombine(N, DCI);
Chad Rosieref01edf2011-06-24 19:23:04 +00008093 case ISD::FP_TO_SINT:
8094 case ISD::FP_TO_UINT: return PerformVCVTCombine(N, DCI, Subtarget);
8095 case ISD::FDIV: return PerformVDIVCombine(N, DCI, Subtarget);
Bob Wilson9f6c4c12010-02-18 06:05:53 +00008096 case ISD::INTRINSIC_WO_CHAIN: return PerformIntrinsicCombine(N, DCI.DAG);
Bob Wilson5bafff32009-06-22 23:27:02 +00008097 case ISD::SHL:
8098 case ISD::SRA:
Bob Wilson9f6c4c12010-02-18 06:05:53 +00008099 case ISD::SRL: return PerformShiftCombine(N, DCI.DAG, Subtarget);
Bob Wilson5bafff32009-06-22 23:27:02 +00008100 case ISD::SIGN_EXTEND:
8101 case ISD::ZERO_EXTEND:
Bob Wilson9f6c4c12010-02-18 06:05:53 +00008102 case ISD::ANY_EXTEND: return PerformExtendCombine(N, DCI.DAG, Subtarget);
8103 case ISD::SELECT_CC: return PerformSELECT_CCCombine(N, DCI.DAG, Subtarget);
Evan Chenge721f5c2011-07-13 00:42:17 +00008104 case ARMISD::CMOV: return PerformCMOVCombine(N, DCI.DAG);
Bob Wilson1c3ef902011-02-07 17:43:21 +00008105 case ARMISD::VLD2DUP:
8106 case ARMISD::VLD3DUP:
8107 case ARMISD::VLD4DUP:
8108 return CombineBaseUpdate(N, DCI);
8109 case ISD::INTRINSIC_VOID:
8110 case ISD::INTRINSIC_W_CHAIN:
8111 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
8112 case Intrinsic::arm_neon_vld1:
8113 case Intrinsic::arm_neon_vld2:
8114 case Intrinsic::arm_neon_vld3:
8115 case Intrinsic::arm_neon_vld4:
8116 case Intrinsic::arm_neon_vld2lane:
8117 case Intrinsic::arm_neon_vld3lane:
8118 case Intrinsic::arm_neon_vld4lane:
8119 case Intrinsic::arm_neon_vst1:
8120 case Intrinsic::arm_neon_vst2:
8121 case Intrinsic::arm_neon_vst3:
8122 case Intrinsic::arm_neon_vst4:
8123 case Intrinsic::arm_neon_vst2lane:
8124 case Intrinsic::arm_neon_vst3lane:
8125 case Intrinsic::arm_neon_vst4lane:
8126 return CombineBaseUpdate(N, DCI);
8127 default: break;
8128 }
8129 break;
Chris Lattnerf1b1c5e2007-11-27 22:36:16 +00008130 }
Dan Gohman475871a2008-07-27 21:46:04 +00008131 return SDValue();
Chris Lattnerf1b1c5e2007-11-27 22:36:16 +00008132}
8133
Evan Cheng31959b12011-02-02 01:06:55 +00008134bool ARMTargetLowering::isDesirableToTransformToIntegerOp(unsigned Opc,
8135 EVT VT) const {
8136 return (VT == MVT::f32) && (Opc == ISD::LOAD || Opc == ISD::STORE);
8137}
8138
Bill Wendlingaf566342009-08-15 21:21:19 +00008139bool ARMTargetLowering::allowsUnalignedMemoryAccesses(EVT VT) const {
Bob Wilson02aba732010-09-28 04:09:35 +00008140 if (!Subtarget->allowsUnalignedMem())
Bob Wilson86fe66d2010-06-25 04:12:31 +00008141 return false;
Bill Wendlingaf566342009-08-15 21:21:19 +00008142
8143 switch (VT.getSimpleVT().SimpleTy) {
8144 default:
8145 return false;
8146 case MVT::i8:
8147 case MVT::i16:
8148 case MVT::i32:
8149 return true;
8150 // FIXME: VLD1 etc with standard alignment is legal.
8151 }
8152}
8153
Lang Hames1a1d1fc2011-11-02 22:52:45 +00008154static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
8155 unsigned AlignCheck) {
8156 return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
8157 (DstAlign == 0 || DstAlign % AlignCheck == 0));
8158}
8159
8160EVT ARMTargetLowering::getOptimalMemOpType(uint64_t Size,
8161 unsigned DstAlign, unsigned SrcAlign,
Lang Hamesa1e78882011-11-02 23:37:04 +00008162 bool IsZeroVal,
Lang Hames1a1d1fc2011-11-02 22:52:45 +00008163 bool MemcpyStrSrc,
8164 MachineFunction &MF) const {
8165 const Function *F = MF.getFunction();
8166
8167 // See if we can use NEON instructions for this...
Lang Hamesa1e78882011-11-02 23:37:04 +00008168 if (IsZeroVal &&
Lang Hames1a1d1fc2011-11-02 22:52:45 +00008169 !F->hasFnAttr(Attribute::NoImplicitFloat) &&
8170 Subtarget->hasNEON()) {
8171 if (memOpAlign(SrcAlign, DstAlign, 16) && Size >= 16) {
8172 return MVT::v4i32;
8173 } else if (memOpAlign(SrcAlign, DstAlign, 8) && Size >= 8) {
8174 return MVT::v2i32;
8175 }
8176 }
8177
Lang Hames5207bf22011-11-08 18:56:23 +00008178 // Lowering to i32/i16 if the size permits.
8179 if (Size >= 4) {
8180 return MVT::i32;
8181 } else if (Size >= 2) {
8182 return MVT::i16;
8183 }
8184
Lang Hames1a1d1fc2011-11-02 22:52:45 +00008185 // Let the target-independent logic figure it out.
8186 return MVT::Other;
8187}
8188
Evan Chenge6c835f2009-08-14 20:09:37 +00008189static bool isLegalT1AddressImmediate(int64_t V, EVT VT) {
8190 if (V < 0)
8191 return false;
8192
8193 unsigned Scale = 1;
8194 switch (VT.getSimpleVT().SimpleTy) {
8195 default: return false;
8196 case MVT::i1:
8197 case MVT::i8:
8198 // Scale == 1;
8199 break;
8200 case MVT::i16:
8201 // Scale == 2;
8202 Scale = 2;
8203 break;
8204 case MVT::i32:
8205 // Scale == 4;
8206 Scale = 4;
8207 break;
8208 }
8209
8210 if ((V & (Scale - 1)) != 0)
8211 return false;
8212 V /= Scale;
8213 return V == (V & ((1LL << 5) - 1));
8214}
8215
8216static bool isLegalT2AddressImmediate(int64_t V, EVT VT,
8217 const ARMSubtarget *Subtarget) {
8218 bool isNeg = false;
8219 if (V < 0) {
8220 isNeg = true;
8221 V = - V;
8222 }
8223
8224 switch (VT.getSimpleVT().SimpleTy) {
8225 default: return false;
8226 case MVT::i1:
8227 case MVT::i8:
8228 case MVT::i16:
8229 case MVT::i32:
8230 // + imm12 or - imm8
8231 if (isNeg)
8232 return V == (V & ((1LL << 8) - 1));
8233 return V == (V & ((1LL << 12) - 1));
8234 case MVT::f32:
8235 case MVT::f64:
8236 // Same as ARM mode. FIXME: NEON?
8237 if (!Subtarget->hasVFP2())
8238 return false;
8239 if ((V & 3) != 0)
8240 return false;
8241 V >>= 2;
8242 return V == (V & ((1LL << 8) - 1));
8243 }
8244}
8245
Evan Chengb01fad62007-03-12 23:30:29 +00008246/// isLegalAddressImmediate - Return true if the integer value can be used
8247/// as the offset of the target addressing mode for load / store of the
8248/// given type.
Owen Andersone50ed302009-08-10 22:56:29 +00008249static bool isLegalAddressImmediate(int64_t V, EVT VT,
Chris Lattner37caf8c2007-04-09 23:33:39 +00008250 const ARMSubtarget *Subtarget) {
Evan Cheng961f8792007-03-13 20:37:59 +00008251 if (V == 0)
8252 return true;
8253
Evan Cheng65011532009-03-09 19:15:00 +00008254 if (!VT.isSimple())
8255 return false;
8256
Evan Chenge6c835f2009-08-14 20:09:37 +00008257 if (Subtarget->isThumb1Only())
8258 return isLegalT1AddressImmediate(V, VT);
8259 else if (Subtarget->isThumb2())
8260 return isLegalT2AddressImmediate(V, VT, Subtarget);
Evan Chengb01fad62007-03-12 23:30:29 +00008261
Evan Chenge6c835f2009-08-14 20:09:37 +00008262 // ARM mode.
Evan Chengb01fad62007-03-12 23:30:29 +00008263 if (V < 0)
8264 V = - V;
Owen Anderson825b72b2009-08-11 20:47:22 +00008265 switch (VT.getSimpleVT().SimpleTy) {
Evan Chengb01fad62007-03-12 23:30:29 +00008266 default: return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00008267 case MVT::i1:
8268 case MVT::i8:
8269 case MVT::i32:
Evan Chengb01fad62007-03-12 23:30:29 +00008270 // +- imm12
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00008271 return V == (V & ((1LL << 12) - 1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008272 case MVT::i16:
Evan Chengb01fad62007-03-12 23:30:29 +00008273 // +- imm8
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00008274 return V == (V & ((1LL << 8) - 1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008275 case MVT::f32:
8276 case MVT::f64:
Evan Chenge6c835f2009-08-14 20:09:37 +00008277 if (!Subtarget->hasVFP2()) // FIXME: NEON?
Evan Chengb01fad62007-03-12 23:30:29 +00008278 return false;
Evan Cheng0b0a9a92007-05-03 02:00:18 +00008279 if ((V & 3) != 0)
Evan Chengb01fad62007-03-12 23:30:29 +00008280 return false;
8281 V >>= 2;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00008282 return V == (V & ((1LL << 8) - 1));
Evan Chengb01fad62007-03-12 23:30:29 +00008283 }
Evan Chenga8e29892007-01-19 07:51:42 +00008284}
8285
Evan Chenge6c835f2009-08-14 20:09:37 +00008286bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM,
8287 EVT VT) const {
8288 int Scale = AM.Scale;
8289 if (Scale < 0)
8290 return false;
8291
8292 switch (VT.getSimpleVT().SimpleTy) {
8293 default: return false;
8294 case MVT::i1:
8295 case MVT::i8:
8296 case MVT::i16:
8297 case MVT::i32:
8298 if (Scale == 1)
8299 return true;
8300 // r + r << imm
8301 Scale = Scale & ~1;
8302 return Scale == 2 || Scale == 4 || Scale == 8;
8303 case MVT::i64:
8304 // r + r
8305 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
8306 return true;
8307 return false;
8308 case MVT::isVoid:
8309 // Note, we allow "void" uses (basically, uses that aren't loads or
8310 // stores), because arm allows folding a scale into many arithmetic
8311 // operations. This should be made more precise and revisited later.
8312
8313 // Allow r << imm, but the imm has to be a multiple of two.
8314 if (Scale & 1) return false;
8315 return isPowerOf2_32(Scale);
8316 }
8317}
8318
Chris Lattner37caf8c2007-04-09 23:33:39 +00008319/// isLegalAddressingMode - Return true if the addressing mode represented
8320/// by AM is legal for this target, for a load/store of the specified type.
Bob Wilson2dc4f542009-03-20 22:42:55 +00008321bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008322 Type *Ty) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008323 EVT VT = getValueType(Ty, true);
Bob Wilson2c7dab12009-04-08 17:55:28 +00008324 if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget))
Evan Chengb01fad62007-03-12 23:30:29 +00008325 return false;
Bob Wilson2dc4f542009-03-20 22:42:55 +00008326
Chris Lattner37caf8c2007-04-09 23:33:39 +00008327 // Can never fold addr of global into load/store.
Bob Wilson2dc4f542009-03-20 22:42:55 +00008328 if (AM.BaseGV)
Chris Lattner37caf8c2007-04-09 23:33:39 +00008329 return false;
Bob Wilson2dc4f542009-03-20 22:42:55 +00008330
Chris Lattner37caf8c2007-04-09 23:33:39 +00008331 switch (AM.Scale) {
8332 case 0: // no scale reg, must be "r+i" or "r", or "i".
8333 break;
8334 case 1:
Evan Chenge6c835f2009-08-14 20:09:37 +00008335 if (Subtarget->isThumb1Only())
Chris Lattner37caf8c2007-04-09 23:33:39 +00008336 return false;
Chris Lattner5a3d40d2007-04-13 06:50:55 +00008337 // FALL THROUGH.
Chris Lattner37caf8c2007-04-09 23:33:39 +00008338 default:
Chris Lattner5a3d40d2007-04-13 06:50:55 +00008339 // ARM doesn't support any R+R*scale+imm addr modes.
8340 if (AM.BaseOffs)
8341 return false;
Bob Wilson2dc4f542009-03-20 22:42:55 +00008342
Bob Wilson2c7dab12009-04-08 17:55:28 +00008343 if (!VT.isSimple())
8344 return false;
8345
Evan Chenge6c835f2009-08-14 20:09:37 +00008346 if (Subtarget->isThumb2())
8347 return isLegalT2ScaledAddressingMode(AM, VT);
8348
Chris Lattnereb13d1b2007-04-10 03:48:29 +00008349 int Scale = AM.Scale;
Owen Anderson825b72b2009-08-11 20:47:22 +00008350 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner37caf8c2007-04-09 23:33:39 +00008351 default: return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00008352 case MVT::i1:
8353 case MVT::i8:
8354 case MVT::i32:
Chris Lattnereb13d1b2007-04-10 03:48:29 +00008355 if (Scale < 0) Scale = -Scale;
8356 if (Scale == 1)
Chris Lattner37caf8c2007-04-09 23:33:39 +00008357 return true;
8358 // r + r << imm
Chris Lattnere1152942007-04-11 16:17:12 +00008359 return isPowerOf2_32(Scale & ~1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008360 case MVT::i16:
Evan Chenge6c835f2009-08-14 20:09:37 +00008361 case MVT::i64:
Chris Lattner37caf8c2007-04-09 23:33:39 +00008362 // r + r
Chris Lattnereb13d1b2007-04-10 03:48:29 +00008363 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
Chris Lattner37caf8c2007-04-09 23:33:39 +00008364 return true;
Chris Lattnere1152942007-04-11 16:17:12 +00008365 return false;
Bob Wilson2dc4f542009-03-20 22:42:55 +00008366
Owen Anderson825b72b2009-08-11 20:47:22 +00008367 case MVT::isVoid:
Chris Lattner37caf8c2007-04-09 23:33:39 +00008368 // Note, we allow "void" uses (basically, uses that aren't loads or
8369 // stores), because arm allows folding a scale into many arithmetic
8370 // operations. This should be made more precise and revisited later.
Bob Wilson2dc4f542009-03-20 22:42:55 +00008371
Chris Lattner37caf8c2007-04-09 23:33:39 +00008372 // Allow r << imm, but the imm has to be a multiple of two.
Evan Chenge6c835f2009-08-14 20:09:37 +00008373 if (Scale & 1) return false;
8374 return isPowerOf2_32(Scale);
Chris Lattner37caf8c2007-04-09 23:33:39 +00008375 }
Evan Chengb01fad62007-03-12 23:30:29 +00008376 }
Chris Lattner37caf8c2007-04-09 23:33:39 +00008377 return true;
Evan Chengb01fad62007-03-12 23:30:29 +00008378}
8379
Evan Cheng77e47512009-11-11 19:05:52 +00008380/// isLegalICmpImmediate - Return true if the specified immediate is legal
8381/// icmp immediate, that is the target has icmp instructions which can compare
8382/// a register against the immediate without having to materialize the
8383/// immediate into a register.
Evan Cheng06b53c02009-11-12 07:13:11 +00008384bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Evan Cheng77e47512009-11-11 19:05:52 +00008385 if (!Subtarget->isThumb())
8386 return ARM_AM::getSOImmVal(Imm) != -1;
8387 if (Subtarget->isThumb2())
Jim Grosbach4725ca72010-09-08 03:54:02 +00008388 return ARM_AM::getT2SOImmVal(Imm) != -1;
Evan Cheng06b53c02009-11-12 07:13:11 +00008389 return Imm >= 0 && Imm <= 255;
Evan Cheng77e47512009-11-11 19:05:52 +00008390}
8391
Dan Gohmancca82142011-05-03 00:46:49 +00008392/// isLegalAddImmediate - Return true if the specified immediate is legal
8393/// add immediate, that is the target has add instructions which can add
8394/// a register with the immediate without having to materialize the
8395/// immediate into a register.
8396bool ARMTargetLowering::isLegalAddImmediate(int64_t Imm) const {
8397 return ARM_AM::getSOImmVal(Imm) != -1;
8398}
8399
Owen Andersone50ed302009-08-10 22:56:29 +00008400static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT,
Evan Chenge88d5ce2009-07-02 07:28:31 +00008401 bool isSEXTLoad, SDValue &Base,
8402 SDValue &Offset, bool &isInc,
8403 SelectionDAG &DAG) {
Evan Chenga8e29892007-01-19 07:51:42 +00008404 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
8405 return false;
8406
Owen Anderson825b72b2009-08-11 20:47:22 +00008407 if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
Evan Chenga8e29892007-01-19 07:51:42 +00008408 // AddressingMode 3
8409 Base = Ptr->getOperand(0);
8410 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008411 int RHSC = (int)RHS->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +00008412 if (RHSC < 0 && RHSC > -256) {
Evan Chenge88d5ce2009-07-02 07:28:31 +00008413 assert(Ptr->getOpcode() == ISD::ADD);
Evan Chenga8e29892007-01-19 07:51:42 +00008414 isInc = false;
8415 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
8416 return true;
8417 }
8418 }
8419 isInc = (Ptr->getOpcode() == ISD::ADD);
8420 Offset = Ptr->getOperand(1);
8421 return true;
Owen Anderson825b72b2009-08-11 20:47:22 +00008422 } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
Evan Chenga8e29892007-01-19 07:51:42 +00008423 // AddressingMode 2
8424 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008425 int RHSC = (int)RHS->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +00008426 if (RHSC < 0 && RHSC > -0x1000) {
Evan Chenge88d5ce2009-07-02 07:28:31 +00008427 assert(Ptr->getOpcode() == ISD::ADD);
Evan Chenga8e29892007-01-19 07:51:42 +00008428 isInc = false;
8429 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
8430 Base = Ptr->getOperand(0);
8431 return true;
8432 }
8433 }
8434
8435 if (Ptr->getOpcode() == ISD::ADD) {
8436 isInc = true;
Evan Chengee04a6d2011-07-20 23:34:39 +00008437 ARM_AM::ShiftOpc ShOpcVal=
8438 ARM_AM::getShiftOpcForNode(Ptr->getOperand(0).getOpcode());
Evan Chenga8e29892007-01-19 07:51:42 +00008439 if (ShOpcVal != ARM_AM::no_shift) {
8440 Base = Ptr->getOperand(1);
8441 Offset = Ptr->getOperand(0);
8442 } else {
8443 Base = Ptr->getOperand(0);
8444 Offset = Ptr->getOperand(1);
8445 }
8446 return true;
8447 }
8448
8449 isInc = (Ptr->getOpcode() == ISD::ADD);
8450 Base = Ptr->getOperand(0);
8451 Offset = Ptr->getOperand(1);
8452 return true;
8453 }
8454
Jim Grosbache5165492009-11-09 00:11:35 +00008455 // FIXME: Use VLDM / VSTM to emulate indexed FP load / store.
Evan Chenga8e29892007-01-19 07:51:42 +00008456 return false;
8457}
8458
Owen Andersone50ed302009-08-10 22:56:29 +00008459static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT,
Evan Chenge88d5ce2009-07-02 07:28:31 +00008460 bool isSEXTLoad, SDValue &Base,
8461 SDValue &Offset, bool &isInc,
8462 SelectionDAG &DAG) {
8463 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
8464 return false;
8465
8466 Base = Ptr->getOperand(0);
8467 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
8468 int RHSC = (int)RHS->getZExtValue();
8469 if (RHSC < 0 && RHSC > -0x100) { // 8 bits.
8470 assert(Ptr->getOpcode() == ISD::ADD);
8471 isInc = false;
8472 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
8473 return true;
8474 } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero.
8475 isInc = Ptr->getOpcode() == ISD::ADD;
8476 Offset = DAG.getConstant(RHSC, RHS->getValueType(0));
8477 return true;
8478 }
8479 }
8480
8481 return false;
8482}
8483
Evan Chenga8e29892007-01-19 07:51:42 +00008484/// getPreIndexedAddressParts - returns true by value, base pointer and
8485/// offset pointer and addressing mode by reference if the node's address
8486/// can be legally represented as pre-indexed load / store address.
8487bool
Dan Gohman475871a2008-07-27 21:46:04 +00008488ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
8489 SDValue &Offset,
Evan Chenga8e29892007-01-19 07:51:42 +00008490 ISD::MemIndexedMode &AM,
Dan Gohman73e09142009-01-15 16:29:45 +00008491 SelectionDAG &DAG) const {
Evan Chenge88d5ce2009-07-02 07:28:31 +00008492 if (Subtarget->isThumb1Only())
Evan Chenga8e29892007-01-19 07:51:42 +00008493 return false;
8494
Owen Andersone50ed302009-08-10 22:56:29 +00008495 EVT VT;
Dan Gohman475871a2008-07-27 21:46:04 +00008496 SDValue Ptr;
Evan Chenga8e29892007-01-19 07:51:42 +00008497 bool isSEXTLoad = false;
8498 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
8499 Ptr = LD->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008500 VT = LD->getMemoryVT();
Evan Chenga8e29892007-01-19 07:51:42 +00008501 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
8502 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
8503 Ptr = ST->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008504 VT = ST->getMemoryVT();
Evan Chenga8e29892007-01-19 07:51:42 +00008505 } else
8506 return false;
8507
8508 bool isInc;
Evan Chenge88d5ce2009-07-02 07:28:31 +00008509 bool isLegal = false;
Evan Chenge6c835f2009-08-14 20:09:37 +00008510 if (Subtarget->isThumb2())
Evan Chenge88d5ce2009-07-02 07:28:31 +00008511 isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
8512 Offset, isInc, DAG);
Jim Grosbach764ab522009-08-11 15:33:49 +00008513 else
Evan Chenge88d5ce2009-07-02 07:28:31 +00008514 isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
Evan Cheng04129572009-07-02 06:44:30 +00008515 Offset, isInc, DAG);
Evan Chenge88d5ce2009-07-02 07:28:31 +00008516 if (!isLegal)
8517 return false;
8518
8519 AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
8520 return true;
Evan Chenga8e29892007-01-19 07:51:42 +00008521}
8522
8523/// getPostIndexedAddressParts - returns true by value, base pointer and
8524/// offset pointer and addressing mode by reference if this node can be
8525/// combined with a load / store to form a post-indexed load / store.
8526bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
Dan Gohman475871a2008-07-27 21:46:04 +00008527 SDValue &Base,
8528 SDValue &Offset,
Evan Chenga8e29892007-01-19 07:51:42 +00008529 ISD::MemIndexedMode &AM,
Dan Gohman73e09142009-01-15 16:29:45 +00008530 SelectionDAG &DAG) const {
Evan Chenge88d5ce2009-07-02 07:28:31 +00008531 if (Subtarget->isThumb1Only())
Evan Chenga8e29892007-01-19 07:51:42 +00008532 return false;
8533
Owen Andersone50ed302009-08-10 22:56:29 +00008534 EVT VT;
Dan Gohman475871a2008-07-27 21:46:04 +00008535 SDValue Ptr;
Evan Chenga8e29892007-01-19 07:51:42 +00008536 bool isSEXTLoad = false;
8537 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008538 VT = LD->getMemoryVT();
Evan Cheng28dad2a2010-05-18 21:31:17 +00008539 Ptr = LD->getBasePtr();
Evan Chenga8e29892007-01-19 07:51:42 +00008540 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
8541 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008542 VT = ST->getMemoryVT();
Evan Cheng28dad2a2010-05-18 21:31:17 +00008543 Ptr = ST->getBasePtr();
Evan Chenga8e29892007-01-19 07:51:42 +00008544 } else
8545 return false;
8546
8547 bool isInc;
Evan Chenge88d5ce2009-07-02 07:28:31 +00008548 bool isLegal = false;
Evan Chenge6c835f2009-08-14 20:09:37 +00008549 if (Subtarget->isThumb2())
Evan Chenge88d5ce2009-07-02 07:28:31 +00008550 isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
Evan Cheng28dad2a2010-05-18 21:31:17 +00008551 isInc, DAG);
Jim Grosbach764ab522009-08-11 15:33:49 +00008552 else
Evan Chenge88d5ce2009-07-02 07:28:31 +00008553 isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
8554 isInc, DAG);
8555 if (!isLegal)
8556 return false;
8557
Evan Cheng28dad2a2010-05-18 21:31:17 +00008558 if (Ptr != Base) {
8559 // Swap base ptr and offset to catch more post-index load / store when
8560 // it's legal. In Thumb2 mode, offset must be an immediate.
8561 if (Ptr == Offset && Op->getOpcode() == ISD::ADD &&
8562 !Subtarget->isThumb2())
8563 std::swap(Base, Offset);
8564
8565 // Post-indexed load / store update the base pointer.
8566 if (Ptr != Base)
8567 return false;
8568 }
8569
Evan Chenge88d5ce2009-07-02 07:28:31 +00008570 AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
8571 return true;
Evan Chenga8e29892007-01-19 07:51:42 +00008572}
8573
Dan Gohman475871a2008-07-27 21:46:04 +00008574void ARMTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +00008575 const APInt &Mask,
Bob Wilson2dc4f542009-03-20 22:42:55 +00008576 APInt &KnownZero,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00008577 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00008578 const SelectionDAG &DAG,
Evan Chenga8e29892007-01-19 07:51:42 +00008579 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00008580 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);
Evan Chenga8e29892007-01-19 07:51:42 +00008581 switch (Op.getOpcode()) {
8582 default: break;
8583 case ARMISD::CMOV: {
8584 // Bits are known zero/one if known on the LHS and RHS.
Dan Gohmanea859be2007-06-22 14:59:07 +00008585 DAG.ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
Evan Chenga8e29892007-01-19 07:51:42 +00008586 if (KnownZero == 0 && KnownOne == 0) return;
8587
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00008588 APInt KnownZeroRHS, KnownOneRHS;
Dan Gohmanea859be2007-06-22 14:59:07 +00008589 DAG.ComputeMaskedBits(Op.getOperand(1), Mask,
8590 KnownZeroRHS, KnownOneRHS, Depth+1);
Evan Chenga8e29892007-01-19 07:51:42 +00008591 KnownZero &= KnownZeroRHS;
8592 KnownOne &= KnownOneRHS;
8593 return;
8594 }
8595 }
8596}
8597
8598//===----------------------------------------------------------------------===//
8599// ARM Inline Assembly Support
8600//===----------------------------------------------------------------------===//
8601
Evan Cheng55d42002011-01-08 01:24:27 +00008602bool ARMTargetLowering::ExpandInlineAsm(CallInst *CI) const {
8603 // Looking for "rev" which is V6+.
8604 if (!Subtarget->hasV6Ops())
8605 return false;
8606
8607 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
8608 std::string AsmStr = IA->getAsmString();
8609 SmallVector<StringRef, 4> AsmPieces;
8610 SplitString(AsmStr, AsmPieces, ";\n");
8611
8612 switch (AsmPieces.size()) {
8613 default: return false;
8614 case 1:
8615 AsmStr = AsmPieces[0];
8616 AsmPieces.clear();
8617 SplitString(AsmStr, AsmPieces, " \t,");
8618
8619 // rev $0, $1
8620 if (AsmPieces.size() == 3 &&
8621 AsmPieces[0] == "rev" && AsmPieces[1] == "$0" && AsmPieces[2] == "$1" &&
8622 IA->getConstraintString().compare(0, 4, "=l,l") == 0) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008623 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +00008624 if (Ty && Ty->getBitWidth() == 32)
8625 return IntrinsicLowering::LowerToByteSwap(CI);
8626 }
8627 break;
8628 }
8629
8630 return false;
8631}
8632
Evan Chenga8e29892007-01-19 07:51:42 +00008633/// getConstraintType - Given a constraint letter, return the type of
8634/// constraint it is for this target.
8635ARMTargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00008636ARMTargetLowering::getConstraintType(const std::string &Constraint) const {
8637 if (Constraint.size() == 1) {
8638 switch (Constraint[0]) {
8639 default: break;
8640 case 'l': return C_RegisterClass;
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00008641 case 'w': return C_RegisterClass;
Eric Christopher73744df2011-06-30 23:23:01 +00008642 case 'h': return C_RegisterClass;
Eric Christopher89bd71f2011-07-01 00:14:47 +00008643 case 'x': return C_RegisterClass;
Eric Christopherd5dc9ec2011-07-01 00:30:46 +00008644 case 't': return C_RegisterClass;
Eric Christopher5e653c92011-07-01 01:00:07 +00008645 case 'j': return C_Other; // Constant for movw.
Eric Christopheref7f1e72011-07-29 21:18:58 +00008646 // An address with a single base register. Due to the way we
8647 // currently handle addresses it is the same as an 'r' memory constraint.
8648 case 'Q': return C_Memory;
Chris Lattner4234f572007-03-25 02:14:49 +00008649 }
Eric Christopher1312ca82011-06-21 22:10:57 +00008650 } else if (Constraint.size() == 2) {
8651 switch (Constraint[0]) {
8652 default: break;
8653 // All 'U+' constraints are addresses.
8654 case 'U': return C_Memory;
8655 }
Evan Chenga8e29892007-01-19 07:51:42 +00008656 }
Chris Lattner4234f572007-03-25 02:14:49 +00008657 return TargetLowering::getConstraintType(Constraint);
Evan Chenga8e29892007-01-19 07:51:42 +00008658}
8659
John Thompson44ab89e2010-10-29 17:29:13 +00008660/// Examine constraint type and operand type and determine a weight value.
8661/// This object must already have been set up with the operand type
8662/// and the current alternative constraint selected.
8663TargetLowering::ConstraintWeight
8664ARMTargetLowering::getSingleConstraintMatchWeight(
8665 AsmOperandInfo &info, const char *constraint) const {
8666 ConstraintWeight weight = CW_Invalid;
8667 Value *CallOperandVal = info.CallOperandVal;
8668 // If we don't have a value, we can't do a match,
8669 // but allow it at the lowest weight.
8670 if (CallOperandVal == NULL)
8671 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008672 Type *type = CallOperandVal->getType();
John Thompson44ab89e2010-10-29 17:29:13 +00008673 // Look at the constraint type.
8674 switch (*constraint) {
8675 default:
8676 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
8677 break;
8678 case 'l':
8679 if (type->isIntegerTy()) {
8680 if (Subtarget->isThumb())
8681 weight = CW_SpecificReg;
8682 else
8683 weight = CW_Register;
8684 }
8685 break;
8686 case 'w':
8687 if (type->isFloatingPointTy())
8688 weight = CW_Register;
8689 break;
8690 }
8691 return weight;
8692}
8693
Eric Christopher35e6d4d2011-06-30 23:50:52 +00008694typedef std::pair<unsigned, const TargetRegisterClass*> RCPair;
8695RCPair
Evan Chenga8e29892007-01-19 07:51:42 +00008696ARMTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +00008697 EVT VT) const {
Evan Chenga8e29892007-01-19 07:51:42 +00008698 if (Constraint.size() == 1) {
Jakob Stoklund Olesen09bf0032010-01-14 18:19:56 +00008699 // GCC ARM Constraint Letters
Evan Chenga8e29892007-01-19 07:51:42 +00008700 switch (Constraint[0]) {
Eric Christopher73744df2011-06-30 23:23:01 +00008701 case 'l': // Low regs or general regs.
Jakob Stoklund Olesen09bf0032010-01-14 18:19:56 +00008702 if (Subtarget->isThumb())
Eric Christopher35e6d4d2011-06-30 23:50:52 +00008703 return RCPair(0U, ARM::tGPRRegisterClass);
Jim Grosbach30eae3c2009-04-07 20:34:09 +00008704 else
Eric Christopher35e6d4d2011-06-30 23:50:52 +00008705 return RCPair(0U, ARM::GPRRegisterClass);
Eric Christopher73744df2011-06-30 23:23:01 +00008706 case 'h': // High regs or no regs.
8707 if (Subtarget->isThumb())
Andrew Trick3af7a672011-09-20 03:06:13 +00008708 return RCPair(0U, ARM::hGPRRegisterClass);
Eric Christopher1070f822011-07-01 00:19:27 +00008709 break;
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00008710 case 'r':
Eric Christopher35e6d4d2011-06-30 23:50:52 +00008711 return RCPair(0U, ARM::GPRRegisterClass);
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00008712 case 'w':
Owen Anderson825b72b2009-08-11 20:47:22 +00008713 if (VT == MVT::f32)
Eric Christopher35e6d4d2011-06-30 23:50:52 +00008714 return RCPair(0U, ARM::SPRRegisterClass);
Bob Wilson5afffae2009-12-18 01:03:29 +00008715 if (VT.getSizeInBits() == 64)
Eric Christopher35e6d4d2011-06-30 23:50:52 +00008716 return RCPair(0U, ARM::DPRRegisterClass);
Evan Chengd831cda2009-12-08 23:06:22 +00008717 if (VT.getSizeInBits() == 128)
Eric Christopher35e6d4d2011-06-30 23:50:52 +00008718 return RCPair(0U, ARM::QPRRegisterClass);
Chris Lattnerc4e3f8e2007-04-02 17:24:08 +00008719 break;
Eric Christopher89bd71f2011-07-01 00:14:47 +00008720 case 'x':
8721 if (VT == MVT::f32)
Andrew Trick3af7a672011-09-20 03:06:13 +00008722 return RCPair(0U, ARM::SPR_8RegisterClass);
Eric Christopher89bd71f2011-07-01 00:14:47 +00008723 if (VT.getSizeInBits() == 64)
Andrew Trick3af7a672011-09-20 03:06:13 +00008724 return RCPair(0U, ARM::DPR_8RegisterClass);
Eric Christopher89bd71f2011-07-01 00:14:47 +00008725 if (VT.getSizeInBits() == 128)
Andrew Trick3af7a672011-09-20 03:06:13 +00008726 return RCPair(0U, ARM::QPR_8RegisterClass);
Eric Christopher89bd71f2011-07-01 00:14:47 +00008727 break;
Eric Christopherd5dc9ec2011-07-01 00:30:46 +00008728 case 't':
8729 if (VT == MVT::f32)
Andrew Trick3af7a672011-09-20 03:06:13 +00008730 return RCPair(0U, ARM::SPRRegisterClass);
Eric Christopherd5dc9ec2011-07-01 00:30:46 +00008731 break;
Evan Chenga8e29892007-01-19 07:51:42 +00008732 }
8733 }
Bob Wilson33cc5cb2010-03-15 23:09:18 +00008734 if (StringRef("{cc}").equals_lower(Constraint))
Jakob Stoklund Olesen0d8ba332010-06-18 16:49:33 +00008735 return std::make_pair(unsigned(ARM::CPSR), ARM::CCRRegisterClass);
Bob Wilson33cc5cb2010-03-15 23:09:18 +00008736
Evan Chenga8e29892007-01-19 07:51:42 +00008737 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
8738}
8739
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008740/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
8741/// vector. If it is invalid, don't add anything to Ops.
8742void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +00008743 std::string &Constraint,
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008744 std::vector<SDValue>&Ops,
8745 SelectionDAG &DAG) const {
8746 SDValue Result(0, 0);
8747
Eric Christopher100c8332011-06-02 23:16:42 +00008748 // Currently only support length 1 constraints.
8749 if (Constraint.length() != 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +00008750
Eric Christopher100c8332011-06-02 23:16:42 +00008751 char ConstraintLetter = Constraint[0];
8752 switch (ConstraintLetter) {
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008753 default: break;
Eric Christopher5e653c92011-07-01 01:00:07 +00008754 case 'j':
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008755 case 'I': case 'J': case 'K': case 'L':
8756 case 'M': case 'N': case 'O':
8757 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
8758 if (!C)
8759 return;
8760
8761 int64_t CVal64 = C->getSExtValue();
8762 int CVal = (int) CVal64;
8763 // None of these constraints allow values larger than 32 bits. Check
8764 // that the value fits in an int.
8765 if (CVal != CVal64)
8766 return;
8767
Eric Christopher100c8332011-06-02 23:16:42 +00008768 switch (ConstraintLetter) {
Eric Christopher5e653c92011-07-01 01:00:07 +00008769 case 'j':
Andrew Trick3af7a672011-09-20 03:06:13 +00008770 // Constant suitable for movw, must be between 0 and
8771 // 65535.
8772 if (Subtarget->hasV6T2Ops())
8773 if (CVal >= 0 && CVal <= 65535)
8774 break;
8775 return;
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008776 case 'I':
David Goodwinf1daf7d2009-07-08 23:10:31 +00008777 if (Subtarget->isThumb1Only()) {
8778 // This must be a constant between 0 and 255, for ADD
8779 // immediates.
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008780 if (CVal >= 0 && CVal <= 255)
8781 break;
David Goodwinf1daf7d2009-07-08 23:10:31 +00008782 } else if (Subtarget->isThumb2()) {
8783 // A constant that can be used as an immediate value in a
8784 // data-processing instruction.
8785 if (ARM_AM::getT2SOImmVal(CVal) != -1)
8786 break;
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008787 } else {
8788 // A constant that can be used as an immediate value in a
8789 // data-processing instruction.
8790 if (ARM_AM::getSOImmVal(CVal) != -1)
8791 break;
8792 }
8793 return;
8794
8795 case 'J':
David Goodwinf1daf7d2009-07-08 23:10:31 +00008796 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008797 // This must be a constant between -255 and -1, for negated ADD
8798 // immediates. This can be used in GCC with an "n" modifier that
8799 // prints the negated value, for use with SUB instructions. It is
8800 // not useful otherwise but is implemented for compatibility.
8801 if (CVal >= -255 && CVal <= -1)
8802 break;
8803 } else {
8804 // This must be a constant between -4095 and 4095. It is not clear
8805 // what this constraint is intended for. Implemented for
8806 // compatibility with GCC.
8807 if (CVal >= -4095 && CVal <= 4095)
8808 break;
8809 }
8810 return;
8811
8812 case 'K':
David Goodwinf1daf7d2009-07-08 23:10:31 +00008813 if (Subtarget->isThumb1Only()) {
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008814 // A 32-bit value where only one byte has a nonzero value. Exclude
8815 // zero to match GCC. This constraint is used by GCC internally for
8816 // constants that can be loaded with a move/shift combination.
8817 // It is not useful otherwise but is implemented for compatibility.
8818 if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal))
8819 break;
David Goodwinf1daf7d2009-07-08 23:10:31 +00008820 } else if (Subtarget->isThumb2()) {
8821 // A constant whose bitwise inverse can be used as an immediate
8822 // value in a data-processing instruction. This can be used in GCC
8823 // with a "B" modifier that prints the inverted value, for use with
8824 // BIC and MVN instructions. It is not useful otherwise but is
8825 // implemented for compatibility.
8826 if (ARM_AM::getT2SOImmVal(~CVal) != -1)
8827 break;
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008828 } else {
8829 // A constant whose bitwise inverse can be used as an immediate
8830 // value in a data-processing instruction. This can be used in GCC
8831 // with a "B" modifier that prints the inverted value, for use with
8832 // BIC and MVN instructions. It is not useful otherwise but is
8833 // implemented for compatibility.
8834 if (ARM_AM::getSOImmVal(~CVal) != -1)
8835 break;
8836 }
8837 return;
8838
8839 case 'L':
David Goodwinf1daf7d2009-07-08 23:10:31 +00008840 if (Subtarget->isThumb1Only()) {
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008841 // This must be a constant between -7 and 7,
8842 // for 3-operand ADD/SUB immediate instructions.
8843 if (CVal >= -7 && CVal < 7)
8844 break;
David Goodwinf1daf7d2009-07-08 23:10:31 +00008845 } else if (Subtarget->isThumb2()) {
8846 // A constant whose negation can be used as an immediate value in a
8847 // data-processing instruction. This can be used in GCC with an "n"
8848 // modifier that prints the negated value, for use with SUB
8849 // instructions. It is not useful otherwise but is implemented for
8850 // compatibility.
8851 if (ARM_AM::getT2SOImmVal(-CVal) != -1)
8852 break;
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008853 } else {
8854 // A constant whose negation can be used as an immediate value in a
8855 // data-processing instruction. This can be used in GCC with an "n"
8856 // modifier that prints the negated value, for use with SUB
8857 // instructions. It is not useful otherwise but is implemented for
8858 // compatibility.
8859 if (ARM_AM::getSOImmVal(-CVal) != -1)
8860 break;
8861 }
8862 return;
8863
8864 case 'M':
David Goodwinf1daf7d2009-07-08 23:10:31 +00008865 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008866 // This must be a multiple of 4 between 0 and 1020, for
8867 // ADD sp + immediate.
8868 if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0))
8869 break;
8870 } else {
8871 // A power of two or a constant between 0 and 32. This is used in
8872 // GCC for the shift amount on shifted register operands, but it is
8873 // useful in general for any shift amounts.
8874 if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0))
8875 break;
8876 }
8877 return;
8878
8879 case 'N':
David Goodwinf1daf7d2009-07-08 23:10:31 +00008880 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008881 // This must be a constant between 0 and 31, for shift amounts.
8882 if (CVal >= 0 && CVal <= 31)
8883 break;
8884 }
8885 return;
8886
8887 case 'O':
David Goodwinf1daf7d2009-07-08 23:10:31 +00008888 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008889 // This must be a multiple of 4 between -508 and 508, for
8890 // ADD/SUB sp = sp + immediate.
8891 if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0))
8892 break;
8893 }
8894 return;
8895 }
8896 Result = DAG.getTargetConstant(CVal, Op.getValueType());
8897 break;
8898 }
8899
8900 if (Result.getNode()) {
8901 Ops.push_back(Result);
8902 return;
8903 }
Dale Johannesen1784d162010-06-25 21:55:36 +00008904 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Bob Wilsonbf6396b2009-04-01 17:58:54 +00008905}
Anton Korobeynikov48e19352009-09-23 19:04:09 +00008906
8907bool
8908ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
8909 // The ARM target isn't yet aware of offsets.
8910 return false;
8911}
Evan Cheng39382422009-10-28 01:44:26 +00008912
Jim Grosbach469bbdb2010-07-16 23:05:05 +00008913bool ARM::isBitFieldInvertedMask(unsigned v) {
8914 if (v == 0xffffffff)
8915 return 0;
8916 // there can be 1's on either or both "outsides", all the "inside"
8917 // bits must be 0's
8918 unsigned int lsb = 0, msb = 31;
8919 while (v & (1 << msb)) --msb;
8920 while (v & (1 << lsb)) ++lsb;
8921 for (unsigned int i = lsb; i <= msb; ++i) {
8922 if (v & (1 << i))
8923 return 0;
8924 }
8925 return 1;
8926}
8927
Evan Cheng39382422009-10-28 01:44:26 +00008928/// isFPImmLegal - Returns true if the target can instruction select the
8929/// specified FP immediate natively. If false, the legalizer will
8930/// materialize the FP immediate as a load from a constant pool.
8931bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
8932 if (!Subtarget->hasVFP3())
8933 return false;
8934 if (VT == MVT::f32)
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +00008935 return ARM_AM::getFP32Imm(Imm) != -1;
Evan Cheng39382422009-10-28 01:44:26 +00008936 if (VT == MVT::f64)
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +00008937 return ARM_AM::getFP64Imm(Imm) != -1;
Evan Cheng39382422009-10-28 01:44:26 +00008938 return false;
8939}
Bob Wilson65ffec42010-09-21 17:56:22 +00008940
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008941/// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
Bob Wilson65ffec42010-09-21 17:56:22 +00008942/// MemIntrinsicNodes. The associated MachineMemOperands record the alignment
8943/// specified in the intrinsic calls.
8944bool ARMTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
8945 const CallInst &I,
8946 unsigned Intrinsic) const {
8947 switch (Intrinsic) {
8948 case Intrinsic::arm_neon_vld1:
8949 case Intrinsic::arm_neon_vld2:
8950 case Intrinsic::arm_neon_vld3:
8951 case Intrinsic::arm_neon_vld4:
8952 case Intrinsic::arm_neon_vld2lane:
8953 case Intrinsic::arm_neon_vld3lane:
8954 case Intrinsic::arm_neon_vld4lane: {
8955 Info.opc = ISD::INTRINSIC_W_CHAIN;
8956 // Conservatively set memVT to the entire set of vectors loaded.
8957 uint64_t NumElts = getTargetData()->getTypeAllocSize(I.getType()) / 8;
8958 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
8959 Info.ptrVal = I.getArgOperand(0);
8960 Info.offset = 0;
8961 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
8962 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
8963 Info.vol = false; // volatile loads with NEON intrinsics not supported
8964 Info.readMem = true;
8965 Info.writeMem = false;
8966 return true;
8967 }
8968 case Intrinsic::arm_neon_vst1:
8969 case Intrinsic::arm_neon_vst2:
8970 case Intrinsic::arm_neon_vst3:
8971 case Intrinsic::arm_neon_vst4:
8972 case Intrinsic::arm_neon_vst2lane:
8973 case Intrinsic::arm_neon_vst3lane:
8974 case Intrinsic::arm_neon_vst4lane: {
8975 Info.opc = ISD::INTRINSIC_VOID;
8976 // Conservatively set memVT to the entire set of vectors stored.
8977 unsigned NumElts = 0;
8978 for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008979 Type *ArgTy = I.getArgOperand(ArgI)->getType();
Bob Wilson65ffec42010-09-21 17:56:22 +00008980 if (!ArgTy->isVectorTy())
8981 break;
8982 NumElts += getTargetData()->getTypeAllocSize(ArgTy) / 8;
8983 }
8984 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
8985 Info.ptrVal = I.getArgOperand(0);
8986 Info.offset = 0;
8987 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
8988 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
8989 Info.vol = false; // volatile stores with NEON intrinsics not supported
8990 Info.readMem = false;
8991 Info.writeMem = true;
8992 return true;
8993 }
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00008994 case Intrinsic::arm_strexd: {
8995 Info.opc = ISD::INTRINSIC_W_CHAIN;
8996 Info.memVT = MVT::i64;
8997 Info.ptrVal = I.getArgOperand(2);
8998 Info.offset = 0;
8999 Info.align = 8;
Bruno Cardoso Lopesc75448c2011-06-16 18:11:32 +00009000 Info.vol = true;
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00009001 Info.readMem = false;
9002 Info.writeMem = true;
9003 return true;
9004 }
9005 case Intrinsic::arm_ldrexd: {
9006 Info.opc = ISD::INTRINSIC_W_CHAIN;
9007 Info.memVT = MVT::i64;
9008 Info.ptrVal = I.getArgOperand(0);
9009 Info.offset = 0;
9010 Info.align = 8;
Bruno Cardoso Lopesc75448c2011-06-16 18:11:32 +00009011 Info.vol = true;
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00009012 Info.readMem = true;
9013 Info.writeMem = false;
9014 return true;
9015 }
Bob Wilson65ffec42010-09-21 17:56:22 +00009016 default:
9017 break;
9018 }
9019
9020 return false;
9021}